UNPKG

2.17 kBPlain TextView Raw
1// tslint:disable id-length
2import { a } from './a';
3import { area } from './area';
4import { article } from './article';
5import { aside } from './aside';
6import { body } from './body';
7import { button } from './button';
8import { datalist } from './datalist';
9import { dd } from './dd';
10import { details } from './details';
11import { dialog } from './dialog';
12import { dl } from './dl';
13import { dt } from './dt';
14import { footer } from './footer';
15import { form } from './form';
16import { h1 } from './h1';
17import { h2 } from './h2';
18import { h3 } from './h3';
19import { h4 } from './h4';
20import { h5 } from './h5';
21import { h6 } from './h6';
22import { header } from './header';
23import { hr } from './hr';
24import { img } from './img';
25import { input } from './input';
26import { li } from './li';
27import { link } from './link';
28import { main } from './main';
29import { math } from './math';
30import { menu } from './menu';
31import { menuitem } from './menuitem';
32import { meter } from './meter';
33import { nav } from './nav';
34import { ol } from './ol';
35import { optgroup } from './optgroup';
36import { option } from './option';
37import { output } from './output';
38import { progress } from './progress';
39import { section } from './section';
40import { select } from './select';
41import { summary } from './summary';
42import { table } from './table';
43import { tbody } from './tbody';
44import { td } from './td';
45import { textarea } from './textarea';
46import { tfoot } from './tfoot';
47import { th } from './th';
48import { thead } from './thead';
49import { tr } from './tr';
50import { ul } from './ul';
51
52/**
53 * Export function for getting implicit role based on tag name.
54 */
55export {
56 a,
57 area,
58 article,
59 aside,
60 body,
61 button,
62 datalist,
63 dd,
64 details,
65 dialog,
66 dl,
67 dt,
68 footer,
69 form,
70 h1,
71 h2,
72 h3,
73 h4,
74 h5,
75 h6,
76 header,
77 hr,
78 img,
79 input,
80 li,
81 link,
82 main,
83 math,
84 menu,
85 menuitem,
86 meter,
87 nav,
88 ol,
89 optgroup,
90 option,
91 output,
92 progress,
93 section,
94 select,
95 summary,
96 table,
97 tbody,
98 td,
99 textarea,
100 tfoot,
101 th,
102 thead,
103 tr,
104 ul,
105};