@potok-web-framework/core 0.1.0 → 0.3.0

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 (94) hide show
  1. package/dist/block.d.ts +17 -0
  2. package/dist/bootstrap-app.d.ts +8 -0
  3. package/dist/client-only.d.ts +3 -0
  4. package/dist/client.mjs +133 -0
  5. package/dist/constants-BOAOReQ3.mjs +26 -0
  6. package/dist/constants.d.ts +2 -0
  7. package/dist/context.d.ts +12 -0
  8. package/dist/detect-child.d.ts +6 -0
  9. package/dist/error-boundary.d.ts +5 -0
  10. package/dist/exports/client.d.ts +1 -0
  11. package/dist/exports/hmr.d.ts +1 -0
  12. package/dist/exports/index.d.ts +14 -0
  13. package/dist/exports/jsx-runtime.d.ts +4 -0
  14. package/dist/exports/server.d.ts +1 -0
  15. package/dist/fragment-BahmURhz.mjs +17 -0
  16. package/dist/fragment.d.ts +4 -0
  17. package/dist/hmr/hmr-dev.d.ts +9 -0
  18. package/dist/hmr/register-component.d.ts +2 -0
  19. package/dist/hmr/registered-component.d.ts +23 -0
  20. package/dist/hmr/registry.d.ts +12 -0
  21. package/dist/hmr/types.d.ts +4 -0
  22. package/dist/hmr/utils.d.ts +3 -0
  23. package/dist/hmr.mjs +42 -0
  24. package/dist/html-element-Cm0RtMkT.mjs +42 -0
  25. package/dist/html-element.d.ts +6 -0
  26. package/dist/index.mjs +199 -0
  27. package/dist/jsx-runtime.mjs +10 -0
  28. package/dist/jsx-types.d.ts +11 -0
  29. package/dist/lazy.d.ts +7 -0
  30. package/dist/lib-context-reader.d.ts +5 -0
  31. package/dist/lib-scripts.d.ts +2 -0
  32. package/dist/lifecycle-4vjEuXGy.mjs +57 -0
  33. package/dist/lifecycle.d.ts +8 -0
  34. package/dist/list.d.ts +9 -0
  35. package/dist/portal-CbcYOHLv.mjs +44 -0
  36. package/dist/portal.d.ts +10 -0
  37. package/dist/prop-types.d.ts +939 -0
  38. package/dist/ref.d.ts +6 -0
  39. package/dist/render-to-dom.d.ts +8 -0
  40. package/dist/render-to-string.d.ts +2 -0
  41. package/dist/server-node.d.ts +10 -0
  42. package/dist/server.mjs +1192 -0
  43. package/dist/show.d.ts +6 -0
  44. package/dist/signals.d.ts +32 -0
  45. package/dist/store.d.ts +26 -0
  46. package/dist/text.d.ts +5 -0
  47. package/dist/types.d.ts +39 -0
  48. package/dist/utils-CAe_kbSH.mjs +345 -0
  49. package/dist/utils.d.ts +11 -0
  50. package/package.json +9 -3
  51. package/CHANGELOG.md +0 -7
  52. package/bun.lock +0 -25
  53. package/src/block.ts +0 -102
  54. package/src/bootstrap-app.ts +0 -115
  55. package/src/client-only.ts +0 -17
  56. package/src/constants.ts +0 -27
  57. package/src/context.ts +0 -85
  58. package/src/detect-child.ts +0 -21
  59. package/src/error-boundary.ts +0 -51
  60. package/src/exports/client.ts +0 -1
  61. package/src/exports/hmr.ts +0 -1
  62. package/src/exports/index.ts +0 -21
  63. package/src/exports/jsx-runtime.ts +0 -4
  64. package/src/exports/server.ts +0 -1
  65. package/src/fragment.ts +0 -28
  66. package/src/global.dev.d.ts +0 -12
  67. package/src/hmr/hmr-dev.ts +0 -10
  68. package/src/hmr/register-component.ts +0 -109
  69. package/src/hmr/registered-component.ts +0 -59
  70. package/src/hmr/registry.ts +0 -78
  71. package/src/hmr/types.ts +0 -6
  72. package/src/hmr/utils.ts +0 -20
  73. package/src/html-element.ts +0 -95
  74. package/src/jsx-types.ts +0 -13
  75. package/src/lazy.ts +0 -44
  76. package/src/lib-context-reader.ts +0 -33
  77. package/src/lib-scripts.ts +0 -8
  78. package/src/lifecycle.ts +0 -44
  79. package/src/list.ts +0 -175
  80. package/src/portal.ts +0 -101
  81. package/src/prop-types.ts +0 -1165
  82. package/src/ref.ts +0 -11
  83. package/src/render-to-dom.ts +0 -325
  84. package/src/render-to-string.ts +0 -65
  85. package/src/server-node.ts +0 -98
  86. package/src/show.ts +0 -46
  87. package/src/signals.ts +0 -323
  88. package/src/store.ts +0 -68
  89. package/src/text.ts +0 -35
  90. package/src/types.ts +0 -69
  91. package/src/utils.ts +0 -118
  92. package/tests/signals.test.ts +0 -403
  93. package/tsconfig.json +0 -17
  94. package/vite.config.ts +0 -21
@@ -0,0 +1,939 @@
1
+ import { LibHTMLElementReference } from './ref';
2
+ import { WithChildren } from './types';
3
+ export type LibHTMLElementEventMap = {
4
+ onAbort?: (event: UIEvent) => void;
5
+ onAnimationCancel?: (event: AnimationEvent) => void;
6
+ onAnimationEnd?: (event: AnimationEvent) => void;
7
+ onAnimationIteration?: (event: AnimationEvent) => void;
8
+ onAnimationStart?: (event: AnimationEvent) => void;
9
+ onAuxClick?: (event: MouseEvent) => void;
10
+ onBeforeInput?: (event: InputEvent) => void;
11
+ onBlur?: (event: FocusEvent) => void;
12
+ onCancel?: (event: Event) => void;
13
+ onCanPlay?: (event: Event) => void;
14
+ onCanPlayThrough?: (event: Event) => void;
15
+ onChange?: (event: Event) => void;
16
+ onClick?: (event: MouseEvent) => void;
17
+ onClose?: (event: Event) => void;
18
+ onCompositionEnd?: (event: CompositionEvent) => void;
19
+ onCompositionStart?: (event: CompositionEvent) => void;
20
+ onCompositionUpdate?: (event: CompositionEvent) => void;
21
+ onContextMenu?: (event: MouseEvent) => void;
22
+ onCopy?: (event: ClipboardEvent) => void;
23
+ onCueChange?: (event: Event) => void;
24
+ onCut?: (event: ClipboardEvent) => void;
25
+ onDblClick?: (event: MouseEvent) => void;
26
+ onDrag?: (event: DragEvent) => void;
27
+ onDragEnd?: (event: DragEvent) => void;
28
+ onDragEnter?: (event: DragEvent) => void;
29
+ onDragLeave?: (event: DragEvent) => void;
30
+ onDragOver?: (event: DragEvent) => void;
31
+ onDragStart?: (event: DragEvent) => void;
32
+ onDrop?: (event: DragEvent) => void;
33
+ onDurationChange?: (event: Event) => void;
34
+ onEmptied?: (event: Event) => void;
35
+ onEnded?: (event: Event) => void;
36
+ onError?: (event: ErrorEvent) => void;
37
+ onFocus?: (event: FocusEvent) => void;
38
+ onFocusIn?: (event: FocusEvent) => void;
39
+ onFocusOut?: (event: FocusEvent) => void;
40
+ onFormData?: (event: FormDataEvent) => void;
41
+ onGotPointerCapture?: (event: PointerEvent) => void;
42
+ onInput?: (event: Event) => void;
43
+ onInvalid?: (event: Event) => void;
44
+ onKeyDown?: (event: KeyboardEvent) => void;
45
+ onKeyPress?: (event: KeyboardEvent) => void;
46
+ onKeyUp?: (event: KeyboardEvent) => void;
47
+ onLoad?: (event: Event) => void;
48
+ onLoadedData?: (event: Event) => void;
49
+ onLoadedMetadata?: (event: Event) => void;
50
+ onLoadStart?: (event: Event) => void;
51
+ onLostPointerCapture?: (event: PointerEvent) => void;
52
+ onMouseDown?: (event: MouseEvent) => void;
53
+ onMouseEnter?: (event: MouseEvent) => void;
54
+ onMouseLeave?: (event: MouseEvent) => void;
55
+ onMouseMove?: (event: MouseEvent) => void;
56
+ onMouseOut?: (event: MouseEvent) => void;
57
+ onMouseOver?: (event: MouseEvent) => void;
58
+ onMouseUp?: (event: MouseEvent) => void;
59
+ onPaste?: (event: ClipboardEvent) => void;
60
+ onPause?: (event: Event) => void;
61
+ onPlay?: (event: Event) => void;
62
+ onPlaying?: (event: Event) => void;
63
+ onPointerCancel?: (event: PointerEvent) => void;
64
+ onPointerDown?: (event: PointerEvent) => void;
65
+ onPointerEnter?: (event: PointerEvent) => void;
66
+ onPointerLeave?: (event: PointerEvent) => void;
67
+ onPointerMove?: (event: PointerEvent) => void;
68
+ onPointerOut?: (event: PointerEvent) => void;
69
+ onPointerOver?: (event: PointerEvent) => void;
70
+ onPointerUp?: (event: PointerEvent) => void;
71
+ onProgress?: (event: ProgressEvent) => void;
72
+ onRateChange?: (event: Event) => void;
73
+ onReset?: (event: Event) => void;
74
+ onResize?: (event: Event) => void;
75
+ onScroll?: (event: Event) => void;
76
+ onScrollEnd?: (event: Event) => void;
77
+ onSecurityPolicyViolation?: (event: SecurityPolicyViolationEvent) => void;
78
+ onSeeked?: (event: Event) => void;
79
+ onSeeking?: (event: Event) => void;
80
+ onSelect?: (event: Event) => void;
81
+ onSelectionChange?: (event: Event) => void;
82
+ onSelectStart?: (event: Event) => void;
83
+ onSlotChange?: (event: Event) => void;
84
+ onStalled?: (event: Event) => void;
85
+ onSubmit?: (event: SubmitEvent) => void;
86
+ onSuspend?: (event: Event) => void;
87
+ onTimeUpdate?: (event: Event) => void;
88
+ onToggle?: (event: Event) => void;
89
+ onTouchCancel?: (event: TouchEvent) => void;
90
+ onTouchEnd?: (event: TouchEvent) => void;
91
+ onTouchMove?: (event: TouchEvent) => void;
92
+ onTouchStart?: (event: TouchEvent) => void;
93
+ onTransitionCancel?: (event: TransitionEvent) => void;
94
+ onTransitionEnd?: (event: TransitionEvent) => void;
95
+ onTransitionRun?: (event: TransitionEvent) => void;
96
+ onTransitionStart?: (event: TransitionEvent) => void;
97
+ onVolumeChange?: (event: Event) => void;
98
+ onWaiting?: (event: Event) => void;
99
+ onWebkitAnimationEnd?: (event: Event) => void;
100
+ onWebkitAnimationIteration?: (event: Event) => void;
101
+ onWebkitAnimationStart?: (event: Event) => void;
102
+ onWebkitTransitionEnd?: (event: Event) => void;
103
+ onWheel?: (event: WheelEvent) => void;
104
+ };
105
+ export type LibHTMLelementAriaProps = {
106
+ ariaActiveDescendant?: string;
107
+ ariaAtomic?: string;
108
+ ariaAutoComplete?: string;
109
+ ariaBrailleLabel?: string;
110
+ ariaBrailleRoleDescription?: string;
111
+ ariaBusy?: string;
112
+ ariaChecked?: string;
113
+ ariaColCount?: string;
114
+ ariaColIndex?: string;
115
+ ariaColIndexText?: string;
116
+ ariaColSpan?: string;
117
+ ariaControls?: string;
118
+ ariaCurrent?: string;
119
+ ariaDescribedBy?: string;
120
+ ariaDescription?: string;
121
+ ariaDetails?: string;
122
+ ariaDisabled?: string;
123
+ ariaErrorMessage?: string;
124
+ ariaExpanded?: string;
125
+ ariaFlowTo?: string;
126
+ ariaHasPopup?: string;
127
+ ariaHidden?: string;
128
+ ariaInvalid?: string;
129
+ ariaKeyShortcuts?: string;
130
+ ariaLabel?: string;
131
+ ariaLabelledBy?: string;
132
+ ariaLevel?: string;
133
+ ariaLive?: string;
134
+ ariaModal?: string;
135
+ ariaMultiLine?: string;
136
+ ariaMultiSelectable?: string;
137
+ ariaOrientation?: string;
138
+ ariaOwns?: string;
139
+ ariaPlaceholder?: string;
140
+ ariaPosInSet?: string;
141
+ ariaPressed?: string;
142
+ ariaReadOnly?: string;
143
+ ariaRelevant?: string;
144
+ ariaRequired?: string;
145
+ ariaRoleDescription?: string;
146
+ ariaRowCount?: string;
147
+ ariaRowIndex?: string;
148
+ ariaRowIndexText?: string;
149
+ ariaRowSpan?: string;
150
+ ariaSelected?: string;
151
+ ariaSetSize?: string;
152
+ ariaSort?: string;
153
+ ariaValueMax?: string;
154
+ ariaValueMin?: string;
155
+ ariaValueNow?: string;
156
+ ariaValueText?: string;
157
+ };
158
+ type CSSLength = string | number;
159
+ type StyleWithNumericSupport = {
160
+ width?: CSSLength;
161
+ height?: CSSLength;
162
+ top?: CSSLength;
163
+ left?: CSSLength;
164
+ right?: CSSLength;
165
+ bottom?: CSSLength;
166
+ margin?: CSSLength;
167
+ marginTop?: CSSLength;
168
+ marginBottom?: CSSLength;
169
+ marginLeft?: CSSLength;
170
+ marginRight?: CSSLength;
171
+ padding?: CSSLength;
172
+ paddingTop?: CSSLength;
173
+ paddingBottom?: CSSLength;
174
+ paddingLeft?: CSSLength;
175
+ paddingRight?: CSSLength;
176
+ fontSize?: CSSLength;
177
+ borderWidth?: CSSLength;
178
+ borderRadius?: CSSLength;
179
+ maxWidth?: CSSLength;
180
+ minWidth?: CSSLength;
181
+ maxHeight?: CSSLength;
182
+ minHeight?: CSSLength;
183
+ };
184
+ type LibHTMLElementStyle = Partial<Omit<CSSStyleDeclaration, 'getPropertyCSSValue' | 'getPropertyPriority' | 'getPropertyValue' | 'item' | 'removeProperty' | 'setProperty' | 'cssFloat' | 'cssText' | 'length' | 'parentRule' | keyof StyleWithNumericSupport> & StyleWithNumericSupport>;
185
+ export type LibHTMLElementProps = WithChildren<{
186
+ accessKey?: string;
187
+ autocapitalize?: string;
188
+ dir?: string;
189
+ draggable?: boolean;
190
+ hidden?: boolean;
191
+ inert?: boolean;
192
+ lang?: string;
193
+ popover?: string | null;
194
+ spellcheck?: boolean;
195
+ title?: string;
196
+ translate?: boolean;
197
+ className?: string;
198
+ id?: string;
199
+ contentEditable?: string;
200
+ inputMode?: string;
201
+ autofocus?: boolean;
202
+ nonce?: string;
203
+ tabIndex?: number;
204
+ style?: LibHTMLElementStyle;
205
+ }> & LibHTMLElementEventMap & LibHTMLelementAriaProps & Record<`data-${string}`, string | number | boolean>;
206
+ export type LibHTMLAnchorElementProps = {
207
+ ref?: LibHTMLElementReference<HTMLAnchorElement>;
208
+ hash?: string;
209
+ host?: string;
210
+ hostname?: string;
211
+ href?: string;
212
+ password?: string;
213
+ pathname?: string;
214
+ port?: string;
215
+ protocol?: string;
216
+ search?: string;
217
+ username?: string;
218
+ download?: string;
219
+ hreflang?: string;
220
+ ping?: string;
221
+ referrerPolicy?: string;
222
+ rel?: string;
223
+ target?: string;
224
+ type?: string;
225
+ } & LibHTMLElementProps;
226
+ export type LibHTMLAbbrElementProps = {
227
+ ref?: LibHTMLElementReference<HTMLElement>;
228
+ } & LibHTMLElementProps;
229
+ export type LibHTMLAddressElementProps = {
230
+ ref?: LibHTMLElementReference<HTMLElement>;
231
+ } & LibHTMLElementProps;
232
+ export type LibHTMLAreaElementProps = {
233
+ ref?: LibHTMLElementReference<HTMLAreaElement>;
234
+ hash?: string;
235
+ host?: string;
236
+ hostname?: string;
237
+ href?: string;
238
+ password?: string;
239
+ pathname?: string;
240
+ port?: string;
241
+ protocol?: string;
242
+ search?: string;
243
+ username?: string;
244
+ alt?: string;
245
+ coords?: string;
246
+ download?: string;
247
+ ping?: string;
248
+ referrerPolicy?: string;
249
+ rel?: string;
250
+ shape?: string;
251
+ target?: string;
252
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
253
+ export type LibHTMLArticleElementProps = {
254
+ ref?: LibHTMLElementReference<HTMLElement>;
255
+ } & LibHTMLElementProps;
256
+ export type LibHTMLAsideElementProps = {
257
+ ref?: LibHTMLElementReference<HTMLElement>;
258
+ } & LibHTMLElementProps;
259
+ export type LibHTMLAudioElementProps = {
260
+ ref?: LibHTMLElementReference<HTMLAudioElement>;
261
+ autoplay?: boolean;
262
+ controls?: boolean;
263
+ crossOrigin?: string | null;
264
+ currentTime?: number;
265
+ defaultMuted?: boolean;
266
+ defaultPlaybackRate?: number;
267
+ disableRemotePlayback?: boolean;
268
+ loop?: boolean;
269
+ muted?: boolean;
270
+ playbackRate?: number;
271
+ preload?: HTMLAudioElement['preload'];
272
+ preservesPitch?: boolean;
273
+ src?: string;
274
+ srcObject?: MediaProvider | null;
275
+ volume?: number;
276
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
277
+ export type LibHTMLBElementProps = {
278
+ ref?: LibHTMLElementReference<HTMLElement>;
279
+ } & LibHTMLElementProps;
280
+ export type LibHTMLBaseElementProps = {
281
+ ref?: LibHTMLElementReference<HTMLBaseElement>;
282
+ href?: string;
283
+ target?: string;
284
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
285
+ export type LibHTMLBdiElementProps = {
286
+ ref?: LibHTMLElementReference<HTMLElement>;
287
+ } & LibHTMLElementProps;
288
+ export type LibHTMLBdoElementProps = {
289
+ ref?: LibHTMLElementReference<HTMLElement>;
290
+ } & LibHTMLElementProps;
291
+ export type LibHTMLBlockquoteElementProps = {
292
+ ref?: LibHTMLElementReference<HTMLQuoteElement>;
293
+ cite?: string;
294
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
295
+ export type LibHTMLBodyElementProps = {
296
+ ref?: LibHTMLElementReference<HTMLBodyElement>;
297
+ } & LibHTMLElementProps;
298
+ export type LibHTMLBrElementProps = {
299
+ ref?: LibHTMLElementReference<HTMLBRElement>;
300
+ } & LibHTMLElementProps;
301
+ export type LibHTMLButtonElementProps = {
302
+ ref?: LibHTMLElementReference<HTMLButtonElement>;
303
+ disabled?: boolean;
304
+ formAction?: string;
305
+ formEncType?: string;
306
+ formMethod?: string;
307
+ formNoValidate?: boolean;
308
+ formTarget?: string;
309
+ name?: string;
310
+ type?: HTMLButtonElement['type'];
311
+ value?: string;
312
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
313
+ export type LibHTMLCanvasElementProps = {
314
+ ref?: LibHTMLElementReference<HTMLCanvasElement>;
315
+ height?: number;
316
+ width?: number;
317
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
318
+ export type LibHTMLCaptionElementProps = {
319
+ ref?: LibHTMLElementReference<HTMLTableCaptionElement>;
320
+ } & LibHTMLElementProps;
321
+ export type LibHTMLCiteElementProps = {
322
+ ref?: LibHTMLElementReference<HTMLElement>;
323
+ } & LibHTMLElementProps;
324
+ export type LibHTMLCodeElementProps = {
325
+ ref?: LibHTMLElementReference<HTMLElement>;
326
+ } & LibHTMLElementProps;
327
+ export type LibHTMLColElementProps = {
328
+ ref?: LibHTMLElementReference<HTMLTableColElement>;
329
+ span?: number;
330
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
331
+ export type LibHTMLColGroupElementProps = {
332
+ ref?: LibHTMLElementReference<HTMLTableColElement>;
333
+ span?: number;
334
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
335
+ export type LibHTMLDataElementProps = {
336
+ ref?: LibHTMLElementReference<HTMLDataElement>;
337
+ value?: string;
338
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
339
+ export type LibHTMLDataListElementProps = {
340
+ ref?: LibHTMLElementReference<HTMLDataListElement>;
341
+ } & LibHTMLElementProps;
342
+ export type LibHTMLDdElementProps = {
343
+ ref?: LibHTMLElementReference<HTMLElement>;
344
+ } & LibHTMLElementProps;
345
+ export type LibHTMLDelElementProps = {
346
+ ref?: LibHTMLElementReference<HTMLModElement>;
347
+ cite?: string;
348
+ dateTime?: string;
349
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
350
+ export type LibHTMLDetailsElementProps = {
351
+ ref?: LibHTMLElementReference<HTMLDetailsElement>;
352
+ open?: boolean;
353
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
354
+ export type LibHTMLDfnElementProps = {
355
+ ref?: LibHTMLElementReference<HTMLElement>;
356
+ } & LibHTMLElementProps;
357
+ export type LibHTMLDialogElementProps = {
358
+ ref?: LibHTMLElementReference<HTMLDialogElement>;
359
+ open?: boolean;
360
+ returnValue?: string;
361
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
362
+ export type LibHTMLDivElementProps = {
363
+ ref?: LibHTMLElementReference<HTMLDivElement>;
364
+ } & LibHTMLElementProps;
365
+ export type LibHTMLDlElementProps = {
366
+ ref?: LibHTMLElementReference<HTMLDListElement>;
367
+ } & LibHTMLElementProps;
368
+ export type LibHTMLDtElementProps = {
369
+ ref?: LibHTMLElementReference<HTMLElement>;
370
+ } & LibHTMLElementProps;
371
+ export type LibHTMLEmElementProps = {
372
+ ref?: LibHTMLElementReference<HTMLElement>;
373
+ } & LibHTMLElementProps;
374
+ export type LibHTMLEmbedElementProps = {
375
+ ref?: LibHTMLElementReference<HTMLEmbedElement>;
376
+ height?: number;
377
+ src?: string;
378
+ type?: string;
379
+ width?: number;
380
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
381
+ export type LibHTMLFieldSetElementProps = {
382
+ ref?: LibHTMLElementReference<HTMLFieldSetElement>;
383
+ disabled?: boolean;
384
+ name?: string;
385
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
386
+ export type LibHTMLFigCaptionElementProps = {
387
+ ref?: LibHTMLElementReference<HTMLElement>;
388
+ } & LibHTMLElementProps;
389
+ export type LibHTMLFigureElementProps = {
390
+ ref?: LibHTMLElementReference<HTMLElement>;
391
+ } & LibHTMLElementProps;
392
+ export type LibHTMLFooterElementProps = {
393
+ ref?: LibHTMLElementReference<HTMLElement>;
394
+ } & LibHTMLElementProps;
395
+ export type LibHTMLFormElementProps = {
396
+ ref?: LibHTMLElementReference<HTMLFormElement>;
397
+ acceptCharset?: string;
398
+ action?: string;
399
+ autocomplete?: string;
400
+ encoding?: string;
401
+ enctype?: string;
402
+ method?: string;
403
+ name?: string;
404
+ noValidate?: boolean;
405
+ rel?: string;
406
+ target?: string;
407
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
408
+ export type LibHTMLH1ElementProps = {
409
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
410
+ } & LibHTMLElementProps;
411
+ export type LibHTMLH2ElementProps = {
412
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
413
+ } & LibHTMLElementProps;
414
+ export type LibHTMLH3ElementProps = {
415
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
416
+ } & LibHTMLElementProps;
417
+ export type LibHTMLH4ElementProps = {
418
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
419
+ } & LibHTMLElementProps;
420
+ export type LibHTMLH5ElementProps = {
421
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
422
+ } & LibHTMLElementProps;
423
+ export type LibHTMLH6ElementProps = {
424
+ ref?: LibHTMLElementReference<HTMLHeadingElement>;
425
+ } & LibHTMLElementProps;
426
+ export type LibHTMLHeadElementProps = {
427
+ ref?: LibHTMLElementReference<HTMLHeadElement>;
428
+ } & LibHTMLElementProps;
429
+ export type LibHTMLHeaderElementProps = {
430
+ ref?: LibHTMLElementReference<HTMLElement>;
431
+ } & LibHTMLElementProps;
432
+ export type LibHTMLHgroupElementProps = {
433
+ ref?: LibHTMLElementReference<HTMLElement>;
434
+ } & LibHTMLElementProps;
435
+ export type LibHTMLHRElementProps = {
436
+ ref?: LibHTMLElementReference<HTMLHRElement>;
437
+ } & LibHTMLElementProps;
438
+ export type LibHTMLHtmlElementProps = {
439
+ ref?: LibHTMLElementReference<HTMLHtmlElement>;
440
+ } & LibHTMLElementProps;
441
+ export type LibHTMLIElementProps = {
442
+ ref?: LibHTMLElementReference<HTMLElement>;
443
+ } & LibHTMLElementProps;
444
+ export type LibHTMLIFrameElementProps = {
445
+ ref?: LibHTMLElementReference<HTMLIFrameElement>;
446
+ allow?: string;
447
+ allowFullscreen?: boolean;
448
+ height?: number;
449
+ loading?: string;
450
+ name?: string;
451
+ referrerPolicy?: string;
452
+ src?: string;
453
+ srcdoc?: string;
454
+ width?: number;
455
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
456
+ export type LibHTMLImageElementProps = {
457
+ ref?: LibHTMLElementReference<HTMLImageElement>;
458
+ alt?: string;
459
+ crossOrigin?: string | null;
460
+ decoding?: HTMLImageElement['decoding'];
461
+ height?: number;
462
+ isMap?: boolean;
463
+ loading?: HTMLImageElement['loading'];
464
+ referrerPolicy?: string;
465
+ sizes?: string;
466
+ src?: string;
467
+ srcset?: string;
468
+ useMap?: string;
469
+ width?: number;
470
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
471
+ export type LibHTMLInputElementProps = {
472
+ ref?: LibHTMLElementReference<HTMLInputElement>;
473
+ accept?: string;
474
+ alt?: string;
475
+ autocomplete?: string;
476
+ capture?: string;
477
+ checked?: boolean;
478
+ defaultChecked?: boolean;
479
+ defaultValue?: string;
480
+ dirName?: string;
481
+ disabled?: boolean;
482
+ files?: FileList | null;
483
+ formAction?: string;
484
+ formEnctype?: string;
485
+ formMethod?: string;
486
+ formNoValidate?: boolean;
487
+ formTarget?: string;
488
+ height?: number;
489
+ indeterminate?: boolean;
490
+ max?: string;
491
+ maxLength?: number;
492
+ min?: string;
493
+ minLength?: number;
494
+ multiple?: boolean;
495
+ name?: string;
496
+ pattern?: string;
497
+ placeholder?: string;
498
+ readOnly?: boolean;
499
+ required?: boolean;
500
+ selectionDirection?: HTMLInputElement['selectionDirection'];
501
+ selectionEnd?: number | null;
502
+ selectionStart?: number | null;
503
+ size?: number;
504
+ src?: string;
505
+ step?: string;
506
+ type?: string;
507
+ value?: string;
508
+ valueAsDate?: Date | null;
509
+ valueAsNumber?: number;
510
+ webkitdirectory?: boolean;
511
+ width?: number;
512
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
513
+ export type LibHTMLInsElementProps = {
514
+ ref?: LibHTMLElementReference<HTMLModElement>;
515
+ cite?: string;
516
+ dateTime?: string;
517
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
518
+ export type LibHTMLKbdElementProps = {
519
+ ref?: LibHTMLElementReference<HTMLElement>;
520
+ } & LibHTMLElementProps;
521
+ export type LibHTMLLabelElementProps = {
522
+ ref?: LibHTMLElementReference<HTMLLabelElement>;
523
+ htmlFor?: string;
524
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
525
+ export type LibHTMLLegendElementProps = {
526
+ ref?: LibHTMLElementReference<HTMLLegendElement>;
527
+ } & LibHTMLElementProps;
528
+ export type LibHTMLLiElementProps = {
529
+ ref?: LibHTMLElementReference<HTMLLIElement>;
530
+ value?: number;
531
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
532
+ export type LibHTMLLinkElementProps = {
533
+ ref?: LibHTMLElementReference<HTMLLinkElement>;
534
+ as?: string;
535
+ crossOrigin?: string | null;
536
+ disabled?: boolean;
537
+ href?: string;
538
+ hreflang?: string;
539
+ imageSizes?: string;
540
+ imageSrcset?: string;
541
+ integrity?: string;
542
+ media?: string;
543
+ referrerPolicy?: string;
544
+ rel?: string;
545
+ type?: string;
546
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
547
+ export type LibHTMLMainElementProps = {
548
+ ref?: LibHTMLElementReference<HTMLElement>;
549
+ } & LibHTMLElementProps;
550
+ export type LibHTMLMapElementProps = {
551
+ ref?: LibHTMLElementReference<HTMLMapElement>;
552
+ name?: string;
553
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
554
+ export type LibHTMLMarkElementProps = {
555
+ ref?: LibHTMLElementReference<HTMLElement>;
556
+ } & LibHTMLElementProps;
557
+ export type LibHTMLMenuElementProps = {
558
+ ref?: LibHTMLElementReference<HTMLMenuElement>;
559
+ } & LibHTMLElementProps;
560
+ export type LibHTMLMetaElementProps = {
561
+ ref?: LibHTMLElementReference<HTMLMetaElement>;
562
+ content?: string;
563
+ httpEquiv?: string;
564
+ media?: string;
565
+ name?: string;
566
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
567
+ export type LibHTMLMeterElementProps = {
568
+ ref?: LibHTMLElementReference<HTMLMeterElement>;
569
+ high?: number;
570
+ low?: number;
571
+ max?: number;
572
+ min?: number;
573
+ optimum?: number;
574
+ value?: number;
575
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
576
+ export type LibHTMLNavElementProps = {
577
+ ref?: LibHTMLElementReference<HTMLElement>;
578
+ } & LibHTMLElementProps;
579
+ export type LibHTMLNoScriptElementProps = {
580
+ ref?: LibHTMLElementReference<HTMLElement>;
581
+ } & LibHTMLElementProps;
582
+ export type LibHTMLObjectElementProps = {
583
+ ref?: LibHTMLElementReference<HTMLObjectElement>;
584
+ data?: string;
585
+ height?: number;
586
+ name?: string;
587
+ type?: string;
588
+ useMap?: string;
589
+ width?: number;
590
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
591
+ export type LibHTMLOlElementProps = {
592
+ ref?: LibHTMLElementReference<HTMLOListElement>;
593
+ reversed?: boolean;
594
+ start?: number;
595
+ type?: string;
596
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
597
+ export type LibHTMLOptGroupElementProps = {
598
+ ref?: LibHTMLElementReference<HTMLOptGroupElement>;
599
+ disabled?: boolean;
600
+ label?: string;
601
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
602
+ export type LibHTMLOptionElementProps = {
603
+ ref?: LibHTMLElementReference<HTMLOptionElement>;
604
+ defaultSelected?: boolean;
605
+ disabled?: boolean;
606
+ label?: string;
607
+ selected?: boolean;
608
+ text?: string;
609
+ value?: string;
610
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
611
+ export type LibHTMLOutputElementProps = {
612
+ ref?: LibHTMLElementReference<HTMLOutputElement>;
613
+ defaultValue?: string;
614
+ name?: string;
615
+ value?: string;
616
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
617
+ export type LibHTMLPElementProps = {
618
+ ref?: LibHTMLElementReference<HTMLParagraphElement>;
619
+ } & LibHTMLElementProps;
620
+ export type LibHTMLPictureElementProps = {
621
+ ref?: LibHTMLElementReference<HTMLPictureElement>;
622
+ } & LibHTMLElementProps;
623
+ export type LibHTMLPreElementProps = {
624
+ ref?: LibHTMLElementReference<HTMLPreElement>;
625
+ } & LibHTMLElementProps;
626
+ export type LibHTMLProgressElementProps = {
627
+ ref?: LibHTMLElementReference<HTMLProgressElement>;
628
+ max?: number;
629
+ value?: number;
630
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
631
+ export type LibHTMLQuoteElementProps = {
632
+ ref?: LibHTMLElementReference<HTMLQuoteElement>;
633
+ cite?: string;
634
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
635
+ export type LibHTMLRpElementProps = {
636
+ ref?: LibHTMLElementReference<HTMLElement>;
637
+ } & LibHTMLElementProps;
638
+ export type LibHTMLRtElementProps = {
639
+ ref?: LibHTMLElementReference<HTMLElement>;
640
+ } & LibHTMLElementProps;
641
+ export type LibHTMLRubyElementProps = {
642
+ ref?: LibHTMLElementReference<HTMLElement>;
643
+ } & LibHTMLElementProps;
644
+ export type LibHTMLSElementProps = {
645
+ ref?: LibHTMLElementReference<HTMLElement>;
646
+ } & LibHTMLElementProps;
647
+ export type LibHTMLSampElementProps = {
648
+ ref?: LibHTMLElementReference<HTMLElement>;
649
+ } & LibHTMLElementProps;
650
+ export type LibHTMLScriptElementProps = {
651
+ ref?: LibHTMLElementReference<HTMLScriptElement>;
652
+ async?: boolean;
653
+ crossOrigin?: string | null;
654
+ defer?: boolean;
655
+ integrity?: string;
656
+ noModule?: boolean;
657
+ referrerPolicy?: string;
658
+ src?: string;
659
+ text?: string;
660
+ type?: string;
661
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
662
+ export type LibHTMLSearchElementProps = {
663
+ ref?: LibHTMLElementReference<HTMLElement>;
664
+ } & LibHTMLElementProps;
665
+ export type LibHTMLSectionElementProps = {
666
+ ref?: LibHTMLElementReference<HTMLElement>;
667
+ } & LibHTMLElementProps;
668
+ export type LibHTMLSelectElementProps = {
669
+ ref?: LibHTMLElementReference<HTMLSelectElement>;
670
+ autocomplete?: string;
671
+ disabled?: boolean;
672
+ length?: number;
673
+ multiple?: boolean;
674
+ name?: string;
675
+ required?: boolean;
676
+ selectedIndex?: number;
677
+ size?: number;
678
+ value?: string;
679
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
680
+ export type LibHTMLSlotElementProps = {
681
+ ref?: LibHTMLElementReference<HTMLSlotElement>;
682
+ name?: string;
683
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
684
+ export type LibHTMLSmallElementProps = {
685
+ ref?: LibHTMLElementReference<HTMLElement>;
686
+ } & LibHTMLElementProps;
687
+ export type LibHTMLSourceElementProps = {
688
+ ref?: LibHTMLElementReference<HTMLSourceElement>;
689
+ height?: number;
690
+ media?: string;
691
+ sizes?: string;
692
+ src?: string;
693
+ srcset?: string;
694
+ type?: string;
695
+ width?: number;
696
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
697
+ export type LibHTMLSpanElementProps = {
698
+ ref?: LibHTMLElementReference<HTMLSpanElement>;
699
+ } & LibHTMLElementProps;
700
+ export type LibHTMLStrongElementProps = {
701
+ ref?: LibHTMLElementReference<HTMLElement>;
702
+ } & LibHTMLElementProps;
703
+ export type LibHTMLStyleElementProps = {
704
+ ref?: LibHTMLElementReference<HTMLStyleElement>;
705
+ disabled?: boolean;
706
+ media?: string;
707
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
708
+ export type LibHTMLSubElementProps = {
709
+ ref?: LibHTMLElementReference<HTMLElement>;
710
+ } & LibHTMLElementProps;
711
+ export type LibHTMLSummaryElementProps = {
712
+ ref?: LibHTMLElementReference<HTMLElement>;
713
+ } & LibHTMLElementProps;
714
+ export type LibHTMLSupElementProps = {
715
+ ref?: LibHTMLElementReference<HTMLElement>;
716
+ } & LibHTMLElementProps;
717
+ export type LibHTMLTableElementProps = {
718
+ ref?: LibHTMLElementReference<HTMLTableElement>;
719
+ caption?: HTMLTableElement['caption'];
720
+ tFoot?: HTMLTableElement['tFoot'];
721
+ tHead?: HTMLTableElement['tHead'];
722
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
723
+ export type LibHTMLTbodyElementProps = {
724
+ ref?: LibHTMLElementReference<HTMLTableSectionElement>;
725
+ } & LibHTMLElementProps;
726
+ export type LibHTMLTdElementProps = {
727
+ ref?: LibHTMLElementReference<HTMLTableCellElement>;
728
+ abbr?: string;
729
+ colSpan?: number;
730
+ headers?: string;
731
+ rowSpan?: number;
732
+ scope?: string;
733
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
734
+ export type LibHTMLTemplateElementProps = {
735
+ ref?: LibHTMLElementReference<HTMLTemplateElement>;
736
+ } & LibHTMLElementProps;
737
+ export type LibHTMLTextAreaElementProps = {
738
+ ref?: LibHTMLElementReference<HTMLTextAreaElement>;
739
+ autocomplete?: HTMLTextAreaElement['autocomplete'];
740
+ cols?: number;
741
+ defaultValue?: string;
742
+ dirName?: string;
743
+ disabled?: boolean;
744
+ maxLength?: number;
745
+ minLength?: number;
746
+ name?: string;
747
+ placeholder?: string;
748
+ readOnly?: boolean;
749
+ required?: boolean;
750
+ rows?: number;
751
+ selectionDirection?: HTMLTextAreaElement['selectionDirection'];
752
+ selectionEnd?: number;
753
+ selectionStart?: number;
754
+ value?: string;
755
+ wrap?: string;
756
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
757
+ export type LibHTMLTfootElementProps = {
758
+ ref?: LibHTMLElementReference<HTMLTableSectionElement>;
759
+ } & LibHTMLElementProps;
760
+ export type LibHTMLThElementProps = {
761
+ ref?: LibHTMLElementReference<HTMLTableCellElement>;
762
+ abbr?: string;
763
+ colSpan?: number;
764
+ headers?: string;
765
+ rowSpan?: number;
766
+ scope?: string;
767
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
768
+ export type LibHTMLTheadElementProps = {
769
+ ref?: LibHTMLElementReference<HTMLTableSectionElement>;
770
+ } & LibHTMLElementProps;
771
+ export type LibHTMLTimeElementProps = {
772
+ ref?: LibHTMLElementReference<HTMLTimeElement>;
773
+ dateTime?: string;
774
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
775
+ export type LibHTMLTitleElementProps = {
776
+ ref?: LibHTMLElementReference<HTMLTitleElement>;
777
+ text?: string;
778
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
779
+ export type LibHTMLTrElementProps = {
780
+ ref?: LibHTMLElementReference<HTMLTableRowElement>;
781
+ } & LibHTMLElementProps;
782
+ export type LibHTMLTrackElementProps = {
783
+ ref?: LibHTMLElementReference<HTMLTrackElement>;
784
+ default?: boolean;
785
+ kind?: string;
786
+ label?: string;
787
+ src?: string;
788
+ srcLang?: string;
789
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
790
+ export type LibHTMLUElementProps = {
791
+ ref?: LibHTMLElementReference<HTMLElement>;
792
+ } & LibHTMLElementProps;
793
+ export type LibHTMLUlElementProps = {
794
+ ref?: LibHTMLElementReference<HTMLUListElement>;
795
+ } & LibHTMLElementProps;
796
+ export type LibHTMLVarElementProps = {
797
+ ref?: LibHTMLElementReference<HTMLElement>;
798
+ } & LibHTMLElementProps;
799
+ export type LibHTMLVideoElementProps = {
800
+ ref?: LibHTMLElementReference<HTMLVideoElement>;
801
+ autoplay?: boolean;
802
+ controls?: boolean;
803
+ crossOrigin?: string | null;
804
+ currentTime?: number;
805
+ defaultMuted?: boolean;
806
+ defaultPlaybackRate?: number;
807
+ disableRemotePlayback?: boolean;
808
+ loop?: boolean;
809
+ muted?: boolean;
810
+ playbackRate?: number;
811
+ preload?: HTMLVideoElement['preload'];
812
+ preservesPitch?: boolean;
813
+ src?: string;
814
+ srcObject?: HTMLMediaElement['srcObject'];
815
+ volume?: number;
816
+ disablePictureInPicture?: boolean;
817
+ height?: number;
818
+ playsInline?: boolean;
819
+ poster?: string;
820
+ width?: number;
821
+ } & LibHTMLElementProps & LibHTMLElementEventMap & LibHTMLelementAriaProps;
822
+ export type LibHTMLWbrElementProps = {
823
+ ref?: LibHTMLElementReference<HTMLElement>;
824
+ } & LibHTMLElementProps;
825
+ export type LibHTMLElementTagNameMap = {
826
+ a: LibHTMLAnchorElementProps;
827
+ abbr: LibHTMLAbbrElementProps;
828
+ address: LibHTMLAddressElementProps;
829
+ area: LibHTMLAreaElementProps;
830
+ article: LibHTMLArticleElementProps;
831
+ aside: LibHTMLAsideElementProps;
832
+ audio: LibHTMLAudioElementProps;
833
+ b: LibHTMLBElementProps;
834
+ base: LibHTMLBaseElementProps;
835
+ bdi: LibHTMLBdiElementProps;
836
+ bdo: LibHTMLBdoElementProps;
837
+ blockquote: LibHTMLQuoteElementProps;
838
+ body: LibHTMLBodyElementProps;
839
+ br: LibHTMLBrElementProps;
840
+ button: LibHTMLButtonElementProps;
841
+ canvas: LibHTMLCanvasElementProps;
842
+ caption: LibHTMLCaptionElementProps;
843
+ cite: LibHTMLCiteElementProps;
844
+ code: LibHTMLCodeElementProps;
845
+ col: LibHTMLColElementProps;
846
+ colgroup: LibHTMLColElementProps;
847
+ data: LibHTMLDataElementProps;
848
+ datalist: LibHTMLDataListElementProps;
849
+ dd: LibHTMLDdElementProps;
850
+ del: LibHTMLDelElementProps;
851
+ details: LibHTMLDetailsElementProps;
852
+ dfn: LibHTMLDfnElementProps;
853
+ dialog: LibHTMLDialogElementProps;
854
+ div: LibHTMLDivElementProps;
855
+ dl: LibHTMLDlElementProps;
856
+ dt: LibHTMLDtElementProps;
857
+ em: LibHTMLEmElementProps;
858
+ embed: LibHTMLEmbedElementProps;
859
+ fieldset: LibHTMLFieldSetElementProps;
860
+ figcaption: LibHTMLFigCaptionElementProps;
861
+ figure: LibHTMLFigureElementProps;
862
+ footer: LibHTMLFooterElementProps;
863
+ form: LibHTMLFormElementProps;
864
+ h1: LibHTMLH1ElementProps;
865
+ h2: LibHTMLH2ElementProps;
866
+ h3: LibHTMLH3ElementProps;
867
+ h4: LibHTMLH4ElementProps;
868
+ h5: LibHTMLH5ElementProps;
869
+ h6: LibHTMLH6ElementProps;
870
+ head: LibHTMLHeadElementProps;
871
+ header: LibHTMLHeaderElementProps;
872
+ hgroup: LibHTMLHgroupElementProps;
873
+ hr: LibHTMLHRElementProps;
874
+ html: LibHTMLHtmlElementProps;
875
+ i: LibHTMLIElementProps;
876
+ iframe: LibHTMLIFrameElementProps;
877
+ img: LibHTMLImageElementProps;
878
+ input: LibHTMLInputElementProps;
879
+ ins: LibHTMLInsElementProps;
880
+ kbd: LibHTMLKbdElementProps;
881
+ label: LibHTMLLabelElementProps;
882
+ legend: LibHTMLLegendElementProps;
883
+ li: LibHTMLLiElementProps;
884
+ link: LibHTMLLinkElementProps;
885
+ main: LibHTMLMainElementProps;
886
+ map: LibHTMLMapElementProps;
887
+ mark: LibHTMLMarkElementProps;
888
+ menu: LibHTMLMenuElementProps;
889
+ meta: LibHTMLMetaElementProps;
890
+ meter: LibHTMLMeterElementProps;
891
+ nav: LibHTMLNavElementProps;
892
+ noscript: LibHTMLNoScriptElementProps;
893
+ object: LibHTMLObjectElementProps;
894
+ ol: LibHTMLOlElementProps;
895
+ optgroup: LibHTMLOptGroupElementProps;
896
+ option: LibHTMLOptionElementProps;
897
+ output: LibHTMLOutputElementProps;
898
+ p: LibHTMLPElementProps;
899
+ picture: LibHTMLPictureElementProps;
900
+ pre: LibHTMLPreElementProps;
901
+ progress: LibHTMLProgressElementProps;
902
+ q: LibHTMLQuoteElementProps;
903
+ rp: LibHTMLRpElementProps;
904
+ rt: LibHTMLRtElementProps;
905
+ ruby: LibHTMLRubyElementProps;
906
+ s: LibHTMLSElementProps;
907
+ samp: LibHTMLSampElementProps;
908
+ script: LibHTMLScriptElementProps;
909
+ search: LibHTMLSearchElementProps;
910
+ section: LibHTMLSectionElementProps;
911
+ select: LibHTMLSelectElementProps;
912
+ slot: LibHTMLSlotElementProps;
913
+ small: LibHTMLSmallElementProps;
914
+ source: LibHTMLSourceElementProps;
915
+ span: LibHTMLSpanElementProps;
916
+ strong: LibHTMLStrongElementProps;
917
+ style: LibHTMLStyleElementProps;
918
+ sub: LibHTMLSubElementProps;
919
+ summary: LibHTMLSummaryElementProps;
920
+ sup: LibHTMLSupElementProps;
921
+ table: LibHTMLTableElementProps;
922
+ tbody: LibHTMLTbodyElementProps;
923
+ td: LibHTMLTdElementProps;
924
+ template: LibHTMLTemplateElementProps;
925
+ textarea: LibHTMLTextAreaElementProps;
926
+ tfoot: LibHTMLTfootElementProps;
927
+ th: LibHTMLThElementProps;
928
+ thead: LibHTMLTheadElementProps;
929
+ time: LibHTMLTimeElementProps;
930
+ title: LibHTMLTitleElementProps;
931
+ tr: LibHTMLTrElementProps;
932
+ track: LibHTMLTrackElementProps;
933
+ u: LibHTMLUElementProps;
934
+ ul: LibHTMLUlElementProps;
935
+ var: LibHTMLVarElementProps;
936
+ video: LibHTMLVideoElementProps;
937
+ wbr: LibHTMLWbrElementProps;
938
+ };
939
+ export {};