@glint/template 1.6.3-unstable.7c52122 → 1.6.3-unstable.cb1a168
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/-private/dsl/elements.d.ts +257 -140
- package/-private/dsl/lib.dom.augmentation.d.ts +138 -632
- package/-private/dsl/types.d.ts +34 -12
- package/package.json +1 -1
|
@@ -2,16 +2,19 @@
|
|
|
2
2
|
// this server to provide the html attributes for each element
|
|
3
3
|
|
|
4
4
|
import { AttrValue } from '../index';
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
|
|
6
|
+
declare global {
|
|
7
|
+
interface GlobalHTMLAttributes {
|
|
7
8
|
['accesskey']: AttrValue;
|
|
8
9
|
['autocapitalize']: AttrValue;
|
|
10
|
+
['autocorrect']: AttrValue;
|
|
9
11
|
['autofocus']: AttrValue;
|
|
10
12
|
['class']: AttrValue;
|
|
11
13
|
['contenteditable']: AttrValue;
|
|
12
14
|
['dir']: AttrValue;
|
|
13
15
|
['draggable']: AttrValue;
|
|
14
16
|
['enterkeyhint']: AttrValue;
|
|
17
|
+
['exportparts']: AttrValue;
|
|
15
18
|
['hidden']: AttrValue;
|
|
16
19
|
['id']: AttrValue;
|
|
17
20
|
['inert']: AttrValue;
|
|
@@ -24,6 +27,7 @@ interface GenericAttributes {
|
|
|
24
27
|
['itemtype']: AttrValue;
|
|
25
28
|
['lang']: AttrValue;
|
|
26
29
|
['nonce']: AttrValue;
|
|
30
|
+
['part']: AttrValue;
|
|
27
31
|
['popover']: AttrValue;
|
|
28
32
|
['slot']: AttrValue;
|
|
29
33
|
['spellcheck']: AttrValue;
|
|
@@ -168,7 +172,7 @@ interface GenericAttributes {
|
|
|
168
172
|
['onwaiting']: AttrValue;
|
|
169
173
|
['onwheel']: AttrValue;
|
|
170
174
|
}
|
|
171
|
-
interface HTMLAnchorElementAttributes extends
|
|
175
|
+
interface HTMLAnchorElementAttributes extends GlobalHTMLAttributes {
|
|
172
176
|
['charset']: AttrValue;
|
|
173
177
|
['coords']: AttrValue;
|
|
174
178
|
['download']: AttrValue;
|
|
@@ -183,7 +187,7 @@ interface HTMLAnchorElementAttributes extends GenericAttributes {
|
|
|
183
187
|
['target']: AttrValue;
|
|
184
188
|
['type']: AttrValue;
|
|
185
189
|
}
|
|
186
|
-
interface HTMLAreaElementAttributes extends
|
|
190
|
+
interface HTMLAreaElementAttributes extends GlobalHTMLAttributes {
|
|
187
191
|
['alt']: AttrValue;
|
|
188
192
|
['coords']: AttrValue;
|
|
189
193
|
['download']: AttrValue;
|
|
@@ -197,7 +201,7 @@ interface HTMLAreaElementAttributes extends GenericAttributes {
|
|
|
197
201
|
['target']: AttrValue;
|
|
198
202
|
['type']: AttrValue;
|
|
199
203
|
}
|
|
200
|
-
interface HTMLAudioElementAttributes extends
|
|
204
|
+
interface HTMLAudioElementAttributes extends GlobalHTMLAttributes {
|
|
201
205
|
['autoplay']: AttrValue;
|
|
202
206
|
['controls']: AttrValue;
|
|
203
207
|
['crossorigin']: AttrValue;
|
|
@@ -206,25 +210,19 @@ interface HTMLAudioElementAttributes extends GenericAttributes {
|
|
|
206
210
|
['preload']: AttrValue;
|
|
207
211
|
['src']: AttrValue;
|
|
208
212
|
}
|
|
209
|
-
interface HTMLBaseElementAttributes extends
|
|
213
|
+
interface HTMLBaseElementAttributes extends GlobalHTMLAttributes {
|
|
210
214
|
['href']: AttrValue;
|
|
211
215
|
['target']: AttrValue;
|
|
212
216
|
}
|
|
213
|
-
interface HTMLQuoteElementAttributes extends
|
|
217
|
+
interface HTMLQuoteElementAttributes extends GlobalHTMLAttributes {
|
|
214
218
|
['cite']: AttrValue;
|
|
215
219
|
}
|
|
216
|
-
interface
|
|
217
|
-
['alink']: AttrValue;
|
|
218
|
-
['background']: AttrValue;
|
|
219
|
-
['bgcolor']: AttrValue;
|
|
220
|
-
['link']: AttrValue;
|
|
221
|
-
['text']: AttrValue;
|
|
222
|
-
['vlink']: AttrValue;
|
|
223
|
-
}
|
|
224
|
-
interface HTMLBRElementAttributes extends GenericAttributes {
|
|
220
|
+
interface HTMLBRElementAttributes extends GlobalHTMLAttributes {
|
|
225
221
|
['clear']: AttrValue;
|
|
226
222
|
}
|
|
227
|
-
interface HTMLButtonElementAttributes extends
|
|
223
|
+
interface HTMLButtonElementAttributes extends GlobalHTMLAttributes {
|
|
224
|
+
['command']: AttrValue;
|
|
225
|
+
['commandfor']: AttrValue;
|
|
228
226
|
['disabled']: AttrValue;
|
|
229
227
|
['form']: AttrValue;
|
|
230
228
|
['formaction']: AttrValue;
|
|
@@ -238,14 +236,14 @@ interface HTMLButtonElementAttributes extends GenericAttributes {
|
|
|
238
236
|
['type']: AttrValue;
|
|
239
237
|
['value']: AttrValue;
|
|
240
238
|
}
|
|
241
|
-
interface HTMLCanvasElementAttributes extends
|
|
239
|
+
interface HTMLCanvasElementAttributes extends GlobalHTMLAttributes {
|
|
242
240
|
['height']: AttrValue;
|
|
243
241
|
['width']: AttrValue;
|
|
244
242
|
}
|
|
245
|
-
interface HTMLTableCaptionElementAttributes extends
|
|
243
|
+
interface HTMLTableCaptionElementAttributes extends GlobalHTMLAttributes {
|
|
246
244
|
['align']: AttrValue;
|
|
247
245
|
}
|
|
248
|
-
interface HTMLTableColElementAttributes extends
|
|
246
|
+
interface HTMLTableColElementAttributes extends GlobalHTMLAttributes {
|
|
249
247
|
['align']: AttrValue;
|
|
250
248
|
['char']: AttrValue;
|
|
251
249
|
['charoff']: AttrValue;
|
|
@@ -253,38 +251,39 @@ interface HTMLTableColElementAttributes extends GenericAttributes {
|
|
|
253
251
|
['valign']: AttrValue;
|
|
254
252
|
['width']: AttrValue;
|
|
255
253
|
}
|
|
256
|
-
interface HTMLDataElementAttributes extends
|
|
254
|
+
interface HTMLDataElementAttributes extends GlobalHTMLAttributes {
|
|
257
255
|
['value']: AttrValue;
|
|
258
256
|
}
|
|
259
|
-
interface HTMLModElementAttributes extends
|
|
257
|
+
interface HTMLModElementAttributes extends GlobalHTMLAttributes {
|
|
260
258
|
['cite']: AttrValue;
|
|
261
259
|
['datetime']: AttrValue;
|
|
262
260
|
}
|
|
263
|
-
interface HTMLDetailsElementAttributes extends
|
|
261
|
+
interface HTMLDetailsElementAttributes extends GlobalHTMLAttributes {
|
|
264
262
|
['name']: AttrValue;
|
|
265
263
|
['open']: AttrValue;
|
|
266
264
|
}
|
|
267
|
-
interface HTMLDialogElementAttributes extends
|
|
265
|
+
interface HTMLDialogElementAttributes extends GlobalHTMLAttributes {
|
|
266
|
+
['closedby']: AttrValue;
|
|
268
267
|
['open']: AttrValue;
|
|
269
268
|
}
|
|
270
|
-
interface HTMLDivElementAttributes extends
|
|
269
|
+
interface HTMLDivElementAttributes extends GlobalHTMLAttributes {
|
|
271
270
|
['align']: AttrValue;
|
|
272
271
|
}
|
|
273
|
-
interface HTMLDListElementAttributes extends
|
|
272
|
+
interface HTMLDListElementAttributes extends GlobalHTMLAttributes {
|
|
274
273
|
['compact']: AttrValue;
|
|
275
274
|
}
|
|
276
|
-
interface HTMLEmbedElementAttributes extends
|
|
275
|
+
interface HTMLEmbedElementAttributes extends GlobalHTMLAttributes {
|
|
277
276
|
['height']: AttrValue;
|
|
278
277
|
['src']: AttrValue;
|
|
279
278
|
['type']: AttrValue;
|
|
280
279
|
['width']: AttrValue;
|
|
281
280
|
}
|
|
282
|
-
interface HTMLFieldSetElementAttributes extends
|
|
281
|
+
interface HTMLFieldSetElementAttributes extends GlobalHTMLAttributes {
|
|
283
282
|
['disabled']: AttrValue;
|
|
284
283
|
['form']: AttrValue;
|
|
285
284
|
['name']: AttrValue;
|
|
286
285
|
}
|
|
287
|
-
interface HTMLFormElementAttributes extends
|
|
286
|
+
interface HTMLFormElementAttributes extends GlobalHTMLAttributes {
|
|
288
287
|
['accept']: AttrValue;
|
|
289
288
|
['accept-charset']: AttrValue;
|
|
290
289
|
['action']: AttrValue;
|
|
@@ -295,23 +294,19 @@ interface HTMLFormElementAttributes extends GenericAttributes {
|
|
|
295
294
|
['novalidate']: AttrValue;
|
|
296
295
|
['target']: AttrValue;
|
|
297
296
|
}
|
|
298
|
-
interface HTMLHeadingElementAttributes extends
|
|
297
|
+
interface HTMLHeadingElementAttributes extends GlobalHTMLAttributes {
|
|
299
298
|
['align']: AttrValue;
|
|
300
299
|
}
|
|
301
|
-
interface HTMLHeadElementAttributes extends
|
|
300
|
+
interface HTMLHeadElementAttributes extends GlobalHTMLAttributes {
|
|
302
301
|
['profile']: AttrValue;
|
|
303
302
|
}
|
|
304
|
-
interface HTMLHRElementAttributes extends
|
|
303
|
+
interface HTMLHRElementAttributes extends GlobalHTMLAttributes {
|
|
305
304
|
['align']: AttrValue;
|
|
306
305
|
['noshade']: AttrValue;
|
|
307
306
|
['size']: AttrValue;
|
|
308
307
|
['width']: AttrValue;
|
|
309
308
|
}
|
|
310
|
-
interface
|
|
311
|
-
['manifest']: AttrValue;
|
|
312
|
-
['version']: AttrValue;
|
|
313
|
-
}
|
|
314
|
-
interface HTMLIFrameElementAttributes extends GenericAttributes {
|
|
309
|
+
interface HTMLIFrameElementAttributes extends GlobalHTMLAttributes {
|
|
315
310
|
['align']: AttrValue;
|
|
316
311
|
['allow']: AttrValue;
|
|
317
312
|
['allowfullscreen']: AttrValue;
|
|
@@ -331,7 +326,7 @@ interface HTMLIFrameElementAttributes extends GenericAttributes {
|
|
|
331
326
|
['srcdoc']: AttrValue;
|
|
332
327
|
['width']: AttrValue;
|
|
333
328
|
}
|
|
334
|
-
interface HTMLImageElementAttributes extends
|
|
329
|
+
interface HTMLImageElementAttributes extends GlobalHTMLAttributes {
|
|
335
330
|
['align']: AttrValue;
|
|
336
331
|
['alt']: AttrValue;
|
|
337
332
|
['border']: AttrValue;
|
|
@@ -352,12 +347,14 @@ interface HTMLImageElementAttributes extends GenericAttributes {
|
|
|
352
347
|
['vspace']: AttrValue;
|
|
353
348
|
['width']: AttrValue;
|
|
354
349
|
}
|
|
355
|
-
interface HTMLInputElementAttributes extends
|
|
350
|
+
interface HTMLInputElementAttributes extends GlobalHTMLAttributes {
|
|
356
351
|
['accept']: AttrValue;
|
|
357
352
|
['align']: AttrValue;
|
|
353
|
+
['alpha']: AttrValue;
|
|
358
354
|
['alt']: AttrValue;
|
|
359
355
|
['autocomplete']: AttrValue;
|
|
360
356
|
['checked']: AttrValue;
|
|
357
|
+
['colorspace']: AttrValue;
|
|
361
358
|
['dirname']: AttrValue;
|
|
362
359
|
['disabled']: AttrValue;
|
|
363
360
|
['form']: AttrValue;
|
|
@@ -390,18 +387,18 @@ interface HTMLInputElementAttributes extends GenericAttributes {
|
|
|
390
387
|
['width']: AttrValue;
|
|
391
388
|
['indeterminate']: boolean;
|
|
392
389
|
}
|
|
393
|
-
interface HTMLLabelElementAttributes extends
|
|
390
|
+
interface HTMLLabelElementAttributes extends GlobalHTMLAttributes {
|
|
394
391
|
['for']: AttrValue;
|
|
395
392
|
['form']: AttrValue;
|
|
396
393
|
}
|
|
397
|
-
interface HTMLLegendElementAttributes extends
|
|
394
|
+
interface HTMLLegendElementAttributes extends GlobalHTMLAttributes {
|
|
398
395
|
['align']: AttrValue;
|
|
399
396
|
}
|
|
400
|
-
interface HTMLLIElementAttributes extends
|
|
397
|
+
interface HTMLLIElementAttributes extends GlobalHTMLAttributes {
|
|
401
398
|
['type']: AttrValue;
|
|
402
399
|
['value']: AttrValue;
|
|
403
400
|
}
|
|
404
|
-
interface HTMLLinkElementAttributes extends
|
|
401
|
+
interface HTMLLinkElementAttributes extends GlobalHTMLAttributes {
|
|
405
402
|
['as']: AttrValue;
|
|
406
403
|
['blocking']: AttrValue;
|
|
407
404
|
['charset']: AttrValue;
|
|
@@ -422,13 +419,13 @@ interface HTMLLinkElementAttributes extends GenericAttributes {
|
|
|
422
419
|
['target']: AttrValue;
|
|
423
420
|
['type']: AttrValue;
|
|
424
421
|
}
|
|
425
|
-
interface HTMLMapElementAttributes extends
|
|
422
|
+
interface HTMLMapElementAttributes extends GlobalHTMLAttributes {
|
|
426
423
|
['name']: AttrValue;
|
|
427
424
|
}
|
|
428
|
-
interface HTMLMenuElementAttributes extends
|
|
425
|
+
interface HTMLMenuElementAttributes extends GlobalHTMLAttributes {
|
|
429
426
|
['compact']: AttrValue;
|
|
430
427
|
}
|
|
431
|
-
interface HTMLMetaElementAttributes extends
|
|
428
|
+
interface HTMLMetaElementAttributes extends GlobalHTMLAttributes {
|
|
432
429
|
['charset']: AttrValue;
|
|
433
430
|
['content']: AttrValue;
|
|
434
431
|
['http-equiv']: AttrValue;
|
|
@@ -436,7 +433,7 @@ interface HTMLMetaElementAttributes extends GenericAttributes {
|
|
|
436
433
|
['name']: AttrValue;
|
|
437
434
|
['scheme']: AttrValue;
|
|
438
435
|
}
|
|
439
|
-
interface HTMLMeterElementAttributes extends
|
|
436
|
+
interface HTMLMeterElementAttributes extends GlobalHTMLAttributes {
|
|
440
437
|
['high']: AttrValue;
|
|
441
438
|
['low']: AttrValue;
|
|
442
439
|
['max']: AttrValue;
|
|
@@ -444,7 +441,7 @@ interface HTMLMeterElementAttributes extends GenericAttributes {
|
|
|
444
441
|
['optimum']: AttrValue;
|
|
445
442
|
['value']: AttrValue;
|
|
446
443
|
}
|
|
447
|
-
interface HTMLObjectElementAttributes extends
|
|
444
|
+
interface HTMLObjectElementAttributes extends GlobalHTMLAttributes {
|
|
448
445
|
['align']: AttrValue;
|
|
449
446
|
['archive']: AttrValue;
|
|
450
447
|
['border']: AttrValue;
|
|
@@ -464,38 +461,38 @@ interface HTMLObjectElementAttributes extends GenericAttributes {
|
|
|
464
461
|
['vspace']: AttrValue;
|
|
465
462
|
['width']: AttrValue;
|
|
466
463
|
}
|
|
467
|
-
interface HTMLOListElementAttributes extends
|
|
464
|
+
interface HTMLOListElementAttributes extends GlobalHTMLAttributes {
|
|
468
465
|
['compact']: AttrValue;
|
|
469
466
|
['reversed']: AttrValue;
|
|
470
467
|
['start']: AttrValue;
|
|
471
468
|
['type']: AttrValue;
|
|
472
469
|
}
|
|
473
|
-
interface HTMLOptGroupElementAttributes extends
|
|
470
|
+
interface HTMLOptGroupElementAttributes extends GlobalHTMLAttributes {
|
|
474
471
|
['disabled']: AttrValue;
|
|
475
472
|
['label']: AttrValue;
|
|
476
473
|
}
|
|
477
|
-
interface HTMLOptionElementAttributes extends
|
|
474
|
+
interface HTMLOptionElementAttributes extends GlobalHTMLAttributes {
|
|
478
475
|
['disabled']: AttrValue;
|
|
479
476
|
['label']: AttrValue;
|
|
480
477
|
['selected']: AttrValue;
|
|
481
478
|
['value']: AttrValue;
|
|
482
479
|
}
|
|
483
|
-
interface HTMLOutputElementAttributes extends
|
|
480
|
+
interface HTMLOutputElementAttributes extends GlobalHTMLAttributes {
|
|
484
481
|
['for']: AttrValue;
|
|
485
482
|
['form']: AttrValue;
|
|
486
483
|
['name']: AttrValue;
|
|
487
484
|
}
|
|
488
|
-
interface HTMLParagraphElementAttributes extends
|
|
485
|
+
interface HTMLParagraphElementAttributes extends GlobalHTMLAttributes {
|
|
489
486
|
['align']: AttrValue;
|
|
490
487
|
}
|
|
491
|
-
interface HTMLPreElementAttributes extends
|
|
488
|
+
interface HTMLPreElementAttributes extends GlobalHTMLAttributes {
|
|
492
489
|
['width']: AttrValue;
|
|
493
490
|
}
|
|
494
|
-
interface HTMLProgressElementAttributes extends
|
|
491
|
+
interface HTMLProgressElementAttributes extends GlobalHTMLAttributes {
|
|
495
492
|
['max']: AttrValue;
|
|
496
493
|
['value']: AttrValue;
|
|
497
494
|
}
|
|
498
|
-
interface HTMLScriptElementAttributes extends
|
|
495
|
+
interface HTMLScriptElementAttributes extends GlobalHTMLAttributes {
|
|
499
496
|
['async']: AttrValue;
|
|
500
497
|
['blocking']: AttrValue;
|
|
501
498
|
['charset']: AttrValue;
|
|
@@ -509,7 +506,7 @@ interface HTMLScriptElementAttributes extends GenericAttributes {
|
|
|
509
506
|
['src']: AttrValue;
|
|
510
507
|
['type']: AttrValue;
|
|
511
508
|
}
|
|
512
|
-
interface HTMLSelectElementAttributes extends
|
|
509
|
+
interface HTMLSelectElementAttributes extends GlobalHTMLAttributes {
|
|
513
510
|
['autocomplete']: AttrValue;
|
|
514
511
|
['disabled']: AttrValue;
|
|
515
512
|
['form']: AttrValue;
|
|
@@ -520,10 +517,10 @@ interface HTMLSelectElementAttributes extends GenericAttributes {
|
|
|
520
517
|
['length']: number;
|
|
521
518
|
['value']: AttrValue;
|
|
522
519
|
}
|
|
523
|
-
interface HTMLSlotElementAttributes extends
|
|
520
|
+
interface HTMLSlotElementAttributes extends GlobalHTMLAttributes {
|
|
524
521
|
['name']: AttrValue;
|
|
525
522
|
}
|
|
526
|
-
interface HTMLSourceElementAttributes extends
|
|
523
|
+
interface HTMLSourceElementAttributes extends GlobalHTMLAttributes {
|
|
527
524
|
['height']: AttrValue;
|
|
528
525
|
['media']: AttrValue;
|
|
529
526
|
['sizes']: AttrValue;
|
|
@@ -532,12 +529,12 @@ interface HTMLSourceElementAttributes extends GenericAttributes {
|
|
|
532
529
|
['type']: AttrValue;
|
|
533
530
|
['width']: AttrValue;
|
|
534
531
|
}
|
|
535
|
-
interface HTMLStyleElementAttributes extends
|
|
532
|
+
interface HTMLStyleElementAttributes extends GlobalHTMLAttributes {
|
|
536
533
|
['blocking']: AttrValue;
|
|
537
534
|
['media']: AttrValue;
|
|
538
535
|
['type']: AttrValue;
|
|
539
536
|
}
|
|
540
|
-
interface HTMLTableElementAttributes extends
|
|
537
|
+
interface HTMLTableElementAttributes extends GlobalHTMLAttributes {
|
|
541
538
|
['align']: AttrValue;
|
|
542
539
|
['bgcolor']: AttrValue;
|
|
543
540
|
['border']: AttrValue;
|
|
@@ -548,13 +545,13 @@ interface HTMLTableElementAttributes extends GenericAttributes {
|
|
|
548
545
|
['summary']: AttrValue;
|
|
549
546
|
['width']: AttrValue;
|
|
550
547
|
}
|
|
551
|
-
interface HTMLTableSectionElementAttributes extends
|
|
548
|
+
interface HTMLTableSectionElementAttributes extends GlobalHTMLAttributes {
|
|
552
549
|
['align']: AttrValue;
|
|
553
550
|
['char']: AttrValue;
|
|
554
551
|
['charoff']: AttrValue;
|
|
555
552
|
['valign']: AttrValue;
|
|
556
553
|
}
|
|
557
|
-
interface HTMLTableCellElementAttributes extends
|
|
554
|
+
interface HTMLTableCellElementAttributes extends GlobalHTMLAttributes {
|
|
558
555
|
['abbr']: AttrValue;
|
|
559
556
|
['align']: AttrValue;
|
|
560
557
|
['axis']: AttrValue;
|
|
@@ -570,12 +567,14 @@ interface HTMLTableCellElementAttributes extends GenericAttributes {
|
|
|
570
567
|
['valign']: AttrValue;
|
|
571
568
|
['width']: AttrValue;
|
|
572
569
|
}
|
|
573
|
-
interface HTMLTemplateElementAttributes extends
|
|
570
|
+
interface HTMLTemplateElementAttributes extends GlobalHTMLAttributes {
|
|
574
571
|
['shadowrootclonable']: AttrValue;
|
|
572
|
+
['shadowrootcustomelementregistry']: AttrValue;
|
|
575
573
|
['shadowrootdelegatesfocus']: AttrValue;
|
|
576
574
|
['shadowrootmode']: AttrValue;
|
|
575
|
+
['shadowrootserializable']: AttrValue;
|
|
577
576
|
}
|
|
578
|
-
interface HTMLTextAreaElementAttributes extends
|
|
577
|
+
interface HTMLTextAreaElementAttributes extends GlobalHTMLAttributes {
|
|
579
578
|
['autocomplete']: AttrValue;
|
|
580
579
|
['cols']: AttrValue;
|
|
581
580
|
['dirname']: AttrValue;
|
|
@@ -591,28 +590,28 @@ interface HTMLTextAreaElementAttributes extends GenericAttributes {
|
|
|
591
590
|
['wrap']: AttrValue;
|
|
592
591
|
['value']: AttrValue;
|
|
593
592
|
}
|
|
594
|
-
interface HTMLTimeElementAttributes extends
|
|
593
|
+
interface HTMLTimeElementAttributes extends GlobalHTMLAttributes {
|
|
595
594
|
['datetime']: AttrValue;
|
|
596
595
|
}
|
|
597
|
-
interface HTMLTableRowElementAttributes extends
|
|
596
|
+
interface HTMLTableRowElementAttributes extends GlobalHTMLAttributes {
|
|
598
597
|
['align']: AttrValue;
|
|
599
598
|
['bgcolor']: AttrValue;
|
|
600
599
|
['char']: AttrValue;
|
|
601
600
|
['charoff']: AttrValue;
|
|
602
601
|
['valign']: AttrValue;
|
|
603
602
|
}
|
|
604
|
-
interface HTMLTrackElementAttributes extends
|
|
603
|
+
interface HTMLTrackElementAttributes extends GlobalHTMLAttributes {
|
|
605
604
|
['default']: AttrValue;
|
|
606
605
|
['kind']: AttrValue;
|
|
607
606
|
['label']: AttrValue;
|
|
608
607
|
['src']: AttrValue;
|
|
609
608
|
['srclang']: AttrValue;
|
|
610
609
|
}
|
|
611
|
-
interface HTMLUListElementAttributes extends
|
|
610
|
+
interface HTMLUListElementAttributes extends GlobalHTMLAttributes {
|
|
612
611
|
['compact']: AttrValue;
|
|
613
612
|
['type']: AttrValue;
|
|
614
613
|
}
|
|
615
|
-
interface HTMLVideoElementAttributes extends
|
|
614
|
+
interface HTMLVideoElementAttributes extends GlobalHTMLAttributes {
|
|
616
615
|
['autoplay']: AttrValue;
|
|
617
616
|
['controls']: AttrValue;
|
|
618
617
|
['crossorigin']: AttrValue;
|
|
@@ -625,19 +624,25 @@ interface HTMLVideoElementAttributes extends GenericAttributes {
|
|
|
625
624
|
['src']: AttrValue;
|
|
626
625
|
['width']: AttrValue;
|
|
627
626
|
}
|
|
628
|
-
interface
|
|
629
|
-
|
|
627
|
+
interface HTMLElementAttributes extends GlobalHTMLAttributes {
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
/**
|
|
631
|
+
* @internal
|
|
632
|
+
* @private - not for use outside of Glint
|
|
633
|
+
*/
|
|
634
|
+
interface GlintHtmlElementAttributesMap {
|
|
630
635
|
['HTMLAnchorElement']: HTMLAnchorElementAttributes;
|
|
631
636
|
['HTMLAreaElement']: HTMLAreaElementAttributes;
|
|
632
637
|
['HTMLAudioElement']: HTMLAudioElementAttributes;
|
|
633
638
|
['HTMLBaseElement']: HTMLBaseElementAttributes;
|
|
634
639
|
['HTMLQuoteElement']: HTMLQuoteElementAttributes;
|
|
635
|
-
['HTMLBodyElement']: HTMLBodyElementAttributes;
|
|
636
640
|
['HTMLBRElement']: HTMLBRElementAttributes;
|
|
637
641
|
['HTMLButtonElement']: HTMLButtonElementAttributes;
|
|
638
642
|
['HTMLCanvasElement']: HTMLCanvasElementAttributes;
|
|
639
643
|
['HTMLTableCaptionElement']: HTMLTableCaptionElementAttributes;
|
|
640
644
|
['HTMLTableColElement']: HTMLTableColElementAttributes;
|
|
645
|
+
['HTMLTableColElement']: HTMLTableColElementAttributes;
|
|
641
646
|
['HTMLDataElement']: HTMLDataElementAttributes;
|
|
642
647
|
['HTMLModElement']: HTMLModElementAttributes;
|
|
643
648
|
['HTMLDetailsElement']: HTMLDetailsElementAttributes;
|
|
@@ -648,12 +653,17 @@ interface HtmlElements {
|
|
|
648
653
|
['HTMLFieldSetElement']: HTMLFieldSetElementAttributes;
|
|
649
654
|
['HTMLFormElement']: HTMLFormElementAttributes;
|
|
650
655
|
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
656
|
+
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
657
|
+
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
658
|
+
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
659
|
+
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
660
|
+
['HTMLHeadingElement']: HTMLHeadingElementAttributes;
|
|
651
661
|
['HTMLHeadElement']: HTMLHeadElementAttributes;
|
|
652
662
|
['HTMLHRElement']: HTMLHRElementAttributes;
|
|
653
|
-
['HTMLHtmlElement']: HTMLHtmlElementAttributes;
|
|
654
663
|
['HTMLIFrameElement']: HTMLIFrameElementAttributes;
|
|
655
664
|
['HTMLImageElement']: HTMLImageElementAttributes;
|
|
656
665
|
['HTMLInputElement']: HTMLInputElementAttributes;
|
|
666
|
+
['HTMLModElement']: HTMLModElementAttributes;
|
|
657
667
|
['HTMLLabelElement']: HTMLLabelElementAttributes;
|
|
658
668
|
['HTMLLegendElement']: HTMLLegendElementAttributes;
|
|
659
669
|
['HTMLLIElement']: HTMLLIElementAttributes;
|
|
@@ -670,6 +680,7 @@ interface HtmlElements {
|
|
|
670
680
|
['HTMLParagraphElement']: HTMLParagraphElementAttributes;
|
|
671
681
|
['HTMLPreElement']: HTMLPreElementAttributes;
|
|
672
682
|
['HTMLProgressElement']: HTMLProgressElementAttributes;
|
|
683
|
+
['HTMLQuoteElement']: HTMLQuoteElementAttributes;
|
|
673
684
|
['HTMLScriptElement']: HTMLScriptElementAttributes;
|
|
674
685
|
['HTMLSelectElement']: HTMLSelectElementAttributes;
|
|
675
686
|
['HTMLSlotElement']: HTMLSlotElementAttributes;
|
|
@@ -680,17 +691,114 @@ interface HtmlElements {
|
|
|
680
691
|
['HTMLTableCellElement']: HTMLTableCellElementAttributes;
|
|
681
692
|
['HTMLTemplateElement']: HTMLTemplateElementAttributes;
|
|
682
693
|
['HTMLTextAreaElement']: HTMLTextAreaElementAttributes;
|
|
694
|
+
['HTMLTableSectionElement']: HTMLTableSectionElementAttributes;
|
|
695
|
+
['HTMLTableCellElement']: HTMLTableCellElementAttributes;
|
|
696
|
+
['HTMLTableSectionElement']: HTMLTableSectionElementAttributes;
|
|
683
697
|
['HTMLTimeElement']: HTMLTimeElementAttributes;
|
|
684
698
|
['HTMLTableRowElement']: HTMLTableRowElementAttributes;
|
|
685
699
|
['HTMLTrackElement']: HTMLTrackElementAttributes;
|
|
686
700
|
['HTMLUListElement']: HTMLUListElementAttributes;
|
|
687
701
|
['HTMLVideoElement']: HTMLVideoElementAttributes;
|
|
702
|
+
['HTMLElement']: GlobalHTMLAttributes;
|
|
688
703
|
}
|
|
689
704
|
}
|
|
690
705
|
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
706
|
+
declare global {
|
|
707
|
+
interface GlobalSVGAttributes {
|
|
708
|
+
['about']: AttrValue;
|
|
709
|
+
['class']: AttrValue;
|
|
710
|
+
['content']: AttrValue;
|
|
711
|
+
['datatype']: AttrValue;
|
|
712
|
+
['id']: AttrValue;
|
|
713
|
+
['lang']: AttrValue;
|
|
714
|
+
['property']: AttrValue;
|
|
715
|
+
['rel']: AttrValue;
|
|
716
|
+
['resource']: AttrValue;
|
|
717
|
+
['rev']: AttrValue;
|
|
718
|
+
['style']: AttrValue;
|
|
719
|
+
['tabindex']: AttrValue;
|
|
720
|
+
['typeof']: AttrValue;
|
|
721
|
+
['onabort']: AttrValue;
|
|
722
|
+
['onactivate']: AttrValue;
|
|
723
|
+
['onafterprint']: AttrValue;
|
|
724
|
+
['onbeforeprint']: AttrValue;
|
|
725
|
+
['onbegin']: AttrValue;
|
|
726
|
+
['oncancel']: AttrValue;
|
|
727
|
+
['oncanplay']: AttrValue;
|
|
728
|
+
['oncanplaythrough']: AttrValue;
|
|
729
|
+
['onchange']: AttrValue;
|
|
730
|
+
['onclick']: AttrValue;
|
|
731
|
+
['onclose']: AttrValue;
|
|
732
|
+
['oncopy']: AttrValue;
|
|
733
|
+
['oncuechange']: AttrValue;
|
|
734
|
+
['oncut']: AttrValue;
|
|
735
|
+
['ondblclick']: AttrValue;
|
|
736
|
+
['ondrag']: AttrValue;
|
|
737
|
+
['ondragend']: AttrValue;
|
|
738
|
+
['ondragenter']: AttrValue;
|
|
739
|
+
['ondragexit']: AttrValue;
|
|
740
|
+
['ondragleave']: AttrValue;
|
|
741
|
+
['ondragover']: AttrValue;
|
|
742
|
+
['ondragstart']: AttrValue;
|
|
743
|
+
['ondrop']: AttrValue;
|
|
744
|
+
['ondurationchange']: AttrValue;
|
|
745
|
+
['onemptied']: AttrValue;
|
|
746
|
+
['onend']: AttrValue;
|
|
747
|
+
['onended']: AttrValue;
|
|
748
|
+
['onerror']: AttrValue;
|
|
749
|
+
['onfocus']: AttrValue;
|
|
750
|
+
['onfocusin']: AttrValue;
|
|
751
|
+
['onfocusout']: AttrValue;
|
|
752
|
+
['onhashchange']: AttrValue;
|
|
753
|
+
['oninput']: AttrValue;
|
|
754
|
+
['oninvalid']: AttrValue;
|
|
755
|
+
['onkeydown']: AttrValue;
|
|
756
|
+
['onkeypress']: AttrValue;
|
|
757
|
+
['onkeyup']: AttrValue;
|
|
758
|
+
['onload']: AttrValue;
|
|
759
|
+
['onloadeddata']: AttrValue;
|
|
760
|
+
['onloadedmetadata']: AttrValue;
|
|
761
|
+
['onloadstart']: AttrValue;
|
|
762
|
+
['onmessage']: AttrValue;
|
|
763
|
+
['onmousedown']: AttrValue;
|
|
764
|
+
['onmouseenter']: AttrValue;
|
|
765
|
+
['onmouseleave']: AttrValue;
|
|
766
|
+
['onmousemove']: AttrValue;
|
|
767
|
+
['onmouseout']: AttrValue;
|
|
768
|
+
['onmouseover']: AttrValue;
|
|
769
|
+
['onmouseup']: AttrValue;
|
|
770
|
+
['onmousewheel']: AttrValue;
|
|
771
|
+
['onoffline']: AttrValue;
|
|
772
|
+
['ononline']: AttrValue;
|
|
773
|
+
['onpagehide']: AttrValue;
|
|
774
|
+
['onpageshow']: AttrValue;
|
|
775
|
+
['onpaste']: AttrValue;
|
|
776
|
+
['onpause']: AttrValue;
|
|
777
|
+
['onplay']: AttrValue;
|
|
778
|
+
['onplaying']: AttrValue;
|
|
779
|
+
['onpopstate']: AttrValue;
|
|
780
|
+
['onprogress']: AttrValue;
|
|
781
|
+
['onratechange']: AttrValue;
|
|
782
|
+
['onrepeat']: AttrValue;
|
|
783
|
+
['onreset']: AttrValue;
|
|
784
|
+
['onresize']: AttrValue;
|
|
785
|
+
['onscroll']: AttrValue;
|
|
786
|
+
['onseeked']: AttrValue;
|
|
787
|
+
['onseeking']: AttrValue;
|
|
788
|
+
['onselect']: AttrValue;
|
|
789
|
+
['onshow']: AttrValue;
|
|
790
|
+
['onstalled']: AttrValue;
|
|
791
|
+
['onstorage']: AttrValue;
|
|
792
|
+
['onsubmit']: AttrValue;
|
|
793
|
+
['onsuspend']: AttrValue;
|
|
794
|
+
['ontimeupdate']: AttrValue;
|
|
795
|
+
['ontoggle']: AttrValue;
|
|
796
|
+
['onunload']: AttrValue;
|
|
797
|
+
['onvolumechange']: AttrValue;
|
|
798
|
+
['onwaiting']: AttrValue;
|
|
799
|
+
['onzoom']: AttrValue;
|
|
800
|
+
}
|
|
801
|
+
interface SVGAElementAttributes extends GlobalSVGAttributes {
|
|
694
802
|
['alignment-baseline']: AttrValue;
|
|
695
803
|
['baseline-shift']: AttrValue;
|
|
696
804
|
['clip']: AttrValue;
|
|
@@ -777,7 +885,7 @@ interface SVGAElementAttributes extends GenericAttributes {
|
|
|
777
885
|
['word-spacing']: AttrValue;
|
|
778
886
|
['writing-mode']: AttrValue;
|
|
779
887
|
}
|
|
780
|
-
interface SVGAnimateElementAttributes extends
|
|
888
|
+
interface SVGAnimateElementAttributes extends GlobalSVGAttributes {
|
|
781
889
|
['accumulate']: AttrValue;
|
|
782
890
|
['additive']: AttrValue;
|
|
783
891
|
['alignment-baseline']: AttrValue;
|
|
@@ -864,7 +972,7 @@ interface SVGAnimateElementAttributes extends GenericAttributes {
|
|
|
864
972
|
['word-spacing']: AttrValue;
|
|
865
973
|
['writing-mode']: AttrValue;
|
|
866
974
|
}
|
|
867
|
-
interface SVGAnimateMotionElementAttributes extends
|
|
975
|
+
interface SVGAnimateMotionElementAttributes extends GlobalSVGAttributes {
|
|
868
976
|
['accumulate']: AttrValue;
|
|
869
977
|
['additive']: AttrValue;
|
|
870
978
|
['begin']: AttrValue;
|
|
@@ -895,7 +1003,7 @@ interface SVGAnimateMotionElementAttributes extends GenericAttributes {
|
|
|
895
1003
|
['to']: AttrValue;
|
|
896
1004
|
['values']: AttrValue;
|
|
897
1005
|
}
|
|
898
|
-
interface SVGAnimateTransformElementAttributes extends
|
|
1006
|
+
interface SVGAnimateTransformElementAttributes extends GlobalSVGAttributes {
|
|
899
1007
|
['accumulate']: AttrValue;
|
|
900
1008
|
['additive']: AttrValue;
|
|
901
1009
|
['attributeName']: AttrValue;
|
|
@@ -925,7 +1033,7 @@ interface SVGAnimateTransformElementAttributes extends GenericAttributes {
|
|
|
925
1033
|
['type']: AttrValue;
|
|
926
1034
|
['values']: AttrValue;
|
|
927
1035
|
}
|
|
928
|
-
interface SVGCircleElementAttributes extends
|
|
1036
|
+
interface SVGCircleElementAttributes extends GlobalSVGAttributes {
|
|
929
1037
|
['alignment-baseline']: AttrValue;
|
|
930
1038
|
['baseline-shift']: AttrValue;
|
|
931
1039
|
['clip']: AttrValue;
|
|
@@ -1009,7 +1117,7 @@ interface SVGCircleElementAttributes extends GenericAttributes {
|
|
|
1009
1117
|
['word-spacing']: AttrValue;
|
|
1010
1118
|
['writing-mode']: AttrValue;
|
|
1011
1119
|
}
|
|
1012
|
-
interface SVGClipPathElementAttributes extends
|
|
1120
|
+
interface SVGClipPathElementAttributes extends GlobalSVGAttributes {
|
|
1013
1121
|
['alignment-baseline']: AttrValue;
|
|
1014
1122
|
['baseline-shift']: AttrValue;
|
|
1015
1123
|
['clip']: AttrValue;
|
|
@@ -1076,7 +1184,7 @@ interface SVGClipPathElementAttributes extends GenericAttributes {
|
|
|
1076
1184
|
['word-spacing']: AttrValue;
|
|
1077
1185
|
['writing-mode']: AttrValue;
|
|
1078
1186
|
}
|
|
1079
|
-
interface SVGDefsElementAttributes extends
|
|
1187
|
+
interface SVGDefsElementAttributes extends GlobalSVGAttributes {
|
|
1080
1188
|
['alignment-baseline']: AttrValue;
|
|
1081
1189
|
['baseline-shift']: AttrValue;
|
|
1082
1190
|
['clip']: AttrValue;
|
|
@@ -1142,14 +1250,14 @@ interface SVGDefsElementAttributes extends GenericAttributes {
|
|
|
1142
1250
|
['word-spacing']: AttrValue;
|
|
1143
1251
|
['writing-mode']: AttrValue;
|
|
1144
1252
|
}
|
|
1145
|
-
interface SVGDescElementAttributes extends
|
|
1253
|
+
interface SVGDescElementAttributes extends GlobalSVGAttributes {
|
|
1146
1254
|
['requiredExtensions']: AttrValue;
|
|
1147
1255
|
['requiredFeatures']: AttrValue;
|
|
1148
1256
|
['requiredFonts']: AttrValue;
|
|
1149
1257
|
['requiredFormats']: AttrValue;
|
|
1150
1258
|
['systemLanguage']: AttrValue;
|
|
1151
1259
|
}
|
|
1152
|
-
interface SVGEllipseElementAttributes extends
|
|
1260
|
+
interface SVGEllipseElementAttributes extends GlobalSVGAttributes {
|
|
1153
1261
|
['alignment-baseline']: AttrValue;
|
|
1154
1262
|
['baseline-shift']: AttrValue;
|
|
1155
1263
|
['clip']: AttrValue;
|
|
@@ -1234,7 +1342,7 @@ interface SVGEllipseElementAttributes extends GenericAttributes {
|
|
|
1234
1342
|
['word-spacing']: AttrValue;
|
|
1235
1343
|
['writing-mode']: AttrValue;
|
|
1236
1344
|
}
|
|
1237
|
-
interface SVGFEBlendElementAttributes extends
|
|
1345
|
+
interface SVGFEBlendElementAttributes extends GlobalSVGAttributes {
|
|
1238
1346
|
['alignment-baseline']: AttrValue;
|
|
1239
1347
|
['baseline-shift']: AttrValue;
|
|
1240
1348
|
['clip']: AttrValue;
|
|
@@ -1303,7 +1411,7 @@ interface SVGFEBlendElementAttributes extends GenericAttributes {
|
|
|
1303
1411
|
['x']: AttrValue;
|
|
1304
1412
|
['y']: AttrValue;
|
|
1305
1413
|
}
|
|
1306
|
-
interface SVGFEColorMatrixElementAttributes extends
|
|
1414
|
+
interface SVGFEColorMatrixElementAttributes extends GlobalSVGAttributes {
|
|
1307
1415
|
['alignment-baseline']: AttrValue;
|
|
1308
1416
|
['baseline-shift']: AttrValue;
|
|
1309
1417
|
['clip']: AttrValue;
|
|
@@ -1372,7 +1480,7 @@ interface SVGFEColorMatrixElementAttributes extends GenericAttributes {
|
|
|
1372
1480
|
['x']: AttrValue;
|
|
1373
1481
|
['y']: AttrValue;
|
|
1374
1482
|
}
|
|
1375
|
-
interface SVGFEComponentTransferElementAttributes extends
|
|
1483
|
+
interface SVGFEComponentTransferElementAttributes extends GlobalSVGAttributes {
|
|
1376
1484
|
['alignment-baseline']: AttrValue;
|
|
1377
1485
|
['baseline-shift']: AttrValue;
|
|
1378
1486
|
['clip']: AttrValue;
|
|
@@ -1439,7 +1547,7 @@ interface SVGFEComponentTransferElementAttributes extends GenericAttributes {
|
|
|
1439
1547
|
['x']: AttrValue;
|
|
1440
1548
|
['y']: AttrValue;
|
|
1441
1549
|
}
|
|
1442
|
-
interface SVGFECompositeElementAttributes extends
|
|
1550
|
+
interface SVGFECompositeElementAttributes extends GlobalSVGAttributes {
|
|
1443
1551
|
['alignment-baseline']: AttrValue;
|
|
1444
1552
|
['baseline-shift']: AttrValue;
|
|
1445
1553
|
['clip']: AttrValue;
|
|
@@ -1512,7 +1620,7 @@ interface SVGFECompositeElementAttributes extends GenericAttributes {
|
|
|
1512
1620
|
['x']: AttrValue;
|
|
1513
1621
|
['y']: AttrValue;
|
|
1514
1622
|
}
|
|
1515
|
-
interface SVGFEConvolveMatrixElementAttributes extends
|
|
1623
|
+
interface SVGFEConvolveMatrixElementAttributes extends GlobalSVGAttributes {
|
|
1516
1624
|
['alignment-baseline']: AttrValue;
|
|
1517
1625
|
['baseline-shift']: AttrValue;
|
|
1518
1626
|
['bias']: AttrValue;
|
|
@@ -1588,7 +1696,7 @@ interface SVGFEConvolveMatrixElementAttributes extends GenericAttributes {
|
|
|
1588
1696
|
['x']: AttrValue;
|
|
1589
1697
|
['y']: AttrValue;
|
|
1590
1698
|
}
|
|
1591
|
-
interface SVGFEDiffuseLightingElementAttributes extends
|
|
1699
|
+
interface SVGFEDiffuseLightingElementAttributes extends GlobalSVGAttributes {
|
|
1592
1700
|
['alignment-baseline']: AttrValue;
|
|
1593
1701
|
['baseline-shift']: AttrValue;
|
|
1594
1702
|
['clip']: AttrValue;
|
|
@@ -1658,7 +1766,7 @@ interface SVGFEDiffuseLightingElementAttributes extends GenericAttributes {
|
|
|
1658
1766
|
['x']: AttrValue;
|
|
1659
1767
|
['y']: AttrValue;
|
|
1660
1768
|
}
|
|
1661
|
-
interface SVGFEDisplacementMapElementAttributes extends
|
|
1769
|
+
interface SVGFEDisplacementMapElementAttributes extends GlobalSVGAttributes {
|
|
1662
1770
|
['alignment-baseline']: AttrValue;
|
|
1663
1771
|
['baseline-shift']: AttrValue;
|
|
1664
1772
|
['clip']: AttrValue;
|
|
@@ -1729,11 +1837,11 @@ interface SVGFEDisplacementMapElementAttributes extends GenericAttributes {
|
|
|
1729
1837
|
['y']: AttrValue;
|
|
1730
1838
|
['yChannelSelector']: AttrValue;
|
|
1731
1839
|
}
|
|
1732
|
-
interface SVGFEDistantLightElementAttributes extends
|
|
1840
|
+
interface SVGFEDistantLightElementAttributes extends GlobalSVGAttributes {
|
|
1733
1841
|
['azimuth']: AttrValue;
|
|
1734
1842
|
['elevation']: AttrValue;
|
|
1735
1843
|
}
|
|
1736
|
-
interface SVGFEDropShadowElementAttributes extends
|
|
1844
|
+
interface SVGFEDropShadowElementAttributes extends GlobalSVGAttributes {
|
|
1737
1845
|
['dx']: AttrValue;
|
|
1738
1846
|
['dy']: AttrValue;
|
|
1739
1847
|
['height']: AttrValue;
|
|
@@ -1744,7 +1852,7 @@ interface SVGFEDropShadowElementAttributes extends GenericAttributes {
|
|
|
1744
1852
|
['x']: AttrValue;
|
|
1745
1853
|
['y']: AttrValue;
|
|
1746
1854
|
}
|
|
1747
|
-
interface SVGFEFloodElementAttributes extends
|
|
1855
|
+
interface SVGFEFloodElementAttributes extends GlobalSVGAttributes {
|
|
1748
1856
|
['alignment-baseline']: AttrValue;
|
|
1749
1857
|
['baseline-shift']: AttrValue;
|
|
1750
1858
|
['clip']: AttrValue;
|
|
@@ -1810,7 +1918,7 @@ interface SVGFEFloodElementAttributes extends GenericAttributes {
|
|
|
1810
1918
|
['x']: AttrValue;
|
|
1811
1919
|
['y']: AttrValue;
|
|
1812
1920
|
}
|
|
1813
|
-
interface SVGFEFuncAElementAttributes extends
|
|
1921
|
+
interface SVGFEFuncAElementAttributes extends GlobalSVGAttributes {
|
|
1814
1922
|
['amplitude']: AttrValue;
|
|
1815
1923
|
['exponent']: AttrValue;
|
|
1816
1924
|
['intercept']: AttrValue;
|
|
@@ -1819,7 +1927,7 @@ interface SVGFEFuncAElementAttributes extends GenericAttributes {
|
|
|
1819
1927
|
['tableValues']: AttrValue;
|
|
1820
1928
|
['type']: AttrValue;
|
|
1821
1929
|
}
|
|
1822
|
-
interface SVGFEFuncBElementAttributes extends
|
|
1930
|
+
interface SVGFEFuncBElementAttributes extends GlobalSVGAttributes {
|
|
1823
1931
|
['amplitude']: AttrValue;
|
|
1824
1932
|
['exponent']: AttrValue;
|
|
1825
1933
|
['intercept']: AttrValue;
|
|
@@ -1828,7 +1936,7 @@ interface SVGFEFuncBElementAttributes extends GenericAttributes {
|
|
|
1828
1936
|
['tableValues']: AttrValue;
|
|
1829
1937
|
['type']: AttrValue;
|
|
1830
1938
|
}
|
|
1831
|
-
interface SVGFEFuncGElementAttributes extends
|
|
1939
|
+
interface SVGFEFuncGElementAttributes extends GlobalSVGAttributes {
|
|
1832
1940
|
['amplitude']: AttrValue;
|
|
1833
1941
|
['exponent']: AttrValue;
|
|
1834
1942
|
['intercept']: AttrValue;
|
|
@@ -1837,7 +1945,7 @@ interface SVGFEFuncGElementAttributes extends GenericAttributes {
|
|
|
1837
1945
|
['tableValues']: AttrValue;
|
|
1838
1946
|
['type']: AttrValue;
|
|
1839
1947
|
}
|
|
1840
|
-
interface SVGFEFuncRElementAttributes extends
|
|
1948
|
+
interface SVGFEFuncRElementAttributes extends GlobalSVGAttributes {
|
|
1841
1949
|
['amplitude']: AttrValue;
|
|
1842
1950
|
['exponent']: AttrValue;
|
|
1843
1951
|
['intercept']: AttrValue;
|
|
@@ -1846,7 +1954,7 @@ interface SVGFEFuncRElementAttributes extends GenericAttributes {
|
|
|
1846
1954
|
['tableValues']: AttrValue;
|
|
1847
1955
|
['type']: AttrValue;
|
|
1848
1956
|
}
|
|
1849
|
-
interface SVGFEGaussianBlurElementAttributes extends
|
|
1957
|
+
interface SVGFEGaussianBlurElementAttributes extends GlobalSVGAttributes {
|
|
1850
1958
|
['alignment-baseline']: AttrValue;
|
|
1851
1959
|
['baseline-shift']: AttrValue;
|
|
1852
1960
|
['clip']: AttrValue;
|
|
@@ -1915,7 +2023,7 @@ interface SVGFEGaussianBlurElementAttributes extends GenericAttributes {
|
|
|
1915
2023
|
['x']: AttrValue;
|
|
1916
2024
|
['y']: AttrValue;
|
|
1917
2025
|
}
|
|
1918
|
-
interface SVGFEImageElementAttributes extends
|
|
2026
|
+
interface SVGFEImageElementAttributes extends GlobalSVGAttributes {
|
|
1919
2027
|
['alignment-baseline']: AttrValue;
|
|
1920
2028
|
['baseline-shift']: AttrValue;
|
|
1921
2029
|
['clip']: AttrValue;
|
|
@@ -1985,7 +2093,7 @@ interface SVGFEImageElementAttributes extends GenericAttributes {
|
|
|
1985
2093
|
['x']: AttrValue;
|
|
1986
2094
|
['y']: AttrValue;
|
|
1987
2095
|
}
|
|
1988
|
-
interface SVGFEMergeElementAttributes extends
|
|
2096
|
+
interface SVGFEMergeElementAttributes extends GlobalSVGAttributes {
|
|
1989
2097
|
['alignment-baseline']: AttrValue;
|
|
1990
2098
|
['baseline-shift']: AttrValue;
|
|
1991
2099
|
['clip']: AttrValue;
|
|
@@ -2051,10 +2159,10 @@ interface SVGFEMergeElementAttributes extends GenericAttributes {
|
|
|
2051
2159
|
['x']: AttrValue;
|
|
2052
2160
|
['y']: AttrValue;
|
|
2053
2161
|
}
|
|
2054
|
-
interface SVGFEMergeNodeElementAttributes extends
|
|
2162
|
+
interface SVGFEMergeNodeElementAttributes extends GlobalSVGAttributes {
|
|
2055
2163
|
['in']: AttrValue;
|
|
2056
2164
|
}
|
|
2057
|
-
interface SVGFEMorphologyElementAttributes extends
|
|
2165
|
+
interface SVGFEMorphologyElementAttributes extends GlobalSVGAttributes {
|
|
2058
2166
|
['alignment-baseline']: AttrValue;
|
|
2059
2167
|
['baseline-shift']: AttrValue;
|
|
2060
2168
|
['clip']: AttrValue;
|
|
@@ -2123,7 +2231,7 @@ interface SVGFEMorphologyElementAttributes extends GenericAttributes {
|
|
|
2123
2231
|
['x']: AttrValue;
|
|
2124
2232
|
['y']: AttrValue;
|
|
2125
2233
|
}
|
|
2126
|
-
interface SVGFEOffsetElementAttributes extends
|
|
2234
|
+
interface SVGFEOffsetElementAttributes extends GlobalSVGAttributes {
|
|
2127
2235
|
['alignment-baseline']: AttrValue;
|
|
2128
2236
|
['baseline-shift']: AttrValue;
|
|
2129
2237
|
['clip']: AttrValue;
|
|
@@ -2192,12 +2300,12 @@ interface SVGFEOffsetElementAttributes extends GenericAttributes {
|
|
|
2192
2300
|
['x']: AttrValue;
|
|
2193
2301
|
['y']: AttrValue;
|
|
2194
2302
|
}
|
|
2195
|
-
interface SVGFEPointLightElementAttributes extends
|
|
2303
|
+
interface SVGFEPointLightElementAttributes extends GlobalSVGAttributes {
|
|
2196
2304
|
['x']: AttrValue;
|
|
2197
2305
|
['y']: AttrValue;
|
|
2198
2306
|
['z']: AttrValue;
|
|
2199
2307
|
}
|
|
2200
|
-
interface SVGFESpecularLightingElementAttributes extends
|
|
2308
|
+
interface SVGFESpecularLightingElementAttributes extends GlobalSVGAttributes {
|
|
2201
2309
|
['alignment-baseline']: AttrValue;
|
|
2202
2310
|
['baseline-shift']: AttrValue;
|
|
2203
2311
|
['clip']: AttrValue;
|
|
@@ -2268,7 +2376,7 @@ interface SVGFESpecularLightingElementAttributes extends GenericAttributes {
|
|
|
2268
2376
|
['x']: AttrValue;
|
|
2269
2377
|
['y']: AttrValue;
|
|
2270
2378
|
}
|
|
2271
|
-
interface SVGFESpotLightElementAttributes extends
|
|
2379
|
+
interface SVGFESpotLightElementAttributes extends GlobalSVGAttributes {
|
|
2272
2380
|
['limitingConeAngle']: AttrValue;
|
|
2273
2381
|
['pointsAtX']: AttrValue;
|
|
2274
2382
|
['pointsAtY']: AttrValue;
|
|
@@ -2278,7 +2386,7 @@ interface SVGFESpotLightElementAttributes extends GenericAttributes {
|
|
|
2278
2386
|
['y']: AttrValue;
|
|
2279
2387
|
['z']: AttrValue;
|
|
2280
2388
|
}
|
|
2281
|
-
interface SVGFETileElementAttributes extends
|
|
2389
|
+
interface SVGFETileElementAttributes extends GlobalSVGAttributes {
|
|
2282
2390
|
['alignment-baseline']: AttrValue;
|
|
2283
2391
|
['baseline-shift']: AttrValue;
|
|
2284
2392
|
['clip']: AttrValue;
|
|
@@ -2345,7 +2453,7 @@ interface SVGFETileElementAttributes extends GenericAttributes {
|
|
|
2345
2453
|
['x']: AttrValue;
|
|
2346
2454
|
['y']: AttrValue;
|
|
2347
2455
|
}
|
|
2348
|
-
interface SVGFETurbulenceElementAttributes extends
|
|
2456
|
+
interface SVGFETurbulenceElementAttributes extends GlobalSVGAttributes {
|
|
2349
2457
|
['alignment-baseline']: AttrValue;
|
|
2350
2458
|
['baseFrequency']: AttrValue;
|
|
2351
2459
|
['baseline-shift']: AttrValue;
|
|
@@ -2416,7 +2524,7 @@ interface SVGFETurbulenceElementAttributes extends GenericAttributes {
|
|
|
2416
2524
|
['x']: AttrValue;
|
|
2417
2525
|
['y']: AttrValue;
|
|
2418
2526
|
}
|
|
2419
|
-
interface SVGFilterElementAttributes extends
|
|
2527
|
+
interface SVGFilterElementAttributes extends GlobalSVGAttributes {
|
|
2420
2528
|
['alignment-baseline']: AttrValue;
|
|
2421
2529
|
['baseline-shift']: AttrValue;
|
|
2422
2530
|
['clip']: AttrValue;
|
|
@@ -2485,7 +2593,7 @@ interface SVGFilterElementAttributes extends GenericAttributes {
|
|
|
2485
2593
|
['x']: AttrValue;
|
|
2486
2594
|
['y']: AttrValue;
|
|
2487
2595
|
}
|
|
2488
|
-
interface SVGForeignObjectElementAttributes extends
|
|
2596
|
+
interface SVGForeignObjectElementAttributes extends GlobalSVGAttributes {
|
|
2489
2597
|
['alignment-baseline']: AttrValue;
|
|
2490
2598
|
['baseline-shift']: AttrValue;
|
|
2491
2599
|
['clip']: AttrValue;
|
|
@@ -2569,7 +2677,7 @@ interface SVGForeignObjectElementAttributes extends GenericAttributes {
|
|
|
2569
2677
|
['x']: AttrValue;
|
|
2570
2678
|
['y']: AttrValue;
|
|
2571
2679
|
}
|
|
2572
|
-
interface SVGGElementAttributes extends
|
|
2680
|
+
interface SVGGElementAttributes extends GlobalSVGAttributes {
|
|
2573
2681
|
['alignment-baseline']: AttrValue;
|
|
2574
2682
|
['baseline-shift']: AttrValue;
|
|
2575
2683
|
['clip']: AttrValue;
|
|
@@ -2649,7 +2757,7 @@ interface SVGGElementAttributes extends GenericAttributes {
|
|
|
2649
2757
|
['word-spacing']: AttrValue;
|
|
2650
2758
|
['writing-mode']: AttrValue;
|
|
2651
2759
|
}
|
|
2652
|
-
interface SVGImageElementAttributes extends
|
|
2760
|
+
interface SVGImageElementAttributes extends GlobalSVGAttributes {
|
|
2653
2761
|
['alignment-baseline']: AttrValue;
|
|
2654
2762
|
['baseline-shift']: AttrValue;
|
|
2655
2763
|
['clip']: AttrValue;
|
|
@@ -2737,7 +2845,7 @@ interface SVGImageElementAttributes extends GenericAttributes {
|
|
|
2737
2845
|
['x']: AttrValue;
|
|
2738
2846
|
['y']: AttrValue;
|
|
2739
2847
|
}
|
|
2740
|
-
interface SVGLineElementAttributes extends
|
|
2848
|
+
interface SVGLineElementAttributes extends GlobalSVGAttributes {
|
|
2741
2849
|
['alignment-baseline']: AttrValue;
|
|
2742
2850
|
['baseline-shift']: AttrValue;
|
|
2743
2851
|
['clip']: AttrValue;
|
|
@@ -2822,7 +2930,7 @@ interface SVGLineElementAttributes extends GenericAttributes {
|
|
|
2822
2930
|
['y1']: AttrValue;
|
|
2823
2931
|
['y2']: AttrValue;
|
|
2824
2932
|
}
|
|
2825
|
-
interface SVGLinearGradientElementAttributes extends
|
|
2933
|
+
interface SVGLinearGradientElementAttributes extends GlobalSVGAttributes {
|
|
2826
2934
|
['alignment-baseline']: AttrValue;
|
|
2827
2935
|
['baseline-shift']: AttrValue;
|
|
2828
2936
|
['clip']: AttrValue;
|
|
@@ -2892,7 +3000,7 @@ interface SVGLinearGradientElementAttributes extends GenericAttributes {
|
|
|
2892
3000
|
['y1']: AttrValue;
|
|
2893
3001
|
['y2']: AttrValue;
|
|
2894
3002
|
}
|
|
2895
|
-
interface SVGMarkerElementAttributes extends
|
|
3003
|
+
interface SVGMarkerElementAttributes extends GlobalSVGAttributes {
|
|
2896
3004
|
['alignment-baseline']: AttrValue;
|
|
2897
3005
|
['baseline-shift']: AttrValue;
|
|
2898
3006
|
['clip']: AttrValue;
|
|
@@ -2962,7 +3070,7 @@ interface SVGMarkerElementAttributes extends GenericAttributes {
|
|
|
2962
3070
|
['word-spacing']: AttrValue;
|
|
2963
3071
|
['writing-mode']: AttrValue;
|
|
2964
3072
|
}
|
|
2965
|
-
interface SVGMaskElementAttributes extends
|
|
3073
|
+
interface SVGMaskElementAttributes extends GlobalSVGAttributes {
|
|
2966
3074
|
['alignment-baseline']: AttrValue;
|
|
2967
3075
|
['baseline-shift']: AttrValue;
|
|
2968
3076
|
['clip']: AttrValue;
|
|
@@ -3033,18 +3141,18 @@ interface SVGMaskElementAttributes extends GenericAttributes {
|
|
|
3033
3141
|
['x']: AttrValue;
|
|
3034
3142
|
['y']: AttrValue;
|
|
3035
3143
|
}
|
|
3036
|
-
interface SVGMetadataElementAttributes extends
|
|
3144
|
+
interface SVGMetadataElementAttributes extends GlobalSVGAttributes {
|
|
3037
3145
|
['requiredExtensions']: AttrValue;
|
|
3038
3146
|
['requiredFeatures']: AttrValue;
|
|
3039
3147
|
['requiredFonts']: AttrValue;
|
|
3040
3148
|
['requiredFormats']: AttrValue;
|
|
3041
3149
|
['systemLanguage']: AttrValue;
|
|
3042
3150
|
}
|
|
3043
|
-
interface SVGMPathElementAttributes extends
|
|
3151
|
+
interface SVGMPathElementAttributes extends GlobalSVGAttributes {
|
|
3044
3152
|
['externalResourcesRequired']: AttrValue;
|
|
3045
3153
|
['href']: AttrValue;
|
|
3046
3154
|
}
|
|
3047
|
-
interface SVGPathElementAttributes extends
|
|
3155
|
+
interface SVGPathElementAttributes extends GlobalSVGAttributes {
|
|
3048
3156
|
['alignment-baseline']: AttrValue;
|
|
3049
3157
|
['baseline-shift']: AttrValue;
|
|
3050
3158
|
['clip']: AttrValue;
|
|
@@ -3126,7 +3234,7 @@ interface SVGPathElementAttributes extends GenericAttributes {
|
|
|
3126
3234
|
['word-spacing']: AttrValue;
|
|
3127
3235
|
['writing-mode']: AttrValue;
|
|
3128
3236
|
}
|
|
3129
|
-
interface SVGPatternElementAttributes extends
|
|
3237
|
+
interface SVGPatternElementAttributes extends GlobalSVGAttributes {
|
|
3130
3238
|
['alignment-baseline']: AttrValue;
|
|
3131
3239
|
['baseline-shift']: AttrValue;
|
|
3132
3240
|
['clip']: AttrValue;
|
|
@@ -3201,7 +3309,7 @@ interface SVGPatternElementAttributes extends GenericAttributes {
|
|
|
3201
3309
|
['x']: AttrValue;
|
|
3202
3310
|
['y']: AttrValue;
|
|
3203
3311
|
}
|
|
3204
|
-
interface SVGPolygonElementAttributes extends
|
|
3312
|
+
interface SVGPolygonElementAttributes extends GlobalSVGAttributes {
|
|
3205
3313
|
['alignment-baseline']: AttrValue;
|
|
3206
3314
|
['baseline-shift']: AttrValue;
|
|
3207
3315
|
['clip']: AttrValue;
|
|
@@ -3283,7 +3391,7 @@ interface SVGPolygonElementAttributes extends GenericAttributes {
|
|
|
3283
3391
|
['word-spacing']: AttrValue;
|
|
3284
3392
|
['writing-mode']: AttrValue;
|
|
3285
3393
|
}
|
|
3286
|
-
interface SVGPolylineElementAttributes extends
|
|
3394
|
+
interface SVGPolylineElementAttributes extends GlobalSVGAttributes {
|
|
3287
3395
|
['alignment-baseline']: AttrValue;
|
|
3288
3396
|
['baseline-shift']: AttrValue;
|
|
3289
3397
|
['clip']: AttrValue;
|
|
@@ -3365,7 +3473,7 @@ interface SVGPolylineElementAttributes extends GenericAttributes {
|
|
|
3365
3473
|
['word-spacing']: AttrValue;
|
|
3366
3474
|
['writing-mode']: AttrValue;
|
|
3367
3475
|
}
|
|
3368
|
-
interface SVGRadialGradientElementAttributes extends
|
|
3476
|
+
interface SVGRadialGradientElementAttributes extends GlobalSVGAttributes {
|
|
3369
3477
|
['alignment-baseline']: AttrValue;
|
|
3370
3478
|
['baseline-shift']: AttrValue;
|
|
3371
3479
|
['clip']: AttrValue;
|
|
@@ -3437,7 +3545,7 @@ interface SVGRadialGradientElementAttributes extends GenericAttributes {
|
|
|
3437
3545
|
['word-spacing']: AttrValue;
|
|
3438
3546
|
['writing-mode']: AttrValue;
|
|
3439
3547
|
}
|
|
3440
|
-
interface SVGRectElementAttributes extends
|
|
3548
|
+
interface SVGRectElementAttributes extends GlobalSVGAttributes {
|
|
3441
3549
|
['alignment-baseline']: AttrValue;
|
|
3442
3550
|
['baseline-shift']: AttrValue;
|
|
3443
3551
|
['clip']: AttrValue;
|
|
@@ -3524,13 +3632,13 @@ interface SVGRectElementAttributes extends GenericAttributes {
|
|
|
3524
3632
|
['x']: AttrValue;
|
|
3525
3633
|
['y']: AttrValue;
|
|
3526
3634
|
}
|
|
3527
|
-
interface SVGScriptElementAttributes extends
|
|
3635
|
+
interface SVGScriptElementAttributes extends GlobalSVGAttributes {
|
|
3528
3636
|
['crossorigin']: AttrValue;
|
|
3529
3637
|
['externalResourcesRequired']: AttrValue;
|
|
3530
3638
|
['href']: AttrValue;
|
|
3531
3639
|
['type']: AttrValue;
|
|
3532
3640
|
}
|
|
3533
|
-
interface SVGSetElementAttributes extends
|
|
3641
|
+
interface SVGSetElementAttributes extends GlobalSVGAttributes {
|
|
3534
3642
|
['attributeName']: AttrValue;
|
|
3535
3643
|
['attributeType']: AttrValue;
|
|
3536
3644
|
['begin']: AttrValue;
|
|
@@ -3551,7 +3659,7 @@ interface SVGSetElementAttributes extends GenericAttributes {
|
|
|
3551
3659
|
['systemLanguage']: AttrValue;
|
|
3552
3660
|
['to']: AttrValue;
|
|
3553
3661
|
}
|
|
3554
|
-
interface SVGStopElementAttributes extends
|
|
3662
|
+
interface SVGStopElementAttributes extends GlobalSVGAttributes {
|
|
3555
3663
|
['alignment-baseline']: AttrValue;
|
|
3556
3664
|
['baseline-shift']: AttrValue;
|
|
3557
3665
|
['clip']: AttrValue;
|
|
@@ -3613,12 +3721,12 @@ interface SVGStopElementAttributes extends GenericAttributes {
|
|
|
3613
3721
|
['word-spacing']: AttrValue;
|
|
3614
3722
|
['writing-mode']: AttrValue;
|
|
3615
3723
|
}
|
|
3616
|
-
interface SVGStyleElementAttributes extends
|
|
3724
|
+
interface SVGStyleElementAttributes extends GlobalSVGAttributes {
|
|
3617
3725
|
['media']: AttrValue;
|
|
3618
3726
|
['title']: AttrValue;
|
|
3619
3727
|
['type']: AttrValue;
|
|
3620
3728
|
}
|
|
3621
|
-
interface SVGSVGElementAttributes extends
|
|
3729
|
+
interface SVGSVGElementAttributes extends GlobalSVGAttributes {
|
|
3622
3730
|
['alignment-baseline']: AttrValue;
|
|
3623
3731
|
['baseProfile']: AttrValue;
|
|
3624
3732
|
['baseline-shift']: AttrValue;
|
|
@@ -3715,7 +3823,7 @@ interface SVGSVGElementAttributes extends GenericAttributes {
|
|
|
3715
3823
|
['zoomAndPan']: AttrValue;
|
|
3716
3824
|
['xmlns']: AttrValue;
|
|
3717
3825
|
}
|
|
3718
|
-
interface SVGSwitchElementAttributes extends
|
|
3826
|
+
interface SVGSwitchElementAttributes extends GlobalSVGAttributes {
|
|
3719
3827
|
['alignment-baseline']: AttrValue;
|
|
3720
3828
|
['baseline-shift']: AttrValue;
|
|
3721
3829
|
['clip']: AttrValue;
|
|
@@ -3795,7 +3903,7 @@ interface SVGSwitchElementAttributes extends GenericAttributes {
|
|
|
3795
3903
|
['word-spacing']: AttrValue;
|
|
3796
3904
|
['writing-mode']: AttrValue;
|
|
3797
3905
|
}
|
|
3798
|
-
interface SVGSymbolElementAttributes extends
|
|
3906
|
+
interface SVGSymbolElementAttributes extends GlobalSVGAttributes {
|
|
3799
3907
|
['alignment-baseline']: AttrValue;
|
|
3800
3908
|
['baseline-shift']: AttrValue;
|
|
3801
3909
|
['clip']: AttrValue;
|
|
@@ -3865,7 +3973,7 @@ interface SVGSymbolElementAttributes extends GenericAttributes {
|
|
|
3865
3973
|
['x']: AttrValue;
|
|
3866
3974
|
['y']: AttrValue;
|
|
3867
3975
|
}
|
|
3868
|
-
interface SVGTextElementAttributes extends
|
|
3976
|
+
interface SVGTextElementAttributes extends GlobalSVGAttributes {
|
|
3869
3977
|
['alignment-baseline']: AttrValue;
|
|
3870
3978
|
['baseline-shift']: AttrValue;
|
|
3871
3979
|
['clip']: AttrValue;
|
|
@@ -3953,7 +4061,7 @@ interface SVGTextElementAttributes extends GenericAttributes {
|
|
|
3953
4061
|
['x']: AttrValue;
|
|
3954
4062
|
['y']: AttrValue;
|
|
3955
4063
|
}
|
|
3956
|
-
interface SVGTextPathElementAttributes extends
|
|
4064
|
+
interface SVGTextPathElementAttributes extends GlobalSVGAttributes {
|
|
3957
4065
|
['alignment-baseline']: AttrValue;
|
|
3958
4066
|
['baseline-shift']: AttrValue;
|
|
3959
4067
|
['clip']: AttrValue;
|
|
@@ -4026,14 +4134,14 @@ interface SVGTextPathElementAttributes extends GenericAttributes {
|
|
|
4026
4134
|
['word-spacing']: AttrValue;
|
|
4027
4135
|
['writing-mode']: AttrValue;
|
|
4028
4136
|
}
|
|
4029
|
-
interface SVGTitleElementAttributes extends
|
|
4137
|
+
interface SVGTitleElementAttributes extends GlobalSVGAttributes {
|
|
4030
4138
|
['requiredExtensions']: AttrValue;
|
|
4031
4139
|
['requiredFeatures']: AttrValue;
|
|
4032
4140
|
['requiredFonts']: AttrValue;
|
|
4033
4141
|
['requiredFormats']: AttrValue;
|
|
4034
4142
|
['systemLanguage']: AttrValue;
|
|
4035
4143
|
}
|
|
4036
|
-
interface SVGTSpanElementAttributes extends
|
|
4144
|
+
interface SVGTSpanElementAttributes extends GlobalSVGAttributes {
|
|
4037
4145
|
['alignment-baseline']: AttrValue;
|
|
4038
4146
|
['baseline-shift']: AttrValue;
|
|
4039
4147
|
['clip']: AttrValue;
|
|
@@ -4119,7 +4227,7 @@ interface SVGTSpanElementAttributes extends GenericAttributes {
|
|
|
4119
4227
|
['x']: AttrValue;
|
|
4120
4228
|
['y']: AttrValue;
|
|
4121
4229
|
}
|
|
4122
|
-
interface SVGUseElementAttributes extends
|
|
4230
|
+
interface SVGUseElementAttributes extends GlobalSVGAttributes {
|
|
4123
4231
|
['alignment-baseline']: AttrValue;
|
|
4124
4232
|
['baseline-shift']: AttrValue;
|
|
4125
4233
|
['clip']: AttrValue;
|
|
@@ -4204,14 +4312,22 @@ interface SVGUseElementAttributes extends GenericAttributes {
|
|
|
4204
4312
|
['x']: AttrValue;
|
|
4205
4313
|
['y']: AttrValue;
|
|
4206
4314
|
}
|
|
4207
|
-
interface SVGViewElementAttributes extends
|
|
4315
|
+
interface SVGViewElementAttributes extends GlobalSVGAttributes {
|
|
4208
4316
|
['externalResourcesRequired']: AttrValue;
|
|
4209
4317
|
['preserveAspectRatio']: AttrValue;
|
|
4210
4318
|
['viewBox']: AttrValue;
|
|
4211
4319
|
['viewTarget']: AttrValue;
|
|
4212
4320
|
['zoomAndPan']: AttrValue;
|
|
4213
4321
|
}
|
|
4214
|
-
interface
|
|
4322
|
+
interface SVGElementAttributes extends GlobalSVGAttributes {
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4325
|
+
|
|
4326
|
+
/**
|
|
4327
|
+
* @internal
|
|
4328
|
+
* @private - not for use outside of Glint
|
|
4329
|
+
*/
|
|
4330
|
+
interface GlintSvgElementAttributesMap {
|
|
4215
4331
|
['SVGAElement']: SVGAElementAttributes;
|
|
4216
4332
|
['SVGAnimateElement']: SVGAnimateElementAttributes;
|
|
4217
4333
|
['SVGAnimateMotionElement']: SVGAnimateMotionElementAttributes;
|
|
@@ -4275,5 +4391,6 @@ interface SvgElements {
|
|
|
4275
4391
|
['SVGTSpanElement']: SVGTSpanElementAttributes;
|
|
4276
4392
|
['SVGUseElement']: SVGUseElementAttributes;
|
|
4277
4393
|
['SVGViewElement']: SVGViewElementAttributes;
|
|
4394
|
+
['SVGElement']: GlobalSVGAttributes;
|
|
4278
4395
|
}
|
|
4279
4396
|
}
|