@typesafe-html5/typescript 0.2.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. package/README.md +166 -0
  2. package/block/article/article.ts +506 -0
  3. package/block/aside/aside.ts +522 -0
  4. package/block/audio/audio.ts +506 -0
  5. package/block/blockquote/blockquote.ts +522 -0
  6. package/block/body/body.ts +458 -0
  7. package/block/canvas/canvas.ts +538 -0
  8. package/block/caption/caption.ts +506 -0
  9. package/block/colgroup/colgroup.ts +154 -0
  10. package/block/datalist/datalist.ts +506 -0
  11. package/block/dd/dd.ts +506 -0
  12. package/block/del/del.ts +538 -0
  13. package/block/details/details.ts +586 -0
  14. package/block/dialog/dialog.ts +586 -0
  15. package/block/div/div.ts +586 -0
  16. package/block/dl/dl.ts +506 -0
  17. package/block/dt/dt.ts +506 -0
  18. package/block/embed/embed.ts +317 -0
  19. package/block/fieldset/fieldset.ts +570 -0
  20. package/block/figcaption/figcaption.ts +506 -0
  21. package/block/figure/figure.ts +506 -0
  22. package/block/footer/footer.ts +522 -0
  23. package/block/form/form.ts +490 -0
  24. package/block/h1/h1.ts +490 -0
  25. package/block/h2/h2.ts +490 -0
  26. package/block/h3/h3.ts +490 -0
  27. package/block/h4/h4.ts +490 -0
  28. package/block/h5/h5.ts +490 -0
  29. package/block/h6/h6.ts +490 -0
  30. package/block/header/header.ts +298 -0
  31. package/block/hgroup/hgroup.ts +506 -0
  32. package/block/hr/hr.ts +189 -0
  33. package/block/html/html.ts +106 -0
  34. package/block/iframe/iframe.ts +538 -0
  35. package/block/ins/ins.ts +538 -0
  36. package/block/legend/legend.ts +506 -0
  37. package/block/li/li.ts +602 -0
  38. package/block/main/main.ts +538 -0
  39. package/block/map/map.ts +522 -0
  40. package/block/menu/menu.ts +554 -0
  41. package/block/nav/nav.ts +554 -0
  42. package/block/noscript/noscript.ts +282 -0
  43. package/block/object/object.ts +618 -0
  44. package/block/ol/ol.ts +618 -0
  45. package/block/optgroup/optgroup.ts +522 -0
  46. package/block/option/option.ts +618 -0
  47. package/block/p/p.ts +506 -0
  48. package/block/picture/picture.ts +506 -0
  49. package/block/pre/pre.ts +506 -0
  50. package/block/section/section.ts +538 -0
  51. package/block/summary/summary.ts +570 -0
  52. package/block/table/table.ts +570 -0
  53. package/block/tbody/tbody.ts +506 -0
  54. package/block/td/td.ts +666 -0
  55. package/block/template/template.ts +506 -0
  56. package/block/tfoot/tfoot.ts +506 -0
  57. package/block/th/th.ts +682 -0
  58. package/block/thead/thead.ts +506 -0
  59. package/block/tr/tr.ts +682 -0
  60. package/block/ul/ul.ts +570 -0
  61. package/block/video/video.ts +666 -0
  62. package/index.ts +126 -0
  63. package/inline/a/a.ts +682 -0
  64. package/inline/abbr/abbr.ts +490 -0
  65. package/inline/address/address.ts +474 -0
  66. package/inline/b/b.ts +506 -0
  67. package/inline/bdi/bdi.ts +490 -0
  68. package/inline/bdo/bdo.ts +506 -0
  69. package/inline/button/button.ts +826 -0
  70. package/inline/cite/cite.ts +506 -0
  71. package/inline/code/code.ts +506 -0
  72. package/inline/data/data.ts +522 -0
  73. package/inline/dfn/dfn.ts +506 -0
  74. package/inline/em/em.ts +506 -0
  75. package/inline/i/i.ts +506 -0
  76. package/inline/img/img.ts +445 -0
  77. package/inline/input/input.ts +1197 -0
  78. package/inline/kbd/kbd.ts +506 -0
  79. package/inline/label/label.ts +538 -0
  80. package/inline/mark/mark.ts +506 -0
  81. package/inline/meter/meter.ts +554 -0
  82. package/inline/output/output.ts +426 -0
  83. package/inline/progress/progress.ts +490 -0
  84. package/inline/q/q.ts +522 -0
  85. package/inline/rp/rp.ts +506 -0
  86. package/inline/rt/rt.ts +506 -0
  87. package/inline/ruby/ruby.ts +506 -0
  88. package/inline/s/s.ts +506 -0
  89. package/inline/samp/samp.ts +506 -0
  90. package/inline/select/select.ts +810 -0
  91. package/inline/slot/slot.ts +522 -0
  92. package/inline/small/small.ts +506 -0
  93. package/inline/span/span.ts +506 -0
  94. package/inline/strong/strong.ts +506 -0
  95. package/inline/sub/sub.ts +506 -0
  96. package/inline/sup/sup.ts +506 -0
  97. package/inline/svg/svg.ts +618 -0
  98. package/inline/textarea/textarea.ts +874 -0
  99. package/inline/time/time.ts +522 -0
  100. package/inline/u/u.ts +506 -0
  101. package/inline/var/var.ts +506 -0
  102. package/package.json +32 -0
  103. package/tsconfig.json +26 -0
  104. package/void/area/area.ts +397 -0
  105. package/void/base/base.ts +61 -0
  106. package/void/br/br.ts +77 -0
  107. package/void/col/col.ts +77 -0
  108. package/void/head/head.ts +58 -0
  109. package/void/link/link.ts +253 -0
  110. package/void/meta/meta.ts +157 -0
  111. package/void/param/param.ts +93 -0
  112. package/void/script/script.ts +250 -0
  113. package/void/source/source.ts +125 -0
  114. package/void/style/style.ts +154 -0
  115. package/void/title/title.ts +58 -0
  116. package/void/track/track.ts +157 -0
  117. package/void/wbr/wbr.ts +61 -0
package/index.ts ADDED
@@ -0,0 +1,126 @@
1
+ /**
2
+ * Extended HTML Document - TypeScript Classes
3
+ *
4
+ * Auto-generated type-safe TypeScript classes for all HTML5 elements.
5
+ *
6
+ * @package vardumper/extended-htmldocument
7
+ */
8
+
9
+ // Block Elements
10
+ export { Article, type ArticleProps } from './block/article/article';
11
+ export { Aside, type AsideProps } from './block/aside/aside';
12
+ export { Audio, type AudioProps } from './block/audio/audio';
13
+ export { Blockquote, type BlockquoteProps } from './block/blockquote/blockquote';
14
+ export { Body, type BodyProps } from './block/body/body';
15
+ export { Canvas, type CanvasProps } from './block/canvas/canvas';
16
+ export { Caption, type CaptionProps } from './block/caption/caption';
17
+ export { Colgroup, type ColgroupProps } from './block/colgroup/colgroup';
18
+ export { Datalist, type DatalistProps } from './block/datalist/datalist';
19
+ export { Dd, type DdProps } from './block/dd/dd';
20
+ export { Del, type DelProps } from './block/del/del';
21
+ export { Details, type DetailsProps } from './block/details/details';
22
+ export { Dialog, type DialogProps } from './block/dialog/dialog';
23
+ export { Div, type DivProps } from './block/div/div';
24
+ export { Dl, type DlProps } from './block/dl/dl';
25
+ export { Dt, type DtProps } from './block/dt/dt';
26
+ export { Embed, type EmbedProps } from './block/embed/embed';
27
+ export { Fieldset, type FieldsetProps } from './block/fieldset/fieldset';
28
+ export { Figcaption, type FigcaptionProps } from './block/figcaption/figcaption';
29
+ export { Figure, type FigureProps } from './block/figure/figure';
30
+ export { Footer, type FooterProps } from './block/footer/footer';
31
+ export { Form, type FormProps } from './block/form/form';
32
+ export { H1, type H1Props } from './block/h1/h1';
33
+ export { H2, type H2Props } from './block/h2/h2';
34
+ export { H3, type H3Props } from './block/h3/h3';
35
+ export { H4, type H4Props } from './block/h4/h4';
36
+ export { H5, type H5Props } from './block/h5/h5';
37
+ export { H6, type H6Props } from './block/h6/h6';
38
+ export { Header, type HeaderProps } from './block/header/header';
39
+ export { Hgroup, type HgroupProps } from './block/hgroup/hgroup';
40
+ export { Hr, type HrProps } from './block/hr/hr';
41
+ export { Html, type HtmlProps } from './block/html/html';
42
+ export { Iframe, type IframeProps } from './block/iframe/iframe';
43
+ export { Ins, type InsProps } from './block/ins/ins';
44
+ export { Legend, type LegendProps } from './block/legend/legend';
45
+ export { Li, type LiProps } from './block/li/li';
46
+ export { Main, type MainProps } from './block/main/main';
47
+ export { Map, type MapProps } from './block/map/map';
48
+ export { Menu, type MenuProps } from './block/menu/menu';
49
+ export { Nav, type NavProps } from './block/nav/nav';
50
+ export { Noscript, type NoscriptProps } from './block/noscript/noscript';
51
+ export { ObjectComponent as Object, type ObjectComponentProps as ObjectProps } from './block/object/object';
52
+ export { Ol, type OlProps } from './block/ol/ol';
53
+ export { Optgroup, type OptgroupProps } from './block/optgroup/optgroup';
54
+ export { Option, type OptionProps } from './block/option/option';
55
+ export { P, type PProps } from './block/p/p';
56
+ export { Picture, type PictureProps } from './block/picture/picture';
57
+ export { Pre, type PreProps } from './block/pre/pre';
58
+ export { Section, type SectionProps } from './block/section/section';
59
+ export { Summary, type SummaryProps } from './block/summary/summary';
60
+ export { Table, type TableProps } from './block/table/table';
61
+ export { Tbody, type TbodyProps } from './block/tbody/tbody';
62
+ export { Td, type TdProps } from './block/td/td';
63
+ export { Template, type TemplateProps } from './block/template/template';
64
+ export { Tfoot, type TfootProps } from './block/tfoot/tfoot';
65
+ export { Th, type ThProps } from './block/th/th';
66
+ export { Thead, type TheadProps } from './block/thead/thead';
67
+ export { Tr, type TrProps } from './block/tr/tr';
68
+ export { Ul, type UlProps } from './block/ul/ul';
69
+ export { Video, type VideoProps } from './block/video/video';
70
+
71
+ // Inline Elements
72
+ export { A, type AProps } from './inline/a/a';
73
+ export { Abbr, type AbbrProps } from './inline/abbr/abbr';
74
+ export { Address, type AddressProps } from './inline/address/address';
75
+ export { B, type BProps } from './inline/b/b';
76
+ export { Bdi, type BdiProps } from './inline/bdi/bdi';
77
+ export { Bdo, type BdoProps } from './inline/bdo/bdo';
78
+ export { Button, type ButtonProps } from './inline/button/button';
79
+ export { Cite, type CiteProps } from './inline/cite/cite';
80
+ export { Code, type CodeProps } from './inline/code/code';
81
+ export { Data, type DataProps } from './inline/data/data';
82
+ export { Dfn, type DfnProps } from './inline/dfn/dfn';
83
+ export { Em, type EmProps } from './inline/em/em';
84
+ export { I, type IProps } from './inline/i/i';
85
+ export { Img, type ImgProps } from './inline/img/img';
86
+ export { Input, type InputProps } from './inline/input/input';
87
+ export { Kbd, type KbdProps } from './inline/kbd/kbd';
88
+ export { Label, type LabelProps } from './inline/label/label';
89
+ export { Mark, type MarkProps } from './inline/mark/mark';
90
+ export { Meter, type MeterProps } from './inline/meter/meter';
91
+ export { Output, type OutputProps } from './inline/output/output';
92
+ export { Progress, type ProgressProps } from './inline/progress/progress';
93
+ export { Q, type QProps } from './inline/q/q';
94
+ export { Rp, type RpProps } from './inline/rp/rp';
95
+ export { Rt, type RtProps } from './inline/rt/rt';
96
+ export { Ruby, type RubyProps } from './inline/ruby/ruby';
97
+ export { S, type SProps } from './inline/s/s';
98
+ export { Samp, type SampProps } from './inline/samp/samp';
99
+ export { Select, type SelectProps } from './inline/select/select';
100
+ export { Slot, type SlotProps } from './inline/slot/slot';
101
+ export { Small, type SmallProps } from './inline/small/small';
102
+ export { Span, type SpanProps } from './inline/span/span';
103
+ export { Strong, type StrongProps } from './inline/strong/strong';
104
+ export { Sub, type SubProps } from './inline/sub/sub';
105
+ export { Sup, type SupProps } from './inline/sup/sup';
106
+ export { Svg, type SvgProps } from './inline/svg/svg';
107
+ export { Textarea, type TextareaProps } from './inline/textarea/textarea';
108
+ export { Time, type TimeProps } from './inline/time/time';
109
+ export { U, type UProps } from './inline/u/u';
110
+ export { Var, type VarProps } from './inline/var/var';
111
+
112
+ // Void Elements
113
+ export { Area, type AreaProps } from './void/area/area';
114
+ export { Base, type BaseProps } from './void/base/base';
115
+ export { Br, type BrProps } from './void/br/br';
116
+ export { Col, type ColProps } from './void/col/col';
117
+ export { Head, type HeadProps } from './void/head/head';
118
+ export { Link, type LinkProps } from './void/link/link';
119
+ export { Meta, type MetaProps } from './void/meta/meta';
120
+ export { Param, type ParamProps } from './void/param/param';
121
+ export { Script, type ScriptProps } from './void/script/script';
122
+ export { Source, type SourceProps } from './void/source/source';
123
+ export { Style, type StyleProps } from './void/style/style';
124
+ export { Title, type TitleProps } from './void/title/title';
125
+ export { Track, type TrackProps } from './void/track/track';
126
+ export { Wbr, type WbrProps } from './void/wbr/wbr';