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