@typed/ui 0.3.3 → 0.3.5
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/Component/package.json +6 -0
- package/Props/package.json +6 -0
- package/dist/cjs/Anchor.js +3 -85
- package/dist/cjs/Anchor.js.map +1 -1
- package/dist/cjs/Component.js +6 -0
- package/dist/cjs/Component.js.map +1 -0
- package/dist/cjs/Link.js +2 -3
- package/dist/cjs/Link.js.map +1 -1
- package/dist/cjs/Props.js +26 -0
- package/dist/cjs/Props.js.map +1 -0
- package/dist/cjs/dom-properties.js.map +1 -0
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/useClickAway.js.map +1 -1
- package/dist/dts/Anchor.d.ts +5 -56
- package/dist/dts/Anchor.d.ts.map +1 -1
- package/dist/dts/Component.d.ts +16 -0
- package/dist/dts/Component.d.ts.map +1 -0
- package/dist/dts/Link.d.ts +1 -1
- package/dist/dts/Link.d.ts.map +1 -1
- package/dist/dts/Props.d.ts +60 -0
- package/dist/dts/Props.d.ts.map +1 -0
- package/dist/dts/{internal/dom-properties.d.ts → dom-properties.d.ts} +258 -39
- package/dist/dts/dom-properties.d.ts.map +1 -0
- package/dist/dts/index.d.ts.map +1 -1
- package/dist/esm/Anchor.js +1 -65
- package/dist/esm/Anchor.js.map +1 -1
- package/dist/esm/Component.js +5 -0
- package/dist/esm/Component.js.map +1 -0
- package/dist/esm/Link.js +4 -3
- package/dist/esm/Link.js.map +1 -1
- package/dist/esm/Props.js +19 -0
- package/dist/esm/Props.js.map +1 -0
- package/dist/esm/dom-properties.js +5 -0
- package/dist/esm/dom-properties.js.map +1 -0
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/useClickAway.js.map +1 -1
- package/dom-properties/package.json +6 -0
- package/package.json +36 -12
- package/src/Anchor.ts +6 -190
- package/src/Component.ts +24 -0
- package/src/Link.ts +12 -39
- package/src/Props.ts +95 -0
- package/src/{internal/dom-properties.ts → dom-properties.ts} +260 -40
- package/src/index.ts +1 -0
- package/src/useClickAway.ts +1 -1
- package/dist/cjs/internal/dom-properties.js.map +0 -1
- package/dist/dts/internal/dom-properties.d.ts.map +0 -1
- package/dist/esm/internal/dom-properties.js +0 -2
- package/dist/esm/internal/dom-properties.js.map +0 -1
- /package/dist/cjs/{internal/dom-properties.js → dom-properties.js} +0 -0
|
@@ -1,52 +1,68 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @since 1.0.0
|
|
7
|
+
*/
|
|
1
8
|
export type ElementProperties = {
|
|
2
|
-
className?: string | undefined
|
|
3
|
-
id?: string | undefined
|
|
4
|
-
scrollLeft?: number | undefined
|
|
5
|
-
scrollTop?: number | undefined
|
|
6
|
-
slot?: string | undefined
|
|
9
|
+
className?: string | null | undefined
|
|
10
|
+
id?: string | null | undefined
|
|
11
|
+
scrollLeft?: number | null | undefined
|
|
12
|
+
scrollTop?: number | null | undefined
|
|
13
|
+
slot?: string | null | undefined
|
|
7
14
|
}
|
|
8
15
|
|
|
16
|
+
/**
|
|
17
|
+
* @since 1.0.0
|
|
18
|
+
*/
|
|
9
19
|
export type HTMLElementProperties =
|
|
10
20
|
& ElementProperties
|
|
11
21
|
& {
|
|
12
|
-
accessKey?: string | undefined
|
|
13
|
-
contentEditable?: string | undefined
|
|
14
|
-
dir?: string | undefined
|
|
15
|
-
draggable?: boolean | undefined
|
|
16
|
-
hidden?: boolean | undefined
|
|
17
|
-
hideFocus?: boolean | undefined
|
|
18
|
-
lang?: string | undefined
|
|
19
|
-
spellcheck?: boolean | undefined
|
|
20
|
-
tabIndex?: boolean | undefined
|
|
21
|
-
title?: string | undefined
|
|
22
|
-
}
|
|
23
|
-
|
|
22
|
+
accessKey?: string | null | undefined
|
|
23
|
+
contentEditable?: string | null | undefined
|
|
24
|
+
dir?: string | null | undefined
|
|
25
|
+
draggable?: boolean | null | undefined
|
|
26
|
+
hidden?: boolean | null | undefined
|
|
27
|
+
hideFocus?: boolean | null | undefined
|
|
28
|
+
lang?: string | null | undefined
|
|
29
|
+
spellcheck?: boolean | null | undefined
|
|
30
|
+
tabIndex?: boolean | null | undefined
|
|
31
|
+
title?: string | null | undefined
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
*/
|
|
24
37
|
export type HTMLAnchorElementProperties =
|
|
25
38
|
& HTMLElementProperties
|
|
26
39
|
& {
|
|
27
|
-
Methods?: string | undefined
|
|
28
|
-
charset?: string | undefined
|
|
29
|
-
coords?: string | undefined
|
|
30
|
-
download?: string | undefined
|
|
31
|
-
hash?: string | undefined
|
|
32
|
-
host?: string | undefined
|
|
33
|
-
hostname?: string | undefined
|
|
34
|
-
href?: string | undefined
|
|
35
|
-
hreflang?: string | undefined
|
|
36
|
-
name?: string | undefined
|
|
37
|
-
pathname?: string | undefined
|
|
38
|
-
port?: string | undefined
|
|
39
|
-
protocol?: string | undefined
|
|
40
|
-
rel?: string | undefined
|
|
41
|
-
rev?: string | undefined
|
|
42
|
-
search?: string | undefined
|
|
43
|
-
shape?: string | undefined
|
|
44
|
-
target?: string | undefined
|
|
45
|
-
text?: string | undefined
|
|
46
|
-
type?: string | undefined
|
|
47
|
-
urn?: string | undefined
|
|
48
|
-
}
|
|
49
|
-
|
|
40
|
+
Methods?: string | null | undefined
|
|
41
|
+
charset?: string | null | undefined
|
|
42
|
+
coords?: string | null | undefined
|
|
43
|
+
download?: string | null | undefined
|
|
44
|
+
hash?: string | null | undefined
|
|
45
|
+
host?: string | null | undefined
|
|
46
|
+
hostname?: string | null | undefined
|
|
47
|
+
href?: string | null | undefined
|
|
48
|
+
hreflang?: string | null | undefined
|
|
49
|
+
name?: string | null | undefined
|
|
50
|
+
pathname?: string | null | undefined
|
|
51
|
+
port?: string | null | undefined
|
|
52
|
+
protocol?: string | null | undefined
|
|
53
|
+
rel?: string | null | undefined
|
|
54
|
+
rev?: string | null | undefined
|
|
55
|
+
search?: string | null | undefined
|
|
56
|
+
shape?: string | null | undefined
|
|
57
|
+
target?: string | null | undefined
|
|
58
|
+
text?: string | null | undefined
|
|
59
|
+
type?: string | null | undefined
|
|
60
|
+
urn?: string | null | undefined
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* @since 1.0.0
|
|
65
|
+
*/
|
|
50
66
|
export type HTMLAppletElementProperties =
|
|
51
67
|
& HTMLElementProperties
|
|
52
68
|
& {
|
|
@@ -70,6 +86,9 @@ export type HTMLAppletElementProperties =
|
|
|
70
86
|
width?: number
|
|
71
87
|
}
|
|
72
88
|
|
|
89
|
+
/**
|
|
90
|
+
* @since 1.0.0
|
|
91
|
+
*/
|
|
73
92
|
export type HTMLAreaElementProperties =
|
|
74
93
|
& HTMLElementProperties
|
|
75
94
|
& {
|
|
@@ -90,14 +109,23 @@ export type HTMLAreaElementProperties =
|
|
|
90
109
|
target?: string
|
|
91
110
|
}
|
|
92
111
|
|
|
112
|
+
/**
|
|
113
|
+
* @since 1.0.0
|
|
114
|
+
*/
|
|
93
115
|
export type HTMLAudioElementProperties = HTMLElementProperties
|
|
94
116
|
|
|
117
|
+
/**
|
|
118
|
+
* @since 1.0.0
|
|
119
|
+
*/
|
|
95
120
|
export type HTMLBRElementProperties =
|
|
96
121
|
& HTMLElementProperties
|
|
97
122
|
& {
|
|
98
123
|
clear?: string
|
|
99
124
|
}
|
|
100
125
|
|
|
126
|
+
/**
|
|
127
|
+
* @since 1.0.0
|
|
128
|
+
*/
|
|
101
129
|
export type HTMLBaseElementProperties =
|
|
102
130
|
& HTMLElementProperties
|
|
103
131
|
& {
|
|
@@ -105,6 +133,9 @@ export type HTMLBaseElementProperties =
|
|
|
105
133
|
target?: string
|
|
106
134
|
}
|
|
107
135
|
|
|
136
|
+
/**
|
|
137
|
+
* @since 1.0.0
|
|
138
|
+
*/
|
|
108
139
|
export type HTMLBaseFontElementProperties =
|
|
109
140
|
& HTMLElementProperties
|
|
110
141
|
& {
|
|
@@ -112,6 +143,9 @@ export type HTMLBaseFontElementProperties =
|
|
|
112
143
|
size?: number
|
|
113
144
|
}
|
|
114
145
|
|
|
146
|
+
/**
|
|
147
|
+
* @since 1.0.0
|
|
148
|
+
*/
|
|
115
149
|
export type HTMLBodyElementProperties =
|
|
116
150
|
& HTMLElementProperties
|
|
117
151
|
& {
|
|
@@ -125,6 +159,9 @@ export type HTMLBodyElementProperties =
|
|
|
125
159
|
vLink?: any
|
|
126
160
|
}
|
|
127
161
|
|
|
162
|
+
/**
|
|
163
|
+
* @since 1.0.0
|
|
164
|
+
*/
|
|
128
165
|
export type HTMLButtonElementProperties =
|
|
129
166
|
& HTMLElementProperties
|
|
130
167
|
& {
|
|
@@ -141,6 +178,9 @@ export type HTMLButtonElementProperties =
|
|
|
141
178
|
value?: string
|
|
142
179
|
}
|
|
143
180
|
|
|
181
|
+
/**
|
|
182
|
+
* @since 1.0.0
|
|
183
|
+
*/
|
|
144
184
|
export type HTMLCanvasElementProperties =
|
|
145
185
|
& HTMLElementProperties
|
|
146
186
|
& {
|
|
@@ -148,30 +188,45 @@ export type HTMLCanvasElementProperties =
|
|
|
148
188
|
width?: number
|
|
149
189
|
}
|
|
150
190
|
|
|
191
|
+
/**
|
|
192
|
+
* @since 1.0.0
|
|
193
|
+
*/
|
|
151
194
|
export type HTMLDListElementProperties =
|
|
152
195
|
& HTMLElementProperties
|
|
153
196
|
& {
|
|
154
197
|
compact?: boolean
|
|
155
198
|
}
|
|
156
199
|
|
|
200
|
+
/**
|
|
201
|
+
* @since 1.0.0
|
|
202
|
+
*/
|
|
157
203
|
export type HTMLDataElementProperties =
|
|
158
204
|
& HTMLElementProperties
|
|
159
205
|
& {
|
|
160
206
|
value?: string
|
|
161
207
|
}
|
|
162
208
|
|
|
209
|
+
/**
|
|
210
|
+
* @since 1.0.0
|
|
211
|
+
*/
|
|
163
212
|
export type HTMLDataListElementProperties =
|
|
164
213
|
& HTMLElementProperties
|
|
165
214
|
& {
|
|
166
215
|
options?: HTMLCollectionOf<HTMLOptionElement>
|
|
167
216
|
}
|
|
168
217
|
|
|
218
|
+
/**
|
|
219
|
+
* @since 1.0.0
|
|
220
|
+
*/
|
|
169
221
|
export type HTMLDirectoryElementProperties =
|
|
170
222
|
& HTMLElementProperties
|
|
171
223
|
& {
|
|
172
224
|
compact?: boolean
|
|
173
225
|
}
|
|
174
226
|
|
|
227
|
+
/**
|
|
228
|
+
* @since 1.0.0
|
|
229
|
+
*/
|
|
175
230
|
export type HTMLDivElementProperties =
|
|
176
231
|
& HTMLElementProperties
|
|
177
232
|
& {
|
|
@@ -179,6 +234,9 @@ export type HTMLDivElementProperties =
|
|
|
179
234
|
noWrap?: boolean
|
|
180
235
|
}
|
|
181
236
|
|
|
237
|
+
/**
|
|
238
|
+
* @since 1.0.0
|
|
239
|
+
*/
|
|
182
240
|
export type HTMLEmbedElementProperties =
|
|
183
241
|
& HTMLElementProperties
|
|
184
242
|
& {
|
|
@@ -193,6 +251,9 @@ export type HTMLEmbedElementProperties =
|
|
|
193
251
|
width?: string
|
|
194
252
|
}
|
|
195
253
|
|
|
254
|
+
/**
|
|
255
|
+
* @since 1.0.0
|
|
256
|
+
*/
|
|
196
257
|
export type HTMLFieldSetElementProperties =
|
|
197
258
|
& HTMLElementProperties
|
|
198
259
|
& {
|
|
@@ -201,12 +262,18 @@ export type HTMLFieldSetElementProperties =
|
|
|
201
262
|
name?: string
|
|
202
263
|
}
|
|
203
264
|
|
|
265
|
+
/**
|
|
266
|
+
* @since 1.0.0
|
|
267
|
+
*/
|
|
204
268
|
export type HTMLFontElementProperties =
|
|
205
269
|
& HTMLElementProperties
|
|
206
270
|
& {
|
|
207
271
|
face?: string
|
|
208
272
|
}
|
|
209
273
|
|
|
274
|
+
/**
|
|
275
|
+
* @since 1.0.0
|
|
276
|
+
*/
|
|
210
277
|
export type HTMLFormElementProperties =
|
|
211
278
|
& HTMLElementProperties
|
|
212
279
|
& {
|
|
@@ -221,6 +288,9 @@ export type HTMLFormElementProperties =
|
|
|
221
288
|
target?: string
|
|
222
289
|
}
|
|
223
290
|
|
|
291
|
+
/**
|
|
292
|
+
* @since 1.0.0
|
|
293
|
+
*/
|
|
224
294
|
export type HTMLFrameElementProperties =
|
|
225
295
|
& HTMLElementProperties
|
|
226
296
|
& {
|
|
@@ -239,6 +309,9 @@ export type HTMLFrameElementProperties =
|
|
|
239
309
|
width?: string | number
|
|
240
310
|
}
|
|
241
311
|
|
|
312
|
+
/**
|
|
313
|
+
* @since 1.0.0
|
|
314
|
+
*/
|
|
242
315
|
export type HTMLFrameSetElementProperties =
|
|
243
316
|
& HTMLElementProperties
|
|
244
317
|
& {
|
|
@@ -251,6 +324,9 @@ export type HTMLFrameSetElementProperties =
|
|
|
251
324
|
rows?: string
|
|
252
325
|
}
|
|
253
326
|
|
|
327
|
+
/**
|
|
328
|
+
* @since 1.0.0
|
|
329
|
+
*/
|
|
254
330
|
export type HTMLHRElementProperties =
|
|
255
331
|
& HTMLElementProperties
|
|
256
332
|
& {
|
|
@@ -259,24 +335,36 @@ export type HTMLHRElementProperties =
|
|
|
259
335
|
width?: number
|
|
260
336
|
}
|
|
261
337
|
|
|
338
|
+
/**
|
|
339
|
+
* @since 1.0.0
|
|
340
|
+
*/
|
|
262
341
|
export type HTMLHeadElementProperties =
|
|
263
342
|
& HTMLElementProperties
|
|
264
343
|
& {
|
|
265
344
|
profile?: string
|
|
266
345
|
}
|
|
267
346
|
|
|
347
|
+
/**
|
|
348
|
+
* @since 1.0.0
|
|
349
|
+
*/
|
|
268
350
|
export type HTMLHeadingElementProperties =
|
|
269
351
|
& HTMLElementProperties
|
|
270
352
|
& {
|
|
271
353
|
align?: string
|
|
272
354
|
}
|
|
273
355
|
|
|
356
|
+
/**
|
|
357
|
+
* @since 1.0.0
|
|
358
|
+
*/
|
|
274
359
|
export type HTMLHtmlElementProperies =
|
|
275
360
|
& HTMLElementProperties
|
|
276
361
|
& {
|
|
277
362
|
version?: string
|
|
278
363
|
}
|
|
279
364
|
|
|
365
|
+
/**
|
|
366
|
+
* @since 1.0.0
|
|
367
|
+
*/
|
|
280
368
|
export type HTMLIFrameElementProperties =
|
|
281
369
|
& HTMLElementProperties
|
|
282
370
|
& {
|
|
@@ -299,6 +387,9 @@ export type HTMLIFrameElementProperties =
|
|
|
299
387
|
width?: string
|
|
300
388
|
}
|
|
301
389
|
|
|
390
|
+
/**
|
|
391
|
+
* @since 1.0.0
|
|
392
|
+
*/
|
|
302
393
|
export type HTMLImageElementProperties =
|
|
303
394
|
& HTMLElementProperties
|
|
304
395
|
& {
|
|
@@ -323,6 +414,9 @@ export type HTMLImageElementProperties =
|
|
|
323
414
|
width?: number
|
|
324
415
|
}
|
|
325
416
|
|
|
417
|
+
/**
|
|
418
|
+
* @since 1.0.0
|
|
419
|
+
*/
|
|
326
420
|
export type HTMLInputElementProperties =
|
|
327
421
|
& HTMLElementProperties
|
|
328
422
|
& {
|
|
@@ -371,6 +465,9 @@ export type HTMLInputElementProperties =
|
|
|
371
465
|
width?: string
|
|
372
466
|
}
|
|
373
467
|
|
|
468
|
+
/**
|
|
469
|
+
* @since 1.0.0
|
|
470
|
+
*/
|
|
374
471
|
export type HTMLLIElementProperties =
|
|
375
472
|
& HTMLElementProperties
|
|
376
473
|
& {
|
|
@@ -378,18 +475,27 @@ export type HTMLLIElementProperties =
|
|
|
378
475
|
value?: number
|
|
379
476
|
}
|
|
380
477
|
|
|
478
|
+
/**
|
|
479
|
+
* @since 1.0.0
|
|
480
|
+
*/
|
|
381
481
|
export type HTMLLabelElementProperties =
|
|
382
482
|
& HTMLElementProperties
|
|
383
483
|
& {
|
|
384
484
|
htmlFor?: string
|
|
385
485
|
}
|
|
386
486
|
|
|
487
|
+
/**
|
|
488
|
+
* @since 1.0.0
|
|
489
|
+
*/
|
|
387
490
|
export type HTMLLegendElementProperties =
|
|
388
491
|
& HTMLElementProperties
|
|
389
492
|
& {
|
|
390
493
|
align?: string
|
|
391
494
|
}
|
|
392
495
|
|
|
496
|
+
/**
|
|
497
|
+
* @since 1.0.0
|
|
498
|
+
*/
|
|
393
499
|
export type HTMLLinkElementProperties =
|
|
394
500
|
& HTMLElementProperties
|
|
395
501
|
& {
|
|
@@ -406,12 +512,18 @@ export type HTMLLinkElementProperties =
|
|
|
406
512
|
integrity?: string
|
|
407
513
|
}
|
|
408
514
|
|
|
515
|
+
/**
|
|
516
|
+
* @since 1.0.0
|
|
517
|
+
*/
|
|
409
518
|
export type HTMLMapElementProperties =
|
|
410
519
|
& HTMLElementProperties
|
|
411
520
|
& {
|
|
412
521
|
name?: string
|
|
413
522
|
}
|
|
414
523
|
|
|
524
|
+
/**
|
|
525
|
+
* @since 1.0.0
|
|
526
|
+
*/
|
|
415
527
|
export type HTMLMarqueeElementProperties =
|
|
416
528
|
& HTMLElementProperties
|
|
417
529
|
& {
|
|
@@ -428,6 +540,9 @@ export type HTMLMarqueeElementProperties =
|
|
|
428
540
|
width?: string
|
|
429
541
|
}
|
|
430
542
|
|
|
543
|
+
/**
|
|
544
|
+
* @since 1.0.0
|
|
545
|
+
*/
|
|
431
546
|
export type HTMLMediaElementProperties =
|
|
432
547
|
& HTMLElementProperties
|
|
433
548
|
& {
|
|
@@ -453,6 +568,9 @@ export type HTMLMediaElementProperties =
|
|
|
453
568
|
volume?: number
|
|
454
569
|
}
|
|
455
570
|
|
|
571
|
+
/**
|
|
572
|
+
* @since 1.0.0
|
|
573
|
+
*/
|
|
456
574
|
export type HTMLMenuElementProperties =
|
|
457
575
|
& HTMLElementProperties
|
|
458
576
|
& {
|
|
@@ -460,6 +578,9 @@ export type HTMLMenuElementProperties =
|
|
|
460
578
|
type?: string
|
|
461
579
|
}
|
|
462
580
|
|
|
581
|
+
/**
|
|
582
|
+
* @since 1.0.0
|
|
583
|
+
*/
|
|
463
584
|
export type HTMLMetaElementProperties =
|
|
464
585
|
& HTMLElementProperties
|
|
465
586
|
& {
|
|
@@ -471,6 +592,9 @@ export type HTMLMetaElementProperties =
|
|
|
471
592
|
url?: string
|
|
472
593
|
}
|
|
473
594
|
|
|
595
|
+
/**
|
|
596
|
+
* @since 1.0.0
|
|
597
|
+
*/
|
|
474
598
|
export type HTMLMeterElementProperties =
|
|
475
599
|
& HTMLElementProperties
|
|
476
600
|
& {
|
|
@@ -482,6 +606,9 @@ export type HTMLMeterElementProperties =
|
|
|
482
606
|
value?: number
|
|
483
607
|
}
|
|
484
608
|
|
|
609
|
+
/**
|
|
610
|
+
* @since 1.0.0
|
|
611
|
+
*/
|
|
485
612
|
export type HTMLModElementProperties =
|
|
486
613
|
& HTMLElementProperties
|
|
487
614
|
& {
|
|
@@ -489,6 +616,9 @@ export type HTMLModElementProperties =
|
|
|
489
616
|
dateTime?: string
|
|
490
617
|
}
|
|
491
618
|
|
|
619
|
+
/**
|
|
620
|
+
* @since 1.0.0
|
|
621
|
+
*/
|
|
492
622
|
export type HTMLOListElementProperteis =
|
|
493
623
|
& HTMLElementProperties
|
|
494
624
|
& {
|
|
@@ -497,6 +627,9 @@ export type HTMLOListElementProperteis =
|
|
|
497
627
|
type?: string
|
|
498
628
|
}
|
|
499
629
|
|
|
630
|
+
/**
|
|
631
|
+
* @since 1.0.0
|
|
632
|
+
*/
|
|
500
633
|
export type HTMLObjectElementProperties =
|
|
501
634
|
& HTMLElementProperties
|
|
502
635
|
& {
|
|
@@ -523,6 +656,9 @@ export type HTMLObjectElementProperties =
|
|
|
523
656
|
width?: string
|
|
524
657
|
}
|
|
525
658
|
|
|
659
|
+
/**
|
|
660
|
+
* @since 1.0.0
|
|
661
|
+
*/
|
|
526
662
|
export type HTMLOptGroupElementProperties =
|
|
527
663
|
& HTMLElementProperties
|
|
528
664
|
& {
|
|
@@ -533,6 +669,9 @@ export type HTMLOptGroupElementProperties =
|
|
|
533
669
|
value?: string
|
|
534
670
|
}
|
|
535
671
|
|
|
672
|
+
/**
|
|
673
|
+
* @since 1.0.0
|
|
674
|
+
*/
|
|
536
675
|
export type HTMLOptionElementProperties =
|
|
537
676
|
& HTMLElementProperties
|
|
538
677
|
& {
|
|
@@ -544,6 +683,9 @@ export type HTMLOptionElementProperties =
|
|
|
544
683
|
value?: string
|
|
545
684
|
}
|
|
546
685
|
|
|
686
|
+
/**
|
|
687
|
+
* @since 1.0.0
|
|
688
|
+
*/
|
|
547
689
|
export type HTMLOutputElementProperties =
|
|
548
690
|
& HTMLElementProperties
|
|
549
691
|
& {
|
|
@@ -552,6 +694,9 @@ export type HTMLOutputElementProperties =
|
|
|
552
694
|
value?: string
|
|
553
695
|
}
|
|
554
696
|
|
|
697
|
+
/**
|
|
698
|
+
* @since 1.0.0
|
|
699
|
+
*/
|
|
555
700
|
export type HTMLParagraphElementProperties =
|
|
556
701
|
& HTMLElementProperties
|
|
557
702
|
& {
|
|
@@ -559,6 +704,9 @@ export type HTMLParagraphElementProperties =
|
|
|
559
704
|
clear?: string
|
|
560
705
|
}
|
|
561
706
|
|
|
707
|
+
/**
|
|
708
|
+
* @since 1.0.0
|
|
709
|
+
*/
|
|
562
710
|
export type HTMLParamElementProperties =
|
|
563
711
|
& HTMLElementProperties
|
|
564
712
|
& {
|
|
@@ -568,12 +716,18 @@ export type HTMLParamElementProperties =
|
|
|
568
716
|
valueType?: string
|
|
569
717
|
}
|
|
570
718
|
|
|
719
|
+
/**
|
|
720
|
+
* @since 1.0.0
|
|
721
|
+
*/
|
|
571
722
|
export type HTMLPreElementProperties =
|
|
572
723
|
& HTMLElementProperties
|
|
573
724
|
& {
|
|
574
725
|
width?: number
|
|
575
726
|
}
|
|
576
727
|
|
|
728
|
+
/**
|
|
729
|
+
* @since 1.0.0
|
|
730
|
+
*/
|
|
577
731
|
export type HTMLProgressElementProperties =
|
|
578
732
|
& HTMLElementProperties
|
|
579
733
|
& {
|
|
@@ -581,12 +735,18 @@ export type HTMLProgressElementProperties =
|
|
|
581
735
|
value?: number
|
|
582
736
|
}
|
|
583
737
|
|
|
738
|
+
/**
|
|
739
|
+
* @since 1.0.0
|
|
740
|
+
*/
|
|
584
741
|
export type HTMLQuoteElementProperties =
|
|
585
742
|
& HTMLElementProperties
|
|
586
743
|
& {
|
|
587
744
|
cite?: string
|
|
588
745
|
}
|
|
589
746
|
|
|
747
|
+
/**
|
|
748
|
+
* @since 1.0.0
|
|
749
|
+
*/
|
|
590
750
|
export type HTMLScriptElementProperties =
|
|
591
751
|
& HTMLElementProperties
|
|
592
752
|
& {
|
|
@@ -602,6 +762,9 @@ export type HTMLScriptElementProperties =
|
|
|
602
762
|
integrity?: string
|
|
603
763
|
}
|
|
604
764
|
|
|
765
|
+
/**
|
|
766
|
+
* @since 1.0.0
|
|
767
|
+
*/
|
|
605
768
|
export type HTMLSelectElementProperties =
|
|
606
769
|
& HTMLElementProperties
|
|
607
770
|
& {
|
|
@@ -617,6 +780,9 @@ export type HTMLSelectElementProperties =
|
|
|
617
780
|
value?: string
|
|
618
781
|
}
|
|
619
782
|
|
|
783
|
+
/**
|
|
784
|
+
* @since 1.0.0
|
|
785
|
+
*/
|
|
620
786
|
export type HTMLSourceElementProperties =
|
|
621
787
|
& HTMLElementProperties
|
|
622
788
|
& {
|
|
@@ -628,8 +794,14 @@ export type HTMLSourceElementProperties =
|
|
|
628
794
|
type?: string
|
|
629
795
|
}
|
|
630
796
|
|
|
797
|
+
/**
|
|
798
|
+
* @since 1.0.0
|
|
799
|
+
*/
|
|
631
800
|
export type HTMLSpanElementProperties = HTMLElementProperties
|
|
632
801
|
|
|
802
|
+
/**
|
|
803
|
+
* @since 1.0.0
|
|
804
|
+
*/
|
|
633
805
|
export type HTMLStyleElementProperties =
|
|
634
806
|
& HTMLElementProperties
|
|
635
807
|
& {
|
|
@@ -638,6 +810,9 @@ export type HTMLStyleElementProperties =
|
|
|
638
810
|
type?: string
|
|
639
811
|
}
|
|
640
812
|
|
|
813
|
+
/**
|
|
814
|
+
* @since 1.0.0
|
|
815
|
+
*/
|
|
641
816
|
export type HTMLTableCaptionElementProperties =
|
|
642
817
|
& HTMLElementProperties
|
|
643
818
|
& {
|
|
@@ -645,6 +820,9 @@ export type HTMLTableCaptionElementProperties =
|
|
|
645
820
|
vAlign?: string
|
|
646
821
|
}
|
|
647
822
|
|
|
823
|
+
/**
|
|
824
|
+
* @since 1.0.0
|
|
825
|
+
*/
|
|
648
826
|
export type HTMLTableCellElementProperties =
|
|
649
827
|
& HTMLElementProperties
|
|
650
828
|
& {
|
|
@@ -661,6 +839,9 @@ export type HTMLTableCellElementProperties =
|
|
|
661
839
|
width?: string
|
|
662
840
|
}
|
|
663
841
|
|
|
842
|
+
/**
|
|
843
|
+
* @since 1.0.0
|
|
844
|
+
*/
|
|
664
845
|
export type HTMLTableColElementProperties =
|
|
665
846
|
& HTMLElementProperties
|
|
666
847
|
& {
|
|
@@ -669,8 +850,14 @@ export type HTMLTableColElementProperties =
|
|
|
669
850
|
width?: any
|
|
670
851
|
}
|
|
671
852
|
|
|
853
|
+
/**
|
|
854
|
+
* @since 1.0.0
|
|
855
|
+
*/
|
|
672
856
|
export type HTMLTableDataCellElementProperties = HTMLElementProperties
|
|
673
857
|
|
|
858
|
+
/**
|
|
859
|
+
* @since 1.0.0
|
|
860
|
+
*/
|
|
674
861
|
export type HTMLTableElementProperties =
|
|
675
862
|
& HTMLElementProperties
|
|
676
863
|
& {
|
|
@@ -693,12 +880,18 @@ export type HTMLTableElementProperties =
|
|
|
693
880
|
width?: string
|
|
694
881
|
}
|
|
695
882
|
|
|
883
|
+
/**
|
|
884
|
+
* @since 1.0.0
|
|
885
|
+
*/
|
|
696
886
|
export type HTMLTableHeaderCellElementProperties =
|
|
697
887
|
& HTMLElementProperties
|
|
698
888
|
& {
|
|
699
889
|
scope?: string
|
|
700
890
|
}
|
|
701
891
|
|
|
892
|
+
/**
|
|
893
|
+
* @since 1.0.0
|
|
894
|
+
*/
|
|
702
895
|
export type HTMLTableRowElementProperties =
|
|
703
896
|
& HTMLElementProperties
|
|
704
897
|
& {
|
|
@@ -708,6 +901,9 @@ export type HTMLTableRowElementProperties =
|
|
|
708
901
|
height?: any
|
|
709
902
|
}
|
|
710
903
|
|
|
904
|
+
/**
|
|
905
|
+
* @since 1.0.0
|
|
906
|
+
*/
|
|
711
907
|
export type HTMLTableSectionElementProperties =
|
|
712
908
|
& HTMLElementProperties
|
|
713
909
|
& {
|
|
@@ -715,8 +911,14 @@ export type HTMLTableSectionElementProperties =
|
|
|
715
911
|
rows?: HTMLCollectionOf<HTMLTableRowElement>
|
|
716
912
|
}
|
|
717
913
|
|
|
914
|
+
/**
|
|
915
|
+
* @since 1.0.0
|
|
916
|
+
*/
|
|
718
917
|
export type HTMLTemplateElementProperties = HTMLElementProperties
|
|
719
918
|
|
|
919
|
+
/**
|
|
920
|
+
* @since 1.0.0
|
|
921
|
+
*/
|
|
720
922
|
export type HTMLTextAreaElementProperties =
|
|
721
923
|
& HTMLElementProperties
|
|
722
924
|
& {
|
|
@@ -738,18 +940,27 @@ export type HTMLTextAreaElementProperties =
|
|
|
738
940
|
wrap?: string
|
|
739
941
|
}
|
|
740
942
|
|
|
943
|
+
/**
|
|
944
|
+
* @since 1.0.0
|
|
945
|
+
*/
|
|
741
946
|
export type HTMLTimeElementProperties =
|
|
742
947
|
& HTMLElementProperties
|
|
743
948
|
& {
|
|
744
949
|
dateTime?: string
|
|
745
950
|
}
|
|
746
951
|
|
|
952
|
+
/**
|
|
953
|
+
* @since 1.0.0
|
|
954
|
+
*/
|
|
747
955
|
export type HTMLTitleElementProperties =
|
|
748
956
|
& HTMLElementProperties
|
|
749
957
|
& {
|
|
750
958
|
text?: string
|
|
751
959
|
}
|
|
752
960
|
|
|
961
|
+
/**
|
|
962
|
+
* @since 1.0.0
|
|
963
|
+
*/
|
|
753
964
|
export type HTMLTrackElementProperties =
|
|
754
965
|
& HTMLElementProperties
|
|
755
966
|
& {
|
|
@@ -760,6 +971,9 @@ export type HTMLTrackElementProperties =
|
|
|
760
971
|
srclang?: string
|
|
761
972
|
}
|
|
762
973
|
|
|
974
|
+
/**
|
|
975
|
+
* @since 1.0.0
|
|
976
|
+
*/
|
|
763
977
|
export type HTMLUListElementProperties =
|
|
764
978
|
& HTMLElementProperties
|
|
765
979
|
& {
|
|
@@ -767,8 +981,14 @@ export type HTMLUListElementProperties =
|
|
|
767
981
|
type?: string
|
|
768
982
|
}
|
|
769
983
|
|
|
984
|
+
/**
|
|
985
|
+
* @since 1.0.0
|
|
986
|
+
*/
|
|
770
987
|
export type HTMLUnknownElementProperties = HTMLElementProperties
|
|
771
988
|
|
|
989
|
+
/**
|
|
990
|
+
* @since 1.0.0
|
|
991
|
+
*/
|
|
772
992
|
export type HTMLVideoElementProperties =
|
|
773
993
|
& HTMLElementProperties
|
|
774
994
|
& {
|