@vue/runtime-dom 3.3.0-alpha.1 → 3.3.0-alpha.10
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/runtime-dom.cjs.js +2 -2
- package/dist/runtime-dom.cjs.prod.js +2 -2
- package/dist/runtime-dom.d.ts +1081 -1297
- package/dist/runtime-dom.esm-browser.js +913 -791
- package/dist/runtime-dom.esm-browser.prod.js +1 -1
- package/dist/runtime-dom.global.js +918 -790
- package/dist/runtime-dom.global.prod.js +1 -1
- package/package.json +4 -4
package/dist/runtime-dom.d.ts
CHANGED
|
@@ -1,39 +1,37 @@
|
|
|
1
|
-
import { SetupContext, RenderFunction, ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, ComponentInjectOptions, ComponentOptionsWithoutProps, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, ExtractPropTypes, ComponentPublicInstance, ComponentInternalInstance, RootHydrateFunction, ConcreteComponent, BaseTransitionProps, FunctionalComponent, ObjectDirective, RootRenderFunction, CreateAppFunction } from '@vue/runtime-core';
|
|
1
|
+
import { SetupContext, RenderFunction, ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, ComponentInjectOptions, SlotsType, ComponentOptionsWithoutProps, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, ExtractPropTypes, ComponentPublicInstance, ComponentInternalInstance, RootHydrateFunction, ConcreteComponent, BaseTransitionProps, FunctionalComponent, ObjectDirective, VNodeRef, RootRenderFunction, CreateAppFunction } from '@vue/runtime-core';
|
|
2
2
|
export * from '@vue/runtime-core';
|
|
3
|
+
import * as CSS from 'csstype';
|
|
3
4
|
|
|
4
5
|
export type VueElementConstructor<P = {}> = {
|
|
5
6
|
new (initialProps?: Record<string, any>): VueElement & P;
|
|
6
7
|
};
|
|
7
|
-
declare function defineCustomElement<Props, RawBindings = object>(setup: (props: Readonly<Props>, ctx: SetupContext) => RawBindings | RenderFunction): VueElementConstructor<Props>;
|
|
8
|
-
declare function defineCustomElement<Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = EmitsOptions, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II> & {
|
|
8
|
+
export declare function defineCustomElement<Props, RawBindings = object>(setup: (props: Readonly<Props>, ctx: SetupContext) => RawBindings | RenderFunction): VueElementConstructor<Props>;
|
|
9
|
+
export declare function defineCustomElement<Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = EmitsOptions, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string, S extends SlotsType = {}>(options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II, S> & {
|
|
9
10
|
styles?: string[];
|
|
10
11
|
}): VueElementConstructor<Props>;
|
|
11
|
-
declare function defineCustomElement<PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II> & {
|
|
12
|
+
export declare function defineCustomElement<PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string, S extends SlotsType = {}>(options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II, S> & {
|
|
12
13
|
styles?: string[];
|
|
13
14
|
}): VueElementConstructor<{
|
|
14
15
|
[K in PropNames]: any;
|
|
15
16
|
}>;
|
|
16
|
-
declare function defineCustomElement<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II> & {
|
|
17
|
+
export declare function defineCustomElement<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = Record<string, any>, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string, S extends SlotsType = {}>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II, S> & {
|
|
17
18
|
styles?: string[];
|
|
18
19
|
}): VueElementConstructor<ExtractPropTypes<PropsOptions>>;
|
|
19
|
-
declare function defineCustomElement(options: {
|
|
20
|
+
export declare function defineCustomElement(options: {
|
|
20
21
|
new (...args: any[]): ComponentPublicInstance;
|
|
21
22
|
}): VueElementConstructor;
|
|
22
|
-
declare const defineSSRCustomElement: typeof defineCustomElement;
|
|
23
|
+
export declare const defineSSRCustomElement: typeof defineCustomElement;
|
|
23
24
|
declare const BaseClass: {
|
|
24
25
|
new (): HTMLElement;
|
|
25
26
|
prototype: HTMLElement;
|
|
26
27
|
};
|
|
27
|
-
|
|
28
|
+
type InnerComponentDef = ConcreteComponent & {
|
|
28
29
|
styles?: string[];
|
|
29
30
|
};
|
|
30
|
-
declare class VueElement extends BaseClass {
|
|
31
|
+
export declare class VueElement extends BaseClass {
|
|
31
32
|
private _def;
|
|
32
33
|
private _props;
|
|
33
|
-
|
|
34
|
-
* @internal
|
|
35
|
-
*/
|
|
36
|
-
_instance: ComponentInternalInstance | null;
|
|
34
|
+
/* removed internal: _instance */
|
|
37
35
|
private _connected;
|
|
38
36
|
private _resolved;
|
|
39
37
|
private _numberProps;
|
|
@@ -47,30 +45,24 @@ declare class VueElement extends BaseClass {
|
|
|
47
45
|
private _resolveDef;
|
|
48
46
|
private _resolveProps;
|
|
49
47
|
protected _setAttr(key: string): void;
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
*/
|
|
53
|
-
protected _getProp(key: string): any;
|
|
54
|
-
/**
|
|
55
|
-
* @internal
|
|
56
|
-
*/
|
|
57
|
-
protected _setProp(key: string, val: any, shouldReflect?: boolean, shouldUpdate?: boolean): void;
|
|
48
|
+
/* removed internal: _getProp */
|
|
49
|
+
/* removed internal: _setProp */
|
|
58
50
|
private _update;
|
|
59
51
|
private _createVNode;
|
|
60
52
|
private _applyStyles;
|
|
61
53
|
}
|
|
62
54
|
|
|
63
|
-
declare function useCssModule(name?: string): Record<string, string>;
|
|
55
|
+
export declare function useCssModule(name?: string): Record<string, string>;
|
|
64
56
|
|
|
65
57
|
/**
|
|
66
58
|
* Runtime helper for SFC's CSS variable injection feature.
|
|
67
59
|
* @private
|
|
68
60
|
*/
|
|
69
|
-
declare function useCssVars(getter: (ctx: any) => Record<string, string>): void;
|
|
61
|
+
export declare function useCssVars(getter: (ctx: any) => Record<string, string>): void;
|
|
70
62
|
|
|
71
63
|
declare const TRANSITION = "transition";
|
|
72
64
|
declare const ANIMATION = "animation";
|
|
73
|
-
|
|
65
|
+
type AnimationTypes = typeof TRANSITION | typeof ANIMATION;
|
|
74
66
|
export interface TransitionProps extends BaseTransitionProps<Element> {
|
|
75
67
|
name?: string;
|
|
76
68
|
type?: AnimationTypes;
|
|
@@ -89,1412 +81,1204 @@ export interface TransitionProps extends BaseTransitionProps<Element> {
|
|
|
89
81
|
leaveActiveClass?: string;
|
|
90
82
|
leaveToClass?: string;
|
|
91
83
|
}
|
|
92
|
-
declare const Transition: FunctionalComponent<TransitionProps>;
|
|
84
|
+
export declare const Transition: FunctionalComponent<TransitionProps>;
|
|
93
85
|
|
|
94
86
|
export type TransitionGroupProps = Omit<TransitionProps, 'mode'> & {
|
|
95
87
|
tag?: string;
|
|
96
88
|
moveClass?: string;
|
|
97
89
|
};
|
|
98
|
-
declare const TransitionGroup: new () => {
|
|
90
|
+
export declare const TransitionGroup: new () => {
|
|
99
91
|
$props: TransitionGroupProps;
|
|
100
92
|
};
|
|
101
93
|
|
|
102
|
-
|
|
103
|
-
|
|
94
|
+
type AssignerFn = (value: any) => void;
|
|
95
|
+
type ModelDirective<T> = ObjectDirective<T & {
|
|
104
96
|
_assign: AssignerFn;
|
|
105
97
|
}>;
|
|
106
|
-
declare const vModelText: ModelDirective<HTMLInputElement | HTMLTextAreaElement>;
|
|
107
|
-
declare const vModelCheckbox: ModelDirective<HTMLInputElement>;
|
|
108
|
-
declare const vModelRadio: ModelDirective<HTMLInputElement>;
|
|
109
|
-
declare const vModelSelect: ModelDirective<HTMLSelectElement>;
|
|
110
|
-
declare const vModelDynamic: ObjectDirective<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>;
|
|
98
|
+
export declare const vModelText: ModelDirective<HTMLInputElement | HTMLTextAreaElement>;
|
|
99
|
+
export declare const vModelCheckbox: ModelDirective<HTMLInputElement>;
|
|
100
|
+
export declare const vModelRadio: ModelDirective<HTMLInputElement>;
|
|
101
|
+
export declare const vModelSelect: ModelDirective<HTMLSelectElement>;
|
|
102
|
+
export declare const vModelDynamic: ObjectDirective<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement>;
|
|
111
103
|
|
|
112
104
|
/**
|
|
113
105
|
* @private
|
|
114
106
|
*/
|
|
115
|
-
declare const withModifiers: (fn: Function, modifiers: string[]) => (event: Event, ...args: unknown[]) => any;
|
|
107
|
+
export declare const withModifiers: (fn: Function, modifiers: string[]) => (event: Event, ...args: unknown[]) => any;
|
|
116
108
|
/**
|
|
117
109
|
* @private
|
|
118
110
|
*/
|
|
119
|
-
declare const withKeys: (fn: Function, modifiers: string[]) => (event: KeyboardEvent) => any;
|
|
111
|
+
export declare const withKeys: (fn: Function, modifiers: string[]) => (event: KeyboardEvent) => any;
|
|
120
112
|
|
|
121
|
-
|
|
113
|
+
interface VShowElement extends HTMLElement {
|
|
122
114
|
_vod: string;
|
|
123
115
|
}
|
|
124
|
-
declare const vShow: ObjectDirective<VShowElement>;
|
|
125
|
-
|
|
126
|
-
declare module '@vue/reactivity' {
|
|
127
|
-
interface RefUnwrapBailTypes {
|
|
128
|
-
runtimeDOMBailTypes: Node | Window;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
declare const render: RootRenderFunction<Element | ShadowRoot>;
|
|
132
|
-
declare const hydrate: RootHydrateFunction;
|
|
133
|
-
declare const createApp: CreateAppFunction<Element>;
|
|
134
|
-
declare const createSSRApp: CreateAppFunction<Element>;
|
|
135
|
-
|
|
116
|
+
export declare const vShow: ObjectDirective<VShowElement>;
|
|
136
117
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
// AssureSign <http://www.assuresign.com>
|
|
148
|
-
// Microsoft <https://microsoft.com>
|
|
149
|
-
// John Reilly <https://github.com/johnnyreilly>
|
|
150
|
-
// Benoit Benezech <https://github.com/bbenezech>
|
|
151
|
-
// Patricio Zavolinsky <https://github.com/pzavolinsky>
|
|
152
|
-
// Digiguru <https://github.com/digiguru>
|
|
153
|
-
// Eric Anderson <https://github.com/ericanderson>
|
|
154
|
-
// Dovydas Navickas <https://github.com/DovydasNavickas>
|
|
155
|
-
// Josh Rutherford <https://github.com/theruther4d>
|
|
156
|
-
// Guilherme Hübner <https://github.com/guilhermehubner>
|
|
157
|
-
// Ferdy Budhidharma <https://github.com/ferdaber>
|
|
158
|
-
// Johann Rakotoharisoa <https://github.com/jrakotoharisoa>
|
|
159
|
-
// Olivier Pascal <https://github.com/pascaloliv>
|
|
160
|
-
// Martin Hochel <https://github.com/hotell>
|
|
161
|
-
// Frank Li <https://github.com/franklixuefei>
|
|
162
|
-
// Jessica Franco <https://github.com/Jessidhia>
|
|
163
|
-
// Saransh Kataria <https://github.com/saranshkataria>
|
|
164
|
-
// Kanitkorn Sujautra <https://github.com/lukyth>
|
|
165
|
-
// Sebastian Silbermann <https://github.com/eps1lon>
|
|
166
|
-
|
|
167
|
-
import { VNode } from '@vue/runtime-core'
|
|
168
|
-
import * as CSS from 'csstype'
|
|
169
|
-
|
|
170
|
-
export interface CSSProperties
|
|
171
|
-
extends CSS.Properties<string | number>,
|
|
172
|
-
CSS.PropertiesHyphen<string | number> {
|
|
173
|
-
/**
|
|
174
|
-
* The index signature was removed to enable closed typing for style
|
|
175
|
-
* using CSSType. You're able to use type assertion or module augmentation
|
|
176
|
-
* to add properties or an index signature of your own.
|
|
177
|
-
*
|
|
178
|
-
* For examples and more information, visit:
|
|
179
|
-
* https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
|
|
180
|
-
*/
|
|
181
|
-
[v: `--${string}`]: string | number | undefined
|
|
118
|
+
export interface CSSProperties extends CSS.Properties<string | number>, CSS.PropertiesHyphen<string | number> {
|
|
119
|
+
/**
|
|
120
|
+
* The index signature was removed to enable closed typing for style
|
|
121
|
+
* using CSSType. You're able to use type assertion or module augmentation
|
|
122
|
+
* to add properties or an index signature of your own.
|
|
123
|
+
*
|
|
124
|
+
* For examples and more information, visit:
|
|
125
|
+
* https://github.com/frenic/csstype#what-should-i-do-when-i-get-type-errors
|
|
126
|
+
*/
|
|
127
|
+
[v: `--${string}`]: string | number | undefined;
|
|
182
128
|
}
|
|
183
|
-
|
|
184
|
-
type
|
|
185
|
-
type Numberish = number | string
|
|
186
|
-
|
|
187
|
-
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
|
|
129
|
+
type Booleanish = boolean | 'true' | 'false';
|
|
130
|
+
type Numberish = number | string;
|
|
188
131
|
interface AriaAttributes {
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
132
|
+
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
133
|
+
'aria-activedescendant'?: string;
|
|
134
|
+
/** 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. */
|
|
135
|
+
'aria-atomic'?: Booleanish;
|
|
136
|
+
/**
|
|
137
|
+
* 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
|
|
138
|
+
* presented if they are made.
|
|
139
|
+
*/
|
|
140
|
+
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
|
|
141
|
+
/** 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. */
|
|
142
|
+
'aria-busy'?: Booleanish;
|
|
143
|
+
/**
|
|
144
|
+
* Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
|
|
145
|
+
* @see aria-pressed @see aria-selected.
|
|
146
|
+
*/
|
|
147
|
+
'aria-checked'?: Booleanish | 'mixed';
|
|
148
|
+
/**
|
|
149
|
+
* Defines the total number of columns in a table, grid, or treegrid.
|
|
150
|
+
* @see aria-colindex.
|
|
151
|
+
*/
|
|
152
|
+
'aria-colcount'?: Numberish;
|
|
153
|
+
/**
|
|
154
|
+
* Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
|
|
155
|
+
* @see aria-colcount @see aria-colspan.
|
|
156
|
+
*/
|
|
157
|
+
'aria-colindex'?: Numberish;
|
|
158
|
+
/**
|
|
159
|
+
* Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
160
|
+
* @see aria-colindex @see aria-rowspan.
|
|
161
|
+
*/
|
|
162
|
+
'aria-colspan'?: Numberish;
|
|
163
|
+
/**
|
|
164
|
+
* Identifies the element (or elements) whose contents or presence are controlled by the current element.
|
|
165
|
+
* @see aria-owns.
|
|
166
|
+
*/
|
|
167
|
+
'aria-controls'?: string;
|
|
168
|
+
/** Indicates the element that represents the current item within a container or set of related elements. */
|
|
169
|
+
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time';
|
|
170
|
+
/**
|
|
171
|
+
* Identifies the element (or elements) that describes the object.
|
|
172
|
+
* @see aria-labelledby
|
|
173
|
+
*/
|
|
174
|
+
'aria-describedby'?: string;
|
|
175
|
+
/**
|
|
176
|
+
* Identifies the element that provides a detailed, extended description for the object.
|
|
177
|
+
* @see aria-describedby.
|
|
178
|
+
*/
|
|
179
|
+
'aria-details'?: string;
|
|
180
|
+
/**
|
|
181
|
+
* Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
|
|
182
|
+
* @see aria-hidden @see aria-readonly.
|
|
183
|
+
*/
|
|
184
|
+
'aria-disabled'?: Booleanish;
|
|
185
|
+
/**
|
|
186
|
+
* Indicates what functions can be performed when a dragged object is released on the drop target.
|
|
187
|
+
* @deprecated in ARIA 1.1
|
|
188
|
+
*/
|
|
189
|
+
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
|
|
190
|
+
/**
|
|
191
|
+
* Identifies the element that provides an error message for the object.
|
|
192
|
+
* @see aria-invalid @see aria-describedby.
|
|
193
|
+
*/
|
|
194
|
+
'aria-errormessage'?: string;
|
|
195
|
+
/** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
|
|
196
|
+
'aria-expanded'?: Booleanish;
|
|
197
|
+
/**
|
|
198
|
+
* Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
199
|
+
* allows assistive technology to override the general default of reading in document source order.
|
|
200
|
+
*/
|
|
201
|
+
'aria-flowto'?: string;
|
|
202
|
+
/**
|
|
203
|
+
* Indicates an element's "grabbed" state in a drag-and-drop operation.
|
|
204
|
+
* @deprecated in ARIA 1.1
|
|
205
|
+
*/
|
|
206
|
+
'aria-grabbed'?: Booleanish;
|
|
207
|
+
/** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
|
|
208
|
+
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';
|
|
209
|
+
/**
|
|
210
|
+
* Indicates whether the element is exposed to an accessibility API.
|
|
211
|
+
* @see aria-disabled.
|
|
212
|
+
*/
|
|
213
|
+
'aria-hidden'?: Booleanish;
|
|
214
|
+
/**
|
|
215
|
+
* Indicates the entered value does not conform to the format expected by the application.
|
|
216
|
+
* @see aria-errormessage.
|
|
217
|
+
*/
|
|
218
|
+
'aria-invalid'?: Booleanish | 'grammar' | 'spelling';
|
|
219
|
+
/** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
|
|
220
|
+
'aria-keyshortcuts'?: string;
|
|
221
|
+
/**
|
|
222
|
+
* Defines a string value that labels the current element.
|
|
223
|
+
* @see aria-labelledby.
|
|
224
|
+
*/
|
|
225
|
+
'aria-label'?: string;
|
|
226
|
+
/**
|
|
227
|
+
* Identifies the element (or elements) that labels the current element.
|
|
228
|
+
* @see aria-describedby.
|
|
229
|
+
*/
|
|
230
|
+
'aria-labelledby'?: string;
|
|
231
|
+
/** Defines the hierarchical level of an element within a structure. */
|
|
232
|
+
'aria-level'?: Numberish;
|
|
233
|
+
/** Indicates that an element will be updated, and describes the types of updates the user agents, assistive technologies, and user can expect from the live region. */
|
|
234
|
+
'aria-live'?: 'off' | 'assertive' | 'polite';
|
|
235
|
+
/** Indicates whether an element is modal when displayed. */
|
|
236
|
+
'aria-modal'?: Booleanish;
|
|
237
|
+
/** Indicates whether a text box accepts multiple lines of input or only a single line. */
|
|
238
|
+
'aria-multiline'?: Booleanish;
|
|
239
|
+
/** Indicates that the user may select more than one item from the current selectable descendants. */
|
|
240
|
+
'aria-multiselectable'?: Booleanish;
|
|
241
|
+
/** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
|
|
242
|
+
'aria-orientation'?: 'horizontal' | 'vertical';
|
|
243
|
+
/**
|
|
244
|
+
* Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
245
|
+
* between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
|
|
246
|
+
* @see aria-controls.
|
|
247
|
+
*/
|
|
248
|
+
'aria-owns'?: string;
|
|
249
|
+
/**
|
|
250
|
+
* Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
251
|
+
* A hint could be a sample value or a brief description of the expected format.
|
|
252
|
+
*/
|
|
253
|
+
'aria-placeholder'?: string;
|
|
254
|
+
/**
|
|
255
|
+
* 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.
|
|
256
|
+
* @see aria-setsize.
|
|
257
|
+
*/
|
|
258
|
+
'aria-posinset'?: Numberish;
|
|
259
|
+
/**
|
|
260
|
+
* Indicates the current "pressed" state of toggle buttons.
|
|
261
|
+
* @see aria-checked @see aria-selected.
|
|
262
|
+
*/
|
|
263
|
+
'aria-pressed'?: Booleanish | 'mixed';
|
|
264
|
+
/**
|
|
265
|
+
* Indicates that the element is not editable, but is otherwise operable.
|
|
266
|
+
* @see aria-disabled.
|
|
267
|
+
*/
|
|
268
|
+
'aria-readonly'?: Booleanish;
|
|
269
|
+
/**
|
|
270
|
+
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
|
|
271
|
+
* @see aria-atomic.
|
|
272
|
+
*/
|
|
273
|
+
'aria-relevant'?: 'additions' | 'additions text' | 'all' | 'removals' | 'text';
|
|
274
|
+
/** Indicates that user input is required on the element before a form may be submitted. */
|
|
275
|
+
'aria-required'?: Booleanish;
|
|
276
|
+
/** Defines a human-readable, author-localized description for the role of an element. */
|
|
277
|
+
'aria-roledescription'?: string;
|
|
278
|
+
/**
|
|
279
|
+
* Defines the total number of rows in a table, grid, or treegrid.
|
|
280
|
+
* @see aria-rowindex.
|
|
281
|
+
*/
|
|
282
|
+
'aria-rowcount'?: Numberish;
|
|
283
|
+
/**
|
|
284
|
+
* Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
|
|
285
|
+
* @see aria-rowcount @see aria-rowspan.
|
|
286
|
+
*/
|
|
287
|
+
'aria-rowindex'?: Numberish;
|
|
288
|
+
/**
|
|
289
|
+
* Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
290
|
+
* @see aria-rowindex @see aria-colspan.
|
|
291
|
+
*/
|
|
292
|
+
'aria-rowspan'?: Numberish;
|
|
293
|
+
/**
|
|
294
|
+
* Indicates the current "selected" state of various widgets.
|
|
295
|
+
* @see aria-checked @see aria-pressed.
|
|
296
|
+
*/
|
|
297
|
+
'aria-selected'?: Booleanish;
|
|
298
|
+
/**
|
|
299
|
+
* 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.
|
|
300
|
+
* @see aria-posinset.
|
|
301
|
+
*/
|
|
302
|
+
'aria-setsize'?: Numberish;
|
|
303
|
+
/** Indicates if items in a table or grid are sorted in ascending or descending order. */
|
|
304
|
+
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
|
|
305
|
+
/** Defines the maximum allowed value for a range widget. */
|
|
306
|
+
'aria-valuemax'?: Numberish;
|
|
307
|
+
/** Defines the minimum allowed value for a range widget. */
|
|
308
|
+
'aria-valuemin'?: Numberish;
|
|
309
|
+
/**
|
|
310
|
+
* Defines the current value for a range widget.
|
|
311
|
+
* @see aria-valuetext.
|
|
312
|
+
*/
|
|
313
|
+
'aria-valuenow'?: Numberish;
|
|
314
|
+
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
315
|
+
'aria-valuetext'?: string;
|
|
373
316
|
}
|
|
374
|
-
|
|
375
|
-
// Vue's style normalization supports nested arrays
|
|
376
|
-
export type StyleValue = string | CSSProperties | Array<StyleValue>
|
|
377
|
-
|
|
317
|
+
export type StyleValue = string | CSSProperties | Array<StyleValue>;
|
|
378
318
|
export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
unselectable?: 'on' | 'off'
|
|
428
|
-
|
|
429
|
-
// Living Standard
|
|
430
|
-
/**
|
|
431
|
-
* Hints at the type of data that might be entered by the user while editing the element or its contents
|
|
432
|
-
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
|
|
433
|
-
*/
|
|
434
|
-
inputmode?:
|
|
435
|
-
| 'none'
|
|
436
|
-
| 'text'
|
|
437
|
-
| 'tel'
|
|
438
|
-
| 'url'
|
|
439
|
-
| 'email'
|
|
440
|
-
| 'numeric'
|
|
441
|
-
| 'decimal'
|
|
442
|
-
| 'search'
|
|
443
|
-
/**
|
|
444
|
-
* Specify that a standard HTML element should behave like a defined custom built-in element
|
|
445
|
-
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
|
446
|
-
*/
|
|
447
|
-
is?: string
|
|
319
|
+
innerHTML?: string;
|
|
320
|
+
class?: any;
|
|
321
|
+
style?: StyleValue;
|
|
322
|
+
accesskey?: string;
|
|
323
|
+
contenteditable?: Booleanish | 'inherit';
|
|
324
|
+
contextmenu?: string;
|
|
325
|
+
dir?: string;
|
|
326
|
+
draggable?: Booleanish;
|
|
327
|
+
hidden?: Booleanish;
|
|
328
|
+
id?: string;
|
|
329
|
+
lang?: string;
|
|
330
|
+
placeholder?: string;
|
|
331
|
+
spellcheck?: Booleanish;
|
|
332
|
+
tabindex?: Numberish;
|
|
333
|
+
title?: string;
|
|
334
|
+
translate?: 'yes' | 'no';
|
|
335
|
+
radiogroup?: string;
|
|
336
|
+
role?: string;
|
|
337
|
+
about?: string;
|
|
338
|
+
datatype?: string;
|
|
339
|
+
inlist?: any;
|
|
340
|
+
prefix?: string;
|
|
341
|
+
property?: string;
|
|
342
|
+
resource?: string;
|
|
343
|
+
typeof?: string;
|
|
344
|
+
vocab?: string;
|
|
345
|
+
autocapitalize?: string;
|
|
346
|
+
autocorrect?: string;
|
|
347
|
+
autosave?: string;
|
|
348
|
+
color?: string;
|
|
349
|
+
itemprop?: string;
|
|
350
|
+
itemscope?: Booleanish;
|
|
351
|
+
itemtype?: string;
|
|
352
|
+
itemid?: string;
|
|
353
|
+
itemref?: string;
|
|
354
|
+
results?: Numberish;
|
|
355
|
+
security?: string;
|
|
356
|
+
unselectable?: 'on' | 'off';
|
|
357
|
+
/**
|
|
358
|
+
* Hints at the type of data that might be entered by the user while editing the element or its contents
|
|
359
|
+
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
|
|
360
|
+
*/
|
|
361
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
362
|
+
/**
|
|
363
|
+
* Specify that a standard HTML element should behave like a defined custom built-in element
|
|
364
|
+
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
|
365
|
+
*/
|
|
366
|
+
is?: string;
|
|
448
367
|
}
|
|
449
|
-
|
|
450
|
-
type HTMLAttributeReferrerPolicy =
|
|
451
|
-
| ''
|
|
452
|
-
| 'no-referrer'
|
|
453
|
-
| 'no-referrer-when-downgrade'
|
|
454
|
-
| 'origin'
|
|
455
|
-
| 'origin-when-cross-origin'
|
|
456
|
-
| 'same-origin'
|
|
457
|
-
| 'strict-origin'
|
|
458
|
-
| 'strict-origin-when-cross-origin'
|
|
459
|
-
| 'unsafe-url'
|
|
460
|
-
|
|
368
|
+
type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
461
369
|
export interface AnchorHTMLAttributes extends HTMLAttributes {
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
370
|
+
download?: any;
|
|
371
|
+
href?: string;
|
|
372
|
+
hreflang?: string;
|
|
373
|
+
media?: string;
|
|
374
|
+
ping?: string;
|
|
375
|
+
rel?: string;
|
|
376
|
+
target?: string;
|
|
377
|
+
type?: string;
|
|
378
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
471
379
|
}
|
|
472
|
-
|
|
473
380
|
export interface AreaHTMLAttributes extends HTMLAttributes {
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
381
|
+
alt?: string;
|
|
382
|
+
coords?: string;
|
|
383
|
+
download?: any;
|
|
384
|
+
href?: string;
|
|
385
|
+
hreflang?: string;
|
|
386
|
+
media?: string;
|
|
387
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
388
|
+
rel?: string;
|
|
389
|
+
shape?: string;
|
|
390
|
+
target?: string;
|
|
391
|
+
}
|
|
392
|
+
export interface AudioHTMLAttributes extends MediaHTMLAttributes {
|
|
484
393
|
}
|
|
485
|
-
|
|
486
|
-
export interface AudioHTMLAttributes extends MediaHTMLAttributes {}
|
|
487
|
-
|
|
488
394
|
export interface BaseHTMLAttributes extends HTMLAttributes {
|
|
489
|
-
|
|
490
|
-
|
|
395
|
+
href?: string;
|
|
396
|
+
target?: string;
|
|
491
397
|
}
|
|
492
|
-
|
|
493
398
|
export interface BlockquoteHTMLAttributes extends HTMLAttributes {
|
|
494
|
-
|
|
399
|
+
cite?: string;
|
|
495
400
|
}
|
|
496
|
-
|
|
497
401
|
export interface ButtonHTMLAttributes extends HTMLAttributes {
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
402
|
+
autofocus?: Booleanish;
|
|
403
|
+
disabled?: Booleanish;
|
|
404
|
+
form?: string;
|
|
405
|
+
formaction?: string;
|
|
406
|
+
formenctype?: string;
|
|
407
|
+
formmethod?: string;
|
|
408
|
+
formnovalidate?: Booleanish;
|
|
409
|
+
formtarget?: string;
|
|
410
|
+
name?: string;
|
|
411
|
+
type?: 'submit' | 'reset' | 'button';
|
|
412
|
+
value?: string | string[] | number;
|
|
509
413
|
}
|
|
510
|
-
|
|
511
414
|
export interface CanvasHTMLAttributes extends HTMLAttributes {
|
|
512
|
-
|
|
513
|
-
|
|
415
|
+
height?: Numberish;
|
|
416
|
+
width?: Numberish;
|
|
514
417
|
}
|
|
515
|
-
|
|
516
418
|
export interface ColHTMLAttributes extends HTMLAttributes {
|
|
517
|
-
|
|
518
|
-
|
|
419
|
+
span?: Numberish;
|
|
420
|
+
width?: Numberish;
|
|
519
421
|
}
|
|
520
|
-
|
|
521
422
|
export interface ColgroupHTMLAttributes extends HTMLAttributes {
|
|
522
|
-
|
|
423
|
+
span?: Numberish;
|
|
523
424
|
}
|
|
524
|
-
|
|
525
425
|
export interface DataHTMLAttributes extends HTMLAttributes {
|
|
526
|
-
|
|
426
|
+
value?: string | string[] | number;
|
|
527
427
|
}
|
|
528
|
-
|
|
529
428
|
export interface DetailsHTMLAttributes extends HTMLAttributes {
|
|
530
|
-
|
|
429
|
+
open?: Booleanish;
|
|
531
430
|
}
|
|
532
|
-
|
|
533
431
|
export interface DelHTMLAttributes extends HTMLAttributes {
|
|
534
|
-
|
|
535
|
-
|
|
432
|
+
cite?: string;
|
|
433
|
+
datetime?: string;
|
|
536
434
|
}
|
|
537
|
-
|
|
538
435
|
export interface DialogHTMLAttributes extends HTMLAttributes {
|
|
539
|
-
|
|
436
|
+
open?: Booleanish;
|
|
540
437
|
}
|
|
541
|
-
|
|
542
438
|
export interface EmbedHTMLAttributes extends HTMLAttributes {
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
439
|
+
height?: Numberish;
|
|
440
|
+
src?: string;
|
|
441
|
+
type?: string;
|
|
442
|
+
width?: Numberish;
|
|
547
443
|
}
|
|
548
|
-
|
|
549
444
|
export interface FieldsetHTMLAttributes extends HTMLAttributes {
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
445
|
+
disabled?: Booleanish;
|
|
446
|
+
form?: string;
|
|
447
|
+
name?: string;
|
|
553
448
|
}
|
|
554
|
-
|
|
555
449
|
export interface FormHTMLAttributes extends HTMLAttributes {
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
450
|
+
acceptcharset?: string;
|
|
451
|
+
action?: string;
|
|
452
|
+
autocomplete?: string;
|
|
453
|
+
enctype?: string;
|
|
454
|
+
method?: string;
|
|
455
|
+
name?: string;
|
|
456
|
+
novalidate?: Booleanish;
|
|
457
|
+
target?: string;
|
|
564
458
|
}
|
|
565
|
-
|
|
566
459
|
export interface HtmlHTMLAttributes extends HTMLAttributes {
|
|
567
|
-
|
|
460
|
+
manifest?: string;
|
|
568
461
|
}
|
|
569
|
-
|
|
570
462
|
export interface IframeHTMLAttributes extends HTMLAttributes {
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
463
|
+
allow?: string;
|
|
464
|
+
allowfullscreen?: Booleanish;
|
|
465
|
+
allowtransparency?: Booleanish;
|
|
466
|
+
frameborder?: Numberish;
|
|
467
|
+
height?: Numberish;
|
|
468
|
+
marginheight?: Numberish;
|
|
469
|
+
marginwidth?: Numberish;
|
|
470
|
+
name?: string;
|
|
471
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
472
|
+
sandbox?: string;
|
|
473
|
+
scrolling?: string;
|
|
474
|
+
seamless?: Booleanish;
|
|
475
|
+
src?: string;
|
|
476
|
+
srcdoc?: string;
|
|
477
|
+
width?: Numberish;
|
|
586
478
|
}
|
|
587
|
-
|
|
588
479
|
export interface ImgHTMLAttributes extends HTMLAttributes {
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
480
|
+
alt?: string;
|
|
481
|
+
crossorigin?: 'anonymous' | 'use-credentials' | '';
|
|
482
|
+
decoding?: 'async' | 'auto' | 'sync';
|
|
483
|
+
height?: Numberish;
|
|
484
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
485
|
+
sizes?: string;
|
|
486
|
+
src?: string;
|
|
487
|
+
srcset?: string;
|
|
488
|
+
usemap?: string;
|
|
489
|
+
width?: Numberish;
|
|
599
490
|
}
|
|
600
|
-
|
|
601
491
|
export interface InsHTMLAttributes extends HTMLAttributes {
|
|
602
|
-
|
|
603
|
-
|
|
492
|
+
cite?: string;
|
|
493
|
+
datetime?: string;
|
|
604
494
|
}
|
|
605
|
-
|
|
606
495
|
export interface InputHTMLAttributes extends HTMLAttributes {
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
496
|
+
accept?: string;
|
|
497
|
+
alt?: string;
|
|
498
|
+
autocomplete?: string;
|
|
499
|
+
autofocus?: Booleanish;
|
|
500
|
+
capture?: boolean | 'user' | 'environment';
|
|
501
|
+
checked?: Booleanish | any[] | Set<any>;
|
|
502
|
+
crossorigin?: string;
|
|
503
|
+
disabled?: Booleanish;
|
|
504
|
+
form?: string;
|
|
505
|
+
formaction?: string;
|
|
506
|
+
formenctype?: string;
|
|
507
|
+
formmethod?: string;
|
|
508
|
+
formnovalidate?: Booleanish;
|
|
509
|
+
formtarget?: string;
|
|
510
|
+
height?: Numberish;
|
|
511
|
+
indeterminate?: boolean;
|
|
512
|
+
list?: string;
|
|
513
|
+
max?: Numberish;
|
|
514
|
+
maxlength?: Numberish;
|
|
515
|
+
min?: Numberish;
|
|
516
|
+
minlength?: Numberish;
|
|
517
|
+
multiple?: Booleanish;
|
|
518
|
+
name?: string;
|
|
519
|
+
pattern?: string;
|
|
520
|
+
placeholder?: string;
|
|
521
|
+
readonly?: Booleanish;
|
|
522
|
+
required?: Booleanish;
|
|
523
|
+
size?: Numberish;
|
|
524
|
+
src?: string;
|
|
525
|
+
step?: Numberish;
|
|
526
|
+
type?: string;
|
|
527
|
+
value?: any;
|
|
528
|
+
width?: Numberish;
|
|
640
529
|
}
|
|
641
|
-
|
|
642
530
|
export interface KeygenHTMLAttributes extends HTMLAttributes {
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
531
|
+
autofocus?: Booleanish;
|
|
532
|
+
challenge?: string;
|
|
533
|
+
disabled?: Booleanish;
|
|
534
|
+
form?: string;
|
|
535
|
+
keytype?: string;
|
|
536
|
+
keyparams?: string;
|
|
537
|
+
name?: string;
|
|
650
538
|
}
|
|
651
|
-
|
|
652
539
|
export interface LabelHTMLAttributes extends HTMLAttributes {
|
|
653
|
-
|
|
654
|
-
|
|
540
|
+
for?: string;
|
|
541
|
+
form?: string;
|
|
655
542
|
}
|
|
656
|
-
|
|
657
543
|
export interface LiHTMLAttributes extends HTMLAttributes {
|
|
658
|
-
|
|
544
|
+
value?: string | string[] | number;
|
|
659
545
|
}
|
|
660
|
-
|
|
661
546
|
export interface LinkHTMLAttributes extends HTMLAttributes {
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
547
|
+
as?: string;
|
|
548
|
+
crossorigin?: string;
|
|
549
|
+
href?: string;
|
|
550
|
+
hreflang?: string;
|
|
551
|
+
integrity?: string;
|
|
552
|
+
media?: string;
|
|
553
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
554
|
+
rel?: string;
|
|
555
|
+
sizes?: string;
|
|
556
|
+
type?: string;
|
|
672
557
|
}
|
|
673
|
-
|
|
674
558
|
export interface MapHTMLAttributes extends HTMLAttributes {
|
|
675
|
-
|
|
559
|
+
name?: string;
|
|
676
560
|
}
|
|
677
|
-
|
|
678
561
|
export interface MenuHTMLAttributes extends HTMLAttributes {
|
|
679
|
-
|
|
562
|
+
type?: string;
|
|
680
563
|
}
|
|
681
|
-
|
|
682
564
|
export interface MediaHTMLAttributes extends HTMLAttributes {
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
565
|
+
autoplay?: Booleanish;
|
|
566
|
+
controls?: Booleanish;
|
|
567
|
+
controlslist?: string;
|
|
568
|
+
crossorigin?: string;
|
|
569
|
+
loop?: Booleanish;
|
|
570
|
+
mediagroup?: string;
|
|
571
|
+
muted?: Booleanish;
|
|
572
|
+
playsinline?: Booleanish;
|
|
573
|
+
preload?: string;
|
|
574
|
+
src?: string;
|
|
693
575
|
}
|
|
694
|
-
|
|
695
576
|
export interface MetaHTMLAttributes extends HTMLAttributes {
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
577
|
+
charset?: string;
|
|
578
|
+
content?: string;
|
|
579
|
+
httpequiv?: string;
|
|
580
|
+
name?: string;
|
|
700
581
|
}
|
|
701
|
-
|
|
702
582
|
export interface MeterHTMLAttributes extends HTMLAttributes {
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
583
|
+
form?: string;
|
|
584
|
+
high?: Numberish;
|
|
585
|
+
low?: Numberish;
|
|
586
|
+
max?: Numberish;
|
|
587
|
+
min?: Numberish;
|
|
588
|
+
optimum?: Numberish;
|
|
589
|
+
value?: string | string[] | number;
|
|
710
590
|
}
|
|
711
|
-
|
|
712
591
|
export interface QuoteHTMLAttributes extends HTMLAttributes {
|
|
713
|
-
|
|
592
|
+
cite?: string;
|
|
714
593
|
}
|
|
715
|
-
|
|
716
594
|
export interface ObjectHTMLAttributes extends HTMLAttributes {
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
595
|
+
classid?: string;
|
|
596
|
+
data?: string;
|
|
597
|
+
form?: string;
|
|
598
|
+
height?: Numberish;
|
|
599
|
+
name?: string;
|
|
600
|
+
type?: string;
|
|
601
|
+
usemap?: string;
|
|
602
|
+
width?: Numberish;
|
|
603
|
+
wmode?: string;
|
|
726
604
|
}
|
|
727
|
-
|
|
728
605
|
export interface OlHTMLAttributes extends HTMLAttributes {
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
606
|
+
reversed?: Booleanish;
|
|
607
|
+
start?: Numberish;
|
|
608
|
+
type?: '1' | 'a' | 'A' | 'i' | 'I';
|
|
732
609
|
}
|
|
733
|
-
|
|
734
610
|
export interface OptgroupHTMLAttributes extends HTMLAttributes {
|
|
735
|
-
|
|
736
|
-
|
|
611
|
+
disabled?: Booleanish;
|
|
612
|
+
label?: string;
|
|
737
613
|
}
|
|
738
|
-
|
|
739
614
|
export interface OptionHTMLAttributes extends HTMLAttributes {
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
615
|
+
disabled?: Booleanish;
|
|
616
|
+
label?: string;
|
|
617
|
+
selected?: Booleanish;
|
|
618
|
+
value?: any;
|
|
744
619
|
}
|
|
745
|
-
|
|
746
620
|
export interface OutputHTMLAttributes extends HTMLAttributes {
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
621
|
+
for?: string;
|
|
622
|
+
form?: string;
|
|
623
|
+
name?: string;
|
|
750
624
|
}
|
|
751
|
-
|
|
752
625
|
export interface ParamHTMLAttributes extends HTMLAttributes {
|
|
753
|
-
|
|
754
|
-
|
|
626
|
+
name?: string;
|
|
627
|
+
value?: string | string[] | number;
|
|
755
628
|
}
|
|
756
|
-
|
|
757
629
|
export interface ProgressHTMLAttributes extends HTMLAttributes {
|
|
758
|
-
|
|
759
|
-
|
|
630
|
+
max?: Numberish;
|
|
631
|
+
value?: string | string[] | number;
|
|
760
632
|
}
|
|
761
|
-
|
|
762
633
|
export interface ScriptHTMLAttributes extends HTMLAttributes {
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
634
|
+
async?: Booleanish;
|
|
635
|
+
charset?: string;
|
|
636
|
+
crossorigin?: string;
|
|
637
|
+
defer?: Booleanish;
|
|
638
|
+
integrity?: string;
|
|
639
|
+
nomodule?: Booleanish;
|
|
640
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
641
|
+
nonce?: string;
|
|
642
|
+
src?: string;
|
|
643
|
+
type?: string;
|
|
773
644
|
}
|
|
774
|
-
|
|
775
645
|
export interface SelectHTMLAttributes extends HTMLAttributes {
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
646
|
+
autocomplete?: string;
|
|
647
|
+
autofocus?: Booleanish;
|
|
648
|
+
disabled?: Booleanish;
|
|
649
|
+
form?: string;
|
|
650
|
+
multiple?: Booleanish;
|
|
651
|
+
name?: string;
|
|
652
|
+
required?: Booleanish;
|
|
653
|
+
size?: Numberish;
|
|
654
|
+
value?: any;
|
|
785
655
|
}
|
|
786
|
-
|
|
787
656
|
export interface SourceHTMLAttributes extends HTMLAttributes {
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
657
|
+
media?: string;
|
|
658
|
+
sizes?: string;
|
|
659
|
+
src?: string;
|
|
660
|
+
srcset?: string;
|
|
661
|
+
type?: string;
|
|
793
662
|
}
|
|
794
|
-
|
|
795
663
|
export interface StyleHTMLAttributes extends HTMLAttributes {
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
664
|
+
media?: string;
|
|
665
|
+
nonce?: string;
|
|
666
|
+
scoped?: Booleanish;
|
|
667
|
+
type?: string;
|
|
800
668
|
}
|
|
801
|
-
|
|
802
669
|
export interface TableHTMLAttributes extends HTMLAttributes {
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
670
|
+
cellpadding?: Numberish;
|
|
671
|
+
cellspacing?: Numberish;
|
|
672
|
+
summary?: string;
|
|
806
673
|
}
|
|
807
|
-
|
|
808
674
|
export interface TextareaHTMLAttributes extends HTMLAttributes {
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
675
|
+
autocomplete?: string;
|
|
676
|
+
autofocus?: Booleanish;
|
|
677
|
+
cols?: Numberish;
|
|
678
|
+
dirname?: string;
|
|
679
|
+
disabled?: Booleanish;
|
|
680
|
+
form?: string;
|
|
681
|
+
maxlength?: Numberish;
|
|
682
|
+
minlength?: Numberish;
|
|
683
|
+
name?: string;
|
|
684
|
+
placeholder?: string;
|
|
685
|
+
readonly?: boolean;
|
|
686
|
+
required?: Booleanish;
|
|
687
|
+
rows?: Numberish;
|
|
688
|
+
value?: string | string[] | number;
|
|
689
|
+
wrap?: string;
|
|
824
690
|
}
|
|
825
|
-
|
|
826
691
|
export interface TdHTMLAttributes extends HTMLAttributes {
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
692
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
693
|
+
colspan?: Numberish;
|
|
694
|
+
headers?: string;
|
|
695
|
+
rowspan?: Numberish;
|
|
696
|
+
scope?: string;
|
|
697
|
+
valign?: 'top' | 'middle' | 'bottom' | 'baseline';
|
|
833
698
|
}
|
|
834
|
-
|
|
835
699
|
export interface ThHTMLAttributes extends HTMLAttributes {
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
700
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
701
|
+
colspan?: Numberish;
|
|
702
|
+
headers?: string;
|
|
703
|
+
rowspan?: Numberish;
|
|
704
|
+
scope?: string;
|
|
841
705
|
}
|
|
842
|
-
|
|
843
706
|
export interface TimeHTMLAttributes extends HTMLAttributes {
|
|
844
|
-
|
|
707
|
+
datetime?: string;
|
|
845
708
|
}
|
|
846
|
-
|
|
847
709
|
export interface TrackHTMLAttributes extends HTMLAttributes {
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
710
|
+
default?: Booleanish;
|
|
711
|
+
kind?: string;
|
|
712
|
+
label?: string;
|
|
713
|
+
src?: string;
|
|
714
|
+
srclang?: string;
|
|
853
715
|
}
|
|
854
|
-
|
|
855
716
|
export interface VideoHTMLAttributes extends MediaHTMLAttributes {
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
717
|
+
height?: Numberish;
|
|
718
|
+
playsinline?: Booleanish;
|
|
719
|
+
poster?: string;
|
|
720
|
+
width?: Numberish;
|
|
721
|
+
disablePictureInPicture?: Booleanish;
|
|
861
722
|
}
|
|
862
|
-
|
|
863
723
|
export interface WebViewHTMLAttributes extends HTMLAttributes {
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
724
|
+
allowfullscreen?: Booleanish;
|
|
725
|
+
allowpopups?: Booleanish;
|
|
726
|
+
autoFocus?: Booleanish;
|
|
727
|
+
autosize?: Booleanish;
|
|
728
|
+
blinkfeatures?: string;
|
|
729
|
+
disableblinkfeatures?: string;
|
|
730
|
+
disableguestresize?: Booleanish;
|
|
731
|
+
disablewebsecurity?: Booleanish;
|
|
732
|
+
guestinstance?: string;
|
|
733
|
+
httpreferrer?: string;
|
|
734
|
+
nodeintegration?: Booleanish;
|
|
735
|
+
partition?: string;
|
|
736
|
+
plugins?: Booleanish;
|
|
737
|
+
preload?: string;
|
|
738
|
+
src?: string;
|
|
739
|
+
useragent?: string;
|
|
740
|
+
webpreferences?: string;
|
|
881
741
|
}
|
|
882
|
-
|
|
883
742
|
export interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
x1?: Numberish
|
|
1142
|
-
x2?: Numberish
|
|
1143
|
-
x?: Numberish
|
|
1144
|
-
xChannelSelector?: string
|
|
1145
|
-
'x-height'?: Numberish
|
|
1146
|
-
xlinkActuate?: string
|
|
1147
|
-
xlinkArcrole?: string
|
|
1148
|
-
xlinkHref?: string
|
|
1149
|
-
xlinkRole?: string
|
|
1150
|
-
xlinkShow?: string
|
|
1151
|
-
xlinkTitle?: string
|
|
1152
|
-
xlinkType?: string
|
|
1153
|
-
xmlns?: string
|
|
1154
|
-
y1?: Numberish
|
|
1155
|
-
y2?: Numberish
|
|
1156
|
-
y?: Numberish
|
|
1157
|
-
yChannelSelector?: string
|
|
1158
|
-
z?: Numberish
|
|
1159
|
-
zoomAndPan?: string
|
|
743
|
+
innerHTML?: string;
|
|
744
|
+
/**
|
|
745
|
+
* SVG Styling Attributes
|
|
746
|
+
* @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
|
|
747
|
+
*/
|
|
748
|
+
class?: any;
|
|
749
|
+
style?: string | CSSProperties;
|
|
750
|
+
color?: string;
|
|
751
|
+
height?: Numberish;
|
|
752
|
+
id?: string;
|
|
753
|
+
lang?: string;
|
|
754
|
+
max?: Numberish;
|
|
755
|
+
media?: string;
|
|
756
|
+
method?: string;
|
|
757
|
+
min?: Numberish;
|
|
758
|
+
name?: string;
|
|
759
|
+
target?: string;
|
|
760
|
+
type?: string;
|
|
761
|
+
width?: Numberish;
|
|
762
|
+
role?: string;
|
|
763
|
+
tabindex?: Numberish;
|
|
764
|
+
'accent-height'?: Numberish;
|
|
765
|
+
accumulate?: 'none' | 'sum';
|
|
766
|
+
additive?: 'replace' | 'sum';
|
|
767
|
+
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
768
|
+
allowReorder?: 'no' | 'yes';
|
|
769
|
+
alphabetic?: Numberish;
|
|
770
|
+
amplitude?: Numberish;
|
|
771
|
+
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
772
|
+
ascent?: Numberish;
|
|
773
|
+
attributeName?: string;
|
|
774
|
+
attributeType?: string;
|
|
775
|
+
autoReverse?: Numberish;
|
|
776
|
+
azimuth?: Numberish;
|
|
777
|
+
baseFrequency?: Numberish;
|
|
778
|
+
'baseline-shift'?: Numberish;
|
|
779
|
+
baseProfile?: Numberish;
|
|
780
|
+
bbox?: Numberish;
|
|
781
|
+
begin?: Numberish;
|
|
782
|
+
bias?: Numberish;
|
|
783
|
+
by?: Numberish;
|
|
784
|
+
calcMode?: Numberish;
|
|
785
|
+
'cap-height'?: Numberish;
|
|
786
|
+
clip?: Numberish;
|
|
787
|
+
'clip-path'?: string;
|
|
788
|
+
clipPathUnits?: Numberish;
|
|
789
|
+
'clip-rule'?: Numberish;
|
|
790
|
+
'color-interpolation'?: Numberish;
|
|
791
|
+
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
792
|
+
'color-profile'?: Numberish;
|
|
793
|
+
'color-rendering'?: Numberish;
|
|
794
|
+
contentScriptType?: Numberish;
|
|
795
|
+
contentStyleType?: Numberish;
|
|
796
|
+
cursor?: Numberish;
|
|
797
|
+
cx?: Numberish;
|
|
798
|
+
cy?: Numberish;
|
|
799
|
+
d?: string;
|
|
800
|
+
decelerate?: Numberish;
|
|
801
|
+
descent?: Numberish;
|
|
802
|
+
diffuseConstant?: Numberish;
|
|
803
|
+
direction?: Numberish;
|
|
804
|
+
display?: Numberish;
|
|
805
|
+
divisor?: Numberish;
|
|
806
|
+
'dominant-baseline'?: Numberish;
|
|
807
|
+
dur?: Numberish;
|
|
808
|
+
dx?: Numberish;
|
|
809
|
+
dy?: Numberish;
|
|
810
|
+
edgeMode?: Numberish;
|
|
811
|
+
elevation?: Numberish;
|
|
812
|
+
'enable-background'?: Numberish;
|
|
813
|
+
end?: Numberish;
|
|
814
|
+
exponent?: Numberish;
|
|
815
|
+
externalResourcesRequired?: Numberish;
|
|
816
|
+
fill?: string;
|
|
817
|
+
'fill-opacity'?: Numberish;
|
|
818
|
+
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
819
|
+
filter?: string;
|
|
820
|
+
filterRes?: Numberish;
|
|
821
|
+
filterUnits?: Numberish;
|
|
822
|
+
'flood-color'?: Numberish;
|
|
823
|
+
'flood-opacity'?: Numberish;
|
|
824
|
+
focusable?: Numberish;
|
|
825
|
+
'font-family'?: string;
|
|
826
|
+
'font-size'?: Numberish;
|
|
827
|
+
'font-size-adjust'?: Numberish;
|
|
828
|
+
'font-stretch'?: Numberish;
|
|
829
|
+
'font-style'?: Numberish;
|
|
830
|
+
'font-variant'?: Numberish;
|
|
831
|
+
'font-weight'?: Numberish;
|
|
832
|
+
format?: Numberish;
|
|
833
|
+
from?: Numberish;
|
|
834
|
+
fx?: Numberish;
|
|
835
|
+
fy?: Numberish;
|
|
836
|
+
g1?: Numberish;
|
|
837
|
+
g2?: Numberish;
|
|
838
|
+
'glyph-name'?: Numberish;
|
|
839
|
+
'glyph-orientation-horizontal'?: Numberish;
|
|
840
|
+
'glyph-orientation-vertical'?: Numberish;
|
|
841
|
+
glyphRef?: Numberish;
|
|
842
|
+
gradientTransform?: string;
|
|
843
|
+
gradientUnits?: string;
|
|
844
|
+
hanging?: Numberish;
|
|
845
|
+
'horiz-adv-x'?: Numberish;
|
|
846
|
+
'horiz-origin-x'?: Numberish;
|
|
847
|
+
href?: string;
|
|
848
|
+
ideographic?: Numberish;
|
|
849
|
+
'image-rendering'?: Numberish;
|
|
850
|
+
in2?: Numberish;
|
|
851
|
+
in?: string;
|
|
852
|
+
intercept?: Numberish;
|
|
853
|
+
k1?: Numberish;
|
|
854
|
+
k2?: Numberish;
|
|
855
|
+
k3?: Numberish;
|
|
856
|
+
k4?: Numberish;
|
|
857
|
+
k?: Numberish;
|
|
858
|
+
kernelMatrix?: Numberish;
|
|
859
|
+
kernelUnitLength?: Numberish;
|
|
860
|
+
kerning?: Numberish;
|
|
861
|
+
keyPoints?: Numberish;
|
|
862
|
+
keySplines?: Numberish;
|
|
863
|
+
keyTimes?: Numberish;
|
|
864
|
+
lengthAdjust?: Numberish;
|
|
865
|
+
'letter-spacing'?: Numberish;
|
|
866
|
+
'lighting-color'?: Numberish;
|
|
867
|
+
limitingConeAngle?: Numberish;
|
|
868
|
+
local?: Numberish;
|
|
869
|
+
'marker-end'?: string;
|
|
870
|
+
markerHeight?: Numberish;
|
|
871
|
+
'marker-mid'?: string;
|
|
872
|
+
'marker-start'?: string;
|
|
873
|
+
markerUnits?: Numberish;
|
|
874
|
+
markerWidth?: Numberish;
|
|
875
|
+
mask?: string;
|
|
876
|
+
maskContentUnits?: Numberish;
|
|
877
|
+
maskUnits?: Numberish;
|
|
878
|
+
mathematical?: Numberish;
|
|
879
|
+
mode?: Numberish;
|
|
880
|
+
numOctaves?: Numberish;
|
|
881
|
+
offset?: Numberish;
|
|
882
|
+
opacity?: Numberish;
|
|
883
|
+
operator?: Numberish;
|
|
884
|
+
order?: Numberish;
|
|
885
|
+
orient?: Numberish;
|
|
886
|
+
orientation?: Numberish;
|
|
887
|
+
origin?: Numberish;
|
|
888
|
+
overflow?: Numberish;
|
|
889
|
+
'overline-position'?: Numberish;
|
|
890
|
+
'overline-thickness'?: Numberish;
|
|
891
|
+
'paint-order'?: Numberish;
|
|
892
|
+
'panose-1'?: Numberish;
|
|
893
|
+
pathLength?: Numberish;
|
|
894
|
+
patternContentUnits?: string;
|
|
895
|
+
patternTransform?: Numberish;
|
|
896
|
+
patternUnits?: string;
|
|
897
|
+
'pointer-events'?: Numberish;
|
|
898
|
+
points?: string;
|
|
899
|
+
pointsAtX?: Numberish;
|
|
900
|
+
pointsAtY?: Numberish;
|
|
901
|
+
pointsAtZ?: Numberish;
|
|
902
|
+
preserveAlpha?: Numberish;
|
|
903
|
+
preserveAspectRatio?: string;
|
|
904
|
+
primitiveUnits?: Numberish;
|
|
905
|
+
r?: Numberish;
|
|
906
|
+
radius?: Numberish;
|
|
907
|
+
refX?: Numberish;
|
|
908
|
+
refY?: Numberish;
|
|
909
|
+
renderingIntent?: Numberish;
|
|
910
|
+
repeatCount?: Numberish;
|
|
911
|
+
repeatDur?: Numberish;
|
|
912
|
+
requiredExtensions?: Numberish;
|
|
913
|
+
requiredFeatures?: Numberish;
|
|
914
|
+
restart?: Numberish;
|
|
915
|
+
result?: string;
|
|
916
|
+
rotate?: Numberish;
|
|
917
|
+
rx?: Numberish;
|
|
918
|
+
ry?: Numberish;
|
|
919
|
+
scale?: Numberish;
|
|
920
|
+
seed?: Numberish;
|
|
921
|
+
'shape-rendering'?: Numberish;
|
|
922
|
+
slope?: Numberish;
|
|
923
|
+
spacing?: Numberish;
|
|
924
|
+
specularConstant?: Numberish;
|
|
925
|
+
specularExponent?: Numberish;
|
|
926
|
+
speed?: Numberish;
|
|
927
|
+
spreadMethod?: string;
|
|
928
|
+
startOffset?: Numberish;
|
|
929
|
+
stdDeviation?: Numberish;
|
|
930
|
+
stemh?: Numberish;
|
|
931
|
+
stemv?: Numberish;
|
|
932
|
+
stitchTiles?: Numberish;
|
|
933
|
+
'stop-color'?: string;
|
|
934
|
+
'stop-opacity'?: Numberish;
|
|
935
|
+
'strikethrough-position'?: Numberish;
|
|
936
|
+
'strikethrough-thickness'?: Numberish;
|
|
937
|
+
string?: Numberish;
|
|
938
|
+
stroke?: string;
|
|
939
|
+
'stroke-dasharray'?: Numberish;
|
|
940
|
+
'stroke-dashoffset'?: Numberish;
|
|
941
|
+
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
942
|
+
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
943
|
+
'stroke-miterlimit'?: Numberish;
|
|
944
|
+
'stroke-opacity'?: Numberish;
|
|
945
|
+
'stroke-width'?: Numberish;
|
|
946
|
+
surfaceScale?: Numberish;
|
|
947
|
+
systemLanguage?: Numberish;
|
|
948
|
+
tableValues?: Numberish;
|
|
949
|
+
targetX?: Numberish;
|
|
950
|
+
targetY?: Numberish;
|
|
951
|
+
'text-anchor'?: string;
|
|
952
|
+
'text-decoration'?: Numberish;
|
|
953
|
+
textLength?: Numberish;
|
|
954
|
+
'text-rendering'?: Numberish;
|
|
955
|
+
to?: Numberish;
|
|
956
|
+
transform?: string;
|
|
957
|
+
u1?: Numberish;
|
|
958
|
+
u2?: Numberish;
|
|
959
|
+
'underline-position'?: Numberish;
|
|
960
|
+
'underline-thickness'?: Numberish;
|
|
961
|
+
unicode?: Numberish;
|
|
962
|
+
'unicode-bidi'?: Numberish;
|
|
963
|
+
'unicode-range'?: Numberish;
|
|
964
|
+
'unitsPer-em'?: Numberish;
|
|
965
|
+
'v-alphabetic'?: Numberish;
|
|
966
|
+
values?: string;
|
|
967
|
+
'vector-effect'?: Numberish;
|
|
968
|
+
version?: string;
|
|
969
|
+
'vert-adv-y'?: Numberish;
|
|
970
|
+
'vert-origin-x'?: Numberish;
|
|
971
|
+
'vert-origin-y'?: Numberish;
|
|
972
|
+
'v-hanging'?: Numberish;
|
|
973
|
+
'v-ideographic'?: Numberish;
|
|
974
|
+
viewBox?: string;
|
|
975
|
+
viewTarget?: Numberish;
|
|
976
|
+
visibility?: Numberish;
|
|
977
|
+
'v-mathematical'?: Numberish;
|
|
978
|
+
widths?: Numberish;
|
|
979
|
+
'word-spacing'?: Numberish;
|
|
980
|
+
'writing-mode'?: Numberish;
|
|
981
|
+
x1?: Numberish;
|
|
982
|
+
x2?: Numberish;
|
|
983
|
+
x?: Numberish;
|
|
984
|
+
xChannelSelector?: string;
|
|
985
|
+
'x-height'?: Numberish;
|
|
986
|
+
xlinkActuate?: string;
|
|
987
|
+
xlinkArcrole?: string;
|
|
988
|
+
xlinkHref?: string;
|
|
989
|
+
xlinkRole?: string;
|
|
990
|
+
xlinkShow?: string;
|
|
991
|
+
xlinkTitle?: string;
|
|
992
|
+
xlinkType?: string;
|
|
993
|
+
xmlns?: string;
|
|
994
|
+
y1?: Numberish;
|
|
995
|
+
y2?: Numberish;
|
|
996
|
+
y?: Numberish;
|
|
997
|
+
yChannelSelector?: string;
|
|
998
|
+
z?: Numberish;
|
|
999
|
+
zoomAndPan?: string;
|
|
1160
1000
|
}
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
textPath: SVGAttributes
|
|
1335
|
-
tspan: SVGAttributes
|
|
1336
|
-
use: SVGAttributes
|
|
1337
|
-
view: SVGAttributes
|
|
1001
|
+
export interface IntrinsicElementAttributes {
|
|
1002
|
+
a: AnchorHTMLAttributes;
|
|
1003
|
+
abbr: HTMLAttributes;
|
|
1004
|
+
address: HTMLAttributes;
|
|
1005
|
+
area: AreaHTMLAttributes;
|
|
1006
|
+
article: HTMLAttributes;
|
|
1007
|
+
aside: HTMLAttributes;
|
|
1008
|
+
audio: AudioHTMLAttributes;
|
|
1009
|
+
b: HTMLAttributes;
|
|
1010
|
+
base: BaseHTMLAttributes;
|
|
1011
|
+
bdi: HTMLAttributes;
|
|
1012
|
+
bdo: HTMLAttributes;
|
|
1013
|
+
blockquote: BlockquoteHTMLAttributes;
|
|
1014
|
+
body: HTMLAttributes;
|
|
1015
|
+
br: HTMLAttributes;
|
|
1016
|
+
button: ButtonHTMLAttributes;
|
|
1017
|
+
canvas: CanvasHTMLAttributes;
|
|
1018
|
+
caption: HTMLAttributes;
|
|
1019
|
+
cite: HTMLAttributes;
|
|
1020
|
+
code: HTMLAttributes;
|
|
1021
|
+
col: ColHTMLAttributes;
|
|
1022
|
+
colgroup: ColgroupHTMLAttributes;
|
|
1023
|
+
data: DataHTMLAttributes;
|
|
1024
|
+
datalist: HTMLAttributes;
|
|
1025
|
+
dd: HTMLAttributes;
|
|
1026
|
+
del: DelHTMLAttributes;
|
|
1027
|
+
details: DetailsHTMLAttributes;
|
|
1028
|
+
dfn: HTMLAttributes;
|
|
1029
|
+
dialog: DialogHTMLAttributes;
|
|
1030
|
+
div: HTMLAttributes;
|
|
1031
|
+
dl: HTMLAttributes;
|
|
1032
|
+
dt: HTMLAttributes;
|
|
1033
|
+
em: HTMLAttributes;
|
|
1034
|
+
embed: EmbedHTMLAttributes;
|
|
1035
|
+
fieldset: FieldsetHTMLAttributes;
|
|
1036
|
+
figcaption: HTMLAttributes;
|
|
1037
|
+
figure: HTMLAttributes;
|
|
1038
|
+
footer: HTMLAttributes;
|
|
1039
|
+
form: FormHTMLAttributes;
|
|
1040
|
+
h1: HTMLAttributes;
|
|
1041
|
+
h2: HTMLAttributes;
|
|
1042
|
+
h3: HTMLAttributes;
|
|
1043
|
+
h4: HTMLAttributes;
|
|
1044
|
+
h5: HTMLAttributes;
|
|
1045
|
+
h6: HTMLAttributes;
|
|
1046
|
+
head: HTMLAttributes;
|
|
1047
|
+
header: HTMLAttributes;
|
|
1048
|
+
hgroup: HTMLAttributes;
|
|
1049
|
+
hr: HTMLAttributes;
|
|
1050
|
+
html: HtmlHTMLAttributes;
|
|
1051
|
+
i: HTMLAttributes;
|
|
1052
|
+
iframe: IframeHTMLAttributes;
|
|
1053
|
+
img: ImgHTMLAttributes;
|
|
1054
|
+
input: InputHTMLAttributes;
|
|
1055
|
+
ins: InsHTMLAttributes;
|
|
1056
|
+
kbd: HTMLAttributes;
|
|
1057
|
+
keygen: KeygenHTMLAttributes;
|
|
1058
|
+
label: LabelHTMLAttributes;
|
|
1059
|
+
legend: HTMLAttributes;
|
|
1060
|
+
li: LiHTMLAttributes;
|
|
1061
|
+
link: LinkHTMLAttributes;
|
|
1062
|
+
main: HTMLAttributes;
|
|
1063
|
+
map: MapHTMLAttributes;
|
|
1064
|
+
mark: HTMLAttributes;
|
|
1065
|
+
menu: MenuHTMLAttributes;
|
|
1066
|
+
meta: MetaHTMLAttributes;
|
|
1067
|
+
meter: MeterHTMLAttributes;
|
|
1068
|
+
nav: HTMLAttributes;
|
|
1069
|
+
noindex: HTMLAttributes;
|
|
1070
|
+
noscript: HTMLAttributes;
|
|
1071
|
+
object: ObjectHTMLAttributes;
|
|
1072
|
+
ol: OlHTMLAttributes;
|
|
1073
|
+
optgroup: OptgroupHTMLAttributes;
|
|
1074
|
+
option: OptionHTMLAttributes;
|
|
1075
|
+
output: OutputHTMLAttributes;
|
|
1076
|
+
p: HTMLAttributes;
|
|
1077
|
+
param: ParamHTMLAttributes;
|
|
1078
|
+
picture: HTMLAttributes;
|
|
1079
|
+
pre: HTMLAttributes;
|
|
1080
|
+
progress: ProgressHTMLAttributes;
|
|
1081
|
+
q: QuoteHTMLAttributes;
|
|
1082
|
+
rp: HTMLAttributes;
|
|
1083
|
+
rt: HTMLAttributes;
|
|
1084
|
+
ruby: HTMLAttributes;
|
|
1085
|
+
s: HTMLAttributes;
|
|
1086
|
+
samp: HTMLAttributes;
|
|
1087
|
+
script: ScriptHTMLAttributes;
|
|
1088
|
+
section: HTMLAttributes;
|
|
1089
|
+
select: SelectHTMLAttributes;
|
|
1090
|
+
small: HTMLAttributes;
|
|
1091
|
+
source: SourceHTMLAttributes;
|
|
1092
|
+
span: HTMLAttributes;
|
|
1093
|
+
strong: HTMLAttributes;
|
|
1094
|
+
style: StyleHTMLAttributes;
|
|
1095
|
+
sub: HTMLAttributes;
|
|
1096
|
+
summary: HTMLAttributes;
|
|
1097
|
+
sup: HTMLAttributes;
|
|
1098
|
+
table: TableHTMLAttributes;
|
|
1099
|
+
template: HTMLAttributes;
|
|
1100
|
+
tbody: HTMLAttributes;
|
|
1101
|
+
td: TdHTMLAttributes;
|
|
1102
|
+
textarea: TextareaHTMLAttributes;
|
|
1103
|
+
tfoot: HTMLAttributes;
|
|
1104
|
+
th: ThHTMLAttributes;
|
|
1105
|
+
thead: HTMLAttributes;
|
|
1106
|
+
time: TimeHTMLAttributes;
|
|
1107
|
+
title: HTMLAttributes;
|
|
1108
|
+
tr: HTMLAttributes;
|
|
1109
|
+
track: TrackHTMLAttributes;
|
|
1110
|
+
u: HTMLAttributes;
|
|
1111
|
+
ul: HTMLAttributes;
|
|
1112
|
+
var: HTMLAttributes;
|
|
1113
|
+
video: VideoHTMLAttributes;
|
|
1114
|
+
wbr: HTMLAttributes;
|
|
1115
|
+
webview: WebViewHTMLAttributes;
|
|
1116
|
+
svg: SVGAttributes;
|
|
1117
|
+
animate: SVGAttributes;
|
|
1118
|
+
animateMotion: SVGAttributes;
|
|
1119
|
+
animateTransform: SVGAttributes;
|
|
1120
|
+
circle: SVGAttributes;
|
|
1121
|
+
clipPath: SVGAttributes;
|
|
1122
|
+
defs: SVGAttributes;
|
|
1123
|
+
desc: SVGAttributes;
|
|
1124
|
+
ellipse: SVGAttributes;
|
|
1125
|
+
feBlend: SVGAttributes;
|
|
1126
|
+
feColorMatrix: SVGAttributes;
|
|
1127
|
+
feComponentTransfer: SVGAttributes;
|
|
1128
|
+
feComposite: SVGAttributes;
|
|
1129
|
+
feConvolveMatrix: SVGAttributes;
|
|
1130
|
+
feDiffuseLighting: SVGAttributes;
|
|
1131
|
+
feDisplacementMap: SVGAttributes;
|
|
1132
|
+
feDistantLight: SVGAttributes;
|
|
1133
|
+
feDropShadow: SVGAttributes;
|
|
1134
|
+
feFlood: SVGAttributes;
|
|
1135
|
+
feFuncA: SVGAttributes;
|
|
1136
|
+
feFuncB: SVGAttributes;
|
|
1137
|
+
feFuncG: SVGAttributes;
|
|
1138
|
+
feFuncR: SVGAttributes;
|
|
1139
|
+
feGaussianBlur: SVGAttributes;
|
|
1140
|
+
feImage: SVGAttributes;
|
|
1141
|
+
feMerge: SVGAttributes;
|
|
1142
|
+
feMergeNode: SVGAttributes;
|
|
1143
|
+
feMorphology: SVGAttributes;
|
|
1144
|
+
feOffset: SVGAttributes;
|
|
1145
|
+
fePointLight: SVGAttributes;
|
|
1146
|
+
feSpecularLighting: SVGAttributes;
|
|
1147
|
+
feSpotLight: SVGAttributes;
|
|
1148
|
+
feTile: SVGAttributes;
|
|
1149
|
+
feTurbulence: SVGAttributes;
|
|
1150
|
+
filter: SVGAttributes;
|
|
1151
|
+
foreignObject: SVGAttributes;
|
|
1152
|
+
g: SVGAttributes;
|
|
1153
|
+
image: SVGAttributes;
|
|
1154
|
+
line: SVGAttributes;
|
|
1155
|
+
linearGradient: SVGAttributes;
|
|
1156
|
+
marker: SVGAttributes;
|
|
1157
|
+
mask: SVGAttributes;
|
|
1158
|
+
metadata: SVGAttributes;
|
|
1159
|
+
mpath: SVGAttributes;
|
|
1160
|
+
path: SVGAttributes;
|
|
1161
|
+
pattern: SVGAttributes;
|
|
1162
|
+
polygon: SVGAttributes;
|
|
1163
|
+
polyline: SVGAttributes;
|
|
1164
|
+
radialGradient: SVGAttributes;
|
|
1165
|
+
rect: SVGAttributes;
|
|
1166
|
+
stop: SVGAttributes;
|
|
1167
|
+
switch: SVGAttributes;
|
|
1168
|
+
symbol: SVGAttributes;
|
|
1169
|
+
text: SVGAttributes;
|
|
1170
|
+
textPath: SVGAttributes;
|
|
1171
|
+
tspan: SVGAttributes;
|
|
1172
|
+
use: SVGAttributes;
|
|
1173
|
+
view: SVGAttributes;
|
|
1338
1174
|
}
|
|
1339
|
-
|
|
1340
1175
|
export interface Events {
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
// UI events
|
|
1425
|
-
onScroll: UIEvent
|
|
1426
|
-
|
|
1427
|
-
// touch events
|
|
1428
|
-
onTouchcancel: TouchEvent
|
|
1429
|
-
onTouchend: TouchEvent
|
|
1430
|
-
onTouchmove: TouchEvent
|
|
1431
|
-
onTouchstart: TouchEvent
|
|
1432
|
-
|
|
1433
|
-
// pointer events
|
|
1434
|
-
onPointerdown: PointerEvent
|
|
1435
|
-
onPointermove: PointerEvent
|
|
1436
|
-
onPointerup: PointerEvent
|
|
1437
|
-
onPointercancel: PointerEvent
|
|
1438
|
-
onPointerenter: PointerEvent
|
|
1439
|
-
onPointerleave: PointerEvent
|
|
1440
|
-
onPointerover: PointerEvent
|
|
1441
|
-
onPointerout: PointerEvent
|
|
1442
|
-
|
|
1443
|
-
// wheel events
|
|
1444
|
-
onWheel: WheelEvent
|
|
1445
|
-
|
|
1446
|
-
// animation events
|
|
1447
|
-
onAnimationstart: AnimationEvent
|
|
1448
|
-
onAnimationend: AnimationEvent
|
|
1449
|
-
onAnimationiteration: AnimationEvent
|
|
1450
|
-
|
|
1451
|
-
// transition events
|
|
1452
|
-
onTransitionend: TransitionEvent
|
|
1453
|
-
onTransitionstart: TransitionEvent
|
|
1176
|
+
onCopy: ClipboardEvent;
|
|
1177
|
+
onCut: ClipboardEvent;
|
|
1178
|
+
onPaste: ClipboardEvent;
|
|
1179
|
+
onCompositionend: CompositionEvent;
|
|
1180
|
+
onCompositionstart: CompositionEvent;
|
|
1181
|
+
onCompositionupdate: CompositionEvent;
|
|
1182
|
+
onDrag: DragEvent;
|
|
1183
|
+
onDragend: DragEvent;
|
|
1184
|
+
onDragenter: DragEvent;
|
|
1185
|
+
onDragexit: DragEvent;
|
|
1186
|
+
onDragleave: DragEvent;
|
|
1187
|
+
onDragover: DragEvent;
|
|
1188
|
+
onDragstart: DragEvent;
|
|
1189
|
+
onDrop: DragEvent;
|
|
1190
|
+
onFocus: FocusEvent;
|
|
1191
|
+
onFocusin: FocusEvent;
|
|
1192
|
+
onFocusout: FocusEvent;
|
|
1193
|
+
onBlur: FocusEvent;
|
|
1194
|
+
onChange: Event;
|
|
1195
|
+
onBeforeinput: Event;
|
|
1196
|
+
onInput: Event;
|
|
1197
|
+
onReset: Event;
|
|
1198
|
+
onSubmit: Event;
|
|
1199
|
+
onInvalid: Event;
|
|
1200
|
+
onLoad: Event;
|
|
1201
|
+
onError: Event;
|
|
1202
|
+
onKeydown: KeyboardEvent;
|
|
1203
|
+
onKeypress: KeyboardEvent;
|
|
1204
|
+
onKeyup: KeyboardEvent;
|
|
1205
|
+
onAuxclick: MouseEvent;
|
|
1206
|
+
onClick: MouseEvent;
|
|
1207
|
+
onContextmenu: MouseEvent;
|
|
1208
|
+
onDblclick: MouseEvent;
|
|
1209
|
+
onMousedown: MouseEvent;
|
|
1210
|
+
onMouseenter: MouseEvent;
|
|
1211
|
+
onMouseleave: MouseEvent;
|
|
1212
|
+
onMousemove: MouseEvent;
|
|
1213
|
+
onMouseout: MouseEvent;
|
|
1214
|
+
onMouseover: MouseEvent;
|
|
1215
|
+
onMouseup: MouseEvent;
|
|
1216
|
+
onAbort: Event;
|
|
1217
|
+
onCanplay: Event;
|
|
1218
|
+
onCanplaythrough: Event;
|
|
1219
|
+
onDurationchange: Event;
|
|
1220
|
+
onEmptied: Event;
|
|
1221
|
+
onEncrypted: Event;
|
|
1222
|
+
onEnded: Event;
|
|
1223
|
+
onLoadeddata: Event;
|
|
1224
|
+
onLoadedmetadata: Event;
|
|
1225
|
+
onLoadstart: Event;
|
|
1226
|
+
onPause: Event;
|
|
1227
|
+
onPlay: Event;
|
|
1228
|
+
onPlaying: Event;
|
|
1229
|
+
onProgress: Event;
|
|
1230
|
+
onRatechange: Event;
|
|
1231
|
+
onSeeked: Event;
|
|
1232
|
+
onSeeking: Event;
|
|
1233
|
+
onStalled: Event;
|
|
1234
|
+
onSuspend: Event;
|
|
1235
|
+
onTimeupdate: Event;
|
|
1236
|
+
onVolumechange: Event;
|
|
1237
|
+
onWaiting: Event;
|
|
1238
|
+
onSelect: Event;
|
|
1239
|
+
onScroll: UIEvent;
|
|
1240
|
+
onTouchcancel: TouchEvent;
|
|
1241
|
+
onTouchend: TouchEvent;
|
|
1242
|
+
onTouchmove: TouchEvent;
|
|
1243
|
+
onTouchstart: TouchEvent;
|
|
1244
|
+
onPointerdown: PointerEvent;
|
|
1245
|
+
onPointermove: PointerEvent;
|
|
1246
|
+
onPointerup: PointerEvent;
|
|
1247
|
+
onPointercancel: PointerEvent;
|
|
1248
|
+
onPointerenter: PointerEvent;
|
|
1249
|
+
onPointerleave: PointerEvent;
|
|
1250
|
+
onPointerover: PointerEvent;
|
|
1251
|
+
onPointerout: PointerEvent;
|
|
1252
|
+
onWheel: WheelEvent;
|
|
1253
|
+
onAnimationstart: AnimationEvent;
|
|
1254
|
+
onAnimationend: AnimationEvent;
|
|
1255
|
+
onAnimationiteration: AnimationEvent;
|
|
1256
|
+
onTransitionend: TransitionEvent;
|
|
1257
|
+
onTransitionstart: TransitionEvent;
|
|
1454
1258
|
}
|
|
1455
|
-
|
|
1456
1259
|
type EventHandlers<E> = {
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
: (payload: E[K]) => void
|
|
1460
|
-
}
|
|
1260
|
+
[K in keyof E]?: E[K] extends (...args: any) => any ? E[K] : (payload: E[K]) => void;
|
|
1261
|
+
};
|
|
1461
1262
|
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1263
|
+
export type ReservedProps = {
|
|
1264
|
+
key?: string | number | symbol;
|
|
1265
|
+
ref?: VNodeRef;
|
|
1266
|
+
ref_for?: boolean;
|
|
1267
|
+
ref_key?: string;
|
|
1268
|
+
};
|
|
1269
|
+
export type NativeElements = {
|
|
1270
|
+
[K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps;
|
|
1271
|
+
};
|
|
1465
1272
|
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
ref_key?: string
|
|
1273
|
+
declare module '@vue/reactivity' {
|
|
1274
|
+
interface RefUnwrapBailTypes {
|
|
1275
|
+
runtimeDOMBailTypes: Node | Window;
|
|
1276
|
+
}
|
|
1471
1277
|
}
|
|
1278
|
+
export declare const render: RootRenderFunction<Element | ShadowRoot>;
|
|
1279
|
+
export declare const hydrate: RootHydrateFunction;
|
|
1280
|
+
export declare const createApp: CreateAppFunction<Element>;
|
|
1281
|
+
export declare const createSSRApp: CreateAppFunction<Element>;
|
|
1472
1282
|
|
|
1473
|
-
type ElementAttrs<T> = T & ReservedProps
|
|
1474
1283
|
|
|
1475
|
-
type NativeElements = {
|
|
1476
|
-
[K in keyof IntrinsicElementAttributes]: ElementAttrs<
|
|
1477
|
-
IntrinsicElementAttributes[K]
|
|
1478
|
-
>
|
|
1479
|
-
}
|
|
1480
|
-
|
|
1481
|
-
declare global {
|
|
1482
|
-
namespace JSX {
|
|
1483
|
-
interface Element extends VNode {}
|
|
1484
|
-
interface ElementClass {
|
|
1485
|
-
$props: {}
|
|
1486
|
-
}
|
|
1487
|
-
interface ElementAttributesProperty {
|
|
1488
|
-
$props: {}
|
|
1489
|
-
}
|
|
1490
|
-
interface IntrinsicElements extends NativeElements {
|
|
1491
|
-
// allow arbitrary elements
|
|
1492
|
-
// @ts-ignore suppress ts:2374 = Duplicate string index signature.
|
|
1493
|
-
[name: string]: any
|
|
1494
|
-
}
|
|
1495
|
-
interface IntrinsicAttributes extends ReservedProps {}
|
|
1496
|
-
}
|
|
1497
|
-
}
|
|
1498
1284
|
|
|
1499
|
-
// suppress ts:2669
|
|
1500
|
-
export {}
|