jmx-runtime 0.0.30 → 0.0.32
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/base.d.ts +6 -6
- package/dist/index.js +183 -182
- package/dist/index.js.map +1 -1
- package/dist/jmx.d.ts.map +1 -1
- package/jmx.ts +2 -1
- package/package.json +1 -1
- package/rollup.config.js +1 -1
- package/dist/base.ts +0 -27
- package/dist/h.ts +0 -89
- package/dist/index.ts +0 -5
- package/dist/jmx.ts +0 -186
- package/dist/jsx.ts +0 -748
- package/dist/lib.ts +0 -29
package/dist/jsx.ts
DELETED
|
@@ -1,748 +0,0 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-empty-interface */
|
|
2
|
-
/* eslint-disable @typescript-eslint/ban-types */
|
|
3
|
-
// This code is based on react definition in DefinitelyTyped published under the MIT license.
|
|
4
|
-
// Repository: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
5
|
-
// Path in the repository: types/react/v15/index.d.ts
|
|
6
|
-
//
|
|
7
|
-
// Copyrights of original definition are:
|
|
8
|
-
// Asana <https://asana.com>
|
|
9
|
-
// AssureSign <http://www.assuresign.com>
|
|
10
|
-
// Microsoft <https://microsoft.com>
|
|
11
|
-
// John Reilly <https://github.com/johnnyreilly/>
|
|
12
|
-
// Benoit Benezech <https://github.com/bbenezech>
|
|
13
|
-
// Patricio Zavolinsky <https://github.com/pzavolinsky>
|
|
14
|
-
// Digiguru <https://github.com/digiguru>
|
|
15
|
-
// Eric Anderson <https://github.com/ericanderson>
|
|
16
|
-
// Albert Kurniawan <https://github.com/morcerf>
|
|
17
|
-
// Tanguy Krotoff <https://github.com/tkrotoff>
|
|
18
|
-
// Dovydas Navickas <https://github.com/DovydasNavickas>
|
|
19
|
-
// Stéphane Goetz <https://github.com/onigoetz>
|
|
20
|
-
|
|
21
|
-
declare global {
|
|
22
|
-
namespace JSX {
|
|
23
|
-
interface IntrinsicElements extends IntrinsicElementAttributes {
|
|
24
|
-
// additional attributes for selected elements
|
|
25
|
-
// label: HTMLAttributes & { bunny: number }
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
}
|
|
29
|
-
|
|
30
|
-
interface EventHandler<E extends Event> {
|
|
31
|
-
(event: E): void
|
|
32
|
-
}
|
|
33
|
-
|
|
34
|
-
export interface AdditionalElementAttributes {
|
|
35
|
-
mounted?: (n:Node) => void
|
|
36
|
-
update?: (n:Node, uc:IUpdateContext) => void
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
export interface HTMLAttributes extends AdditionalElementAttributes {
|
|
40
|
-
class?: string
|
|
41
|
-
style?: string
|
|
42
|
-
accesskey?: string
|
|
43
|
-
contenteditable?: boolean
|
|
44
|
-
contextmenu?: string
|
|
45
|
-
dir?: string
|
|
46
|
-
disabled?: boolean
|
|
47
|
-
draggable?: boolean
|
|
48
|
-
hidden?: boolean
|
|
49
|
-
id?: string
|
|
50
|
-
lang?: string
|
|
51
|
-
spellcheck?: boolean
|
|
52
|
-
tabindex?: number
|
|
53
|
-
title?: string
|
|
54
|
-
role?: string
|
|
55
|
-
|
|
56
|
-
// clipboard events
|
|
57
|
-
onCopy?: ClipboardEvent
|
|
58
|
-
onCut?: ClipboardEvent
|
|
59
|
-
onPaste?: ClipboardEvent
|
|
60
|
-
|
|
61
|
-
// composition events
|
|
62
|
-
onCompositionend?: CompositionEvent
|
|
63
|
-
onCompositionstart?: CompositionEvent
|
|
64
|
-
onCompositionupdate?: CompositionEvent
|
|
65
|
-
|
|
66
|
-
// drag drop events
|
|
67
|
-
ondrag?: EventHandler<DragEvent>
|
|
68
|
-
ondragend?: EventHandler<DragEvent>
|
|
69
|
-
ondragenter?: EventHandler<DragEvent>
|
|
70
|
-
ondragexit?: EventHandler<DragEvent>
|
|
71
|
-
ondragleave?: EventHandler<DragEvent>
|
|
72
|
-
ondragover?: EventHandler<DragEvent>
|
|
73
|
-
ondragstart?: EventHandler<DragEvent>
|
|
74
|
-
ondrop?: EventHandler<DragEvent>
|
|
75
|
-
|
|
76
|
-
// focus events
|
|
77
|
-
onfocus?: (ev: FocusEvent) => void
|
|
78
|
-
onfocusout?: (ev: FocusEvent) => void
|
|
79
|
-
onblur?: (ev: FocusEvent) => void
|
|
80
|
-
|
|
81
|
-
// form events
|
|
82
|
-
onchange?: EventHandler<Event>
|
|
83
|
-
oninput?: EventHandler<Event>
|
|
84
|
-
onreset?: EventHandler<Event>
|
|
85
|
-
onsubmit?: EventHandler<Event>
|
|
86
|
-
oninvalid?: EventHandler<Event>
|
|
87
|
-
|
|
88
|
-
// image events
|
|
89
|
-
onload?: EventHandler<Event>
|
|
90
|
-
onerror?: EventHandler<Event>
|
|
91
|
-
|
|
92
|
-
// keyboard events
|
|
93
|
-
onkeydown?: EventHandler<KeyboardEvent>
|
|
94
|
-
onkeypress?: EventHandler<KeyboardEvent>
|
|
95
|
-
onkeyup?: EventHandler<KeyboardEvent>
|
|
96
|
-
|
|
97
|
-
// mouse events
|
|
98
|
-
onclick?: EventHandler<MouseEvent>
|
|
99
|
-
oncontextmenu?: EventHandler<MouseEvent>
|
|
100
|
-
ondblclick?: EventHandler<MouseEvent>
|
|
101
|
-
onmousedown?: EventHandler<MouseEvent>
|
|
102
|
-
onmouseenter?: EventHandler<MouseEvent>
|
|
103
|
-
onmouseleave?: EventHandler<MouseEvent>
|
|
104
|
-
onmousemove?: EventHandler<MouseEvent>
|
|
105
|
-
onmouseout?: EventHandler<MouseEvent>
|
|
106
|
-
onmouseover?: EventHandler<MouseEvent>
|
|
107
|
-
onmouseup?: EventHandler<MouseEvent>
|
|
108
|
-
|
|
109
|
-
// media events
|
|
110
|
-
onAbort?: EventHandler<Event>
|
|
111
|
-
onCanplay?: EventHandler<Event>
|
|
112
|
-
onCanplaythrough?: EventHandler<Event>
|
|
113
|
-
onDurationchange?: EventHandler<Event>
|
|
114
|
-
onEmptied?: EventHandler<Event>
|
|
115
|
-
onEncrypted?: EventHandler<Event>
|
|
116
|
-
onEnded?: EventHandler<Event>
|
|
117
|
-
onLoadeddata?: EventHandler<Event>
|
|
118
|
-
onLoadedmetadata?: EventHandler<Event>
|
|
119
|
-
onLoadstart?: EventHandler<Event>
|
|
120
|
-
onPause?: EventHandler<Event>
|
|
121
|
-
onPlay?: EventHandler<Event>
|
|
122
|
-
onPlaying?: EventHandler<Event>
|
|
123
|
-
onProgress?: EventHandler<Event>
|
|
124
|
-
onRatechange?: EventHandler<Event>
|
|
125
|
-
onSeeked?: EventHandler<Event>
|
|
126
|
-
onSeeking?: EventHandler<Event>
|
|
127
|
-
onStalled?: EventHandler<Event>
|
|
128
|
-
onSuspend?: EventHandler<Event>
|
|
129
|
-
onTimeupdate?: EventHandler<Event>
|
|
130
|
-
onVolumechange?: EventHandler<Event>
|
|
131
|
-
onWaiting?: EventHandler<Event>
|
|
132
|
-
|
|
133
|
-
// selection events
|
|
134
|
-
onSelect?: EventHandler<Event>
|
|
135
|
-
|
|
136
|
-
// UI events
|
|
137
|
-
onScroll?: UIEvent
|
|
138
|
-
|
|
139
|
-
// touch events
|
|
140
|
-
onTouchcancel?: TouchEvent
|
|
141
|
-
onTouchend?: TouchEvent
|
|
142
|
-
onTouchmove?: TouchEvent
|
|
143
|
-
onTouchstart?: TouchEvent
|
|
144
|
-
|
|
145
|
-
// wheel events
|
|
146
|
-
onWheel?: WheelEvent
|
|
147
|
-
|
|
148
|
-
// animation events
|
|
149
|
-
onAnimationstart?: AnimationEvent
|
|
150
|
-
onAnimationend?: AnimationEvent
|
|
151
|
-
onAnimationiteration?: AnimationEvent
|
|
152
|
-
|
|
153
|
-
// transition events
|
|
154
|
-
onTransitionend?: TransitionEvent
|
|
155
|
-
onTransitionstart?: TransitionEvent
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
export interface AnchorHTMLAttributes extends HTMLAttributes {
|
|
159
|
-
download?: any
|
|
160
|
-
href?: string
|
|
161
|
-
hreflang?: string
|
|
162
|
-
media?: string
|
|
163
|
-
rel?: string
|
|
164
|
-
target?: string
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
export interface AreaHTMLAttributes extends HTMLAttributes {
|
|
168
|
-
alt?: string
|
|
169
|
-
coord?: string
|
|
170
|
-
download?: any
|
|
171
|
-
href?: string
|
|
172
|
-
hreflang?: string
|
|
173
|
-
media?: string
|
|
174
|
-
rel?: string
|
|
175
|
-
shape?: string
|
|
176
|
-
target?: string
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
export interface AudioHTMLAttributes extends MediaHTMLAttributes { }
|
|
180
|
-
|
|
181
|
-
export interface BaseHTMLAttributes extends HTMLAttributes {
|
|
182
|
-
href?: string
|
|
183
|
-
target?: string
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
export interface BlockquoteHTMLAttributes extends HTMLAttributes {
|
|
187
|
-
cite?: string
|
|
188
|
-
}
|
|
189
|
-
|
|
190
|
-
export interface ButtonHTMLAttributes extends HTMLAttributes {
|
|
191
|
-
autofocus?: boolean
|
|
192
|
-
disabled?: boolean
|
|
193
|
-
form?: string
|
|
194
|
-
formaction?: string
|
|
195
|
-
formenctype?: string
|
|
196
|
-
formmethod?: string
|
|
197
|
-
formnovalidate?: boolean
|
|
198
|
-
formtarget?: string
|
|
199
|
-
name?: string
|
|
200
|
-
type?: string
|
|
201
|
-
value?: string | string[] | number
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
export interface CanvasHTMLAttributes extends HTMLAttributes {
|
|
205
|
-
height?: number | string
|
|
206
|
-
width?: number | string
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
export interface ColHTMLAttributes extends HTMLAttributes {
|
|
210
|
-
span?: number
|
|
211
|
-
}
|
|
212
|
-
|
|
213
|
-
export interface ColgroupHTMLAttributes extends ColHTMLAttributes { }
|
|
214
|
-
|
|
215
|
-
export interface DetailsHTMLAttributes extends HTMLAttributes {
|
|
216
|
-
open?: boolean
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
export interface DelHTMLAttributes extends HTMLAttributes {
|
|
220
|
-
cite?: string
|
|
221
|
-
datetime?: string
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
export interface EmbedHTMLAttributes extends HTMLAttributes {
|
|
225
|
-
height?: number | string
|
|
226
|
-
src?: string
|
|
227
|
-
type?: string
|
|
228
|
-
width?: number | string
|
|
229
|
-
}
|
|
230
|
-
|
|
231
|
-
export interface FieldsetHTMLAttributes extends HTMLAttributes {
|
|
232
|
-
disabled?: boolean
|
|
233
|
-
form?: string
|
|
234
|
-
name?: string
|
|
235
|
-
}
|
|
236
|
-
|
|
237
|
-
export interface FormHTMLAttributes extends HTMLAttributes {
|
|
238
|
-
acceptcharset?: string
|
|
239
|
-
action?: string
|
|
240
|
-
autocomplete?: string
|
|
241
|
-
enctype?: string
|
|
242
|
-
method?: string
|
|
243
|
-
name?: string
|
|
244
|
-
novalidate?: boolean
|
|
245
|
-
target?: string
|
|
246
|
-
}
|
|
247
|
-
|
|
248
|
-
export interface HtmlHTMLAttributes extends HTMLAttributes {
|
|
249
|
-
manifest?: string
|
|
250
|
-
}
|
|
251
|
-
|
|
252
|
-
export interface IframeHTMLAttributes extends HTMLAttributes {
|
|
253
|
-
allowfullscreen?: boolean
|
|
254
|
-
allowtransparency?: boolean
|
|
255
|
-
frameborder?: number | string
|
|
256
|
-
height?: number | string
|
|
257
|
-
marginheight?: number
|
|
258
|
-
marginwidth?: number
|
|
259
|
-
name?: string
|
|
260
|
-
sandbox?: string
|
|
261
|
-
scrolling?: string
|
|
262
|
-
seamless?: boolean
|
|
263
|
-
src?: string
|
|
264
|
-
srcdoc?: string
|
|
265
|
-
width?: number | string
|
|
266
|
-
}
|
|
267
|
-
|
|
268
|
-
export interface ImgHTMLAttributes extends HTMLAttributes {
|
|
269
|
-
alt?: string
|
|
270
|
-
height?: number | string
|
|
271
|
-
sizes?: string
|
|
272
|
-
src?: string
|
|
273
|
-
srcset?: string
|
|
274
|
-
usemap?: string
|
|
275
|
-
width?: number | string
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
export interface InsHTMLAttributes extends HTMLAttributes {
|
|
279
|
-
cite?: string
|
|
280
|
-
datetime?: string
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
export interface InputHTMLAttributes extends HTMLAttributes {
|
|
284
|
-
accept?: string
|
|
285
|
-
alt?: string
|
|
286
|
-
autocomplete?: string
|
|
287
|
-
autofocus?: boolean
|
|
288
|
-
capture?: boolean // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
|
|
289
|
-
checked?: boolean
|
|
290
|
-
crossorigin?: string
|
|
291
|
-
disabled?: boolean
|
|
292
|
-
form?: string
|
|
293
|
-
formaction?: string
|
|
294
|
-
formenctype?: string
|
|
295
|
-
formmethod?: string
|
|
296
|
-
formnovalidate?: boolean
|
|
297
|
-
formtarget?: string
|
|
298
|
-
height?: number | string
|
|
299
|
-
list?: string
|
|
300
|
-
max?: number | string
|
|
301
|
-
maxlength?: number
|
|
302
|
-
min?: number | string
|
|
303
|
-
minlength?: number
|
|
304
|
-
multiple?: boolean
|
|
305
|
-
name?: string
|
|
306
|
-
pattern?: string
|
|
307
|
-
placeholder?: string
|
|
308
|
-
readonly?: boolean
|
|
309
|
-
required?: boolean
|
|
310
|
-
size?: number
|
|
311
|
-
src?: string
|
|
312
|
-
step?: number | string
|
|
313
|
-
type?: string
|
|
314
|
-
value?: string | string[] | number
|
|
315
|
-
width?: number | string
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
export interface KeygenHTMLAttributes extends HTMLAttributes {
|
|
319
|
-
autofocus?: boolean
|
|
320
|
-
challenge?: string
|
|
321
|
-
disabled?: boolean
|
|
322
|
-
form?: string
|
|
323
|
-
keytype?: string
|
|
324
|
-
keyparams?: string
|
|
325
|
-
name?: string
|
|
326
|
-
}
|
|
327
|
-
|
|
328
|
-
export interface LabelHTMLAttributes extends HTMLAttributes {
|
|
329
|
-
form?: string
|
|
330
|
-
for?: string
|
|
331
|
-
}
|
|
332
|
-
|
|
333
|
-
export interface LiHTMLAttributes extends HTMLAttributes {
|
|
334
|
-
value?: string | string[] | number
|
|
335
|
-
}
|
|
336
|
-
|
|
337
|
-
export interface LinkHTMLAttributes extends HTMLAttributes {
|
|
338
|
-
href?: string
|
|
339
|
-
hreflang?: string
|
|
340
|
-
integrity?: string
|
|
341
|
-
media?: string
|
|
342
|
-
rel?: string
|
|
343
|
-
sizes?: string
|
|
344
|
-
type?: string
|
|
345
|
-
}
|
|
346
|
-
|
|
347
|
-
export interface MapHTMLAttributes extends HTMLAttributes {
|
|
348
|
-
name?: string
|
|
349
|
-
}
|
|
350
|
-
|
|
351
|
-
export interface MenuHTMLAttributes extends HTMLAttributes {
|
|
352
|
-
type?: string
|
|
353
|
-
}
|
|
354
|
-
|
|
355
|
-
export interface MediaHTMLAttributes extends HTMLAttributes {
|
|
356
|
-
autoplay?: boolean
|
|
357
|
-
controls?: boolean
|
|
358
|
-
crossorigin?: string
|
|
359
|
-
loop?: boolean
|
|
360
|
-
mediagroup?: string
|
|
361
|
-
muted?: boolean
|
|
362
|
-
preload?: string
|
|
363
|
-
src?: string
|
|
364
|
-
}
|
|
365
|
-
|
|
366
|
-
export interface MetaHTMLAttributes extends HTMLAttributes {
|
|
367
|
-
charset?: string
|
|
368
|
-
content?: string
|
|
369
|
-
httpequiv?: string
|
|
370
|
-
name?: string
|
|
371
|
-
}
|
|
372
|
-
|
|
373
|
-
export interface MeterHTMLAttributes extends HTMLAttributes {
|
|
374
|
-
form?: string
|
|
375
|
-
high?: number
|
|
376
|
-
low?: number
|
|
377
|
-
max?: number | string
|
|
378
|
-
min?: number | string
|
|
379
|
-
optimum?: number
|
|
380
|
-
value?: string | string[] | number
|
|
381
|
-
}
|
|
382
|
-
|
|
383
|
-
export interface QuoteHTMLAttributes extends HTMLAttributes {
|
|
384
|
-
cite?: string
|
|
385
|
-
}
|
|
386
|
-
|
|
387
|
-
export interface ObjectHTMLAttributes extends HTMLAttributes {
|
|
388
|
-
classid?: string
|
|
389
|
-
data?: string
|
|
390
|
-
form?: string
|
|
391
|
-
height?: number | string
|
|
392
|
-
name?: string
|
|
393
|
-
type?: string
|
|
394
|
-
usemap?: string
|
|
395
|
-
width?: number | string
|
|
396
|
-
wmode?: string
|
|
397
|
-
}
|
|
398
|
-
|
|
399
|
-
export interface OlHTMLAttributes extends HTMLAttributes {
|
|
400
|
-
reversed?: boolean
|
|
401
|
-
start?: number
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
export interface OptgroupHTMLAttributes extends HTMLAttributes {
|
|
405
|
-
disabled?: boolean
|
|
406
|
-
label?: string
|
|
407
|
-
}
|
|
408
|
-
|
|
409
|
-
export interface OptionHTMLAttributes extends HTMLAttributes {
|
|
410
|
-
disabled?: boolean
|
|
411
|
-
label?: string
|
|
412
|
-
selected?: boolean
|
|
413
|
-
value?: string | string[] | number
|
|
414
|
-
}
|
|
415
|
-
|
|
416
|
-
export interface OutputHTMLAttributes extends HTMLAttributes {
|
|
417
|
-
form?: string
|
|
418
|
-
htmlfor?: string
|
|
419
|
-
name?: string
|
|
420
|
-
}
|
|
421
|
-
|
|
422
|
-
export interface ParamHTMLAttributes extends HTMLAttributes {
|
|
423
|
-
name?: string
|
|
424
|
-
value?: string | string[] | number
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
export interface ProgressHTMLAttributes extends HTMLAttributes {
|
|
428
|
-
max?: number | string
|
|
429
|
-
value?: string | string[] | number
|
|
430
|
-
}
|
|
431
|
-
|
|
432
|
-
export interface ScriptHTMLAttributes extends HTMLAttributes {
|
|
433
|
-
async?: boolean
|
|
434
|
-
charset?: string
|
|
435
|
-
crossorigin?: string
|
|
436
|
-
defer?: boolean
|
|
437
|
-
integrity?: string
|
|
438
|
-
nonce?: string
|
|
439
|
-
src?: string
|
|
440
|
-
type?: string
|
|
441
|
-
}
|
|
442
|
-
|
|
443
|
-
export interface SelectHTMLAttributes extends HTMLAttributes {
|
|
444
|
-
autofocus?: boolean
|
|
445
|
-
disabled?: boolean
|
|
446
|
-
form?: string
|
|
447
|
-
multiple?: boolean
|
|
448
|
-
name?: string
|
|
449
|
-
required?: boolean
|
|
450
|
-
size?: number
|
|
451
|
-
value?: string | string[] | number
|
|
452
|
-
}
|
|
453
|
-
|
|
454
|
-
export interface SourceHTMLAttributes extends HTMLAttributes {
|
|
455
|
-
media?: string
|
|
456
|
-
sizes?: string
|
|
457
|
-
src?: string
|
|
458
|
-
srcset?: string
|
|
459
|
-
type?: string
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
export interface StyleHTMLAttributes extends HTMLAttributes {
|
|
463
|
-
media?: string
|
|
464
|
-
nonce?: string
|
|
465
|
-
scoped?: boolean
|
|
466
|
-
type?: string
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
export interface TableHTMLAttributes extends HTMLAttributes {
|
|
470
|
-
cellpadding?: number | string
|
|
471
|
-
cellspacing?: number | string
|
|
472
|
-
summary?: string
|
|
473
|
-
}
|
|
474
|
-
|
|
475
|
-
export interface TextareaHTMLAttributes extends HTMLAttributes {
|
|
476
|
-
autocomplete?: string
|
|
477
|
-
autofocus?: boolean
|
|
478
|
-
cols?: number
|
|
479
|
-
dirname?: string
|
|
480
|
-
disabled?: boolean
|
|
481
|
-
form?: string
|
|
482
|
-
maxlength?: number
|
|
483
|
-
minlength?: number
|
|
484
|
-
name?: string
|
|
485
|
-
placeholder?: string
|
|
486
|
-
readonly?: boolean
|
|
487
|
-
required?: boolean
|
|
488
|
-
rows?: number
|
|
489
|
-
value?: string | string[] | number
|
|
490
|
-
wrap?: string
|
|
491
|
-
}
|
|
492
|
-
|
|
493
|
-
export interface TdHTMLAttributes extends HTMLAttributes {
|
|
494
|
-
colspan?: number
|
|
495
|
-
headers?: string
|
|
496
|
-
rowspan?: number
|
|
497
|
-
}
|
|
498
|
-
|
|
499
|
-
export interface ThHTMLAttributes extends HTMLAttributes {
|
|
500
|
-
colspan?: number
|
|
501
|
-
headers?: string
|
|
502
|
-
rowspan?: number
|
|
503
|
-
scope?: string
|
|
504
|
-
}
|
|
505
|
-
|
|
506
|
-
export interface TimeHTMLAttributes extends HTMLAttributes {
|
|
507
|
-
datetime?: string
|
|
508
|
-
}
|
|
509
|
-
|
|
510
|
-
export interface TrackHTMLAttributes extends HTMLAttributes {
|
|
511
|
-
default?: boolean
|
|
512
|
-
kind?: string
|
|
513
|
-
label?: string
|
|
514
|
-
src?: string
|
|
515
|
-
srclang?: string
|
|
516
|
-
}
|
|
517
|
-
|
|
518
|
-
export interface VideoHTMLAttributes extends MediaHTMLAttributes {
|
|
519
|
-
height?: number | string
|
|
520
|
-
playsinline?: boolean
|
|
521
|
-
poster?: string
|
|
522
|
-
width?: number | string
|
|
523
|
-
}
|
|
524
|
-
|
|
525
|
-
export interface AllHTMLAttributes extends HTMLAttributes {
|
|
526
|
-
accept?: string
|
|
527
|
-
acceptcharset?: string
|
|
528
|
-
action?: boolean
|
|
529
|
-
allowfullscreen?: boolean
|
|
530
|
-
allowtransparency?: boolean
|
|
531
|
-
alt?: string
|
|
532
|
-
async?: boolean
|
|
533
|
-
autocomplete?: string
|
|
534
|
-
autofocus?: boolean
|
|
535
|
-
autoplay?: boolean
|
|
536
|
-
capture?: boolean // https://www.w3.org/tr/html-media-capture/#the-capture-attribute
|
|
537
|
-
cellpadding?: number | string
|
|
538
|
-
cellspacing?: number | string
|
|
539
|
-
challenge?: string
|
|
540
|
-
charset?: string
|
|
541
|
-
checked?: boolean
|
|
542
|
-
cite?: string
|
|
543
|
-
classid?: string
|
|
544
|
-
cols?: number
|
|
545
|
-
colspan?: number
|
|
546
|
-
content?: string
|
|
547
|
-
controls?: boolean
|
|
548
|
-
coord?: string
|
|
549
|
-
crossorigin?: string
|
|
550
|
-
data?: string
|
|
551
|
-
datetime?: string
|
|
552
|
-
default?: boolean
|
|
553
|
-
defer?: boolean
|
|
554
|
-
dirname?: string
|
|
555
|
-
disabled?: boolean
|
|
556
|
-
download?: any
|
|
557
|
-
enctype?: string
|
|
558
|
-
form?: string
|
|
559
|
-
formaction?: string
|
|
560
|
-
formenctype?: string
|
|
561
|
-
formmethod?: string
|
|
562
|
-
formnovalidate?: boolean
|
|
563
|
-
formtarget?: string
|
|
564
|
-
frameborder?: number | string
|
|
565
|
-
headers?: string
|
|
566
|
-
height?: number | string
|
|
567
|
-
high?: number
|
|
568
|
-
href?: string
|
|
569
|
-
hreflang?: string
|
|
570
|
-
htmlfor?: string
|
|
571
|
-
httpequiv?: string
|
|
572
|
-
integrity?: string
|
|
573
|
-
keyparams?: string
|
|
574
|
-
keytype?: string
|
|
575
|
-
kind?: string
|
|
576
|
-
label?: string
|
|
577
|
-
list?: string
|
|
578
|
-
loop?: boolean
|
|
579
|
-
low?: number
|
|
580
|
-
manifest?: string
|
|
581
|
-
marginheight?: number
|
|
582
|
-
marginwidth?: number
|
|
583
|
-
max?: number | string
|
|
584
|
-
maxlength?: number
|
|
585
|
-
media?: string
|
|
586
|
-
mediagroup?: string
|
|
587
|
-
method?: string
|
|
588
|
-
min?: number | string
|
|
589
|
-
minlength?: number
|
|
590
|
-
multiple?: boolean
|
|
591
|
-
muted?: boolean
|
|
592
|
-
name?: string
|
|
593
|
-
nonce?: string
|
|
594
|
-
novalidate?: boolean
|
|
595
|
-
open?: boolean
|
|
596
|
-
optimum?: number
|
|
597
|
-
pattern?: string
|
|
598
|
-
placeholder?: string
|
|
599
|
-
playsinline?: boolean
|
|
600
|
-
poster?: string
|
|
601
|
-
preload?: string
|
|
602
|
-
readonly?: boolean
|
|
603
|
-
rel?: string
|
|
604
|
-
required?: boolean
|
|
605
|
-
reversed?: boolean
|
|
606
|
-
rows?: number
|
|
607
|
-
rowspan?: number
|
|
608
|
-
sandbox?: string
|
|
609
|
-
scope?: string
|
|
610
|
-
scoped?: boolean
|
|
611
|
-
scrolling?: string
|
|
612
|
-
seamless?: boolean
|
|
613
|
-
selected?: boolean
|
|
614
|
-
shape?: string
|
|
615
|
-
size?: number
|
|
616
|
-
sizes?: string
|
|
617
|
-
span?: number
|
|
618
|
-
src?: string
|
|
619
|
-
srcdoc?: string
|
|
620
|
-
srclang?: string
|
|
621
|
-
srcset?: string
|
|
622
|
-
start?: number
|
|
623
|
-
step?: number | string
|
|
624
|
-
summary?: string
|
|
625
|
-
target?: string
|
|
626
|
-
type?: string
|
|
627
|
-
usemap?: string
|
|
628
|
-
value?: string | string[] | number
|
|
629
|
-
width?: number | string
|
|
630
|
-
wmode?: string
|
|
631
|
-
wrap?: string
|
|
632
|
-
}
|
|
633
|
-
|
|
634
|
-
export interface IntrinsicElementAttributes {
|
|
635
|
-
a: AnchorHTMLAttributes
|
|
636
|
-
abbr: HTMLAttributes
|
|
637
|
-
address: HTMLAttributes
|
|
638
|
-
area: AreaHTMLAttributes
|
|
639
|
-
article: HTMLAttributes
|
|
640
|
-
aside: HTMLAttributes
|
|
641
|
-
audio: AudioHTMLAttributes
|
|
642
|
-
b: HTMLAttributes
|
|
643
|
-
base: BaseHTMLAttributes
|
|
644
|
-
bdi: HTMLAttributes
|
|
645
|
-
bdo: HTMLAttributes
|
|
646
|
-
big: HTMLAttributes
|
|
647
|
-
blockquote: BlockquoteHTMLAttributes
|
|
648
|
-
body: HTMLAttributes
|
|
649
|
-
br: HTMLAttributes
|
|
650
|
-
button: ButtonHTMLAttributes
|
|
651
|
-
canvas: CanvasHTMLAttributes
|
|
652
|
-
caption: HTMLAttributes
|
|
653
|
-
cite: HTMLAttributes
|
|
654
|
-
code: HTMLAttributes
|
|
655
|
-
col: ColHTMLAttributes
|
|
656
|
-
colgroup: ColgroupHTMLAttributes
|
|
657
|
-
data: HTMLAttributes
|
|
658
|
-
datalist: HTMLAttributes
|
|
659
|
-
dd: HTMLAttributes
|
|
660
|
-
del: DelHTMLAttributes
|
|
661
|
-
details: DetailsHTMLAttributes
|
|
662
|
-
dfn: HTMLAttributes
|
|
663
|
-
dialog: HTMLAttributes
|
|
664
|
-
div: HTMLAttributes
|
|
665
|
-
dl: HTMLAttributes
|
|
666
|
-
dt: HTMLAttributes
|
|
667
|
-
em: HTMLAttributes
|
|
668
|
-
embed: EmbedHTMLAttributes
|
|
669
|
-
fieldset: FieldsetHTMLAttributes
|
|
670
|
-
figcaption: HTMLAttributes
|
|
671
|
-
figure: HTMLAttributes
|
|
672
|
-
footer: HTMLAttributes
|
|
673
|
-
form: FormHTMLAttributes
|
|
674
|
-
h1: HTMLAttributes
|
|
675
|
-
h2: HTMLAttributes
|
|
676
|
-
h3: HTMLAttributes
|
|
677
|
-
h4: HTMLAttributes
|
|
678
|
-
h5: HTMLAttributes
|
|
679
|
-
h6: HTMLAttributes
|
|
680
|
-
head: HTMLAttributes
|
|
681
|
-
header: HTMLAttributes
|
|
682
|
-
hgroup: HTMLAttributes
|
|
683
|
-
hr: HTMLAttributes
|
|
684
|
-
html: HtmlHTMLAttributes
|
|
685
|
-
i: HTMLAttributes
|
|
686
|
-
iframe: IframeHTMLAttributes
|
|
687
|
-
img: ImgHTMLAttributes
|
|
688
|
-
input: InputHTMLAttributes
|
|
689
|
-
ins: InsHTMLAttributes
|
|
690
|
-
kbd: HTMLAttributes
|
|
691
|
-
keygen: KeygenHTMLAttributes
|
|
692
|
-
label: LabelHTMLAttributes
|
|
693
|
-
legend: HTMLAttributes
|
|
694
|
-
li: LiHTMLAttributes
|
|
695
|
-
link: LinkHTMLAttributes
|
|
696
|
-
main: HTMLAttributes
|
|
697
|
-
map: MapHTMLAttributes
|
|
698
|
-
mark: HTMLAttributes
|
|
699
|
-
menu: MenuHTMLAttributes
|
|
700
|
-
menuitem: HTMLAttributes
|
|
701
|
-
meta: MetaHTMLAttributes
|
|
702
|
-
meter: MeterHTMLAttributes
|
|
703
|
-
nav: HTMLAttributes
|
|
704
|
-
noscript: HTMLAttributes
|
|
705
|
-
object: ObjectHTMLAttributes
|
|
706
|
-
ol: OlHTMLAttributes
|
|
707
|
-
optgroup: OptgroupHTMLAttributes
|
|
708
|
-
option: OptionHTMLAttributes
|
|
709
|
-
output: OutputHTMLAttributes
|
|
710
|
-
p: HTMLAttributes
|
|
711
|
-
param: ParamHTMLAttributes
|
|
712
|
-
picture: HTMLAttributes
|
|
713
|
-
pre: HTMLAttributes
|
|
714
|
-
progress: ProgressHTMLAttributes
|
|
715
|
-
q: QuoteHTMLAttributes
|
|
716
|
-
rp: HTMLAttributes
|
|
717
|
-
rt: HTMLAttributes
|
|
718
|
-
ruby: HTMLAttributes
|
|
719
|
-
s: HTMLAttributes
|
|
720
|
-
samp: HTMLAttributes
|
|
721
|
-
script: ScriptHTMLAttributes
|
|
722
|
-
section: HTMLAttributes
|
|
723
|
-
select: SelectHTMLAttributes
|
|
724
|
-
small: HTMLAttributes
|
|
725
|
-
source: SourceHTMLAttributes
|
|
726
|
-
span: HTMLAttributes
|
|
727
|
-
strong: HTMLAttributes
|
|
728
|
-
style: StyleHTMLAttributes
|
|
729
|
-
sub: HTMLAttributes
|
|
730
|
-
summary: HTMLAttributes
|
|
731
|
-
sup: HTMLAttributes
|
|
732
|
-
table: TableHTMLAttributes
|
|
733
|
-
tbody: HTMLAttributes
|
|
734
|
-
td: TdHTMLAttributes
|
|
735
|
-
textarea: TextareaHTMLAttributes
|
|
736
|
-
tfoot: HTMLAttributes
|
|
737
|
-
th: ThHTMLAttributes
|
|
738
|
-
thead: HTMLAttributes
|
|
739
|
-
time: TimeHTMLAttributes
|
|
740
|
-
title: HTMLAttributes
|
|
741
|
-
tr: HTMLAttributes
|
|
742
|
-
track: TrackHTMLAttributes
|
|
743
|
-
u: HTMLAttributes
|
|
744
|
-
ul: HTMLAttributes
|
|
745
|
-
var: HTMLAttributes
|
|
746
|
-
video: VideoHTMLAttributes
|
|
747
|
-
wbr: HTMLAttributes
|
|
748
|
-
}
|