@estjs/template 0.0.15-beta.1 → 0.0.15-beta.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/types/jsx.d.ts DELETED
@@ -1,2209 +0,0 @@
1
- import type * as csstype from 'csstype';
2
- import type { estNode } from './node';
3
- /**
4
- * Based on JSX types for Surplus and Inferno and adapted for `dom-expressions`.
5
- *
6
- * https://github.com/adamhaile/surplus/blob/master/index.d.ts
7
- * https://github.com/infernojs/inferno/blob/master/packages/inferno/src/core/types.ts
8
- */
9
- type DOMElement = Element;
10
- declare const SERIALIZABLE: unique symbol;
11
-
12
- type Component<Props> = (props: Props) => estNode;
13
- type PropsOf<C> = C extends (props: infer P) => any ? P : never;
14
-
15
- declare global {
16
- export namespace JSX {
17
- export type Element = estNode;
18
- export type JSXElement = estNode;
19
-
20
- type Children =
21
- | string
22
- | number
23
- | boolean
24
- | Date
25
- | Node
26
- | Element
27
- | Effect
28
- | Children[]
29
- | null
30
- | undefined;
31
- type Effect = () => Children;
32
- interface ArrayElement extends Array<Element> {}
33
- interface ElementClass {
34
- // empty, libs can define requirements downstream
35
- }
36
- interface ElementAttributesProperty {
37
- // empty, libs can define requirements downstream
38
- }
39
- interface ElementChildrenAttribute {
40
- children: {};
41
- }
42
- type EventHandler<T, E extends Event> = (
43
- e: E & {
44
- currentTarget: T;
45
- target: DOMElement;
46
- },
47
- ) => void;
48
- interface BoundEventHandler<T, E extends Event> {
49
- 0: (
50
- data: any,
51
- e: E & {
52
- currentTarget: T;
53
- target: DOMElement;
54
- },
55
- ) => void;
56
- 1: any;
57
- }
58
- type EventHandlerUnion<T, E extends Event> = EventHandler<T, E> | BoundEventHandler<T, E>;
59
-
60
- type InputEventHandler<T, E extends InputEvent> = (
61
- e: E & {
62
- currentTarget: T;
63
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
64
- ? T
65
- : DOMElement;
66
- },
67
- ) => void;
68
- interface BoundInputEventHandler<T, E extends InputEvent> {
69
- 0: (
70
- data: any,
71
- e: E & {
72
- currentTarget: T;
73
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
74
- ? T
75
- : DOMElement;
76
- },
77
- ) => void;
78
- 1: any;
79
- }
80
- type InputEventHandlerUnion<T, E extends InputEvent> =
81
- | InputEventHandler<T, E>
82
- | BoundInputEventHandler<T, E>;
83
-
84
- type ChangeEventHandler<T, E extends Event> = (
85
- e: E & {
86
- currentTarget: T;
87
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
88
- ? T
89
- : DOMElement;
90
- },
91
- ) => void;
92
- interface BoundChangeEventHandler<T, E extends Event> {
93
- 0: (
94
- data: any,
95
- e: E & {
96
- currentTarget: T;
97
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
98
- ? T
99
- : DOMElement;
100
- },
101
- ) => void;
102
- 1: any;
103
- }
104
- type ChangeEventHandlerUnion<T, E extends Event> =
105
- | ChangeEventHandler<T, E>
106
- | BoundChangeEventHandler<T, E>;
107
-
108
- type FocusEventHandler<T, E extends FocusEvent> = (
109
- e: E & {
110
- currentTarget: T;
111
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
112
- ? T
113
- : DOMElement;
114
- },
115
- ) => void;
116
- interface BoundFocusEventHandler<T, E extends FocusEvent> {
117
- 0: (
118
- data: any,
119
- e: E & {
120
- currentTarget: T;
121
- target: T extends HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement
122
- ? T
123
- : DOMElement;
124
- },
125
- ) => void;
126
- 1: any;
127
- }
128
- type FocusEventHandlerUnion<T, E extends FocusEvent> =
129
- | FocusEventHandler<T, E>
130
- | BoundFocusEventHandler<T, E>;
131
-
132
- interface SerializableAttributeValue {
133
- toString(): string;
134
- [SERIALIZABLE]: never;
135
- }
136
-
137
- interface IntrinsicAttributes {
138
- ref?: unknown | ((e: unknown) => void);
139
- }
140
- interface CustomAttributes<T> {
141
- ref?: Signal<T> | ((el: T) => void);
142
- key?: string | number | symbol;
143
- }
144
- type Accest<T> = () => T;
145
- interface Directives {}
146
- interface DirectiveFunctions {
147
- [x: string]: (el: DOMElement, accest: Accest<any>) => void;
148
- }
149
- interface ExplicitProperties<T> {
150
- value: Signal<T>;
151
- updateValue: (value: T) => void;
152
- }
153
-
154
- interface ExplicitAttributes {}
155
- interface CustomEvents {}
156
- interface CustomCaptureEvents {}
157
- type OnCaptureAttributes<T> = {
158
- [Key in keyof CustomCaptureEvents as `oncapture:${Key}`]?: EventHandler<
159
- T,
160
- CustomCaptureEvents[Key]
161
- >;
162
- };
163
- type PropAttributes<T> = {
164
- [Key in keyof ExplicitProperties]?: ExplicitProperties<T>[Key];
165
- };
166
- interface DOMAttributes<T>
167
- extends
168
- CustomAttributes<T>,
169
- PropAttributes<T>,
170
- OnCaptureAttributes<T>,
171
- CustomEventHandlersCamelCase<T>,
172
- CustomEventHandlersLowerCase<T> {
173
- children?: Children;
174
- innerHTML?: string;
175
- innerText?: string | number;
176
- textContent?: string | number;
177
- // camel case events
178
- onCopy?: EventHandlerUnion<T, ClipboardEvent>;
179
- onCut?: EventHandlerUnion<T, ClipboardEvent>;
180
- onPaste?: EventHandlerUnion<T, ClipboardEvent>;
181
- onCompositionEnd?: EventHandlerUnion<T, CompositionEvent>;
182
- onCompositionStart?: EventHandlerUnion<T, CompositionEvent>;
183
- onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent>;
184
- onFocusOut?: FocusEventHandlerUnion<T, FocusEvent>;
185
- onFocusIn?: FocusEventHandlerUnion<T, FocusEvent>;
186
- onEncrypted?: EventHandlerUnion<T, Event>;
187
- onDragExit?: EventHandlerUnion<T, DragEvent>;
188
- // lower case events
189
- oncopy?: EventHandlerUnion<T, ClipboardEvent>;
190
- oncut?: EventHandlerUnion<T, ClipboardEvent>;
191
- onpaste?: EventHandlerUnion<T, ClipboardEvent>;
192
- oncompositionend?: EventHandlerUnion<T, CompositionEvent>;
193
- oncompositionstart?: EventHandlerUnion<T, CompositionEvent>;
194
- oncompositionupdate?: EventHandlerUnion<T, CompositionEvent>;
195
- onfocusout?: FocusEventHandlerUnion<T, FocusEvent>;
196
- onfocusin?: FocusEventHandlerUnion<T, FocusEvent>;
197
- onencrypted?: EventHandlerUnion<T, Event>;
198
- ondragexit?: EventHandlerUnion<T, DragEvent>;
199
- }
200
- interface CustomEventHandlersCamelCase<T> {
201
- onAbort?: EventHandlerUnion<T, Event>;
202
- onAnimationEnd?: EventHandlerUnion<T, AnimationEvent>;
203
- onAnimationIteration?: EventHandlerUnion<T, AnimationEvent>;
204
- onAnimationStart?: EventHandlerUnion<T, AnimationEvent>;
205
- onAuxClick?: EventHandlerUnion<T, MouseEvent>;
206
- onBeforeInput?: InputEventHandlerUnion<T, InputEvent>;
207
- onBlur?: FocusEventHandlerUnion<T, FocusEvent>;
208
- onCanPlay?: EventHandlerUnion<T, Event>;
209
- onCanPlayThrough?: EventHandlerUnion<T, Event>;
210
- onChange?: ChangeEventHandlerUnion<T, Event>;
211
- onClick?: EventHandlerUnion<T, MouseEvent>;
212
- onContextMenu?: EventHandlerUnion<T, MouseEvent>;
213
- onDblClick?: EventHandlerUnion<T, MouseEvent>;
214
- onDrag?: EventHandlerUnion<T, DragEvent>;
215
- onDragEnd?: EventHandlerUnion<T, DragEvent>;
216
- onDragEnter?: EventHandlerUnion<T, DragEvent>;
217
- onDragLeave?: EventHandlerUnion<T, DragEvent>;
218
- onDragOver?: EventHandlerUnion<T, DragEvent>;
219
- onDragStart?: EventHandlerUnion<T, DragEvent>;
220
- onDrop?: EventHandlerUnion<T, DragEvent>;
221
- onDurationChange?: EventHandlerUnion<T, Event>;
222
- onEmptied?: EventHandlerUnion<T, Event>;
223
- onEnded?: EventHandlerUnion<T, Event>;
224
- onError?: EventHandlerUnion<T, Event>;
225
- onFocus?: FocusEventHandlerUnion<T, FocusEvent>;
226
- onGotPointerCapture?: EventHandlerUnion<T, PointerEvent>;
227
- onInput?: InputEventHandlerUnion<T, InputEvent>;
228
- onInvalid?: EventHandlerUnion<T, Event>;
229
- onKeyDown?: EventHandlerUnion<T, KeyboardEvent>;
230
- onKeyPress?: EventHandlerUnion<T, KeyboardEvent>;
231
- onKeyUp?: EventHandlerUnion<T, KeyboardEvent>;
232
- onLoad?: EventHandlerUnion<T, Event>;
233
- onLoadedData?: EventHandlerUnion<T, Event>;
234
- onLoadedMetadata?: EventHandlerUnion<T, Event>;
235
- onLoadStart?: EventHandlerUnion<T, Event>;
236
- onLostPointerCapture?: EventHandlerUnion<T, PointerEvent>;
237
- onMouseDown?: EventHandlerUnion<T, MouseEvent>;
238
- onMouseEnter?: EventHandlerUnion<T, MouseEvent>;
239
- onMouseLeave?: EventHandlerUnion<T, MouseEvent>;
240
- onMouseMove?: EventHandlerUnion<T, MouseEvent>;
241
- onMouseOut?: EventHandlerUnion<T, MouseEvent>;
242
- onMouseOver?: EventHandlerUnion<T, MouseEvent>;
243
- onMouseUp?: EventHandlerUnion<T, MouseEvent>;
244
- onPause?: EventHandlerUnion<T, Event>;
245
- onPlay?: EventHandlerUnion<T, Event>;
246
- onPlaying?: EventHandlerUnion<T, Event>;
247
- onPointerCancel?: EventHandlerUnion<T, PointerEvent>;
248
- onPointerDown?: EventHandlerUnion<T, PointerEvent>;
249
- onPointerEnter?: EventHandlerUnion<T, PointerEvent>;
250
- onPointerLeave?: EventHandlerUnion<T, PointerEvent>;
251
- onPointerMove?: EventHandlerUnion<T, PointerEvent>;
252
- onPointerOut?: EventHandlerUnion<T, PointerEvent>;
253
- onPointerOver?: EventHandlerUnion<T, PointerEvent>;
254
- onPointerUp?: EventHandlerUnion<T, PointerEvent>;
255
- onProgress?: EventHandlerUnion<T, Event>;
256
- onRateChange?: EventHandlerUnion<T, Event>;
257
- onReset?: EventHandlerUnion<T, Event>;
258
- onScroll?: EventHandlerUnion<T, Event>;
259
- onScrollEnd?: EventHandlerUnion<T, Event>;
260
- onSeeked?: EventHandlerUnion<T, Event>;
261
- onSeeking?: EventHandlerUnion<T, Event>;
262
- onSelect?: EventHandlerUnion<T, UIEvent>;
263
- onStalled?: EventHandlerUnion<T, Event>;
264
- onSubmit?: EventHandlerUnion<
265
- T,
266
- Event & {
267
- submitter: HTMLElement;
268
- }
269
- >;
270
- onSuspend?: EventHandlerUnion<T, Event>;
271
- onTimeUpdate?: EventHandlerUnion<T, Event>;
272
- onTouchCancel?: EventHandlerUnion<T, TouchEvent>;
273
- onTouchEnd?: EventHandlerUnion<T, TouchEvent>;
274
- onTouchMove?: EventHandlerUnion<T, TouchEvent>;
275
- onTouchStart?: EventHandlerUnion<T, TouchEvent>;
276
- onTransitionStart?: EventHandlerUnion<T, TransitionEvent>;
277
- onTransitionEnd?: EventHandlerUnion<T, TransitionEvent>;
278
- onTransitionRun?: EventHandlerUnion<T, TransitionEvent>;
279
- onTransitionCancel?: EventHandlerUnion<T, TransitionEvent>;
280
- onVolumeChange?: EventHandlerUnion<T, Event>;
281
- onWaiting?: EventHandlerUnion<T, Event>;
282
- onWheel?: EventHandlerUnion<T, WheelEvent>;
283
- }
284
- /**
285
- * @type {GlobalEventHandlers}
286
- */
287
- interface CustomEventHandlersLowerCase<T> {
288
- onabort?: EventHandlerUnion<T, Event>;
289
- onanimationend?: EventHandlerUnion<T, AnimationEvent>;
290
- onanimationiteration?: EventHandlerUnion<T, AnimationEvent>;
291
- onanimationstart?: EventHandlerUnion<T, AnimationEvent>;
292
- onauxclick?: EventHandlerUnion<T, MouseEvent>;
293
- onbeforeinput?: InputEventHandlerUnion<T, InputEvent>;
294
- onblur?: FocusEventHandlerUnion<T, FocusEvent>;
295
- oncanplay?: EventHandlerUnion<T, Event>;
296
- oncanplaythrough?: EventHandlerUnion<T, Event>;
297
- onchange?: ChangeEventHandlerUnion<T, Event>;
298
- onclick?: EventHandlerUnion<T, MouseEvent>;
299
- oncontextmenu?: EventHandlerUnion<T, MouseEvent>;
300
- ondblclick?: EventHandlerUnion<T, MouseEvent>;
301
- ondrag?: EventHandlerUnion<T, DragEvent>;
302
- ondragend?: EventHandlerUnion<T, DragEvent>;
303
- ondragenter?: EventHandlerUnion<T, DragEvent>;
304
- ondragleave?: EventHandlerUnion<T, DragEvent>;
305
- ondragover?: EventHandlerUnion<T, DragEvent>;
306
- ondragstart?: EventHandlerUnion<T, DragEvent>;
307
- ondrop?: EventHandlerUnion<T, DragEvent>;
308
- ondurationchange?: EventHandlerUnion<T, Event>;
309
- onemptied?: EventHandlerUnion<T, Event>;
310
- onended?: EventHandlerUnion<T, Event>;
311
- onerror?: EventHandlerUnion<T, Event>;
312
- onfocus?: FocusEventHandlerUnion<T, FocusEvent>;
313
- ongotpointercapture?: EventHandlerUnion<T, PointerEvent>;
314
- oninput?: InputEventHandlerUnion<T, InputEvent>;
315
- oninvalid?: EventHandlerUnion<T, Event>;
316
- onkeydown?: EventHandlerUnion<T, KeyboardEvent>;
317
- onkeypress?: EventHandlerUnion<T, KeyboardEvent>;
318
- onkeyup?: EventHandlerUnion<T, KeyboardEvent>;
319
- onload?: EventHandlerUnion<T, Event>;
320
- onloadeddata?: EventHandlerUnion<T, Event>;
321
- onloadedmetadata?: EventHandlerUnion<T, Event>;
322
- onloadstart?: EventHandlerUnion<T, Event>;
323
- onlostpointercapture?: EventHandlerUnion<T, PointerEvent>;
324
- onmousedown?: EventHandlerUnion<T, MouseEvent>;
325
- onmouseenter?: EventHandlerUnion<T, MouseEvent>;
326
- onmouseleave?: EventHandlerUnion<T, MouseEvent>;
327
- onmousemove?: EventHandlerUnion<T, MouseEvent>;
328
- onmouseout?: EventHandlerUnion<T, MouseEvent>;
329
- onmouseover?: EventHandlerUnion<T, MouseEvent>;
330
- onmouseup?: EventHandlerUnion<T, MouseEvent>;
331
- onpause?: EventHandlerUnion<T, Event>;
332
- onplay?: EventHandlerUnion<T, Event>;
333
- onplaying?: EventHandlerUnion<T, Event>;
334
- onpointercancel?: EventHandlerUnion<T, PointerEvent>;
335
- onpointerdown?: EventHandlerUnion<T, PointerEvent>;
336
- onpointerenter?: EventHandlerUnion<T, PointerEvent>;
337
- onpointerleave?: EventHandlerUnion<T, PointerEvent>;
338
- onpointermove?: EventHandlerUnion<T, PointerEvent>;
339
- onpointerout?: EventHandlerUnion<T, PointerEvent>;
340
- onpointerover?: EventHandlerUnion<T, PointerEvent>;
341
- onpointerup?: EventHandlerUnion<T, PointerEvent>;
342
- onprogress?: EventHandlerUnion<T, Event>;
343
- onratechange?: EventHandlerUnion<T, Event>;
344
- onreset?: EventHandlerUnion<T, Event>;
345
- onscroll?: EventHandlerUnion<T, Event>;
346
- onscrollend?: EventHandlerUnion<T, Event>;
347
- onseeked?: EventHandlerUnion<T, Event>;
348
- onseeking?: EventHandlerUnion<T, Event>;
349
- onselect?: EventHandlerUnion<T, UIEvent>;
350
- onstalled?: EventHandlerUnion<T, Event>;
351
- onsubmit?: EventHandlerUnion<
352
- T,
353
- Event & {
354
- submitter: HTMLElement;
355
- }
356
- >;
357
- onsuspend?: EventHandlerUnion<T, Event>;
358
- ontimeupdate?: EventHandlerUnion<T, Event>;
359
- ontouchcancel?: EventHandlerUnion<T, TouchEvent>;
360
- ontouchend?: EventHandlerUnion<T, TouchEvent>;
361
- ontouchmove?: EventHandlerUnion<T, TouchEvent>;
362
- ontouchstart?: EventHandlerUnion<T, TouchEvent>;
363
- ontransitionstart?: EventHandlerUnion<T, TransitionEvent>;
364
- ontransitionend?: EventHandlerUnion<T, TransitionEvent>;
365
- ontransitionrun?: EventHandlerUnion<T, TransitionEvent>;
366
- ontransitioncancel?: EventHandlerUnion<T, TransitionEvent>;
367
- onvolumechange?: EventHandlerUnion<T, Event>;
368
- onwaiting?: EventHandlerUnion<T, Event>;
369
- onwheel?: EventHandlerUnion<T, WheelEvent>;
370
- }
371
-
372
- interface CSSProperties extends csstype.PropertiesHyphen {
373
- // Override
374
- [key: `-${string}`]: string | number | undefined;
375
- }
376
-
377
- type HTMLAutocapitalize = 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
378
- type HTMLDir = 'ltr' | 'rtl' | 'auto';
379
- type HTMLFormEncType =
380
- | 'application/x-www-form-urlencoded'
381
- | 'multipart/form-data'
382
- | 'text/plain';
383
- type HTMLFormMethod = 'post' | 'get' | 'dialog';
384
- type HTMLCrossorigin = 'anonymous' | 'use-credentials' | '';
385
- type HTMLReferrerPolicy =
386
- | 'no-referrer'
387
- | 'no-referrer-when-downgrade'
388
- | 'origin'
389
- | 'origin-when-cross-origin'
390
- | 'same-origin'
391
- | 'strict-origin'
392
- | 'strict-origin-when-cross-origin'
393
- | 'unsafe-url';
394
- type HTMLIframeSandbox =
395
- | 'allow-downloads-without-user-activation'
396
- | 'allow-downloads'
397
- | 'allow-forms'
398
- | 'allow-modals'
399
- | 'allow-orientation-lock'
400
- | 'allow-pointer-lock'
401
- | 'allow-popups'
402
- | 'allow-popups-to-escapeHTML-sandbox'
403
- | 'allow-presentation'
404
- | 'allow-same-origin'
405
- | 'allow-scripts'
406
- | 'allow-storage-access-by-user-activation'
407
- | 'allow-top-navigation'
408
- | 'allow-top-navigation-by-user-activation'
409
- | 'allow-top-navigation-to-custom-protocols';
410
- type HTMLLinkAs =
411
- | 'audio'
412
- | 'document'
413
- | 'embed'
414
- | 'fetch'
415
- | 'font'
416
- | 'image'
417
- | 'object'
418
- | 'script'
419
- | 'style'
420
- | 'track'
421
- | 'video'
422
- | 'worker';
423
-
424
- // All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
425
- interface AriaAttributes {
426
- /** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
427
- 'aria-activedescendant'?: string;
428
- /** Indicates whether assistive technologies will present all, or only parts of, the changed region based on the change notifications defined by the aria-relevant attribute. */
429
- 'aria-atomic'?: boolean | 'false' | 'true';
430
- /**
431
- * Indicates whether inputting text could trigger display of one or more predictions of the user's intended value for an input and specifies how predictions would be
432
- * presented if they are made.
433
- */
434
- 'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
435
- /** Indicates an element is being modified and that assistive technologies MAY want to wait until the modifications are complete before exposing them to the user. */
436
- 'aria-busy'?: boolean | 'false' | 'true';
437
- /**
438
- * Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
439
- * @see aria-pressed @see aria-selected.
440
- */
441
- 'aria-checked'?: boolean | 'false' | 'mixed' | 'true';
442
- /**
443
- * Defines the total number of columns in a table, grid, or treegrid.
444
- * @see aria-colindex.
445
- */
446
- 'aria-colcount'?: number | string;
447
- /**
448
- * Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
449
- * @see aria-colcount @see aria-colspan.
450
- */
451
- 'aria-colindex'?: number | string;
452
- /**
453
- * Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
454
- * @see aria-colindex @see aria-rowspan.
455
- */
456
- 'aria-colspan'?: number | string;
457
- /**
458
- * Identifies the element (or elements) whose contents or presence are controlled by the current element.
459
- * @see aria-owns.
460
- */
461
- 'aria-controls'?: string;
462
- /** Indicates the element that represents the current item within a container or set of related elements. */
463
- 'aria-current'?: boolean | 'false' | 'true' | 'page' | 'step' | 'location' | 'date' | 'time';
464
- /**
465
- * Identifies the element (or elements) that describes the object.
466
- * @see aria-labelledby
467
- */
468
- 'aria-describedby'?: string;
469
- /**
470
- * Identifies the element that provides a detailed, extended description for the object.
471
- * @see aria-describedby.
472
- */
473
- 'aria-details'?: string;
474
- /**
475
- * Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
476
- * @see aria-hidden @see aria-readonly.
477
- */
478
- 'aria-disabled'?: boolean | 'false' | 'true';
479
- /**
480
- * Indicates what functions can be performed when a dragged object is released on the drop target.
481
- * @deprecated in ARIA 1.1
482
- */
483
- 'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
484
- /**
485
- * Identifies the element that provides an error message for the object.
486
- * @see aria-invalid @see aria-describedby.
487
- */
488
- 'aria-errormessage'?: string;
489
- /** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
490
- 'aria-expanded'?: boolean | 'false' | 'true';
491
- /**
492
- * Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
493
- * allows assistive technology to override the general default of reading in document source order.
494
- */
495
- 'aria-flowto'?: string;
496
- /**
497
- * Indicates an element's "grabbed" state in a drag-and-drop operation.
498
- * @deprecated in ARIA 1.1
499
- */
500
- 'aria-grabbed'?: boolean | 'false' | 'true';
501
- /** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
502
- 'aria-haspopup'?:
503
- | boolean
504
- | 'false'
505
- | 'true'
506
- | 'menu'
507
- | 'listbox'
508
- | 'tree'
509
- | 'grid'
510
- | 'dialog';
511
- /**
512
- * Indicates whether the element is exposed to an accessibility API.
513
- * @see aria-disabled.
514
- */
515
- 'aria-hidden'?: boolean | 'false' | 'true';
516
- /**
517
- * Indicates the entered value does not conform to the format expected by the application.
518
- * @see aria-errormessage.
519
- */
520
- 'aria-invalid'?: boolean | 'false' | 'true' | 'grammar' | 'spelling';
521
- /** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
522
- 'aria-keyshortcuts'?: string;
523
- /**
524
- * Defines a string value that labels the current element.
525
- * @see aria-labelledby.
526
- */
527
- 'aria-label'?: string;
528
- /**
529
- * Identifies the element (or elements) that labels the current element.
530
- * @see aria-describedby.
531
- */
532
- 'aria-labelledby'?: string;
533
- /** Defines the hierarchical level of an element within a structure. */
534
- 'aria-level'?: number | string;
535
- /** Indicates that an element will be update, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
536
- 'aria-live'?: 'off' | 'assertive' | 'polite';
537
- /** Indicates whether an element is modal when displayed. */
538
- 'aria-modal'?: boolean | 'false' | 'true';
539
- /** Indicates whether a text box accepts multiple lines of input or only a single line. */
540
- 'aria-multiline'?: boolean | 'false' | 'true';
541
- /** Indicates that the user may select more than one item from the current selectable descendants. */
542
- 'aria-multiselectable'?: boolean | 'false' | 'true';
543
- /** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
544
- 'aria-orientation'?: 'horizontal' | 'vertical';
545
- /**
546
- * Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
547
- * between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
548
- * @see aria-controls.
549
- */
550
- 'aria-owns'?: string;
551
- /**
552
- * Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
553
- * A hint could be a sample value or a brief description of the expected format.
554
- */
555
- 'aria-placeholder'?: string;
556
- /**
557
- * Defines an element's number or position in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
558
- * @see aria-setsize.
559
- */
560
- 'aria-posinset'?: number | string;
561
- /**
562
- * Indicates the current "pressed" state of toggle buttons.
563
- * @see aria-checked @see aria-selected.
564
- */
565
- 'aria-pressed'?: boolean | 'false' | 'mixed' | 'true';
566
- /**
567
- * Indicates that the element is not editable, but is otherwise operable.
568
- * @see aria-disabled.
569
- */
570
- 'aria-readonly'?: boolean | 'false' | 'true';
571
- /**
572
- * Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
573
- * @see aria-atomic.
574
- */
575
- 'aria-relevant'?:
576
- | 'additions'
577
- | 'additions removals'
578
- | 'additions text'
579
- | 'all'
580
- | 'removals'
581
- | 'removals additions'
582
- | 'removals text'
583
- | 'text'
584
- | 'text additions'
585
- | 'text removals';
586
- /** Indicates that user input is required on the element before a form may be submitted. */
587
- 'aria-required'?: boolean | 'false' | 'true';
588
- /** Defines a human-readable, author-localized description for the role of an element. */
589
- 'aria-roledescription'?: string;
590
- /**
591
- * Defines the total number of rows in a table, grid, or treegrid.
592
- * @see aria-rowindex.
593
- */
594
- 'aria-rowcount'?: number | string;
595
- /**
596
- * Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
597
- * @see aria-rowcount @see aria-rowspan.
598
- */
599
- 'aria-rowindex'?: number | string;
600
- /**
601
- * Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
602
- * @see aria-rowindex @see aria-colspan.
603
- */
604
- 'aria-rowspan'?: number | string;
605
- /**
606
- * Indicates the current "selected" state of various widgets.
607
- * @see aria-checked @see aria-pressed.
608
- */
609
- 'aria-selected'?: boolean | 'false' | 'true';
610
- /**
611
- * Defines the number of items in the current set of listitems or treeitems. Not required if all elements in the set are present in the DOM.
612
- * @see aria-posinset.
613
- */
614
- 'aria-setsize'?: number | string;
615
- /** Indicates if items in a table or grid are sorted in ascending or descending order. */
616
- 'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
617
- /** Defines the maximum allowed value for a range widget. */
618
- 'aria-valuemax'?: number | string;
619
- /** Defines the minimum allowed value for a range widget. */
620
- 'aria-valuemin'?: number | string;
621
- /**
622
- * Defines the current value for a range widget.
623
- * @see aria-valuetext.
624
- */
625
- 'aria-valuenow'?: number | string;
626
- /** Defines the human readable text alternative of aria-valuenow for a range widget. */
627
- 'aria-valuetext'?: string;
628
- 'role'?:
629
- | 'alert'
630
- | 'alertdialog'
631
- | 'application'
632
- | 'article'
633
- | 'banner'
634
- | 'button'
635
- | 'cell'
636
- | 'checkbox'
637
- | 'columnheader'
638
- | 'combobox'
639
- | 'complementary'
640
- | 'contentinfo'
641
- | 'definition'
642
- | 'dialog'
643
- | 'directory'
644
- | 'document'
645
- | 'feed'
646
- | 'figure'
647
- | 'form'
648
- | 'grid'
649
- | 'gridcell'
650
- | 'group'
651
- | 'heading'
652
- | 'img'
653
- | 'link'
654
- | 'list'
655
- | 'listbox'
656
- | 'listitem'
657
- | 'log'
658
- | 'main'
659
- | 'marquee'
660
- | 'math'
661
- | 'menu'
662
- | 'menubar'
663
- | 'menuitem'
664
- | 'menuitemcheckbox'
665
- | 'menuitemradio'
666
- | 'meter'
667
- | 'navigation'
668
- | 'none'
669
- | 'note'
670
- | 'option'
671
- | 'presentation'
672
- | 'progressbar'
673
- | 'radio'
674
- | 'radiogroup'
675
- | 'region'
676
- | 'row'
677
- | 'rowgroup'
678
- | 'rowheader'
679
- | 'scrollbar'
680
- | 'search'
681
- | 'searchbox'
682
- | 'separator'
683
- | 'slider'
684
- | 'spinbutton'
685
- | 'status'
686
- | 'switch'
687
- | 'tab'
688
- | 'table'
689
- | 'tablist'
690
- | 'tabpanel'
691
- | 'term'
692
- | 'textbox'
693
- | 'timer'
694
- | 'toolbar'
695
- | 'tooltip'
696
- | 'tree'
697
- | 'treegrid'
698
- | 'treeitem';
699
- }
700
-
701
- interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
702
- accessKey?: string;
703
- class?: string | undefined;
704
- contenteditable?: boolean | 'plaintext-only' | 'inherit';
705
- contextmenu?: string;
706
- dir?: HTMLDir;
707
- draggable?: boolean | 'false' | 'true';
708
- hidden?: boolean | 'hidden' | 'until-found';
709
- id?: string;
710
- inert?: boolean;
711
- lang?: string;
712
- spellcheck?: boolean;
713
- style?: CSSProperties | string;
714
- tabindex?: number | string;
715
- title?: string;
716
- translate?: 'yes' | 'no';
717
- about?: string;
718
- datatype?: string;
719
- inlist?: any;
720
- popover?: boolean | 'manual' | 'auto';
721
- prefix?: string;
722
- property?: string;
723
- resource?: string;
724
- typeof?: string;
725
- vocab?: string;
726
- autocapitalize?: HTMLAutocapitalize;
727
- slot?: string;
728
- color?: string;
729
- itemprop?: string;
730
- itemscope?: boolean;
731
- itemtype?: string;
732
- itemid?: string;
733
- itemref?: string;
734
- part?: string;
735
- exportparts?: string;
736
- inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
737
- contentEditable?: boolean | 'plaintext-only' | 'inherit';
738
- contextMenu?: string;
739
- tabIndex?: number | string;
740
- autoCapitalize?: HTMLAutocapitalize;
741
- itemProp?: string;
742
- itemScope?: boolean;
743
- itemType?: string;
744
- itemId?: string;
745
- itemRef?: string;
746
- exportParts?: string;
747
- inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
748
- }
749
- interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
750
- download?: any;
751
- href?: string;
752
- hreflang?: string;
753
- media?: string;
754
- ping?: string;
755
- referrerpolicy?: HTMLReferrerPolicy;
756
- rel?: string;
757
- target?: string;
758
- type?: string;
759
- referrerPolicy?: HTMLReferrerPolicy;
760
- }
761
- interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {}
762
- interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
763
- alt?: string;
764
- coords?: string;
765
- download?: any;
766
- href?: string;
767
- hreflang?: string;
768
- ping?: string;
769
- referrerpolicy?: HTMLReferrerPolicy;
770
- rel?: string;
771
- shape?: 'rect' | 'circle' | 'poly' | 'default';
772
- target?: string;
773
- referrerPolicy?: HTMLReferrerPolicy;
774
- }
775
- interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
776
- href?: string;
777
- target?: string;
778
- }
779
- interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
780
- cite?: string;
781
- }
782
- interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
783
- autofocus?: boolean;
784
- disabled?: boolean;
785
- form?: string;
786
- formaction?: string | SerializableAttributeValue;
787
- formenctype?: HTMLFormEncType;
788
- formmethod?: HTMLFormMethod;
789
- formnovalidate?: boolean;
790
- formtarget?: string;
791
- popovertarget?: string;
792
- popovertargetaction?: 'hide' | 'show' | 'toggle';
793
- name?: string;
794
- type?: 'submit' | 'reset' | 'button';
795
- value?: string;
796
- formAction?: string | SerializableAttributeValue;
797
- formEnctype?: HTMLFormEncType;
798
- formMethod?: HTMLFormMethod;
799
- formNoValidate?: boolean;
800
- formTarget?: string;
801
- popoverTarget?: string;
802
- popoverTargetAction?: 'hide' | 'show' | 'toggle';
803
- }
804
- interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
805
- width?: number | string;
806
- height?: number | string;
807
- }
808
- interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
809
- span?: number | string;
810
- width?: number | string;
811
- }
812
- interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
813
- span?: number | string;
814
- }
815
- interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
816
- value?: string | string[] | number;
817
- }
818
- interface DetailsHtmlAttributes<T> extends HTMLAttributes<T> {
819
- open?: boolean;
820
- onToggle?: EventHandlerUnion<T, Event>;
821
- ontoggle?: EventHandlerUnion<T, Event>;
822
- }
823
- interface DialogHtmlAttributes<T> extends HTMLAttributes<T> {
824
- open?: boolean;
825
- onClose?: EventHandlerUnion<T, Event>;
826
- onCancel?: EventHandlerUnion<T, Event>;
827
- }
828
- interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
829
- height?: number | string;
830
- src?: string;
831
- type?: string;
832
- width?: number | string;
833
- }
834
- interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
835
- disabled?: boolean;
836
- form?: string;
837
- name?: string;
838
- }
839
- interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
840
- 'accept-charset'?: string;
841
- 'action'?: string | SerializableAttributeValue;
842
- 'autocomplete'?: string;
843
- 'encoding'?: HTMLFormEncType;
844
- 'enctype'?: HTMLFormEncType;
845
- 'method'?: HTMLFormMethod;
846
- 'name'?: string;
847
- 'novalidate'?: boolean;
848
- 'target'?: string;
849
- 'noValidate'?: boolean;
850
- }
851
- interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
852
- allow?: string;
853
- allowfullscreen?: boolean;
854
- height?: number | string;
855
- loading?: 'eager' | 'lazy';
856
- name?: string;
857
- referrerpolicy?: HTMLReferrerPolicy;
858
- sandbox?: HTMLIframeSandbox | string;
859
- src?: string;
860
- srcdoc?: string;
861
- width?: number | string;
862
- referrerPolicy?: HTMLReferrerPolicy;
863
- }
864
- interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
865
- alt?: string;
866
- crossorigin?: HTMLCrossorigin;
867
- decoding?: 'sync' | 'async' | 'auto';
868
- height?: number | string;
869
- ismap?: boolean;
870
- isMap?: boolean;
871
- loading?: 'eager' | 'lazy';
872
- referrerpolicy?: HTMLReferrerPolicy;
873
- referrerPolicy?: HTMLReferrerPolicy;
874
- sizes?: string;
875
- src?: string;
876
- srcset?: string;
877
- srcSet?: string;
878
- usemap?: string;
879
- useMap?: string;
880
- width?: number | string;
881
- crossOrigin?: HTMLCrossorigin;
882
- elementtiming?: string;
883
- fetchpriority?: 'high' | 'low' | 'auto';
884
- }
885
- interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
886
- accept?: string;
887
- alt?: string;
888
- autocomplete?: string;
889
- autocorrect?: 'on' | 'off';
890
- autofocus?: boolean;
891
- capture?: boolean | string;
892
- checked?: boolean;
893
- crossorigin?: HTMLCrossorigin;
894
- disabled?: boolean;
895
- enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
896
- form?: string;
897
- formaction?: string | SerializableAttributeValue;
898
- formenctype?: HTMLFormEncType;
899
- formmethod?: HTMLFormMethod;
900
- formnovalidate?: boolean;
901
- formtarget?: string;
902
- height?: number | string;
903
- incremental?: boolean;
904
- list?: string;
905
- max?: number | string;
906
- maxlength?: number | string;
907
- min?: number | string;
908
- minlength?: number | string;
909
- multiple?: boolean;
910
- name?: string;
911
- pattern?: string;
912
- placeholder?: string;
913
- readonly?: boolean;
914
- results?: number;
915
- required?: boolean;
916
- size?: number | string;
917
- src?: string;
918
- step?: number | string;
919
- type?: string;
920
- value?: string | string[] | number;
921
- width?: number | string;
922
- crossOrigin?: HTMLCrossorigin;
923
- formAction?: string | SerializableAttributeValue;
924
- formEnctype?: HTMLFormEncType;
925
- formMethod?: HTMLFormMethod;
926
- formNoValidate?: boolean;
927
- formTarget?: string;
928
- maxLength?: number | string;
929
- minLength?: number | string;
930
- readOnly?: boolean;
931
- }
932
- interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
933
- cite?: string;
934
- dateTime?: string;
935
- }
936
- interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
937
- autofocus?: boolean;
938
- challenge?: string;
939
- disabled?: boolean;
940
- form?: string;
941
- keytype?: string;
942
- keyparams?: string;
943
- name?: string;
944
- }
945
- interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
946
- for?: string;
947
- form?: string;
948
- }
949
- interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
950
- value?: number | string;
951
- }
952
- interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
953
- as?: HTMLLinkAs;
954
- crossorigin?: HTMLCrossorigin;
955
- disabled?: boolean;
956
- fetchpriority?: 'high' | 'low' | 'auto';
957
- href?: string;
958
- hreflang?: string;
959
- imagesizes?: string;
960
- imagesrcset?: string;
961
- integrity?: string;
962
- media?: string;
963
- referrerpolicy?: HTMLReferrerPolicy;
964
- rel?: string;
965
- sizes?: string;
966
- type?: string;
967
- crossOrigin?: HTMLCrossorigin;
968
- referrerPolicy?: HTMLReferrerPolicy;
969
- }
970
- interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
971
- name?: string;
972
- }
973
- interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
974
- autoplay?: boolean;
975
- controls?: boolean;
976
- crossorigin?: HTMLCrossorigin;
977
- loop?: boolean;
978
- mediagroup?: string;
979
- muted?: boolean;
980
- preload?: 'none' | 'metadata' | 'auto' | '';
981
- src?: string;
982
- crossOrigin?: HTMLCrossorigin;
983
- mediaGroup?: string;
984
- }
985
- interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
986
- label?: string;
987
- type?: 'context' | 'toolbar';
988
- }
989
- interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
990
- 'charset'?: string;
991
- 'content'?: string;
992
- 'http-equiv'?: string;
993
- 'name'?: string;
994
- 'media'?: string;
995
- }
996
- interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
997
- form?: string;
998
- high?: number | string;
999
- low?: number | string;
1000
- max?: number | string;
1001
- min?: number | string;
1002
- optimum?: number | string;
1003
- value?: string | string[] | number;
1004
- }
1005
- interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
1006
- cite?: string;
1007
- }
1008
- interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
1009
- data?: string;
1010
- form?: string;
1011
- height?: number | string;
1012
- name?: string;
1013
- type?: string;
1014
- usemap?: string;
1015
- width?: number | string;
1016
- useMap?: string;
1017
- }
1018
- interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
1019
- reversed?: boolean;
1020
- start?: number | string;
1021
- type?: '1' | 'a' | 'A' | 'i' | 'I';
1022
- }
1023
- interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
1024
- disabled?: boolean;
1025
- label?: string;
1026
- }
1027
- interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
1028
- disabled?: boolean;
1029
- label?: string;
1030
- selected?: boolean;
1031
- value?: string | string[] | number;
1032
- }
1033
- interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
1034
- form?: string;
1035
- for?: string;
1036
- name?: string;
1037
- }
1038
- interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
1039
- name?: string;
1040
- value?: string | string[] | number;
1041
- }
1042
- interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
1043
- max?: number | string;
1044
- value?: string | string[] | number;
1045
- }
1046
- interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
1047
- async?: boolean;
1048
- charset?: string;
1049
- crossorigin?: HTMLCrossorigin;
1050
- defer?: boolean;
1051
- integrity?: string;
1052
- nomodule?: boolean;
1053
- nonce?: string;
1054
- referrerpolicy?: HTMLReferrerPolicy;
1055
- src?: string;
1056
- type?: string;
1057
- crossOrigin?: HTMLCrossorigin;
1058
- noModule?: boolean;
1059
- referrerPolicy?: HTMLReferrerPolicy;
1060
- }
1061
- interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
1062
- autocomplete?: string;
1063
- autofocus?: boolean;
1064
- disabled?: boolean;
1065
- form?: string;
1066
- multiple?: boolean;
1067
- name?: string;
1068
- required?: boolean;
1069
- size?: number | string;
1070
- value?: string | string[] | number;
1071
- }
1072
- interface HTMLSlotElementAttributes<T = HTMLSlotElement> extends HTMLAttributes<T> {
1073
- name?: string;
1074
- }
1075
- interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
1076
- media?: string;
1077
- sizes?: string;
1078
- src?: string;
1079
- srcset?: string;
1080
- type?: string;
1081
- }
1082
- interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
1083
- media?: string;
1084
- nonce?: string;
1085
- scoped?: boolean;
1086
- type?: string;
1087
- }
1088
- interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
1089
- colspan?: number | string;
1090
- headers?: string;
1091
- rowspan?: number | string;
1092
- colSpan?: number | string;
1093
- rowSpan?: number | string;
1094
- }
1095
- interface TemplateHTMLAttributes<T extends HTMLTemplateElement> extends HTMLAttributes<T> {
1096
- content?: DocumentFragment;
1097
- }
1098
- interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
1099
- autocomplete?: string;
1100
- autofocus?: boolean;
1101
- cols?: number | string;
1102
- dirname?: string;
1103
- disabled?: boolean;
1104
- enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
1105
- form?: string;
1106
- maxlength?: number | string;
1107
- minlength?: number | string;
1108
- name?: string;
1109
- placeholder?: string;
1110
- readonly?: boolean;
1111
- required?: boolean;
1112
- rows?: number | string;
1113
- value?: string | string[] | number;
1114
- wrap?: 'hard' | 'soft' | 'off';
1115
- maxLength?: number | string;
1116
- minLength?: number | string;
1117
- readOnly?: boolean;
1118
- }
1119
- interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
1120
- colspan?: number | string;
1121
- headers?: string;
1122
- rowspan?: number | string;
1123
- colSpan?: number | string;
1124
- rowSpan?: number | string;
1125
- scope?: 'col' | 'row' | 'rowgroup' | 'colgroup';
1126
- }
1127
- interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
1128
- datetime?: string;
1129
- dateTime?: string;
1130
- }
1131
- interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
1132
- default?: boolean;
1133
- kind?: 'subtitles' | 'captions' | 'descriptions' | 'chapters' | 'metadata';
1134
- label?: string;
1135
- src?: string;
1136
- srclang?: string;
1137
- }
1138
- interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
1139
- height?: number | string;
1140
- playsinline?: boolean;
1141
- poster?: string;
1142
- width?: number | string;
1143
- }
1144
- type SVGPreserveAspectRatio =
1145
- | 'none'
1146
- | 'xMinYMin'
1147
- | 'xMidYMin'
1148
- | 'xMaxYMin'
1149
- | 'xMinYMid'
1150
- | 'xMidYMid'
1151
- | 'xMaxYMid'
1152
- | 'xMinYMax'
1153
- | 'xMidYMax'
1154
- | 'xMaxYMax'
1155
- | 'xMinYMin meet'
1156
- | 'xMidYMin meet'
1157
- | 'xMaxYMin meet'
1158
- | 'xMinYMid meet'
1159
- | 'xMidYMid meet'
1160
- | 'xMaxYMid meet'
1161
- | 'xMinYMax meet'
1162
- | 'xMidYMax meet'
1163
- | 'xMaxYMax meet'
1164
- | 'xMinYMin slice'
1165
- | 'xMidYMin slice'
1166
- | 'xMaxYMin slice'
1167
- | 'xMinYMid slice'
1168
- | 'xMidYMid slice'
1169
- | 'xMaxYMid slice'
1170
- | 'xMinYMax slice'
1171
- | 'xMidYMax slice'
1172
- | 'xMaxYMax slice';
1173
- type ImagePreserveAspectRatio =
1174
- | SVGPreserveAspectRatio
1175
- | 'defer none'
1176
- | 'defer xMinYMin'
1177
- | 'defer xMidYMin'
1178
- | 'defer xMaxYMin'
1179
- | 'defer xMinYMid'
1180
- | 'defer xMidYMid'
1181
- | 'defer xMaxYMid'
1182
- | 'defer xMinYMax'
1183
- | 'defer xMidYMax'
1184
- | 'defer xMaxYMax'
1185
- | 'defer xMinYMin meet'
1186
- | 'defer xMidYMin meet'
1187
- | 'defer xMaxYMin meet'
1188
- | 'defer xMinYMid meet'
1189
- | 'defer xMidYMid meet'
1190
- | 'defer xMaxYMid meet'
1191
- | 'defer xMinYMax meet'
1192
- | 'defer xMidYMax meet'
1193
- | 'defer xMaxYMax meet'
1194
- | 'defer xMinYMin slice'
1195
- | 'defer xMidYMin slice'
1196
- | 'defer xMaxYMin slice'
1197
- | 'defer xMinYMid slice'
1198
- | 'defer xMidYMid slice'
1199
- | 'defer xMaxYMid slice'
1200
- | 'defer xMinYMax slice'
1201
- | 'defer xMidYMax slice'
1202
- | 'defer xMaxYMax slice';
1203
- type SVGUnits = 'userSpaceOnUse' | 'objectBoundingBox';
1204
- interface estSVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
1205
- id?: string;
1206
- lang?: string;
1207
- tabIndex?: number | string;
1208
- tabindex?: number | string;
1209
- }
1210
- interface StylableSVGAttributes {
1211
- class?: string | undefined;
1212
- style?: CSSProperties | string;
1213
- }
1214
- interface TransformableSVGAttributes {
1215
- transform?: string;
1216
- }
1217
- interface ConditionalProcessingSVGAttributes {
1218
- requiredExtensions?: string;
1219
- requiredFeatures?: string;
1220
- systemLanguage?: string;
1221
- }
1222
- interface ExternalResourceSVGAttributes {
1223
- externalResourcesRequired?: 'true' | 'false';
1224
- }
1225
- interface AnimationTimingSVGAttributes {
1226
- begin?: string;
1227
- dur?: string;
1228
- end?: string;
1229
- min?: string;
1230
- max?: string;
1231
- restart?: 'always' | 'whenNotActive' | 'never';
1232
- repeatCount?: number | 'indefinite';
1233
- repeatDur?: string;
1234
- fill?: 'freeze' | 'remove';
1235
- }
1236
- interface AnimationValueSVGAttributes {
1237
- calcMode?: 'discrete' | 'linear' | 'paced' | 'spline';
1238
- values?: string;
1239
- keyTimes?: string;
1240
- keySplines?: string;
1241
- from?: number | string;
1242
- to?: number | string;
1243
- by?: number | string;
1244
- }
1245
- interface AnimationAdditionSVGAttributes {
1246
- attributeName?: string;
1247
- additive?: 'replace' | 'sum';
1248
- accumulate?: 'none' | 'sum';
1249
- }
1250
- interface AnimationAttributeTargetSVGAttributes {
1251
- attributeName?: string;
1252
- attributeType?: 'CSS' | 'XML' | 'auto';
1253
- }
1254
- interface PresentationSVGAttributes {
1255
- 'alignment-baseline'?:
1256
- | 'auto'
1257
- | 'baseline'
1258
- | 'before-edge'
1259
- | 'text-before-edge'
1260
- | 'middle'
1261
- | 'central'
1262
- | 'after-edge'
1263
- | 'text-after-edge'
1264
- | 'ideographic'
1265
- | 'alphabetic'
1266
- | 'hanging'
1267
- | 'mathematical'
1268
- | 'inherit';
1269
- 'baseline-shift'?: number | string;
1270
- 'clip'?: string;
1271
- 'clip-path'?: string;
1272
- 'clip-rule'?: 'nonzero' | 'evenodd' | 'inherit';
1273
- 'color'?: string;
1274
- 'color-interpolation'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
1275
- 'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
1276
- 'color-profile'?: string;
1277
- 'color-rendering'?: 'auto' | 'optimizeSpeed' | 'optimizeQuality' | 'inherit';
1278
- 'cursor'?: string;
1279
- 'direction'?: 'ltr' | 'rtl' | 'inherit';
1280
- 'display'?: string;
1281
- 'dominant-baseline'?:
1282
- | 'auto'
1283
- | 'text-bottom'
1284
- | 'alphabetic'
1285
- | 'ideographic'
1286
- | 'middle'
1287
- | 'central'
1288
- | 'mathematical'
1289
- | 'hanging'
1290
- | 'text-top'
1291
- | 'inherit';
1292
- 'enable-background'?: string;
1293
- 'fill'?: string;
1294
- 'fill-opacity'?: number | string | 'inherit';
1295
- 'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
1296
- 'filter'?: string;
1297
- 'flood-color'?: string;
1298
- 'flood-opacity'?: number | string | 'inherit';
1299
- 'font-family'?: string;
1300
- 'font-size'?: string;
1301
- 'font-size-adjust'?: number | string;
1302
- 'font-stretch'?: string;
1303
- 'font-style'?: 'normal' | 'italic' | 'oblique' | 'inherit';
1304
- 'font-variant'?: string;
1305
- 'font-weight'?: number | string;
1306
- 'glyph-orientation-horizontal'?: string;
1307
- 'glyph-orientation-vertical'?: string;
1308
- 'image-rendering'?: 'auto' | 'optimizeQuality' | 'optimizeSpeed' | 'inherit';
1309
- 'kerning'?: string;
1310
- 'letter-spacing'?: number | string;
1311
- 'lighting-color'?: string;
1312
- 'marker-end'?: string;
1313
- 'marker-mid'?: string;
1314
- 'marker-start'?: string;
1315
- 'mask'?: string;
1316
- 'opacity'?: number | string | 'inherit';
1317
- 'overflow'?: 'visible' | 'hidden' | 'scroll' | 'auto' | 'inherit';
1318
- 'pathLength'?: string | number;
1319
- 'pointer-events'?:
1320
- | 'bounding-box'
1321
- | 'visiblePainted'
1322
- | 'visibleFill'
1323
- | 'visibleStroke'
1324
- | 'visible'
1325
- | 'painted'
1326
- | 'color'
1327
- | 'fill'
1328
- | 'stroke'
1329
- | 'all'
1330
- | 'none'
1331
- | 'inherit';
1332
- 'shape-rendering'?:
1333
- | 'auto'
1334
- | 'optimizeSpeed'
1335
- | 'crispEdges'
1336
- | 'geometricPrecision'
1337
- | 'inherit';
1338
- 'stop-color'?: string;
1339
- 'stop-opacity'?: number | string | 'inherit';
1340
- 'stroke'?: string;
1341
- 'stroke-dasharray'?: string;
1342
- 'stroke-dashoffset'?: number | string;
1343
- 'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
1344
- 'stroke-linejoin'?: 'arcs' | 'bevel' | 'miter' | 'miter-clip' | 'round' | 'inherit';
1345
- 'stroke-miterlimit'?: number | string | 'inherit';
1346
- 'stroke-opacity'?: number | string | 'inherit';
1347
- 'stroke-width'?: number | string;
1348
- 'text-anchor'?: 'start' | 'middle' | 'end' | 'inherit';
1349
- 'text-decoration'?: 'none' | 'underline' | 'overline' | 'line-through' | 'blink' | 'inherit';
1350
- 'text-rendering'?:
1351
- | 'auto'
1352
- | 'optimizeSpeed'
1353
- | 'optimizeLegibility'
1354
- | 'geometricPrecision'
1355
- | 'inherit';
1356
- 'unicode-bidi'?: string;
1357
- 'visibility'?: 'visible' | 'hidden' | 'collapse' | 'inherit';
1358
- 'word-spacing'?: number | string;
1359
- 'writing-mode'?: 'lr-tb' | 'rl-tb' | 'tb-rl' | 'lr' | 'rl' | 'tb' | 'inherit';
1360
- }
1361
- interface AnimationElementSVGAttributes<T>
1362
- extends
1363
- estSVGAttributes<T>,
1364
- ExternalResourceSVGAttributes,
1365
- ConditionalProcessingSVGAttributes {}
1366
- interface ContainerElementSVGAttributes<T>
1367
- extends
1368
- estSVGAttributes<T>,
1369
- ShapeElementSVGAttributes<T>,
1370
- Pick<
1371
- PresentationSVGAttributes,
1372
- | 'clip-path'
1373
- | 'mask'
1374
- | 'cursor'
1375
- | 'opacity'
1376
- | 'filter'
1377
- | 'enable-background'
1378
- | 'color-interpolation'
1379
- | 'color-rendering'
1380
- > {}
1381
- interface FilterPrimitiveElementSVGAttributes<T>
1382
- extends estSVGAttributes<T>, Pick<PresentationSVGAttributes, 'color-interpolation-filters'> {
1383
- x?: number | string;
1384
- y?: number | string;
1385
- width?: number | string;
1386
- height?: number | string;
1387
- result?: string;
1388
- }
1389
- interface SingleInputFilterSVGAttributes {
1390
- in?: string;
1391
- }
1392
- interface DoubleInputFilterSVGAttributes {
1393
- in?: string;
1394
- in2?: string;
1395
- }
1396
- interface FitToViewBoxSVGAttributes {
1397
- viewBox?: string;
1398
- preserveAspectRatio?: SVGPreserveAspectRatio;
1399
- }
1400
- interface GradientElementSVGAttributes<T>
1401
- extends estSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
1402
- gradientUnits?: SVGUnits;
1403
- gradientTransform?: string;
1404
- spreadMethod?: 'pad' | 'reflect' | 'repeat';
1405
- href?: string;
1406
- }
1407
- interface GraphicsElementSVGAttributes<T>
1408
- extends
1409
- estSVGAttributes<T>,
1410
- Pick<
1411
- PresentationSVGAttributes,
1412
- | 'clip-rule'
1413
- | 'mask'
1414
- | 'pointer-events'
1415
- | 'cursor'
1416
- | 'opacity'
1417
- | 'filter'
1418
- | 'display'
1419
- | 'visibility'
1420
- | 'color-interpolation'
1421
- | 'color-rendering'
1422
- > {}
1423
- interface LightSourceElementSVGAttributes<T> extends estSVGAttributes<T> {}
1424
- interface NewViewportSVGAttributes<T>
1425
- extends estSVGAttributes<T>, Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
1426
- viewBox?: string;
1427
- }
1428
- interface ShapeElementSVGAttributes<T>
1429
- extends
1430
- estSVGAttributes<T>,
1431
- Pick<
1432
- PresentationSVGAttributes,
1433
- | 'color'
1434
- | 'fill'
1435
- | 'fill-rule'
1436
- | 'fill-opacity'
1437
- | 'stroke'
1438
- | 'stroke-width'
1439
- | 'stroke-linecap'
1440
- | 'stroke-linejoin'
1441
- | 'stroke-miterlimit'
1442
- | 'stroke-dasharray'
1443
- | 'stroke-dashoffset'
1444
- | 'stroke-opacity'
1445
- | 'shape-rendering'
1446
- | 'pathLength'
1447
- > {}
1448
- interface TextContentElementSVGAttributes<T>
1449
- extends
1450
- estSVGAttributes<T>,
1451
- Pick<
1452
- PresentationSVGAttributes,
1453
- | 'font-family'
1454
- | 'font-style'
1455
- | 'font-variant'
1456
- | 'font-weight'
1457
- | 'font-stretch'
1458
- | 'font-size'
1459
- | 'font-size-adjust'
1460
- | 'kerning'
1461
- | 'letter-spacing'
1462
- | 'word-spacing'
1463
- | 'text-decoration'
1464
- | 'glyph-orientation-horizontal'
1465
- | 'glyph-orientation-vertical'
1466
- | 'direction'
1467
- | 'unicode-bidi'
1468
- | 'text-anchor'
1469
- | 'dominant-baseline'
1470
- | 'color'
1471
- | 'fill'
1472
- | 'fill-rule'
1473
- | 'fill-opacity'
1474
- | 'stroke'
1475
- | 'stroke-width'
1476
- | 'stroke-linecap'
1477
- | 'stroke-linejoin'
1478
- | 'stroke-miterlimit'
1479
- | 'stroke-dasharray'
1480
- | 'stroke-dashoffset'
1481
- | 'stroke-opacity'
1482
- > {}
1483
- interface ZoomAndPanSVGAttributes {
1484
- zoomAndPan?: 'disable' | 'magnify';
1485
- }
1486
- interface AnimateSVGAttributes<T>
1487
- extends
1488
- AnimationElementSVGAttributes<T>,
1489
- AnimationAttributeTargetSVGAttributes,
1490
- AnimationTimingSVGAttributes,
1491
- AnimationValueSVGAttributes,
1492
- AnimationAdditionSVGAttributes,
1493
- Pick<PresentationSVGAttributes, 'color-interpolation' | 'color-rendering'> {}
1494
- interface AnimateMotionSVGAttributes<T>
1495
- extends
1496
- AnimationElementSVGAttributes<T>,
1497
- AnimationTimingSVGAttributes,
1498
- AnimationValueSVGAttributes,
1499
- AnimationAdditionSVGAttributes {
1500
- path?: string;
1501
- keyPoints?: string;
1502
- rotate?: number | string | 'auto' | 'auto-reverse';
1503
- origin?: 'default';
1504
- }
1505
- interface AnimateTransformSVGAttributes<T>
1506
- extends
1507
- AnimationElementSVGAttributes<T>,
1508
- AnimationAttributeTargetSVGAttributes,
1509
- AnimationTimingSVGAttributes,
1510
- AnimationValueSVGAttributes,
1511
- AnimationAdditionSVGAttributes {
1512
- type?: 'translate' | 'scale' | 'rotate' | 'skewX' | 'skewY';
1513
- }
1514
- interface CircleSVGAttributes<T>
1515
- extends
1516
- GraphicsElementSVGAttributes<T>,
1517
- ShapeElementSVGAttributes<T>,
1518
- ConditionalProcessingSVGAttributes,
1519
- StylableSVGAttributes,
1520
- TransformableSVGAttributes {
1521
- cx?: number | string;
1522
- cy?: number | string;
1523
- r?: number | string;
1524
- }
1525
- interface ClipPathSVGAttributes<T>
1526
- extends
1527
- estSVGAttributes<T>,
1528
- ConditionalProcessingSVGAttributes,
1529
- ExternalResourceSVGAttributes,
1530
- StylableSVGAttributes,
1531
- TransformableSVGAttributes,
1532
- Pick<PresentationSVGAttributes, 'clip-path'> {
1533
- clipPathUnits?: SVGUnits;
1534
- }
1535
- interface DefsSVGAttributes<T>
1536
- extends
1537
- ContainerElementSVGAttributes<T>,
1538
- ConditionalProcessingSVGAttributes,
1539
- ExternalResourceSVGAttributes,
1540
- StylableSVGAttributes,
1541
- TransformableSVGAttributes {}
1542
- interface DescSVGAttributes<T> extends estSVGAttributes<T>, StylableSVGAttributes {}
1543
- interface EllipseSVGAttributes<T>
1544
- extends
1545
- GraphicsElementSVGAttributes<T>,
1546
- ShapeElementSVGAttributes<T>,
1547
- ConditionalProcessingSVGAttributes,
1548
- ExternalResourceSVGAttributes,
1549
- StylableSVGAttributes,
1550
- TransformableSVGAttributes {
1551
- cx?: number | string;
1552
- cy?: number | string;
1553
- rx?: number | string;
1554
- ry?: number | string;
1555
- }
1556
- interface FeBlendSVGAttributes<T>
1557
- extends
1558
- FilterPrimitiveElementSVGAttributes<T>,
1559
- DoubleInputFilterSVGAttributes,
1560
- StylableSVGAttributes {
1561
- mode?: 'normal' | 'multiply' | 'screen' | 'darken' | 'lighten';
1562
- }
1563
- interface FeColorMatrixSVGAttributes<T>
1564
- extends
1565
- FilterPrimitiveElementSVGAttributes<T>,
1566
- SingleInputFilterSVGAttributes,
1567
- StylableSVGAttributes {
1568
- type?: 'matrix' | 'saturate' | 'hueRotate' | 'luminanceToAlpha';
1569
- values?: string;
1570
- }
1571
- interface FeComponentTransferSVGAttributes<T>
1572
- extends
1573
- FilterPrimitiveElementSVGAttributes<T>,
1574
- SingleInputFilterSVGAttributes,
1575
- StylableSVGAttributes {}
1576
- interface FeCompositeSVGAttributes<T>
1577
- extends
1578
- FilterPrimitiveElementSVGAttributes<T>,
1579
- DoubleInputFilterSVGAttributes,
1580
- StylableSVGAttributes {
1581
- operator?: 'over' | 'in' | 'out' | 'atop' | 'xor' | 'arithmetic';
1582
- k1?: number | string;
1583
- k2?: number | string;
1584
- k3?: number | string;
1585
- k4?: number | string;
1586
- }
1587
- interface FeConvolveMatrixSVGAttributes<T>
1588
- extends
1589
- FilterPrimitiveElementSVGAttributes<T>,
1590
- SingleInputFilterSVGAttributes,
1591
- StylableSVGAttributes {
1592
- order?: number | string;
1593
- kernelMatrix?: string;
1594
- divisor?: number | string;
1595
- bias?: number | string;
1596
- targetX?: number | string;
1597
- targetY?: number | string;
1598
- edgeMode?: 'duplicate' | 'wrap' | 'none';
1599
- kernelUnitLength?: number | string;
1600
- preserveAlpha?: 'true' | 'false';
1601
- }
1602
- interface FeDiffuseLightingSVGAttributes<T>
1603
- extends
1604
- FilterPrimitiveElementSVGAttributes<T>,
1605
- SingleInputFilterSVGAttributes,
1606
- StylableSVGAttributes,
1607
- Pick<PresentationSVGAttributes, 'color' | 'lighting-color'> {
1608
- surfaceScale?: number | string;
1609
- diffuseConstant?: number | string;
1610
- kernelUnitLength?: number | string;
1611
- }
1612
- interface FeDisplacementMapSVGAttributes<T>
1613
- extends
1614
- FilterPrimitiveElementSVGAttributes<T>,
1615
- DoubleInputFilterSVGAttributes,
1616
- StylableSVGAttributes {
1617
- scale?: number | string;
1618
- xChannelSelector?: 'R' | 'G' | 'B' | 'A';
1619
- yChannelSelector?: 'R' | 'G' | 'B' | 'A';
1620
- }
1621
- interface FeDistantLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
1622
- azimuth?: number | string;
1623
- elevation?: number | string;
1624
- }
1625
- interface FeDropShadowSVGAttributes<T>
1626
- extends
1627
- estSVGAttributes<T>,
1628
- FilterPrimitiveElementSVGAttributes<T>,
1629
- StylableSVGAttributes,
1630
- Pick<PresentationSVGAttributes, 'color' | 'flood-color' | 'flood-opacity'> {
1631
- dx?: number | string;
1632
- dy?: number | string;
1633
- stdDeviation?: number | string;
1634
- }
1635
- interface FeFloodSVGAttributes<T>
1636
- extends
1637
- FilterPrimitiveElementSVGAttributes<T>,
1638
- StylableSVGAttributes,
1639
- Pick<PresentationSVGAttributes, 'color' | 'flood-color' | 'flood-opacity'> {}
1640
- interface FeFuncSVGAttributes<T> extends estSVGAttributes<T> {
1641
- type?: 'identity' | 'table' | 'discrete' | 'linear' | 'gamma';
1642
- tableValues?: string;
1643
- slope?: number | string;
1644
- intercept?: number | string;
1645
- amplitude?: number | string;
1646
- exponent?: number | string;
1647
- offset?: number | string;
1648
- }
1649
- interface FeGaussianBlurSVGAttributes<T>
1650
- extends
1651
- FilterPrimitiveElementSVGAttributes<T>,
1652
- SingleInputFilterSVGAttributes,
1653
- StylableSVGAttributes {
1654
- stdDeviation?: number | string;
1655
- }
1656
- interface FeImageSVGAttributes<T>
1657
- extends
1658
- FilterPrimitiveElementSVGAttributes<T>,
1659
- ExternalResourceSVGAttributes,
1660
- StylableSVGAttributes {
1661
- preserveAspectRatio?: SVGPreserveAspectRatio;
1662
- href?: string;
1663
- }
1664
- interface FeMergeSVGAttributes<T>
1665
- extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {}
1666
- interface FeMergeNodeSVGAttributes<T>
1667
- extends estSVGAttributes<T>, SingleInputFilterSVGAttributes {}
1668
- interface FeMorphologySVGAttributes<T>
1669
- extends
1670
- FilterPrimitiveElementSVGAttributes<T>,
1671
- SingleInputFilterSVGAttributes,
1672
- StylableSVGAttributes {
1673
- operator?: 'erode' | 'dilate';
1674
- radius?: number | string;
1675
- }
1676
- interface FeOffsetSVGAttributes<T>
1677
- extends
1678
- FilterPrimitiveElementSVGAttributes<T>,
1679
- SingleInputFilterSVGAttributes,
1680
- StylableSVGAttributes {
1681
- dx?: number | string;
1682
- dy?: number | string;
1683
- }
1684
- interface FePointLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
1685
- x?: number | string;
1686
- y?: number | string;
1687
- z?: number | string;
1688
- }
1689
- interface FeSpecularLightingSVGAttributes<T>
1690
- extends
1691
- FilterPrimitiveElementSVGAttributes<T>,
1692
- SingleInputFilterSVGAttributes,
1693
- StylableSVGAttributes,
1694
- Pick<PresentationSVGAttributes, 'color' | 'lighting-color'> {
1695
- surfaceScale?: string;
1696
- specularConstant?: string;
1697
- specularExponent?: string;
1698
- kernelUnitLength?: number | string;
1699
- }
1700
- interface FeSpotLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
1701
- x?: number | string;
1702
- y?: number | string;
1703
- z?: number | string;
1704
- pointsAtX?: number | string;
1705
- pointsAtY?: number | string;
1706
- pointsAtZ?: number | string;
1707
- specularExponent?: number | string;
1708
- limitingConeAngle?: number | string;
1709
- }
1710
- interface FeTileSVGAttributes<T>
1711
- extends
1712
- FilterPrimitiveElementSVGAttributes<T>,
1713
- SingleInputFilterSVGAttributes,
1714
- StylableSVGAttributes {}
1715
- interface FeTurbulanceSVGAttributes<T>
1716
- extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
1717
- baseFrequency?: number | string;
1718
- numOctaves?: number | string;
1719
- seed?: number | string;
1720
- stitchTiles?: 'stitch' | 'noStitch';
1721
- type?: 'fractalNoise' | 'turbulence';
1722
- }
1723
- interface FilterSVGAttributes<T>
1724
- extends estSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
1725
- filterUnits?: SVGUnits;
1726
- primitiveUnits?: SVGUnits;
1727
- x?: number | string;
1728
- y?: number | string;
1729
- width?: number | string;
1730
- height?: number | string;
1731
- filterRes?: number | string;
1732
- }
1733
- interface ForeignObjectSVGAttributes<T>
1734
- extends
1735
- NewViewportSVGAttributes<T>,
1736
- ConditionalProcessingSVGAttributes,
1737
- ExternalResourceSVGAttributes,
1738
- StylableSVGAttributes,
1739
- TransformableSVGAttributes,
1740
- Pick<PresentationSVGAttributes, 'display' | 'visibility'> {
1741
- x?: number | string;
1742
- y?: number | string;
1743
- width?: number | string;
1744
- height?: number | string;
1745
- }
1746
- interface GSVGAttributes<T>
1747
- extends
1748
- ContainerElementSVGAttributes<T>,
1749
- ConditionalProcessingSVGAttributes,
1750
- ExternalResourceSVGAttributes,
1751
- StylableSVGAttributes,
1752
- TransformableSVGAttributes,
1753
- Pick<PresentationSVGAttributes, 'display' | 'visibility'> {}
1754
- interface ImageSVGAttributes<T>
1755
- extends
1756
- NewViewportSVGAttributes<T>,
1757
- GraphicsElementSVGAttributes<T>,
1758
- ConditionalProcessingSVGAttributes,
1759
- StylableSVGAttributes,
1760
- TransformableSVGAttributes,
1761
- Pick<PresentationSVGAttributes, 'color-profile' | 'image-rendering'> {
1762
- x?: number | string;
1763
- y?: number | string;
1764
- width?: number | string;
1765
- height?: number | string;
1766
- preserveAspectRatio?: ImagePreserveAspectRatio;
1767
- href?: string;
1768
- }
1769
- interface LineSVGAttributes<T>
1770
- extends
1771
- GraphicsElementSVGAttributes<T>,
1772
- ShapeElementSVGAttributes<T>,
1773
- ConditionalProcessingSVGAttributes,
1774
- ExternalResourceSVGAttributes,
1775
- StylableSVGAttributes,
1776
- TransformableSVGAttributes,
1777
- Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
1778
- x1?: number | string;
1779
- y1?: number | string;
1780
- x2?: number | string;
1781
- y2?: number | string;
1782
- }
1783
- interface LinearGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
1784
- x1?: number | string;
1785
- x2?: number | string;
1786
- y1?: number | string;
1787
- y2?: number | string;
1788
- }
1789
- interface MarkerSVGAttributes<T>
1790
- extends
1791
- ContainerElementSVGAttributes<T>,
1792
- ExternalResourceSVGAttributes,
1793
- StylableSVGAttributes,
1794
- FitToViewBoxSVGAttributes,
1795
- Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
1796
- markerUnits?: 'strokeWidth' | 'userSpaceOnUse';
1797
- refX?: number | string;
1798
- refY?: number | string;
1799
- markerWidth?: number | string;
1800
- markerHeight?: number | string;
1801
- orient?: string;
1802
- }
1803
- interface MaskSVGAttributes<T>
1804
- extends
1805
- Omit<ContainerElementSVGAttributes<T>, 'opacity' | 'filter'>,
1806
- ConditionalProcessingSVGAttributes,
1807
- ExternalResourceSVGAttributes,
1808
- StylableSVGAttributes {
1809
- maskUnits?: SVGUnits;
1810
- maskContentUnits?: SVGUnits;
1811
- x?: number | string;
1812
- y?: number | string;
1813
- width?: number | string;
1814
- height?: number | string;
1815
- }
1816
- interface MetadataSVGAttributes<T> extends estSVGAttributes<T> {}
1817
- interface MPathSVGAttributes<T> extends estSVGAttributes<T> {}
1818
- interface PathSVGAttributes<T>
1819
- extends
1820
- GraphicsElementSVGAttributes<T>,
1821
- ShapeElementSVGAttributes<T>,
1822
- ConditionalProcessingSVGAttributes,
1823
- ExternalResourceSVGAttributes,
1824
- StylableSVGAttributes,
1825
- TransformableSVGAttributes,
1826
- Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
1827
- d?: string;
1828
- pathLength?: number | string;
1829
- }
1830
- interface PatternSVGAttributes<T>
1831
- extends
1832
- ContainerElementSVGAttributes<T>,
1833
- ConditionalProcessingSVGAttributes,
1834
- ExternalResourceSVGAttributes,
1835
- StylableSVGAttributes,
1836
- FitToViewBoxSVGAttributes,
1837
- Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
1838
- x?: number | string;
1839
- y?: number | string;
1840
- width?: number | string;
1841
- height?: number | string;
1842
- patternUnits?: SVGUnits;
1843
- patternContentUnits?: SVGUnits;
1844
- patternTransform?: string;
1845
- href?: string;
1846
- }
1847
- interface PolygonSVGAttributes<T>
1848
- extends
1849
- GraphicsElementSVGAttributes<T>,
1850
- ShapeElementSVGAttributes<T>,
1851
- ConditionalProcessingSVGAttributes,
1852
- ExternalResourceSVGAttributes,
1853
- StylableSVGAttributes,
1854
- TransformableSVGAttributes,
1855
- Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
1856
- points?: string;
1857
- }
1858
- interface PolylineSVGAttributes<T>
1859
- extends
1860
- GraphicsElementSVGAttributes<T>,
1861
- ShapeElementSVGAttributes<T>,
1862
- ConditionalProcessingSVGAttributes,
1863
- ExternalResourceSVGAttributes,
1864
- StylableSVGAttributes,
1865
- TransformableSVGAttributes,
1866
- Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
1867
- points?: string;
1868
- }
1869
- interface RadialGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
1870
- cx?: number | string;
1871
- cy?: number | string;
1872
- r?: number | string;
1873
- fx?: number | string;
1874
- fy?: number | string;
1875
- }
1876
- interface RectSVGAttributes<T>
1877
- extends
1878
- GraphicsElementSVGAttributes<T>,
1879
- ShapeElementSVGAttributes<T>,
1880
- ConditionalProcessingSVGAttributes,
1881
- ExternalResourceSVGAttributes,
1882
- StylableSVGAttributes,
1883
- TransformableSVGAttributes {
1884
- x?: number | string;
1885
- y?: number | string;
1886
- width?: number | string;
1887
- height?: number | string;
1888
- rx?: number | string;
1889
- ry?: number | string;
1890
- }
1891
- interface SetSVGAttributes<T>
1892
- extends estSVGAttributes<T>, StylableSVGAttributes, AnimationTimingSVGAttributes {}
1893
- interface StopSVGAttributes<T>
1894
- extends
1895
- estSVGAttributes<T>,
1896
- StylableSVGAttributes,
1897
- Pick<PresentationSVGAttributes, 'color' | 'stop-color' | 'stop-opacity'> {
1898
- offset?: number | string;
1899
- }
1900
- interface SvgSVGAttributes<T>
1901
- extends
1902
- ContainerElementSVGAttributes<T>,
1903
- NewViewportSVGAttributes<T>,
1904
- ConditionalProcessingSVGAttributes,
1905
- ExternalResourceSVGAttributes,
1906
- StylableSVGAttributes,
1907
- FitToViewBoxSVGAttributes,
1908
- ZoomAndPanSVGAttributes,
1909
- PresentationSVGAttributes {
1910
- version?: string;
1911
- baseProfile?: string;
1912
- x?: number | string;
1913
- y?: number | string;
1914
- width?: number | string;
1915
- height?: number | string;
1916
- contentScriptType?: string;
1917
- contentStyleType?: string;
1918
- xmlns?: string;
1919
- }
1920
- interface SwitchSVGAttributes<T>
1921
- extends
1922
- ContainerElementSVGAttributes<T>,
1923
- ConditionalProcessingSVGAttributes,
1924
- ExternalResourceSVGAttributes,
1925
- StylableSVGAttributes,
1926
- TransformableSVGAttributes,
1927
- Pick<PresentationSVGAttributes, 'display' | 'visibility'> {}
1928
- interface SymbolSVGAttributes<T>
1929
- extends
1930
- ContainerElementSVGAttributes<T>,
1931
- NewViewportSVGAttributes<T>,
1932
- ExternalResourceSVGAttributes,
1933
- StylableSVGAttributes,
1934
- FitToViewBoxSVGAttributes {
1935
- width?: number | string;
1936
- height?: number | string;
1937
- preserveAspectRatio?: SVGPreserveAspectRatio;
1938
- refX?: number | string;
1939
- refY?: number | string;
1940
- viewBox?: string;
1941
- x?: number | string;
1942
- y?: number | string;
1943
- }
1944
- interface TextSVGAttributes<T>
1945
- extends
1946
- TextContentElementSVGAttributes<T>,
1947
- GraphicsElementSVGAttributes<T>,
1948
- ConditionalProcessingSVGAttributes,
1949
- ExternalResourceSVGAttributes,
1950
- StylableSVGAttributes,
1951
- TransformableSVGAttributes,
1952
- Pick<PresentationSVGAttributes, 'writing-mode' | 'text-rendering'> {
1953
- x?: number | string;
1954
- y?: number | string;
1955
- dx?: number | string;
1956
- dy?: number | string;
1957
- rotate?: number | string;
1958
- textLength?: number | string;
1959
- lengthAdjust?: 'spacing' | 'spacingAndGlyphs';
1960
- }
1961
- interface TextPathSVGAttributes<T>
1962
- extends
1963
- TextContentElementSVGAttributes<T>,
1964
- ConditionalProcessingSVGAttributes,
1965
- ExternalResourceSVGAttributes,
1966
- StylableSVGAttributes,
1967
- Pick<
1968
- PresentationSVGAttributes,
1969
- 'alignment-baseline' | 'baseline-shift' | 'display' | 'visibility'
1970
- > {
1971
- startOffset?: number | string;
1972
- method?: 'align' | 'stretch';
1973
- spacing?: 'auto' | 'exact';
1974
- href?: string;
1975
- }
1976
- interface TSpanSVGAttributes<T>
1977
- extends
1978
- TextContentElementSVGAttributes<T>,
1979
- ConditionalProcessingSVGAttributes,
1980
- ExternalResourceSVGAttributes,
1981
- StylableSVGAttributes,
1982
- Pick<
1983
- PresentationSVGAttributes,
1984
- 'alignment-baseline' | 'baseline-shift' | 'display' | 'visibility'
1985
- > {
1986
- x?: number | string;
1987
- y?: number | string;
1988
- dx?: number | string;
1989
- dy?: number | string;
1990
- rotate?: number | string;
1991
- textLength?: number | string;
1992
- lengthAdjust?: 'spacing' | 'spacingAndGlyphs';
1993
- }
1994
- interface UseSVGAttributes<T>
1995
- extends
1996
- GraphicsElementSVGAttributes<T>,
1997
- ConditionalProcessingSVGAttributes,
1998
- ExternalResourceSVGAttributes,
1999
- StylableSVGAttributes,
2000
- TransformableSVGAttributes {
2001
- x?: number | string;
2002
- y?: number | string;
2003
- width?: number | string;
2004
- height?: number | string;
2005
- href?: string;
2006
- }
2007
- interface ViewSVGAttributes<T>
2008
- extends
2009
- estSVGAttributes<T>,
2010
- ExternalResourceSVGAttributes,
2011
- FitToViewBoxSVGAttributes,
2012
- ZoomAndPanSVGAttributes {
2013
- viewTarget?: string;
2014
- }
2015
- /**
2016
- * @type {HTMLElementTagNameMap}
2017
- */
2018
- interface HTMLElementTags {
2019
- a: AnchorHTMLAttributes<HTMLAnchorElement>;
2020
- abbr: HTMLAttributes<HTMLElement>;
2021
- address: HTMLAttributes<HTMLElement>;
2022
- area: AreaHTMLAttributes<HTMLAreaElement>;
2023
- article: HTMLAttributes<HTMLElement>;
2024
- aside: HTMLAttributes<HTMLElement>;
2025
- audio: AudioHTMLAttributes<HTMLAudioElement>;
2026
- b: HTMLAttributes<HTMLElement>;
2027
- base: BaseHTMLAttributes<HTMLBaseElement>;
2028
- bdi: HTMLAttributes<HTMLElement>;
2029
- bdo: HTMLAttributes<HTMLElement>;
2030
- blockquote: BlockquoteHTMLAttributes<HTMLElement>;
2031
- body: HTMLAttributes<HTMLBodyElement>;
2032
- br: HTMLAttributes<HTMLBRElement>;
2033
- button: ButtonHTMLAttributes<HTMLButtonElement>;
2034
- canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
2035
- caption: HTMLAttributes<HTMLElement>;
2036
- cite: HTMLAttributes<HTMLElement>;
2037
- code: HTMLAttributes<HTMLElement>;
2038
- col: ColHTMLAttributes<HTMLTableColElement>;
2039
- colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
2040
- data: DataHTMLAttributes<HTMLElement>;
2041
- datalist: HTMLAttributes<HTMLDataListElement>;
2042
- dd: HTMLAttributes<HTMLElement>;
2043
- del: HTMLAttributes<HTMLElement>;
2044
- details: DetailsHtmlAttributes<HTMLDetailsElement>;
2045
- dfn: HTMLAttributes<HTMLElement>;
2046
- dialog: DialogHtmlAttributes<HTMLDialogElement>;
2047
- div: HTMLAttributes<HTMLDivElement>;
2048
- dl: HTMLAttributes<HTMLDListElement>;
2049
- dt: HTMLAttributes<HTMLElement>;
2050
- em: HTMLAttributes<HTMLElement>;
2051
- embed: EmbedHTMLAttributes<HTMLEmbedElement>;
2052
- fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
2053
- figcaption: HTMLAttributes<HTMLElement>;
2054
- figure: HTMLAttributes<HTMLElement>;
2055
- footer: HTMLAttributes<HTMLElement>;
2056
- form: FormHTMLAttributes<HTMLFormElement>;
2057
- h1: HTMLAttributes<HTMLHeadingElement>;
2058
- h2: HTMLAttributes<HTMLHeadingElement>;
2059
- h3: HTMLAttributes<HTMLHeadingElement>;
2060
- h4: HTMLAttributes<HTMLHeadingElement>;
2061
- h5: HTMLAttributes<HTMLHeadingElement>;
2062
- h6: HTMLAttributes<HTMLHeadingElement>;
2063
- head: HTMLAttributes<HTMLHeadElement>;
2064
- header: HTMLAttributes<HTMLElement>;
2065
- hgroup: HTMLAttributes<HTMLElement>;
2066
- hr: HTMLAttributes<HTMLHRElement>;
2067
- html: HTMLAttributes<HTMLHtmlElement>;
2068
- i: HTMLAttributes<HTMLElement>;
2069
- iframe: IframeHTMLAttributes<HTMLIFrameElement>;
2070
- img: ImgHTMLAttributes<HTMLImageElement>;
2071
- input: InputHTMLAttributes<HTMLInputElement>;
2072
- ins: InsHTMLAttributes<HTMLModElement>;
2073
- kbd: HTMLAttributes<HTMLElement>;
2074
- label: LabelHTMLAttributes<HTMLLabelElement>;
2075
- legend: HTMLAttributes<HTMLLegendElement>;
2076
- li: LiHTMLAttributes<HTMLLIElement>;
2077
- link: LinkHTMLAttributes<HTMLLinkElement>;
2078
- main: HTMLAttributes<HTMLElement>;
2079
- map: MapHTMLAttributes<HTMLMapElement>;
2080
- mark: HTMLAttributes<HTMLElement>;
2081
- menu: MenuHTMLAttributes<HTMLElement>;
2082
- meta: MetaHTMLAttributes<HTMLMetaElement>;
2083
- meter: MeterHTMLAttributes<HTMLElement>;
2084
- nav: HTMLAttributes<HTMLElement>;
2085
- noscript: HTMLAttributes<HTMLElement>;
2086
- object: ObjectHTMLAttributes<HTMLObjectElement>;
2087
- ol: OlHTMLAttributes<HTMLOListElement>;
2088
- optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
2089
- option: OptionHTMLAttributes<HTMLOptionElement>;
2090
- output: OutputHTMLAttributes<HTMLElement>;
2091
- p: HTMLAttributes<HTMLParagraphElement>;
2092
- picture: HTMLAttributes<HTMLElement>;
2093
- pre: HTMLAttributes<HTMLPreElement>;
2094
- progress: ProgressHTMLAttributes<HTMLProgressElement>;
2095
- q: QuoteHTMLAttributes<HTMLQuoteElement>;
2096
- rp: HTMLAttributes<HTMLElement>;
2097
- rt: HTMLAttributes<HTMLElement>;
2098
- ruby: HTMLAttributes<HTMLElement>;
2099
- s: HTMLAttributes<HTMLElement>;
2100
- samp: HTMLAttributes<HTMLElement>;
2101
- script: ScriptHTMLAttributes<HTMLScriptElement>;
2102
- search: HTMLAttributes<HTMLElement>;
2103
- section: HTMLAttributes<HTMLElement>;
2104
- select: SelectHTMLAttributes<HTMLSelectElement>;
2105
- slot: HTMLSlotElementAttributes;
2106
- small: HTMLAttributes<HTMLElement>;
2107
- source: SourceHTMLAttributes<HTMLSourceElement>;
2108
- span: HTMLAttributes<HTMLSpanElement>;
2109
- strong: HTMLAttributes<HTMLElement>;
2110
- style: StyleHTMLAttributes<HTMLStyleElement>;
2111
- sub: HTMLAttributes<HTMLElement>;
2112
- summary: HTMLAttributes<HTMLElement>;
2113
- sup: HTMLAttributes<HTMLElement>;
2114
- table: HTMLAttributes<HTMLTableElement>;
2115
- tbody: HTMLAttributes<HTMLTableSectionElement>;
2116
- td: TdHTMLAttributes<HTMLTableCellElement>;
2117
- template: TemplateHTMLAttributes<HTMLTemplateElement>;
2118
- textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
2119
- tfoot: HTMLAttributes<HTMLTableSectionElement>;
2120
- th: ThHTMLAttributes<HTMLTableCellElement>;
2121
- thead: HTMLAttributes<HTMLTableSectionElement>;
2122
- time: TimeHTMLAttributes<HTMLElement>;
2123
- title: HTMLAttributes<HTMLTitleElement>;
2124
- tr: HTMLAttributes<HTMLTableRowElement>;
2125
- track: TrackHTMLAttributes<HTMLTrackElement>;
2126
- u: HTMLAttributes<HTMLElement>;
2127
- ul: HTMLAttributes<HTMLUListElement>;
2128
- var: HTMLAttributes<HTMLElement>;
2129
- video: VideoHTMLAttributes<HTMLVideoElement>;
2130
- wbr: HTMLAttributes<HTMLElement>;
2131
- }
2132
- /**
2133
- * @type {HTMLElementDeprecatedTagNameMap}
2134
- */
2135
- interface HTMLElementDeprecatedTags {
2136
- big: HTMLAttributes<HTMLElement>;
2137
- keygen: KeygenHTMLAttributes<HTMLElement>;
2138
- menuitem: HTMLAttributes<HTMLElement>;
2139
- noindex: HTMLAttributes<HTMLElement>;
2140
- param: ParamHTMLAttributes<HTMLParamElement>;
2141
- }
2142
- /**
2143
- * @type {SVGElementTagNameMap}
2144
- */
2145
- interface SVGElementTags {
2146
- animate: AnimateSVGAttributes<SVGAnimateElement>;
2147
- animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
2148
- animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
2149
- circle: CircleSVGAttributes<SVGCircleElement>;
2150
- clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
2151
- defs: DefsSVGAttributes<SVGDefsElement>;
2152
- desc: DescSVGAttributes<SVGDescElement>;
2153
- ellipse: EllipseSVGAttributes<SVGEllipseElement>;
2154
- feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
2155
- feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
2156
- feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
2157
- feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
2158
- feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
2159
- feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
2160
- feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
2161
- feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
2162
- feDropShadow: FeDropShadowSVGAttributes<SVGFEDropShadowElement>;
2163
- feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
2164
- feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
2165
- feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
2166
- feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
2167
- feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
2168
- feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
2169
- feImage: FeImageSVGAttributes<SVGFEImageElement>;
2170
- feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
2171
- feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
2172
- feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
2173
- feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
2174
- fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
2175
- feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
2176
- feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
2177
- feTile: FeTileSVGAttributes<SVGFETileElement>;
2178
- feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
2179
- filter: FilterSVGAttributes<SVGFilterElement>;
2180
- foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
2181
- g: GSVGAttributes<SVGGElement>;
2182
- image: ImageSVGAttributes<SVGImageElement>;
2183
- line: LineSVGAttributes<SVGLineElement>;
2184
- linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
2185
- marker: MarkerSVGAttributes<SVGMarkerElement>;
2186
- mask: MaskSVGAttributes<SVGMaskElement>;
2187
- metadata: MetadataSVGAttributes<SVGMetadataElement>;
2188
- mpath: MPathSVGAttributes<SVGMPathElement>;
2189
- path: PathSVGAttributes<SVGPathElement>;
2190
- pattern: PatternSVGAttributes<SVGPatternElement>;
2191
- polygon: PolygonSVGAttributes<SVGPolygonElement>;
2192
- polyline: PolylineSVGAttributes<SVGPolylineElement>;
2193
- radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
2194
- rect: RectSVGAttributes<SVGRectElement>;
2195
- set: SetSVGAttributes<SVGSetElement>;
2196
- stop: StopSVGAttributes<SVGStopElement>;
2197
- svg: SvgSVGAttributes<SVGSVGElement>;
2198
- switch: SwitchSVGAttributes<SVGSwitchElement>;
2199
- symbol: SymbolSVGAttributes<SVGSymbolElement>;
2200
- text: TextSVGAttributes<SVGTextElement>;
2201
- textPath: TextPathSVGAttributes<SVGTextPathElement>;
2202
- tspan: TSpanSVGAttributes<SVGTSpanElement>;
2203
- use: UseSVGAttributes<SVGUseElement>;
2204
- view: ViewSVGAttributes<SVGViewElement>;
2205
- }
2206
- interface IntrinsicElements
2207
- extends HTMLElementTags, HTMLElementDeprecatedTags, SVGElementTags {}
2208
- }
2209
- }