@builder.io/mitosis 0.0.56-21 → 0.0.56-22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/__tests__/data/blocks/classname-jsx.raw.d.ts +1 -1
- package/dist/src/__tests__/data/blocks/content-slot-html.raw.d.ts +1 -1
- package/dist/src/__tests__/data/blocks/content-slot-jsx.raw.d.ts +1 -1
- package/dist/src/flow.d.ts +1 -1
- package/dist/src/helpers/styles/helpers.d.ts +2 -2
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/dist/src/jsx-types.d.ts +0 -1173
- package/dist/src/jsx-types.js +0 -10
package/dist/src/jsx-types.d.ts
DELETED
|
@@ -1,1173 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Based on JSX types for Solid, Inferno, Surplus, and React
|
|
3
|
-
*
|
|
4
|
-
* https://github.com/ryansolid/solid/blob/master/packages/solid/src/rendering/jsx.ts
|
|
5
|
-
* https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts
|
|
6
|
-
* https://github.com/infernojs/inferno/blob/master/packages/inferno/src/core/types.ts
|
|
7
|
-
* https://github.com/adamhaile/surplus/blob/master/index.d.ts
|
|
8
|
-
*/
|
|
9
|
-
export declare namespace JSX {
|
|
10
|
-
type CSS = Partial<CSSStyleDeclaration> & {
|
|
11
|
-
[key: string]: Partial<CSSStyleDeclaration> | string;
|
|
12
|
-
};
|
|
13
|
-
type Element = Node | ArrayElement | FunctionElement | string | number | boolean | null | undefined;
|
|
14
|
-
interface ArrayElement extends Array<Element> {
|
|
15
|
-
}
|
|
16
|
-
interface FunctionElement {
|
|
17
|
-
(): Element;
|
|
18
|
-
}
|
|
19
|
-
interface ElementClass {
|
|
20
|
-
render(props: any): Element;
|
|
21
|
-
}
|
|
22
|
-
type LibraryManagedAttributes<Component, Props> = Props;
|
|
23
|
-
interface ElementChildrenAttribute {
|
|
24
|
-
children: {};
|
|
25
|
-
}
|
|
26
|
-
interface EventHandler<T, E extends Event> {
|
|
27
|
-
(e: E & {
|
|
28
|
-
currentTarget: T;
|
|
29
|
-
target: T;
|
|
30
|
-
}): void;
|
|
31
|
-
}
|
|
32
|
-
interface BoundEventHandler<T, E extends Event> {
|
|
33
|
-
0: (data: any, e: E & {
|
|
34
|
-
currentTarget: T;
|
|
35
|
-
target: T;
|
|
36
|
-
}) => void;
|
|
37
|
-
1: any;
|
|
38
|
-
}
|
|
39
|
-
type EventHandlerUnion<T, E extends Event> = EventHandler<T, E> | BoundEventHandler<T, E>;
|
|
40
|
-
interface IntrinsicAttributes {
|
|
41
|
-
key?: string | number;
|
|
42
|
-
ref?: HTMLElement | ((e: HTMLElement) => void);
|
|
43
|
-
}
|
|
44
|
-
interface CustomAttributes<T> {
|
|
45
|
-
ref?: T | ((el: T) => void);
|
|
46
|
-
classList?: {
|
|
47
|
-
[k: string]: boolean | undefined;
|
|
48
|
-
};
|
|
49
|
-
className?: string;
|
|
50
|
-
on?: {
|
|
51
|
-
[key: string]: EventHandler<T, CustomEvent>;
|
|
52
|
-
};
|
|
53
|
-
onCapture?: {
|
|
54
|
-
[key: string]: EventHandler<T, CustomEvent>;
|
|
55
|
-
};
|
|
56
|
-
$name?: string;
|
|
57
|
-
$id?: string;
|
|
58
|
-
}
|
|
59
|
-
interface DOMAttributes<T> extends CustomAttributes<T> {
|
|
60
|
-
children?: Element | Element[] | string | undefined | false;
|
|
61
|
-
innerHTML?: string;
|
|
62
|
-
innerText?: string;
|
|
63
|
-
textContent?: string;
|
|
64
|
-
onCopy?: EventHandlerUnion<T, ClipboardEvent>;
|
|
65
|
-
onCut?: EventHandlerUnion<T, ClipboardEvent>;
|
|
66
|
-
onPaste?: EventHandlerUnion<T, ClipboardEvent>;
|
|
67
|
-
onCompositionEnd?: EventHandlerUnion<T, CompositionEvent>;
|
|
68
|
-
onCompositionStart?: EventHandlerUnion<T, CompositionEvent>;
|
|
69
|
-
onCompositionUpdate?: EventHandlerUnion<T, CompositionEvent>;
|
|
70
|
-
onFocus?: EventHandlerUnion<T, FocusEvent>;
|
|
71
|
-
onBlur?: EventHandlerUnion<T, FocusEvent>;
|
|
72
|
-
onChange?: EventHandlerUnion<T, Event>;
|
|
73
|
-
onInput?: EventHandlerUnion<T, InputEvent>;
|
|
74
|
-
onReset?: EventHandlerUnion<T, Event>;
|
|
75
|
-
onSubmit?: EventHandlerUnion<T, Event & {
|
|
76
|
-
submitter: HTMLElement;
|
|
77
|
-
}>;
|
|
78
|
-
onLoad?: EventHandlerUnion<T, Event>;
|
|
79
|
-
onError?: EventHandlerUnion<T, Event>;
|
|
80
|
-
onKeyDown?: EventHandlerUnion<T, KeyboardEvent>;
|
|
81
|
-
onKeyPress?: EventHandlerUnion<T, KeyboardEvent>;
|
|
82
|
-
onKeyUp?: EventHandlerUnion<T, KeyboardEvent>;
|
|
83
|
-
onGotPointerCapture?: EventHandlerUnion<T, PointerEvent>;
|
|
84
|
-
onLostPointerCapture?: EventHandlerUnion<T, PointerEvent>;
|
|
85
|
-
onPointerCancel?: EventHandlerUnion<T, PointerEvent>;
|
|
86
|
-
onPointerDown?: EventHandlerUnion<T, PointerEvent>;
|
|
87
|
-
onPointerEnter?: EventHandlerUnion<T, PointerEvent>;
|
|
88
|
-
onPointerLeave?: EventHandlerUnion<T, PointerEvent>;
|
|
89
|
-
onPointerMove?: EventHandlerUnion<T, PointerEvent>;
|
|
90
|
-
onPointerOver?: EventHandlerUnion<T, PointerEvent>;
|
|
91
|
-
onPointerOut?: EventHandlerUnion<T, PointerEvent>;
|
|
92
|
-
onPointerUp?: EventHandlerUnion<T, PointerEvent>;
|
|
93
|
-
onAbort?: EventHandlerUnion<T, Event>;
|
|
94
|
-
onCanPlay?: EventHandlerUnion<T, Event>;
|
|
95
|
-
onCanPlayThrough?: EventHandlerUnion<T, Event>;
|
|
96
|
-
onDurationChange?: EventHandlerUnion<T, Event>;
|
|
97
|
-
onEmptied?: EventHandlerUnion<T, Event>;
|
|
98
|
-
onEncrypted?: EventHandlerUnion<T, Event>;
|
|
99
|
-
onEnded?: EventHandlerUnion<T, Event>;
|
|
100
|
-
onLoadedData?: EventHandlerUnion<T, Event>;
|
|
101
|
-
onLoadedMetadata?: EventHandlerUnion<T, Event>;
|
|
102
|
-
onLoadStart?: EventHandlerUnion<T, Event>;
|
|
103
|
-
onPause?: EventHandlerUnion<T, Event>;
|
|
104
|
-
onPlay?: EventHandlerUnion<T, Event>;
|
|
105
|
-
onPlaying?: EventHandlerUnion<T, Event>;
|
|
106
|
-
onProgress?: EventHandlerUnion<T, Event>;
|
|
107
|
-
onRateChange?: EventHandlerUnion<T, Event>;
|
|
108
|
-
onSeeked?: EventHandlerUnion<T, Event>;
|
|
109
|
-
onSeeking?: EventHandlerUnion<T, Event>;
|
|
110
|
-
onStalled?: EventHandlerUnion<T, Event>;
|
|
111
|
-
onSuspend?: EventHandlerUnion<T, Event>;
|
|
112
|
-
onTimeUpdate?: EventHandlerUnion<T, Event>;
|
|
113
|
-
onVolumeChange?: EventHandlerUnion<T, Event>;
|
|
114
|
-
onWaiting?: EventHandlerUnion<T, Event>;
|
|
115
|
-
onClick?: EventHandlerUnion<T, MouseEvent>;
|
|
116
|
-
onContextMenu?: EventHandlerUnion<T, MouseEvent>;
|
|
117
|
-
onDblClick?: EventHandlerUnion<T, MouseEvent>;
|
|
118
|
-
onDrag?: EventHandlerUnion<T, DragEvent>;
|
|
119
|
-
onDragEnd?: EventHandlerUnion<T, DragEvent>;
|
|
120
|
-
onDragEnter?: EventHandlerUnion<T, DragEvent>;
|
|
121
|
-
onDragExit?: EventHandlerUnion<T, DragEvent>;
|
|
122
|
-
onDragLeave?: EventHandlerUnion<T, DragEvent>;
|
|
123
|
-
onDragOver?: EventHandlerUnion<T, DragEvent>;
|
|
124
|
-
onDragStart?: EventHandlerUnion<T, DragEvent>;
|
|
125
|
-
onDrop?: EventHandlerUnion<T, DragEvent>;
|
|
126
|
-
onMouseDown?: EventHandlerUnion<T, MouseEvent>;
|
|
127
|
-
onMouseEnter?: EventHandlerUnion<T, MouseEvent>;
|
|
128
|
-
onMouseLeave?: EventHandlerUnion<T, MouseEvent>;
|
|
129
|
-
onMouseMove?: EventHandlerUnion<T, MouseEvent>;
|
|
130
|
-
onMouseOut?: EventHandlerUnion<T, MouseEvent>;
|
|
131
|
-
onMouseOver?: EventHandlerUnion<T, MouseEvent>;
|
|
132
|
-
onMouseUp?: EventHandlerUnion<T, MouseEvent>;
|
|
133
|
-
onSelect?: EventHandlerUnion<T, UIEvent>;
|
|
134
|
-
onTouchCancel?: EventHandlerUnion<T, TouchEvent>;
|
|
135
|
-
onTouchEnd?: EventHandlerUnion<T, TouchEvent>;
|
|
136
|
-
onTouchMove?: EventHandlerUnion<T, TouchEvent>;
|
|
137
|
-
onTouchStart?: EventHandlerUnion<T, TouchEvent>;
|
|
138
|
-
onScroll?: EventHandlerUnion<T, UIEvent>;
|
|
139
|
-
onWheel?: EventHandlerUnion<T, WheelEvent>;
|
|
140
|
-
onAnimationStart?: EventHandlerUnion<T, AnimationEvent>;
|
|
141
|
-
onAnimationEnd?: EventHandlerUnion<T, AnimationEvent>;
|
|
142
|
-
onAnimationIteration?: EventHandlerUnion<T, AnimationEvent>;
|
|
143
|
-
onTransitionEnd?: EventHandlerUnion<T, TransitionEvent>;
|
|
144
|
-
}
|
|
145
|
-
type CSSWideKeyword = 'initial' | 'inherit' | 'unset';
|
|
146
|
-
type CSSPercentage = string;
|
|
147
|
-
type CSSLength = number | string;
|
|
148
|
-
type HTMLAutocapitalize = 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
|
|
149
|
-
type HTMLDir = 'ltr' | 'rtl' | 'auto';
|
|
150
|
-
type HTMLFormEncType = 'application/x-www-form-urlencoded' | 'multipart/form-data' | 'text/plain';
|
|
151
|
-
type HTMLFormMethod = 'post' | 'get' | 'dialog';
|
|
152
|
-
type HTMLCrossorigin = 'anonymous' | 'use-credentials' | '';
|
|
153
|
-
type HTMLReferrerPolicy = 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
154
|
-
type HTMLIframeSandbox = 'allow-downloads-without-user-activation' | 'allow-forms' | 'allow-modals' | 'allow-orientation-lock' | 'allow-pointer-lock' | 'allow-popups' | 'allow-popups-to-escape-sandbox' | 'allow-presentation' | 'allow-same-origin' | 'allow-scripts' | 'allow-storage-access-by-user-activation' | 'allow-top-navigation' | 'allow-top-navigation-by-user-activation';
|
|
155
|
-
type HTMLLinkAs = 'audio' | 'document' | 'embed' | 'fetch' | 'font' | 'image' | 'object' | 'script' | 'style' | 'track' | 'video' | 'worker';
|
|
156
|
-
interface HTMLAttributes<T> extends DOMAttributes<T> {
|
|
157
|
-
key?: string | boolean | number;
|
|
158
|
-
accessKey?: string;
|
|
159
|
-
class?: string;
|
|
160
|
-
contenteditable?: boolean | 'inherit';
|
|
161
|
-
contextmenu?: string;
|
|
162
|
-
dir?: HTMLDir;
|
|
163
|
-
draggable?: boolean;
|
|
164
|
-
hidden?: boolean;
|
|
165
|
-
id?: string;
|
|
166
|
-
lang?: string;
|
|
167
|
-
spellcheck?: boolean;
|
|
168
|
-
style?: CSS;
|
|
169
|
-
css?: CSS | {
|
|
170
|
-
[key: string]: CSS | undefined;
|
|
171
|
-
};
|
|
172
|
-
tabindex?: number | string;
|
|
173
|
-
title?: string;
|
|
174
|
-
translate?: 'yes' | 'no';
|
|
175
|
-
about?: string;
|
|
176
|
-
datatype?: string;
|
|
177
|
-
inlist?: any;
|
|
178
|
-
prefix?: string;
|
|
179
|
-
property?: string;
|
|
180
|
-
resource?: string;
|
|
181
|
-
typeof?: string;
|
|
182
|
-
vocab?: string;
|
|
183
|
-
autocapitalize?: HTMLAutocapitalize;
|
|
184
|
-
color?: string;
|
|
185
|
-
itemprop?: string;
|
|
186
|
-
itemscope?: boolean;
|
|
187
|
-
itemtype?: string;
|
|
188
|
-
itemid?: string;
|
|
189
|
-
itemref?: string;
|
|
190
|
-
align?: 'start' | 'end' | 'center' | 'baseline' | 'stretch' | 'left' | 'right';
|
|
191
|
-
part?: string;
|
|
192
|
-
exportparts?: string;
|
|
193
|
-
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
194
|
-
contentEditable?: boolean | 'inherit';
|
|
195
|
-
contextMenu?: string;
|
|
196
|
-
tabIndex?: number | string;
|
|
197
|
-
autoCapitalize?: HTMLAutocapitalize;
|
|
198
|
-
itemProp?: string;
|
|
199
|
-
itemScope?: boolean;
|
|
200
|
-
itemType?: string;
|
|
201
|
-
itemId?: string;
|
|
202
|
-
itemRef?: string;
|
|
203
|
-
exportParts?: string;
|
|
204
|
-
inputMode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
205
|
-
}
|
|
206
|
-
interface AnchorHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
207
|
-
download?: any;
|
|
208
|
-
href?: string;
|
|
209
|
-
hreflang?: string;
|
|
210
|
-
media?: string;
|
|
211
|
-
ping?: string;
|
|
212
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
213
|
-
rel?: string;
|
|
214
|
-
target?: string;
|
|
215
|
-
type?: string;
|
|
216
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
217
|
-
}
|
|
218
|
-
interface AudioHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
219
|
-
}
|
|
220
|
-
interface AreaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
221
|
-
alt?: string;
|
|
222
|
-
coords?: string;
|
|
223
|
-
download?: any;
|
|
224
|
-
href?: string;
|
|
225
|
-
hreflang?: string;
|
|
226
|
-
ping?: string;
|
|
227
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
228
|
-
rel?: string;
|
|
229
|
-
shape?: 'rect' | 'circle' | 'poly' | 'default';
|
|
230
|
-
target?: string;
|
|
231
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
232
|
-
}
|
|
233
|
-
interface BaseHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
234
|
-
href?: string;
|
|
235
|
-
target?: string;
|
|
236
|
-
}
|
|
237
|
-
interface BlockquoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
238
|
-
cite?: string;
|
|
239
|
-
}
|
|
240
|
-
interface ButtonHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
241
|
-
autofocus?: boolean;
|
|
242
|
-
disabled?: boolean;
|
|
243
|
-
form?: string;
|
|
244
|
-
formaction?: string;
|
|
245
|
-
formenctype?: HTMLFormEncType;
|
|
246
|
-
formmethod?: HTMLFormMethod;
|
|
247
|
-
formnovalidate?: boolean;
|
|
248
|
-
formtarget?: string;
|
|
249
|
-
name?: string;
|
|
250
|
-
type?: 'submit' | 'reset' | 'button';
|
|
251
|
-
value?: string;
|
|
252
|
-
formAction?: string;
|
|
253
|
-
formEnctype?: HTMLFormEncType;
|
|
254
|
-
formMethod?: HTMLFormMethod;
|
|
255
|
-
formNoValidate?: boolean;
|
|
256
|
-
formTarget?: string;
|
|
257
|
-
}
|
|
258
|
-
interface CanvasHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
259
|
-
width?: number | string;
|
|
260
|
-
height?: number | string;
|
|
261
|
-
}
|
|
262
|
-
interface ColHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
263
|
-
span?: number | string;
|
|
264
|
-
width?: number | string;
|
|
265
|
-
}
|
|
266
|
-
interface ColgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
267
|
-
span?: number | string;
|
|
268
|
-
}
|
|
269
|
-
interface DataHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
270
|
-
value?: string | string[] | number;
|
|
271
|
-
}
|
|
272
|
-
interface DetailsHtmlAttributes<T> extends HTMLAttributes<T> {
|
|
273
|
-
open?: boolean;
|
|
274
|
-
}
|
|
275
|
-
interface DialogHtmlAttributes<T> extends HTMLAttributes<T> {
|
|
276
|
-
open?: boolean;
|
|
277
|
-
}
|
|
278
|
-
interface EmbedHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
279
|
-
height?: number | string;
|
|
280
|
-
src?: string;
|
|
281
|
-
type?: string;
|
|
282
|
-
width?: number | string;
|
|
283
|
-
}
|
|
284
|
-
interface FieldsetHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
285
|
-
disabled?: boolean;
|
|
286
|
-
form?: string;
|
|
287
|
-
name?: string;
|
|
288
|
-
}
|
|
289
|
-
interface FormHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
290
|
-
acceptcharset?: string;
|
|
291
|
-
action?: string;
|
|
292
|
-
autocomplete?: string;
|
|
293
|
-
encoding?: HTMLFormEncType;
|
|
294
|
-
enctype?: HTMLFormEncType;
|
|
295
|
-
method?: HTMLFormMethod;
|
|
296
|
-
name?: string;
|
|
297
|
-
novalidate?: boolean;
|
|
298
|
-
target?: string;
|
|
299
|
-
acceptCharset?: string;
|
|
300
|
-
noValidate?: boolean;
|
|
301
|
-
}
|
|
302
|
-
interface IframeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
303
|
-
allow?: string;
|
|
304
|
-
allowfullscreen?: boolean;
|
|
305
|
-
height?: number | string;
|
|
306
|
-
name?: string;
|
|
307
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
308
|
-
sandbox?: HTMLIframeSandbox;
|
|
309
|
-
src?: string;
|
|
310
|
-
srcdoc?: string;
|
|
311
|
-
width?: number | string;
|
|
312
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
313
|
-
}
|
|
314
|
-
interface ImgHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
315
|
-
loading?: string;
|
|
316
|
-
role?: string;
|
|
317
|
-
alt?: string;
|
|
318
|
-
crossorigin?: HTMLCrossorigin;
|
|
319
|
-
decoding?: 'sync' | 'async' | 'auto';
|
|
320
|
-
height?: number | string;
|
|
321
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
322
|
-
sizes?: string;
|
|
323
|
-
src?: string;
|
|
324
|
-
srcset?: string;
|
|
325
|
-
width?: number | string;
|
|
326
|
-
crossOrigin?: HTMLCrossorigin;
|
|
327
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
328
|
-
}
|
|
329
|
-
interface InputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
330
|
-
accept?: string;
|
|
331
|
-
alt?: string;
|
|
332
|
-
autocomplete?: string;
|
|
333
|
-
autofocus?: boolean;
|
|
334
|
-
capture?: boolean | string;
|
|
335
|
-
checked?: boolean;
|
|
336
|
-
crossorigin?: HTMLCrossorigin;
|
|
337
|
-
disabled?: boolean;
|
|
338
|
-
form?: string;
|
|
339
|
-
formaction?: string;
|
|
340
|
-
formenctype?: HTMLFormEncType;
|
|
341
|
-
formmethod?: HTMLFormMethod;
|
|
342
|
-
formnovalidate?: boolean;
|
|
343
|
-
formtarget?: string;
|
|
344
|
-
height?: number | string;
|
|
345
|
-
list?: string;
|
|
346
|
-
max?: number | string;
|
|
347
|
-
maxlength?: number | string;
|
|
348
|
-
min?: number | string;
|
|
349
|
-
minlength?: number | string;
|
|
350
|
-
multiple?: boolean;
|
|
351
|
-
name?: string;
|
|
352
|
-
pattern?: string;
|
|
353
|
-
placeholder?: string;
|
|
354
|
-
readonly?: boolean;
|
|
355
|
-
required?: boolean;
|
|
356
|
-
size?: number | string;
|
|
357
|
-
src?: string;
|
|
358
|
-
step?: number | string;
|
|
359
|
-
type?: string;
|
|
360
|
-
value?: string | string[] | number;
|
|
361
|
-
width?: number | string;
|
|
362
|
-
crossOrigin?: HTMLCrossorigin;
|
|
363
|
-
formAction?: string;
|
|
364
|
-
formEnctype?: HTMLFormEncType;
|
|
365
|
-
formMethod?: HTMLFormMethod;
|
|
366
|
-
formNoValidate?: boolean;
|
|
367
|
-
formTarget?: string;
|
|
368
|
-
maxLength?: number | string;
|
|
369
|
-
minLength?: number | string;
|
|
370
|
-
readOnly?: boolean;
|
|
371
|
-
}
|
|
372
|
-
interface InsHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
373
|
-
cite?: string;
|
|
374
|
-
dateTime?: string;
|
|
375
|
-
}
|
|
376
|
-
interface KeygenHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
377
|
-
autofocus?: boolean;
|
|
378
|
-
challenge?: string;
|
|
379
|
-
disabled?: boolean;
|
|
380
|
-
form?: string;
|
|
381
|
-
keytype?: string;
|
|
382
|
-
keyparams?: string;
|
|
383
|
-
name?: string;
|
|
384
|
-
}
|
|
385
|
-
interface LabelHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
386
|
-
htmlFor?: string;
|
|
387
|
-
for?: string;
|
|
388
|
-
form?: string;
|
|
389
|
-
}
|
|
390
|
-
interface LiHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
391
|
-
value?: number | string;
|
|
392
|
-
}
|
|
393
|
-
interface LinkHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
394
|
-
as?: HTMLLinkAs;
|
|
395
|
-
crossorigin?: HTMLCrossorigin;
|
|
396
|
-
disabled?: boolean;
|
|
397
|
-
href?: string;
|
|
398
|
-
hreflang?: string;
|
|
399
|
-
integrity?: string;
|
|
400
|
-
media?: string;
|
|
401
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
402
|
-
rel?: string;
|
|
403
|
-
sizes?: string;
|
|
404
|
-
type?: string;
|
|
405
|
-
crossOrigin?: HTMLCrossorigin;
|
|
406
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
407
|
-
}
|
|
408
|
-
interface MapHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
409
|
-
name?: string;
|
|
410
|
-
}
|
|
411
|
-
interface MediaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
412
|
-
autoplay?: boolean;
|
|
413
|
-
controls?: boolean;
|
|
414
|
-
crossorigin?: HTMLCrossorigin;
|
|
415
|
-
loop?: boolean;
|
|
416
|
-
mediagroup?: string;
|
|
417
|
-
muted?: boolean;
|
|
418
|
-
preload?: 'none' | 'metadata' | 'auto' | '';
|
|
419
|
-
src?: string;
|
|
420
|
-
crossOrigin?: HTMLCrossorigin;
|
|
421
|
-
mediaGroup?: string;
|
|
422
|
-
}
|
|
423
|
-
interface MenuHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
424
|
-
label?: string;
|
|
425
|
-
type?: 'context' | 'toolbar';
|
|
426
|
-
}
|
|
427
|
-
interface MetaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
428
|
-
charset?: string;
|
|
429
|
-
content?: string;
|
|
430
|
-
httpequiv?: string;
|
|
431
|
-
name?: string;
|
|
432
|
-
httpEquiv?: string;
|
|
433
|
-
}
|
|
434
|
-
interface MeterHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
435
|
-
form?: string;
|
|
436
|
-
high?: number | string;
|
|
437
|
-
low?: number | string;
|
|
438
|
-
max?: number | string;
|
|
439
|
-
min?: number | string;
|
|
440
|
-
optimum?: number | string;
|
|
441
|
-
value?: string | string[] | number;
|
|
442
|
-
}
|
|
443
|
-
interface QuoteHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
444
|
-
cite?: string;
|
|
445
|
-
}
|
|
446
|
-
interface ObjectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
447
|
-
data?: string;
|
|
448
|
-
form?: string;
|
|
449
|
-
height?: number | string;
|
|
450
|
-
name?: string;
|
|
451
|
-
type?: string;
|
|
452
|
-
usemap?: string;
|
|
453
|
-
width?: number | string;
|
|
454
|
-
useMap?: string;
|
|
455
|
-
}
|
|
456
|
-
interface OlHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
457
|
-
reversed?: boolean;
|
|
458
|
-
start?: number | string;
|
|
459
|
-
type?: '1' | 'a' | 'A' | 'i' | 'I';
|
|
460
|
-
}
|
|
461
|
-
interface OptgroupHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
462
|
-
disabled?: boolean;
|
|
463
|
-
label?: string;
|
|
464
|
-
}
|
|
465
|
-
interface OptionHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
466
|
-
disabled?: boolean;
|
|
467
|
-
label?: string;
|
|
468
|
-
selected?: boolean;
|
|
469
|
-
value?: string | string[] | number;
|
|
470
|
-
}
|
|
471
|
-
interface OutputHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
472
|
-
form?: string;
|
|
473
|
-
htmlFor?: string;
|
|
474
|
-
for?: string;
|
|
475
|
-
name?: string;
|
|
476
|
-
}
|
|
477
|
-
interface ParamHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
478
|
-
name?: string;
|
|
479
|
-
value?: string | string[] | number;
|
|
480
|
-
}
|
|
481
|
-
interface ProgressHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
482
|
-
max?: number | string;
|
|
483
|
-
value?: string | string[] | number;
|
|
484
|
-
}
|
|
485
|
-
interface ScriptHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
486
|
-
async?: boolean;
|
|
487
|
-
charset?: string;
|
|
488
|
-
crossorigin?: HTMLCrossorigin;
|
|
489
|
-
defer?: boolean;
|
|
490
|
-
integrity?: string;
|
|
491
|
-
nomodule?: boolean;
|
|
492
|
-
nonce?: string;
|
|
493
|
-
referrerpolicy?: HTMLReferrerPolicy;
|
|
494
|
-
src?: string;
|
|
495
|
-
type?: string;
|
|
496
|
-
crossOrigin?: HTMLCrossorigin;
|
|
497
|
-
noModule?: boolean;
|
|
498
|
-
referrerPolicy?: HTMLReferrerPolicy;
|
|
499
|
-
}
|
|
500
|
-
interface SelectHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
501
|
-
autocomplete?: string;
|
|
502
|
-
autofocus?: boolean;
|
|
503
|
-
disabled?: boolean;
|
|
504
|
-
form?: string;
|
|
505
|
-
multiple?: boolean;
|
|
506
|
-
name?: string;
|
|
507
|
-
required?: boolean;
|
|
508
|
-
size?: number | string;
|
|
509
|
-
value?: string | string[] | number;
|
|
510
|
-
}
|
|
511
|
-
interface HTMLSlotElementAttributes<T = HTMLSlotElement> extends HTMLAttributes<T> {
|
|
512
|
-
name?: string;
|
|
513
|
-
}
|
|
514
|
-
interface SourceHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
515
|
-
media?: string;
|
|
516
|
-
sizes?: string;
|
|
517
|
-
src?: string;
|
|
518
|
-
srcset?: string;
|
|
519
|
-
type?: string;
|
|
520
|
-
}
|
|
521
|
-
interface StyleHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
522
|
-
media?: string;
|
|
523
|
-
nonce?: string;
|
|
524
|
-
scoped?: boolean;
|
|
525
|
-
type?: string;
|
|
526
|
-
}
|
|
527
|
-
interface TdHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
528
|
-
colspan?: number | string;
|
|
529
|
-
headers?: string;
|
|
530
|
-
rowspan?: number | string;
|
|
531
|
-
colSpan?: number | string;
|
|
532
|
-
rowSpan?: number | string;
|
|
533
|
-
}
|
|
534
|
-
interface TextareaHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
535
|
-
autocomplete?: string;
|
|
536
|
-
autofocus?: boolean;
|
|
537
|
-
cols?: number | string;
|
|
538
|
-
dirname?: string;
|
|
539
|
-
disabled?: boolean;
|
|
540
|
-
form?: string;
|
|
541
|
-
maxlength?: number | string;
|
|
542
|
-
minlength?: number | string;
|
|
543
|
-
name?: string;
|
|
544
|
-
placeholder?: string;
|
|
545
|
-
readonly?: boolean;
|
|
546
|
-
required?: boolean;
|
|
547
|
-
rows?: number | string;
|
|
548
|
-
value?: string | string[] | number;
|
|
549
|
-
wrap?: 'hard' | 'soft' | 'off';
|
|
550
|
-
maxLength?: number | string;
|
|
551
|
-
minLength?: number | string;
|
|
552
|
-
readOnly?: boolean;
|
|
553
|
-
}
|
|
554
|
-
interface ThHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
555
|
-
colspan?: number | string;
|
|
556
|
-
headers?: string;
|
|
557
|
-
rowspan?: number | string;
|
|
558
|
-
colSpan?: number | string;
|
|
559
|
-
rowSpan?: number | string;
|
|
560
|
-
}
|
|
561
|
-
interface TimeHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
562
|
-
datetime?: string;
|
|
563
|
-
dateTime?: string;
|
|
564
|
-
}
|
|
565
|
-
interface TrackHTMLAttributes<T> extends HTMLAttributes<T> {
|
|
566
|
-
default?: boolean;
|
|
567
|
-
kind?: 'subtitles' | 'captions' | 'descriptions' | 'chapters' | 'metadata';
|
|
568
|
-
label?: string;
|
|
569
|
-
src?: string;
|
|
570
|
-
srclang?: string;
|
|
571
|
-
}
|
|
572
|
-
interface VideoHTMLAttributes<T> extends MediaHTMLAttributes<T> {
|
|
573
|
-
height?: number | string;
|
|
574
|
-
playsinline?: boolean;
|
|
575
|
-
poster?: string;
|
|
576
|
-
width?: number | string;
|
|
577
|
-
}
|
|
578
|
-
type SVGPreserveAspectRatio = 'none' | 'xMinYMin' | 'xMidYMin' | 'xMaxYMin' | 'xMinYMid' | 'xMidYMid' | 'xMaxYMid' | 'xMinYMax' | 'xMidYMax' | 'xMaxYMax' | 'xMinYMin meet' | 'xMidYMin meet' | 'xMaxYMin meet' | 'xMinYMid meet' | 'xMidYMid meet' | 'xMaxYMid meet' | 'xMinYMax meet' | 'xMidYMax meet' | 'xMaxYMax meet' | 'xMinYMin slice' | 'xMidYMin slice' | 'xMaxYMin slice' | 'xMinYMid slice' | 'xMidYMid slice' | 'xMaxYMid slice' | 'xMinYMax slice' | 'xMidYMax slice' | 'xMaxYMax slice';
|
|
579
|
-
type ImagePreserveAspectRatio = SVGPreserveAspectRatio | 'defer none' | 'defer xMinYMin' | 'defer xMidYMin' | 'defer xMaxYMin' | 'defer xMinYMid' | 'defer xMidYMid' | 'defer xMaxYMid' | 'defer xMinYMax' | 'defer xMidYMax' | 'defer xMaxYMax' | 'defer xMinYMin meet' | 'defer xMidYMin meet' | 'defer xMaxYMin meet' | 'defer xMinYMid meet' | 'defer xMidYMid meet' | 'defer xMaxYMid meet' | 'defer xMinYMax meet' | 'defer xMidYMax meet' | 'defer xMaxYMax meet' | 'defer xMinYMin slice' | 'defer xMidYMin slice' | 'defer xMaxYMin slice' | 'defer xMinYMid slice' | 'defer xMidYMid slice' | 'defer xMaxYMid slice' | 'defer xMinYMax slice' | 'defer xMidYMax slice' | 'defer xMaxYMax slice';
|
|
580
|
-
type SVGUnits = 'userSpaceOnUse' | 'objectBoundingBox';
|
|
581
|
-
interface CoreSVGAttributes<T> extends DOMAttributes<T> {
|
|
582
|
-
id?: string;
|
|
583
|
-
lang?: string;
|
|
584
|
-
tabIndex?: number | string;
|
|
585
|
-
tabindex?: number | string;
|
|
586
|
-
}
|
|
587
|
-
interface StylableSVGAttributes {
|
|
588
|
-
class?: string;
|
|
589
|
-
style?: CSS;
|
|
590
|
-
}
|
|
591
|
-
interface TransformableSVGAttributes {
|
|
592
|
-
transform?: string;
|
|
593
|
-
}
|
|
594
|
-
interface ConditionalProcessingSVGAttributes {
|
|
595
|
-
requiredExtensions?: string;
|
|
596
|
-
requiredFeatures?: string;
|
|
597
|
-
systemLanguage?: string;
|
|
598
|
-
}
|
|
599
|
-
interface ExternalResourceSVGAttributes {
|
|
600
|
-
externalResourcesRequired?: 'true' | 'false';
|
|
601
|
-
}
|
|
602
|
-
interface AnimationTimingSVGAttributes {
|
|
603
|
-
begin?: string;
|
|
604
|
-
dur?: string;
|
|
605
|
-
end?: string;
|
|
606
|
-
min?: string;
|
|
607
|
-
max?: string;
|
|
608
|
-
restart?: 'always' | 'whenNotActive' | 'never';
|
|
609
|
-
repeatCount?: number | 'indefinite';
|
|
610
|
-
repeatDur?: string;
|
|
611
|
-
fill?: 'freeze' | 'remove';
|
|
612
|
-
}
|
|
613
|
-
interface AnimationValueSVGAttributes {
|
|
614
|
-
calcMode?: 'discrete' | 'linear' | 'paced' | 'spline';
|
|
615
|
-
values?: string;
|
|
616
|
-
keyTimes?: string;
|
|
617
|
-
keySplines?: string;
|
|
618
|
-
from?: number | string;
|
|
619
|
-
to?: number | string;
|
|
620
|
-
by?: number | string;
|
|
621
|
-
}
|
|
622
|
-
interface AnimationAdditionSVGAttributes {
|
|
623
|
-
attributeName?: string;
|
|
624
|
-
additive?: 'replace' | 'sum';
|
|
625
|
-
accumulate?: 'none' | 'sum';
|
|
626
|
-
}
|
|
627
|
-
interface AnimationAttributeTargetSVGAttributes {
|
|
628
|
-
attributeName?: string;
|
|
629
|
-
attributeType?: 'CSS' | 'XML' | 'auto';
|
|
630
|
-
}
|
|
631
|
-
interface PresentationSVGAttributes {
|
|
632
|
-
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
633
|
-
'baseline-shift'?: number | string;
|
|
634
|
-
clip?: string;
|
|
635
|
-
'clip-path'?: string;
|
|
636
|
-
'clip-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
637
|
-
color?: string;
|
|
638
|
-
'color-interpolation'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
639
|
-
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
640
|
-
'color-profile'?: string;
|
|
641
|
-
'color-rendering'?: 'auto' | 'optimizeSpeed' | 'optimizeQuality' | 'inherit';
|
|
642
|
-
cursor?: string;
|
|
643
|
-
direction?: 'ltr' | 'rtl' | 'inherit';
|
|
644
|
-
display?: string;
|
|
645
|
-
'dominant-baseline'?: 'auto' | 'text-bottom' | 'alphabetic' | 'ideographic' | 'middle' | 'central' | 'mathematical' | 'hanging' | 'text-top' | 'inherit';
|
|
646
|
-
'enable-background'?: string;
|
|
647
|
-
fill?: string;
|
|
648
|
-
'fill-opacity'?: number | string | 'inherit';
|
|
649
|
-
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
650
|
-
filter?: string;
|
|
651
|
-
'flood-color'?: string;
|
|
652
|
-
'flood-opacity'?: number | string | 'inherit';
|
|
653
|
-
'font-family'?: string;
|
|
654
|
-
'font-size'?: string;
|
|
655
|
-
'font-size-adjust'?: number | string;
|
|
656
|
-
'font-stretch'?: string;
|
|
657
|
-
'font-style'?: 'normal' | 'italic' | 'oblique' | 'inherit';
|
|
658
|
-
'font-variant'?: string;
|
|
659
|
-
'font-weight'?: number | string;
|
|
660
|
-
'glyph-orientation-horizontal'?: string;
|
|
661
|
-
'glyph-orientation-vertical'?: string;
|
|
662
|
-
'image-rendering'?: 'auto' | 'optimizeQuality' | 'optimizeSpeed' | 'inherit';
|
|
663
|
-
kerning?: string;
|
|
664
|
-
'letter-spacing'?: number | string;
|
|
665
|
-
'lighting-color'?: string;
|
|
666
|
-
'marker-end'?: string;
|
|
667
|
-
'marker-mid'?: string;
|
|
668
|
-
'marker-start'?: string;
|
|
669
|
-
mask?: string;
|
|
670
|
-
opacity?: number | string | 'inherit';
|
|
671
|
-
overflow?: 'visible' | 'hidden' | 'scroll' | 'auto' | 'inherit';
|
|
672
|
-
'pointer-events'?: 'bounding-box' | 'visiblePainted' | 'visibleFill' | 'visibleStroke' | 'visible' | 'painted' | 'color' | 'fill' | 'stroke' | 'all' | 'none' | 'inherit';
|
|
673
|
-
'shape-rendering'?: 'auto' | 'optimizeSpeed' | 'crispEdges' | 'geometricPrecision' | 'inherit';
|
|
674
|
-
'stop-color'?: string;
|
|
675
|
-
'stop-opacity'?: number | string | 'inherit';
|
|
676
|
-
stroke?: string;
|
|
677
|
-
'stroke-dasharray'?: string;
|
|
678
|
-
'stroke-dashoffset'?: number | string;
|
|
679
|
-
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
680
|
-
'stroke-linejoin'?: 'arcs' | 'bevel' | 'miter' | 'miter-clip' | 'round' | 'inherit';
|
|
681
|
-
'stroke-miterlimit'?: number | string | 'inherit';
|
|
682
|
-
'stroke-opacity'?: number | string | 'inherit';
|
|
683
|
-
'stroke-width'?: number | string;
|
|
684
|
-
'text-anchor'?: 'start' | 'middle' | 'end' | 'inherit';
|
|
685
|
-
'text-decoration'?: 'none' | 'underline' | 'overline' | 'line-through' | 'blink' | 'inherit';
|
|
686
|
-
'text-rendering'?: 'auto' | 'optimizeSpeed' | 'optimizeLegibility' | 'geometricPrecision' | 'inherit';
|
|
687
|
-
'unicode-bidi'?: string;
|
|
688
|
-
visibility?: 'visible' | 'hidden' | 'collapse' | 'inherit';
|
|
689
|
-
'word-spacing'?: number | string;
|
|
690
|
-
'writing-mode'?: 'lr-tb' | 'rl-tb' | 'tb-rl' | 'lr' | 'rl' | 'tb' | 'inherit';
|
|
691
|
-
}
|
|
692
|
-
interface AnimationElementSVGAttributes<T> extends CoreSVGAttributes<T>, ExternalResourceSVGAttributes, ConditionalProcessingSVGAttributes {
|
|
693
|
-
}
|
|
694
|
-
interface ContainerElementSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'clip-path' | 'mask' | 'cursor' | 'opacity' | 'filter' | 'enable-background' | 'color-interpolation' | 'color-rendering'> {
|
|
695
|
-
}
|
|
696
|
-
interface FilterPrimitiveElementSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'color-interpolation-filters'> {
|
|
697
|
-
x?: number | string;
|
|
698
|
-
y?: number | string;
|
|
699
|
-
width?: number | string;
|
|
700
|
-
height?: number | string;
|
|
701
|
-
result?: string;
|
|
702
|
-
}
|
|
703
|
-
interface SingleInputFilterSVGAttributes {
|
|
704
|
-
in?: string;
|
|
705
|
-
}
|
|
706
|
-
interface DoubleInputFilterSVGAttributes {
|
|
707
|
-
in?: string;
|
|
708
|
-
in2?: string;
|
|
709
|
-
}
|
|
710
|
-
interface FitToViewBoxSVGAttributes {
|
|
711
|
-
viewBox?: string;
|
|
712
|
-
preserveAspectRatio?: SVGPreserveAspectRatio;
|
|
713
|
-
}
|
|
714
|
-
interface GradientElementSVGAttributes<T> extends CoreSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
|
|
715
|
-
gradientUnits?: SVGUnits;
|
|
716
|
-
gradientTransform?: string;
|
|
717
|
-
spreadMethod?: 'pad' | 'reflect' | 'repeat';
|
|
718
|
-
}
|
|
719
|
-
interface GraphicsElementSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'clip-rule' | 'mask' | 'pointer-events' | 'cursor' | 'opacity' | 'filter' | 'display' | 'visibility' | 'color-interpolation' | 'color-rendering'> {
|
|
720
|
-
}
|
|
721
|
-
interface LightSourceElementSVGAttributes<T> extends CoreSVGAttributes<T> {
|
|
722
|
-
}
|
|
723
|
-
interface NewViewportSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
|
|
724
|
-
viewBox?: string;
|
|
725
|
-
}
|
|
726
|
-
interface ShapeElementSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'color' | 'fill' | 'fill-rule' | 'fill-opacity' | 'stroke' | 'stroke-width' | 'stroke-linecap' | 'stroke-linejoin' | 'stroke-miterlimit' | 'stroke-dasharray' | 'stroke-dashoffset' | 'stroke-opacity' | 'shape-rendering'> {
|
|
727
|
-
}
|
|
728
|
-
interface TextContentElementSVGAttributes<T> extends CoreSVGAttributes<T>, Pick<PresentationSVGAttributes, 'font-family' | 'font-style' | 'font-variant' | 'font-weight' | 'font-stretch' | 'font-size' | 'font-size-adjust' | 'kerning' | 'letter-spacing' | 'word-spacing' | 'text-decoration' | 'glyph-orientation-horizontal' | 'glyph-orientation-vertical' | 'direction' | 'unicode-bidi' | 'text-anchor' | 'dominant-baseline' | 'color' | 'fill' | 'fill-rule' | 'fill-opacity' | 'stroke' | 'stroke-width' | 'stroke-linecap' | 'stroke-linejoin' | 'stroke-miterlimit' | 'stroke-dasharray' | 'stroke-dashoffset' | 'stroke-opacity'> {
|
|
729
|
-
}
|
|
730
|
-
interface ZoomAndPanSVGAttributes {
|
|
731
|
-
zoomAndPan?: 'disable' | 'magnify';
|
|
732
|
-
}
|
|
733
|
-
interface AnimateSVGAttributes<T> extends AnimationElementSVGAttributes<T>, AnimationAttributeTargetSVGAttributes, AnimationTimingSVGAttributes, AnimationValueSVGAttributes, AnimationAdditionSVGAttributes, Pick<PresentationSVGAttributes, 'color-interpolation' | 'color-rendering'> {
|
|
734
|
-
}
|
|
735
|
-
interface AnimateMotionSVGAttributes<T> extends AnimationElementSVGAttributes<T>, AnimationTimingSVGAttributes, AnimationValueSVGAttributes, AnimationAdditionSVGAttributes {
|
|
736
|
-
path?: string;
|
|
737
|
-
keyPoints?: string;
|
|
738
|
-
rotate?: number | string | 'auto' | 'auto-reverse';
|
|
739
|
-
origin?: 'default';
|
|
740
|
-
}
|
|
741
|
-
interface AnimateTransformSVGAttributes<T> extends AnimationElementSVGAttributes<T>, AnimationAttributeTargetSVGAttributes, AnimationTimingSVGAttributes, AnimationValueSVGAttributes, AnimationAdditionSVGAttributes {
|
|
742
|
-
type?: 'translate' | 'scale' | 'rotate' | 'skewX' | 'skewY';
|
|
743
|
-
}
|
|
744
|
-
interface CircleSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes {
|
|
745
|
-
cx?: number | string;
|
|
746
|
-
cy?: number | string;
|
|
747
|
-
r?: number | string;
|
|
748
|
-
}
|
|
749
|
-
interface ClipPathSVGAttributes<T> extends CoreSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'clip-path'> {
|
|
750
|
-
clipPathUnits?: SVGUnits;
|
|
751
|
-
}
|
|
752
|
-
interface DefsSVGAttributes<T> extends ContainerElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes {
|
|
753
|
-
}
|
|
754
|
-
interface DescSVGAttributes<T> extends CoreSVGAttributes<T>, StylableSVGAttributes {
|
|
755
|
-
}
|
|
756
|
-
interface EllipseSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes {
|
|
757
|
-
cx?: number | string;
|
|
758
|
-
cy?: number | string;
|
|
759
|
-
rx?: number | string;
|
|
760
|
-
ry?: number | string;
|
|
761
|
-
}
|
|
762
|
-
interface FeBlendSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, DoubleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
763
|
-
mode?: 'normal' | 'multiply' | 'screen' | 'darken' | 'lighten';
|
|
764
|
-
}
|
|
765
|
-
interface FeColorMatrixSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
766
|
-
type?: 'matrix' | 'saturate' | 'hueRotate' | 'luminanceToAlpha';
|
|
767
|
-
values?: string;
|
|
768
|
-
}
|
|
769
|
-
interface FeComponentTransferSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
770
|
-
}
|
|
771
|
-
interface FeCompositeSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, DoubleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
772
|
-
operator?: 'over' | 'in' | 'out' | 'atop' | 'xor' | 'arithmetic';
|
|
773
|
-
k1?: number | string;
|
|
774
|
-
k2?: number | string;
|
|
775
|
-
k3?: number | string;
|
|
776
|
-
k4?: number | string;
|
|
777
|
-
}
|
|
778
|
-
interface FeConvolveMatrixSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
779
|
-
order?: number | string;
|
|
780
|
-
kernelMatrix?: string;
|
|
781
|
-
divisor?: number | string;
|
|
782
|
-
bias?: number | string;
|
|
783
|
-
targetX?: number | string;
|
|
784
|
-
targetY?: number | string;
|
|
785
|
-
edgeMode?: 'duplicate' | 'wrap' | 'none';
|
|
786
|
-
kernelUnitLength?: number | string;
|
|
787
|
-
preserveAlpha?: 'true' | 'false';
|
|
788
|
-
}
|
|
789
|
-
interface FeDiffuseLightingSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'color' | 'lighting-color'> {
|
|
790
|
-
surfaceScale?: number | string;
|
|
791
|
-
diffuseConstant?: number | string;
|
|
792
|
-
kernelUnitLength?: number | string;
|
|
793
|
-
}
|
|
794
|
-
interface FeDisplacementMapSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, DoubleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
795
|
-
scale?: number | string;
|
|
796
|
-
xChannelSelector?: 'R' | 'G' | 'B' | 'A';
|
|
797
|
-
yChannelSelector?: 'R' | 'G' | 'B' | 'A';
|
|
798
|
-
}
|
|
799
|
-
interface FeDistantLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
|
|
800
|
-
azimuth?: number | string;
|
|
801
|
-
elevation?: number | string;
|
|
802
|
-
}
|
|
803
|
-
interface FeFloodSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'color' | 'flood-color' | 'flood-opacity'> {
|
|
804
|
-
}
|
|
805
|
-
interface FeFuncSVGAttributes<T> extends CoreSVGAttributes<T> {
|
|
806
|
-
type?: 'identity' | 'table' | 'discrete' | 'linear' | 'gamma';
|
|
807
|
-
tableValues?: string;
|
|
808
|
-
slope?: number | string;
|
|
809
|
-
intercept?: number | string;
|
|
810
|
-
amplitude?: number | string;
|
|
811
|
-
exponent?: number | string;
|
|
812
|
-
offset?: number | string;
|
|
813
|
-
}
|
|
814
|
-
interface FeGaussianBlurSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
815
|
-
stdDeviation?: number | string;
|
|
816
|
-
}
|
|
817
|
-
interface FeImageSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
|
|
818
|
-
preserveAspectRatio: SVGPreserveAspectRatio;
|
|
819
|
-
}
|
|
820
|
-
interface FeMergeSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
|
|
821
|
-
}
|
|
822
|
-
interface FeMergeNodeSVGAttributes<T> extends CoreSVGAttributes<T>, SingleInputFilterSVGAttributes {
|
|
823
|
-
}
|
|
824
|
-
interface FeMorphologySVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
825
|
-
operator?: 'erode' | 'dilate';
|
|
826
|
-
radius?: number | string;
|
|
827
|
-
}
|
|
828
|
-
interface FeOffsetSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
829
|
-
dx?: number | string;
|
|
830
|
-
dy?: number | string;
|
|
831
|
-
}
|
|
832
|
-
interface FePointLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
|
|
833
|
-
x?: number | string;
|
|
834
|
-
y?: number | string;
|
|
835
|
-
z?: number | string;
|
|
836
|
-
}
|
|
837
|
-
interface FeSpecularLightingSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'color' | 'lighting-color'> {
|
|
838
|
-
surfaceScale?: string;
|
|
839
|
-
specularConstant?: string;
|
|
840
|
-
specularExponent?: string;
|
|
841
|
-
kernelUnitLength?: number | string;
|
|
842
|
-
}
|
|
843
|
-
interface FeSpotLightSVGAttributes<T> extends LightSourceElementSVGAttributes<T> {
|
|
844
|
-
x?: number | string;
|
|
845
|
-
y?: number | string;
|
|
846
|
-
z?: number | string;
|
|
847
|
-
pointsAtX?: number | string;
|
|
848
|
-
pointsAtY?: number | string;
|
|
849
|
-
pointsAtZ?: number | string;
|
|
850
|
-
specularExponent?: number | string;
|
|
851
|
-
limitingConeAngle?: number | string;
|
|
852
|
-
}
|
|
853
|
-
interface FeTileSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, SingleInputFilterSVGAttributes, StylableSVGAttributes {
|
|
854
|
-
}
|
|
855
|
-
interface FeTurbulanceSVGAttributes<T> extends FilterPrimitiveElementSVGAttributes<T>, StylableSVGAttributes {
|
|
856
|
-
baseFrequency?: number | string;
|
|
857
|
-
numOctaves?: number | string;
|
|
858
|
-
seed?: number | string;
|
|
859
|
-
stitchTiles?: 'stitch' | 'noStitch';
|
|
860
|
-
type?: 'fractalNoise' | 'turbulence';
|
|
861
|
-
}
|
|
862
|
-
interface FilterSVGAttributes<T> extends CoreSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes {
|
|
863
|
-
filterUnits?: SVGUnits;
|
|
864
|
-
primitiveUnits?: SVGUnits;
|
|
865
|
-
x?: number | string;
|
|
866
|
-
y?: number | string;
|
|
867
|
-
width?: number | string;
|
|
868
|
-
height?: number | string;
|
|
869
|
-
filterRes?: number | string;
|
|
870
|
-
}
|
|
871
|
-
interface ForeignObjectSVGAttributes<T> extends NewViewportSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'display' | 'visibility'> {
|
|
872
|
-
x?: number | string;
|
|
873
|
-
y?: number | string;
|
|
874
|
-
width?: number | string;
|
|
875
|
-
height?: number | string;
|
|
876
|
-
}
|
|
877
|
-
interface GSVGAttributes<T> extends ContainerElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'display' | 'visibility'> {
|
|
878
|
-
}
|
|
879
|
-
interface ImageSVGAttributes<T> extends NewViewportSVGAttributes<T>, GraphicsElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'color-profile' | 'image-rendering'> {
|
|
880
|
-
x?: number | string;
|
|
881
|
-
y?: number | string;
|
|
882
|
-
width?: number | string;
|
|
883
|
-
height?: number | string;
|
|
884
|
-
preserveAspectRatio?: ImagePreserveAspectRatio;
|
|
885
|
-
}
|
|
886
|
-
interface LineSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
|
|
887
|
-
x1?: number | string;
|
|
888
|
-
y1?: number | string;
|
|
889
|
-
x2?: number | string;
|
|
890
|
-
y2?: number | string;
|
|
891
|
-
}
|
|
892
|
-
interface LinearGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
|
|
893
|
-
x1?: number | string;
|
|
894
|
-
x2?: number | string;
|
|
895
|
-
y1?: number | string;
|
|
896
|
-
y2?: number | string;
|
|
897
|
-
}
|
|
898
|
-
interface MarkerSVGAttributes<T> extends ContainerElementSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes, FitToViewBoxSVGAttributes, Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
|
|
899
|
-
markerUnits?: 'strokeWidth' | 'userSpaceOnUse';
|
|
900
|
-
refX?: number | string;
|
|
901
|
-
refY?: number | string;
|
|
902
|
-
markerWidth?: number | string;
|
|
903
|
-
markerHeight?: number | string;
|
|
904
|
-
orient?: string;
|
|
905
|
-
}
|
|
906
|
-
interface MaskSVGAttributes<T> extends Omit<ContainerElementSVGAttributes<T>, 'opacity' | 'filter'>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes {
|
|
907
|
-
maskUnits?: SVGUnits;
|
|
908
|
-
maskContentUnits?: SVGUnits;
|
|
909
|
-
x?: number | string;
|
|
910
|
-
y?: number | string;
|
|
911
|
-
width?: number | string;
|
|
912
|
-
height?: number | string;
|
|
913
|
-
}
|
|
914
|
-
interface MetadataSVGAttributes<T> extends CoreSVGAttributes<T> {
|
|
915
|
-
}
|
|
916
|
-
interface PathSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
|
|
917
|
-
d?: string;
|
|
918
|
-
pathLength?: number | string;
|
|
919
|
-
}
|
|
920
|
-
interface PatternSVGAttributes<T> extends ContainerElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, FitToViewBoxSVGAttributes, Pick<PresentationSVGAttributes, 'overflow' | 'clip'> {
|
|
921
|
-
x?: number | string;
|
|
922
|
-
y?: number | string;
|
|
923
|
-
width?: number | string;
|
|
924
|
-
height?: number | string;
|
|
925
|
-
patternUnits?: SVGUnits;
|
|
926
|
-
patternContentUnits?: SVGUnits;
|
|
927
|
-
patternTransform?: string;
|
|
928
|
-
}
|
|
929
|
-
interface PolygonSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
|
|
930
|
-
points?: string;
|
|
931
|
-
}
|
|
932
|
-
interface PolylineSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'marker-start' | 'marker-mid' | 'marker-end'> {
|
|
933
|
-
points?: string;
|
|
934
|
-
}
|
|
935
|
-
interface RadialGradientSVGAttributes<T> extends GradientElementSVGAttributes<T> {
|
|
936
|
-
cx?: number | string;
|
|
937
|
-
cy?: number | string;
|
|
938
|
-
r?: number | string;
|
|
939
|
-
fx?: number | string;
|
|
940
|
-
fy?: number | string;
|
|
941
|
-
}
|
|
942
|
-
interface RectSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ShapeElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes {
|
|
943
|
-
x?: number | string;
|
|
944
|
-
y?: number | string;
|
|
945
|
-
width?: number | string;
|
|
946
|
-
height?: number | string;
|
|
947
|
-
rx?: number | string;
|
|
948
|
-
ry?: number | string;
|
|
949
|
-
}
|
|
950
|
-
interface StopSVGAttributes<T> extends CoreSVGAttributes<T>, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'color' | 'stop-color' | 'stop-opacity'> {
|
|
951
|
-
offset?: number | string;
|
|
952
|
-
}
|
|
953
|
-
interface SvgSVGAttributes<T> extends ContainerElementSVGAttributes<T>, NewViewportSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, FitToViewBoxSVGAttributes, ZoomAndPanSVGAttributes, Pick<PresentationSVGAttributes, 'display' | 'visibility'> {
|
|
954
|
-
version?: string;
|
|
955
|
-
'base-profile'?: string;
|
|
956
|
-
x?: number | string;
|
|
957
|
-
y?: number | string;
|
|
958
|
-
width?: number | string;
|
|
959
|
-
height?: number | string;
|
|
960
|
-
contentScriptType?: string;
|
|
961
|
-
contentStyleType?: string;
|
|
962
|
-
}
|
|
963
|
-
interface SwitchSVGAttributes<T> extends ContainerElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'display' | 'visibility'> {
|
|
964
|
-
}
|
|
965
|
-
interface SymbolSVGAttributes<T> extends ContainerElementSVGAttributes<T>, NewViewportSVGAttributes<T>, ExternalResourceSVGAttributes, StylableSVGAttributes, FitToViewBoxSVGAttributes {
|
|
966
|
-
}
|
|
967
|
-
interface TextSVGAttributes<T> extends TextContentElementSVGAttributes<T>, GraphicsElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes, Pick<PresentationSVGAttributes, 'writing-mode' | 'text-rendering'> {
|
|
968
|
-
x?: number | string;
|
|
969
|
-
y?: number | string;
|
|
970
|
-
dx?: number | string;
|
|
971
|
-
dy?: number | string;
|
|
972
|
-
rotate?: number | string;
|
|
973
|
-
textLength?: number | string;
|
|
974
|
-
lengthAdjust?: 'spacing' | 'spacingAndGlyphs';
|
|
975
|
-
}
|
|
976
|
-
interface TextPathSVGAttributes<T> extends TextContentElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'alignment-baseline' | 'baseline-shift' | 'display' | 'visibility'> {
|
|
977
|
-
startOffset?: number | string;
|
|
978
|
-
method?: 'align' | 'stretch';
|
|
979
|
-
spacing?: 'auto' | 'exact';
|
|
980
|
-
}
|
|
981
|
-
interface TSpanSVGAttributes<T> extends TextContentElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, Pick<PresentationSVGAttributes, 'alignment-baseline' | 'baseline-shift' | 'display' | 'visibility'> {
|
|
982
|
-
x?: number | string;
|
|
983
|
-
y?: number | string;
|
|
984
|
-
dx?: number | string;
|
|
985
|
-
dy?: number | string;
|
|
986
|
-
rotate?: number | string;
|
|
987
|
-
textLength?: number | string;
|
|
988
|
-
lengthAdjust?: 'spacing' | 'spacingAndGlyphs';
|
|
989
|
-
}
|
|
990
|
-
interface UseSVGAttributes<T> extends GraphicsElementSVGAttributes<T>, ConditionalProcessingSVGAttributes, ExternalResourceSVGAttributes, StylableSVGAttributes, TransformableSVGAttributes {
|
|
991
|
-
x?: number | string;
|
|
992
|
-
y?: number | string;
|
|
993
|
-
width?: number | string;
|
|
994
|
-
height?: number | string;
|
|
995
|
-
}
|
|
996
|
-
interface ViewSVGAttributes<T> extends CoreSVGAttributes<T>, ExternalResourceSVGAttributes, FitToViewBoxSVGAttributes, ZoomAndPanSVGAttributes {
|
|
997
|
-
viewTarget?: string;
|
|
998
|
-
}
|
|
999
|
-
interface IntrinsicElements {
|
|
1000
|
-
a: AnchorHTMLAttributes<HTMLAnchorElement>;
|
|
1001
|
-
abbr: HTMLAttributes<HTMLElement>;
|
|
1002
|
-
address: HTMLAttributes<HTMLElement>;
|
|
1003
|
-
area: AreaHTMLAttributes<HTMLAreaElement>;
|
|
1004
|
-
article: HTMLAttributes<HTMLElement>;
|
|
1005
|
-
aside: HTMLAttributes<HTMLElement>;
|
|
1006
|
-
audio: AudioHTMLAttributes<HTMLAudioElement>;
|
|
1007
|
-
b: HTMLAttributes<HTMLElement>;
|
|
1008
|
-
base: BaseHTMLAttributes<HTMLBaseElement>;
|
|
1009
|
-
bdi: HTMLAttributes<HTMLElement>;
|
|
1010
|
-
bdo: HTMLAttributes<HTMLElement>;
|
|
1011
|
-
big: HTMLAttributes<HTMLElement>;
|
|
1012
|
-
blockquote: BlockquoteHTMLAttributes<HTMLElement>;
|
|
1013
|
-
body: HTMLAttributes<HTMLBodyElement>;
|
|
1014
|
-
br: HTMLAttributes<HTMLBRElement>;
|
|
1015
|
-
button: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
1016
|
-
canvas: CanvasHTMLAttributes<HTMLCanvasElement>;
|
|
1017
|
-
caption: HTMLAttributes<HTMLElement>;
|
|
1018
|
-
cite: HTMLAttributes<HTMLElement>;
|
|
1019
|
-
code: HTMLAttributes<HTMLElement>;
|
|
1020
|
-
col: ColHTMLAttributes<HTMLTableColElement>;
|
|
1021
|
-
colgroup: ColgroupHTMLAttributes<HTMLTableColElement>;
|
|
1022
|
-
data: DataHTMLAttributes<HTMLElement>;
|
|
1023
|
-
datalist: HTMLAttributes<HTMLDataListElement>;
|
|
1024
|
-
dd: HTMLAttributes<HTMLElement>;
|
|
1025
|
-
del: HTMLAttributes<HTMLElement>;
|
|
1026
|
-
details: DetailsHtmlAttributes<HTMLElement>;
|
|
1027
|
-
dfn: HTMLAttributes<HTMLElement>;
|
|
1028
|
-
dialog: DialogHtmlAttributes<HTMLElement>;
|
|
1029
|
-
div: HTMLAttributes<HTMLDivElement>;
|
|
1030
|
-
dl: HTMLAttributes<HTMLDListElement>;
|
|
1031
|
-
dt: HTMLAttributes<HTMLElement>;
|
|
1032
|
-
em: HTMLAttributes<HTMLElement>;
|
|
1033
|
-
embed: EmbedHTMLAttributes<HTMLEmbedElement>;
|
|
1034
|
-
fieldset: FieldsetHTMLAttributes<HTMLFieldSetElement>;
|
|
1035
|
-
figcaption: HTMLAttributes<HTMLElement>;
|
|
1036
|
-
figure: HTMLAttributes<HTMLElement>;
|
|
1037
|
-
footer: HTMLAttributes<HTMLElement>;
|
|
1038
|
-
form: FormHTMLAttributes<HTMLFormElement>;
|
|
1039
|
-
h1: HTMLAttributes<HTMLHeadingElement>;
|
|
1040
|
-
h2: HTMLAttributes<HTMLHeadingElement>;
|
|
1041
|
-
h3: HTMLAttributes<HTMLHeadingElement>;
|
|
1042
|
-
h4: HTMLAttributes<HTMLHeadingElement>;
|
|
1043
|
-
h5: HTMLAttributes<HTMLHeadingElement>;
|
|
1044
|
-
h6: HTMLAttributes<HTMLHeadingElement>;
|
|
1045
|
-
head: HTMLAttributes<HTMLHeadElement>;
|
|
1046
|
-
header: HTMLAttributes<HTMLElement>;
|
|
1047
|
-
hgroup: HTMLAttributes<HTMLElement>;
|
|
1048
|
-
hr: HTMLAttributes<HTMLHRElement>;
|
|
1049
|
-
html: HTMLAttributes<HTMLHtmlElement>;
|
|
1050
|
-
i: HTMLAttributes<HTMLElement>;
|
|
1051
|
-
iframe: IframeHTMLAttributes<HTMLIFrameElement>;
|
|
1052
|
-
img: ImgHTMLAttributes<HTMLImageElement>;
|
|
1053
|
-
input: InputHTMLAttributes<HTMLInputElement>;
|
|
1054
|
-
ins: InsHTMLAttributes<HTMLModElement>;
|
|
1055
|
-
kbd: HTMLAttributes<HTMLElement>;
|
|
1056
|
-
keygen: KeygenHTMLAttributes<HTMLElement>;
|
|
1057
|
-
label: LabelHTMLAttributes<HTMLLabelElement>;
|
|
1058
|
-
legend: HTMLAttributes<HTMLLegendElement>;
|
|
1059
|
-
li: LiHTMLAttributes<HTMLLIElement>;
|
|
1060
|
-
link: LinkHTMLAttributes<HTMLLinkElement>;
|
|
1061
|
-
main: HTMLAttributes<HTMLElement>;
|
|
1062
|
-
map: MapHTMLAttributes<HTMLMapElement>;
|
|
1063
|
-
mark: HTMLAttributes<HTMLElement>;
|
|
1064
|
-
menu: MenuHTMLAttributes<HTMLElement>;
|
|
1065
|
-
menuitem: HTMLAttributes<HTMLElement>;
|
|
1066
|
-
meta: MetaHTMLAttributes<HTMLMetaElement>;
|
|
1067
|
-
meter: MeterHTMLAttributes<HTMLElement>;
|
|
1068
|
-
nav: HTMLAttributes<HTMLElement>;
|
|
1069
|
-
noindex: HTMLAttributes<HTMLElement>;
|
|
1070
|
-
noscript: HTMLAttributes<HTMLElement>;
|
|
1071
|
-
object: ObjectHTMLAttributes<HTMLObjectElement>;
|
|
1072
|
-
ol: OlHTMLAttributes<HTMLOListElement>;
|
|
1073
|
-
optgroup: OptgroupHTMLAttributes<HTMLOptGroupElement>;
|
|
1074
|
-
option: OptionHTMLAttributes<HTMLOptionElement>;
|
|
1075
|
-
output: OutputHTMLAttributes<HTMLElement>;
|
|
1076
|
-
p: HTMLAttributes<HTMLParagraphElement>;
|
|
1077
|
-
param: ParamHTMLAttributes<HTMLParamElement>;
|
|
1078
|
-
picture: HTMLAttributes<HTMLElement>;
|
|
1079
|
-
pre: HTMLAttributes<HTMLPreElement>;
|
|
1080
|
-
progress: ProgressHTMLAttributes<HTMLProgressElement>;
|
|
1081
|
-
q: QuoteHTMLAttributes<HTMLQuoteElement>;
|
|
1082
|
-
rp: HTMLAttributes<HTMLElement>;
|
|
1083
|
-
rt: HTMLAttributes<HTMLElement>;
|
|
1084
|
-
ruby: HTMLAttributes<HTMLElement>;
|
|
1085
|
-
s: HTMLAttributes<HTMLElement>;
|
|
1086
|
-
samp: HTMLAttributes<HTMLElement>;
|
|
1087
|
-
script: ScriptHTMLAttributes<HTMLElement>;
|
|
1088
|
-
section: HTMLAttributes<HTMLElement>;
|
|
1089
|
-
select: SelectHTMLAttributes<HTMLSelectElement>;
|
|
1090
|
-
slot: HTMLSlotElementAttributes;
|
|
1091
|
-
small: HTMLAttributes<HTMLElement>;
|
|
1092
|
-
source: SourceHTMLAttributes<HTMLSourceElement>;
|
|
1093
|
-
span: HTMLAttributes<HTMLSpanElement>;
|
|
1094
|
-
strong: HTMLAttributes<HTMLElement>;
|
|
1095
|
-
style: StyleHTMLAttributes<HTMLStyleElement>;
|
|
1096
|
-
sub: HTMLAttributes<HTMLElement>;
|
|
1097
|
-
summary: HTMLAttributes<HTMLElement>;
|
|
1098
|
-
sup: HTMLAttributes<HTMLElement>;
|
|
1099
|
-
table: HTMLAttributes<HTMLTableElement>;
|
|
1100
|
-
tbody: HTMLAttributes<HTMLTableSectionElement>;
|
|
1101
|
-
td: TdHTMLAttributes<HTMLTableDataCellElement>;
|
|
1102
|
-
textarea: TextareaHTMLAttributes<HTMLTextAreaElement>;
|
|
1103
|
-
tfoot: HTMLAttributes<HTMLTableSectionElement>;
|
|
1104
|
-
th: ThHTMLAttributes<HTMLTableHeaderCellElement>;
|
|
1105
|
-
thead: HTMLAttributes<HTMLTableSectionElement>;
|
|
1106
|
-
time: TimeHTMLAttributes<HTMLElement>;
|
|
1107
|
-
title: HTMLAttributes<HTMLTitleElement>;
|
|
1108
|
-
tr: HTMLAttributes<HTMLTableRowElement>;
|
|
1109
|
-
track: TrackHTMLAttributes<HTMLTrackElement>;
|
|
1110
|
-
u: HTMLAttributes<HTMLElement>;
|
|
1111
|
-
ul: HTMLAttributes<HTMLUListElement>;
|
|
1112
|
-
var: HTMLAttributes<HTMLElement>;
|
|
1113
|
-
video: VideoHTMLAttributes<HTMLVideoElement>;
|
|
1114
|
-
wbr: HTMLAttributes<HTMLElement>;
|
|
1115
|
-
svg: SvgSVGAttributes<SVGSVGElement>;
|
|
1116
|
-
animate: AnimateSVGAttributes<SVGAnimateElement>;
|
|
1117
|
-
animateMotion: AnimateMotionSVGAttributes<SVGAnimateMotionElement>;
|
|
1118
|
-
animateTransform: AnimateTransformSVGAttributes<SVGAnimateTransformElement>;
|
|
1119
|
-
circle: CircleSVGAttributes<SVGCircleElement>;
|
|
1120
|
-
clipPath: ClipPathSVGAttributes<SVGClipPathElement>;
|
|
1121
|
-
defs: DefsSVGAttributes<SVGDefsElement>;
|
|
1122
|
-
desc: DescSVGAttributes<SVGDescElement>;
|
|
1123
|
-
ellipse: EllipseSVGAttributes<SVGEllipseElement>;
|
|
1124
|
-
feBlend: FeBlendSVGAttributes<SVGFEBlendElement>;
|
|
1125
|
-
feColorMatrix: FeColorMatrixSVGAttributes<SVGFEColorMatrixElement>;
|
|
1126
|
-
feComponentTransfer: FeComponentTransferSVGAttributes<SVGFEComponentTransferElement>;
|
|
1127
|
-
feComposite: FeCompositeSVGAttributes<SVGFECompositeElement>;
|
|
1128
|
-
feConvolveMatrix: FeConvolveMatrixSVGAttributes<SVGFEConvolveMatrixElement>;
|
|
1129
|
-
feDiffuseLighting: FeDiffuseLightingSVGAttributes<SVGFEDiffuseLightingElement>;
|
|
1130
|
-
feDisplacementMap: FeDisplacementMapSVGAttributes<SVGFEDisplacementMapElement>;
|
|
1131
|
-
feDistantLight: FeDistantLightSVGAttributes<SVGFEDistantLightElement>;
|
|
1132
|
-
feFlood: FeFloodSVGAttributes<SVGFEFloodElement>;
|
|
1133
|
-
feFuncA: FeFuncSVGAttributes<SVGFEFuncAElement>;
|
|
1134
|
-
feFuncB: FeFuncSVGAttributes<SVGFEFuncBElement>;
|
|
1135
|
-
feFuncG: FeFuncSVGAttributes<SVGFEFuncGElement>;
|
|
1136
|
-
feFuncR: FeFuncSVGAttributes<SVGFEFuncRElement>;
|
|
1137
|
-
feGaussianBlur: FeGaussianBlurSVGAttributes<SVGFEGaussianBlurElement>;
|
|
1138
|
-
feImage: FeImageSVGAttributes<SVGFEImageElement>;
|
|
1139
|
-
feMerge: FeMergeSVGAttributes<SVGFEMergeElement>;
|
|
1140
|
-
feMergeNode: FeMergeNodeSVGAttributes<SVGFEMergeNodeElement>;
|
|
1141
|
-
feMorphology: FeMorphologySVGAttributes<SVGFEMorphologyElement>;
|
|
1142
|
-
feOffset: FeOffsetSVGAttributes<SVGFEOffsetElement>;
|
|
1143
|
-
fePointLight: FePointLightSVGAttributes<SVGFEPointLightElement>;
|
|
1144
|
-
feSpecularLighting: FeSpecularLightingSVGAttributes<SVGFESpecularLightingElement>;
|
|
1145
|
-
feSpotLight: FeSpotLightSVGAttributes<SVGFESpotLightElement>;
|
|
1146
|
-
feTile: FeTileSVGAttributes<SVGFETileElement>;
|
|
1147
|
-
feTurbulence: FeTurbulanceSVGAttributes<SVGFETurbulenceElement>;
|
|
1148
|
-
filter: FilterSVGAttributes<SVGFilterElement>;
|
|
1149
|
-
foreignObject: ForeignObjectSVGAttributes<SVGForeignObjectElement>;
|
|
1150
|
-
g: GSVGAttributes<SVGGElement>;
|
|
1151
|
-
image: ImageSVGAttributes<SVGImageElement>;
|
|
1152
|
-
line: LineSVGAttributes<SVGLineElement>;
|
|
1153
|
-
linearGradient: LinearGradientSVGAttributes<SVGLinearGradientElement>;
|
|
1154
|
-
marker: MarkerSVGAttributes<SVGMarkerElement>;
|
|
1155
|
-
mask: MaskSVGAttributes<SVGMaskElement>;
|
|
1156
|
-
metadata: MetadataSVGAttributes<SVGMetadataElement>;
|
|
1157
|
-
path: PathSVGAttributes<SVGPathElement>;
|
|
1158
|
-
pattern: PatternSVGAttributes<SVGPatternElement>;
|
|
1159
|
-
polygon: PolygonSVGAttributes<SVGPolygonElement>;
|
|
1160
|
-
polyline: PolylineSVGAttributes<SVGPolylineElement>;
|
|
1161
|
-
radialGradient: RadialGradientSVGAttributes<SVGRadialGradientElement>;
|
|
1162
|
-
rect: RectSVGAttributes<SVGRectElement>;
|
|
1163
|
-
stop: StopSVGAttributes<SVGStopElement>;
|
|
1164
|
-
switch: SwitchSVGAttributes<SVGSwitchElement>;
|
|
1165
|
-
symbol: SymbolSVGAttributes<SVGSymbolElement>;
|
|
1166
|
-
text: TextSVGAttributes<SVGTextElement>;
|
|
1167
|
-
textPath: TextPathSVGAttributes<SVGTextPathElement>;
|
|
1168
|
-
tspan: TSpanSVGAttributes<SVGTSpanElement>;
|
|
1169
|
-
use: UseSVGAttributes<SVGUseElement>;
|
|
1170
|
-
view: ViewSVGAttributes<SVGViewElement>;
|
|
1171
|
-
}
|
|
1172
|
-
}
|
|
1173
|
-
export {};
|