@vue/runtime-dom 3.6.0-alpha.2 → 3.6.0-alpha.4
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 +280 -174
- package/dist/runtime-dom.cjs.prod.js +258 -152
- package/dist/runtime-dom.d.ts +709 -670
- package/dist/runtime-dom.esm-browser.js +989 -621
- package/dist/runtime-dom.esm-browser.prod.js +4 -3
- package/dist/runtime-dom.esm-bundler.js +280 -177
- package/dist/runtime-dom.global.js +989 -617
- package/dist/runtime-dom.global.prod.js +4 -3
- package/package.json +4 -4
package/dist/runtime-dom.d.ts
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
|
-
import { BaseTransitionProps, FunctionalComponent, ObjectDirective, Directive, SetupContext, RenderFunction, ComponentOptions, App,
|
|
1
|
+
import { RendererOptions, BaseTransitionProps, FunctionalComponent, ObjectDirective, Directive, SetupContext, RenderFunction, ComponentOptions, App, Component, ConcreteComponent, ComponentCustomElementInterface, CreateAppFunction, ComponentObjectPropsOptions, EmitsOptions, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentInjectOptions, SlotsType, ComponentProvideOptions, ExtractPropTypes, EmitsToProps, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ComponentPublicInstance, DefineComponent, VNodeRef, RootRenderFunction, RootHydrateFunction } from '@vue/runtime-core';
|
|
2
2
|
export * from '@vue/runtime-core';
|
|
3
3
|
import * as CSS from 'csstype';
|
|
4
4
|
|
|
5
|
+
export declare const nodeOps: Omit<RendererOptions<Node, Element>, 'patchProp'>;
|
|
6
|
+
|
|
7
|
+
type DOMRendererOptions = RendererOptions<Node, Element>;
|
|
8
|
+
export declare const patchProp: DOMRendererOptions['patchProp'];
|
|
9
|
+
|
|
5
10
|
declare const TRANSITION = "transition";
|
|
6
11
|
declare const ANIMATION = "animation";
|
|
7
12
|
type AnimationTypes = typeof TRANSITION | typeof ANIMATION;
|
|
@@ -46,7 +51,7 @@ interface VShowElement extends HTMLElement {
|
|
|
46
51
|
[vShowHidden]?: boolean;
|
|
47
52
|
}
|
|
48
53
|
export declare const vShow: ObjectDirective<VShowElement> & {
|
|
49
|
-
name
|
|
54
|
+
name: 'show';
|
|
50
55
|
};
|
|
51
56
|
|
|
52
57
|
declare const systemModifiers: readonly ["ctrl", "shift", "alt", "meta"];
|
|
@@ -92,6 +97,7 @@ export type VueElementConstructor<P = {}> = {
|
|
|
92
97
|
export interface CustomElementOptions {
|
|
93
98
|
styles?: string[];
|
|
94
99
|
shadowRoot?: boolean;
|
|
100
|
+
shadowRootOptions?: Omit<ShadowRootInit, 'mode'>;
|
|
95
101
|
nonce?: string;
|
|
96
102
|
configureApp?: (app: App) => void;
|
|
97
103
|
}
|
|
@@ -110,55 +116,65 @@ InjectOptions, InjectKeys, Slots, LocalComponents, Directives, Exposed, Provide>
|
|
|
110
116
|
export declare function defineCustomElement<T extends {
|
|
111
117
|
new (...args: any[]): ComponentPublicInstance<any>;
|
|
112
118
|
}>(options: T, extraOptions?: CustomElementOptions): VueElementConstructor<T extends DefineComponent<infer P, any, any, any> ? P : unknown>;
|
|
113
|
-
/*! #__NO_SIDE_EFFECTS__ */
|
|
114
119
|
export declare const defineSSRCustomElement: typeof defineCustomElement;
|
|
115
120
|
declare const BaseClass: typeof HTMLElement;
|
|
116
121
|
type InnerComponentDef = ConcreteComponent & CustomElementOptions;
|
|
117
|
-
export declare class
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
* be overwritten by the inner component when resolved.
|
|
121
|
-
*/
|
|
122
|
-
private _def;
|
|
123
|
-
private _props;
|
|
124
|
-
private _createApp;
|
|
122
|
+
export declare abstract class VueElementBase<E = Element, C = Component, Def extends CustomElementOptions & {
|
|
123
|
+
props?: any;
|
|
124
|
+
} = InnerComponentDef> extends BaseClass implements ComponentCustomElementInterface {
|
|
125
125
|
_isVueCE: boolean;
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
126
|
+
protected _connected: boolean;
|
|
127
|
+
protected _resolved: boolean;
|
|
128
|
+
protected _numberProps: Record<string, true> | null;
|
|
129
|
+
protected _styleChildren: WeakSet<object>;
|
|
130
|
+
protected _pendingResolve: Promise<void> | undefined;
|
|
131
|
+
protected _parent: VueElementBase | undefined;
|
|
132
|
+
protected _patching: boolean;
|
|
133
|
+
protected _dirty: boolean;
|
|
134
|
+
protected _def: Def;
|
|
135
|
+
protected _props: Record<string, any>;
|
|
136
|
+
protected _createApp: CreateAppFunction<E, C>;
|
|
132
137
|
/**
|
|
133
138
|
* dev only
|
|
134
139
|
*/
|
|
135
|
-
|
|
140
|
+
protected _styles?: HTMLStyleElement[];
|
|
136
141
|
/**
|
|
137
142
|
* dev only
|
|
138
143
|
*/
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
144
|
+
protected _childStyles?: Map<string, HTMLStyleElement[]>;
|
|
145
|
+
protected _ob?: MutationObserver | null;
|
|
146
|
+
protected _slots?: Record<string, Node[]>;
|
|
147
|
+
/**
|
|
148
|
+
* Check if this custom element needs hydration.
|
|
149
|
+
* Returns true if it has a pre-rendered declarative shadow root that
|
|
150
|
+
* needs to be hydrated.
|
|
151
|
+
*/
|
|
152
|
+
protected abstract _needsHydration(): boolean;
|
|
153
|
+
protected abstract _mount(def: Def): void;
|
|
154
|
+
protected abstract _update(): void;
|
|
155
|
+
protected abstract _unmount(): void;
|
|
156
|
+
protected abstract _updateSlotNodes(slot: Map<Node, Node[]>): void;
|
|
142
157
|
constructor(
|
|
143
158
|
/**
|
|
144
159
|
* Component def - note this may be an AsyncWrapper, and this._def will
|
|
145
160
|
* be overwritten by the inner component when resolved.
|
|
146
161
|
*/
|
|
147
|
-
|
|
162
|
+
def: Def, props: Record<string, any> | undefined, createAppFn: CreateAppFunction<E, C>);
|
|
148
163
|
connectedCallback(): void;
|
|
149
|
-
private _setParent;
|
|
150
|
-
private _inheritParentContext;
|
|
151
164
|
disconnectedCallback(): void;
|
|
165
|
+
protected _setParent(parent?: VueElementBase | undefined): void;
|
|
166
|
+
protected _inheritParentContext(parent?: VueElementBase | undefined): void;
|
|
167
|
+
private _processMutations;
|
|
152
168
|
/**
|
|
153
169
|
* resolve inner component definition (handle possible async component)
|
|
154
170
|
*/
|
|
155
171
|
private _resolveDef;
|
|
156
|
-
private
|
|
172
|
+
private _mountComponent;
|
|
173
|
+
protected _processExposed(): void;
|
|
174
|
+
protected _processInstance(): void;
|
|
157
175
|
private _resolveProps;
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
private _createVNode;
|
|
161
|
-
private _applyStyles;
|
|
176
|
+
private _setAttr;
|
|
177
|
+
protected _applyStyles(styles: string[] | undefined, owner?: ConcreteComponent): void;
|
|
162
178
|
/**
|
|
163
179
|
* Only called when shadowRoot is false
|
|
164
180
|
*/
|
|
@@ -166,9 +182,21 @@ export declare class VueElement extends BaseClass implements ComponentCustomElem
|
|
|
166
182
|
/**
|
|
167
183
|
* Only called when shadowRoot is false
|
|
168
184
|
*/
|
|
169
|
-
|
|
185
|
+
protected _renderSlots(): void;
|
|
170
186
|
}
|
|
171
|
-
export declare
|
|
187
|
+
export declare class VueElement extends VueElementBase<Element, Component, InnerComponentDef> {
|
|
188
|
+
constructor(def: InnerComponentDef, props?: Record<string, any> | undefined, createAppFn?: CreateAppFunction<Element, Component>);
|
|
189
|
+
protected _needsHydration(): boolean;
|
|
190
|
+
protected _mount(def: InnerComponentDef): void;
|
|
191
|
+
protected _update(): void;
|
|
192
|
+
protected _unmount(): void;
|
|
193
|
+
/**
|
|
194
|
+
* Only called when shadowRoot is false
|
|
195
|
+
*/
|
|
196
|
+
protected _updateSlotNodes(replacements: Map<Node, Node[]>): void;
|
|
197
|
+
private _createVNode;
|
|
198
|
+
}
|
|
199
|
+
export declare function useHost(caller?: string): VueElementBase | null;
|
|
172
200
|
/**
|
|
173
201
|
* Retrieve the shadowRoot of the current custom element. Only usable in setup()
|
|
174
202
|
* of a `defineCustomElement` component.
|
|
@@ -198,895 +226,896 @@ type Booleanish = boolean | 'true' | 'false';
|
|
|
198
226
|
type Numberish = number | string;
|
|
199
227
|
export interface AriaAttributes {
|
|
200
228
|
/** Identifies the currently active element when DOM focus is on a composite widget, textbox, group, or application. */
|
|
201
|
-
'aria-activedescendant'?: string;
|
|
229
|
+
'aria-activedescendant'?: string | undefined;
|
|
202
230
|
/** 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. */
|
|
203
|
-
'aria-atomic'?: Booleanish;
|
|
231
|
+
'aria-atomic'?: Booleanish | undefined;
|
|
204
232
|
/**
|
|
205
233
|
* 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
|
|
206
234
|
* presented if they are made.
|
|
207
235
|
*/
|
|
208
|
-
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both';
|
|
236
|
+
'aria-autocomplete'?: 'none' | 'inline' | 'list' | 'both' | undefined;
|
|
209
237
|
/** 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. */
|
|
210
|
-
'aria-busy'?: Booleanish;
|
|
238
|
+
'aria-busy'?: Booleanish | undefined;
|
|
211
239
|
/**
|
|
212
240
|
* Indicates the current "checked" state of checkboxes, radio buttons, and other widgets.
|
|
213
241
|
* @see aria-pressed @see aria-selected.
|
|
214
242
|
*/
|
|
215
|
-
'aria-checked'?: Booleanish | 'mixed';
|
|
243
|
+
'aria-checked'?: Booleanish | 'mixed' | undefined;
|
|
216
244
|
/**
|
|
217
245
|
* Defines the total number of columns in a table, grid, or treegrid.
|
|
218
246
|
* @see aria-colindex.
|
|
219
247
|
*/
|
|
220
|
-
'aria-colcount'?: Numberish;
|
|
248
|
+
'aria-colcount'?: Numberish | undefined;
|
|
221
249
|
/**
|
|
222
250
|
* Defines an element's column index or position with respect to the total number of columns within a table, grid, or treegrid.
|
|
223
251
|
* @see aria-colcount @see aria-colspan.
|
|
224
252
|
*/
|
|
225
|
-
'aria-colindex'?: Numberish;
|
|
253
|
+
'aria-colindex'?: Numberish | undefined;
|
|
226
254
|
/**
|
|
227
255
|
* Defines the number of columns spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
228
256
|
* @see aria-colindex @see aria-rowspan.
|
|
229
257
|
*/
|
|
230
|
-
'aria-colspan'?: Numberish;
|
|
258
|
+
'aria-colspan'?: Numberish | undefined;
|
|
231
259
|
/**
|
|
232
260
|
* Identifies the element (or elements) whose contents or presence are controlled by the current element.
|
|
233
261
|
* @see aria-owns.
|
|
234
262
|
*/
|
|
235
|
-
'aria-controls'?: string;
|
|
263
|
+
'aria-controls'?: string | undefined;
|
|
236
264
|
/** Indicates the element that represents the current item within a container or set of related elements. */
|
|
237
|
-
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time';
|
|
265
|
+
'aria-current'?: Booleanish | 'page' | 'step' | 'location' | 'date' | 'time' | undefined;
|
|
238
266
|
/**
|
|
239
267
|
* Identifies the element (or elements) that describes the object.
|
|
240
268
|
* @see aria-labelledby
|
|
241
269
|
*/
|
|
242
|
-
'aria-describedby'?: string;
|
|
270
|
+
'aria-describedby'?: string | undefined;
|
|
243
271
|
/**
|
|
244
272
|
* Identifies the element that provides a detailed, extended description for the object.
|
|
245
273
|
* @see aria-describedby.
|
|
246
274
|
*/
|
|
247
|
-
'aria-details'?: string;
|
|
275
|
+
'aria-details'?: string | undefined;
|
|
248
276
|
/**
|
|
249
277
|
* Indicates that the element is perceivable but disabled, so it is not editable or otherwise operable.
|
|
250
278
|
* @see aria-hidden @see aria-readonly.
|
|
251
279
|
*/
|
|
252
|
-
'aria-disabled'?: Booleanish;
|
|
280
|
+
'aria-disabled'?: Booleanish | undefined;
|
|
253
281
|
/**
|
|
254
282
|
* Indicates what functions can be performed when a dragged object is released on the drop target.
|
|
255
283
|
* @deprecated in ARIA 1.1
|
|
256
284
|
*/
|
|
257
|
-
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup';
|
|
285
|
+
'aria-dropeffect'?: 'none' | 'copy' | 'execute' | 'link' | 'move' | 'popup' | undefined;
|
|
258
286
|
/**
|
|
259
287
|
* Identifies the element that provides an error message for the object.
|
|
260
288
|
* @see aria-invalid @see aria-describedby.
|
|
261
289
|
*/
|
|
262
|
-
'aria-errormessage'?: string;
|
|
290
|
+
'aria-errormessage'?: string | undefined;
|
|
263
291
|
/** Indicates whether the element, or another grouping element it controls, is currently expanded or collapsed. */
|
|
264
|
-
'aria-expanded'?: Booleanish;
|
|
292
|
+
'aria-expanded'?: Booleanish | undefined;
|
|
265
293
|
/**
|
|
266
294
|
* Identifies the next element (or elements) in an alternate reading order of content which, at the user's discretion,
|
|
267
295
|
* allows assistive technology to override the general default of reading in document source order.
|
|
268
296
|
*/
|
|
269
|
-
'aria-flowto'?: string;
|
|
297
|
+
'aria-flowto'?: string | undefined;
|
|
270
298
|
/**
|
|
271
299
|
* Indicates an element's "grabbed" state in a drag-and-drop operation.
|
|
272
300
|
* @deprecated in ARIA 1.1
|
|
273
301
|
*/
|
|
274
|
-
'aria-grabbed'?: Booleanish;
|
|
302
|
+
'aria-grabbed'?: Booleanish | undefined;
|
|
275
303
|
/** Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by an element. */
|
|
276
|
-
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog';
|
|
304
|
+
'aria-haspopup'?: Booleanish | 'menu' | 'listbox' | 'tree' | 'grid' | 'dialog' | undefined;
|
|
277
305
|
/**
|
|
278
306
|
* Indicates whether the element is exposed to an accessibility API.
|
|
279
307
|
* @see aria-disabled.
|
|
280
308
|
*/
|
|
281
|
-
'aria-hidden'?: Booleanish;
|
|
309
|
+
'aria-hidden'?: Booleanish | undefined;
|
|
282
310
|
/**
|
|
283
311
|
* Indicates the entered value does not conform to the format expected by the application.
|
|
284
312
|
* @see aria-errormessage.
|
|
285
313
|
*/
|
|
286
|
-
'aria-invalid'?: Booleanish | 'grammar' | 'spelling';
|
|
314
|
+
'aria-invalid'?: Booleanish | 'grammar' | 'spelling' | undefined;
|
|
287
315
|
/** Indicates keyboard shortcuts that an author has implemented to activate or give focus to an element. */
|
|
288
|
-
'aria-keyshortcuts'?: string;
|
|
316
|
+
'aria-keyshortcuts'?: string | undefined;
|
|
289
317
|
/**
|
|
290
318
|
* Defines a string value that labels the current element.
|
|
291
319
|
* @see aria-labelledby.
|
|
292
320
|
*/
|
|
293
|
-
'aria-label'?: string;
|
|
321
|
+
'aria-label'?: string | undefined;
|
|
294
322
|
/**
|
|
295
323
|
* Identifies the element (or elements) that labels the current element.
|
|
296
324
|
* @see aria-describedby.
|
|
297
325
|
*/
|
|
298
|
-
'aria-labelledby'?: string;
|
|
326
|
+
'aria-labelledby'?: string | undefined;
|
|
299
327
|
/** Defines the hierarchical level of an element within a structure. */
|
|
300
|
-
'aria-level'?: Numberish;
|
|
328
|
+
'aria-level'?: Numberish | undefined;
|
|
301
329
|
/** 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. */
|
|
302
|
-
'aria-live'?: 'off' | 'assertive' | 'polite';
|
|
330
|
+
'aria-live'?: 'off' | 'assertive' | 'polite' | undefined;
|
|
303
331
|
/** Indicates whether an element is modal when displayed. */
|
|
304
|
-
'aria-modal'?: Booleanish;
|
|
332
|
+
'aria-modal'?: Booleanish | undefined;
|
|
305
333
|
/** Indicates whether a text box accepts multiple lines of input or only a single line. */
|
|
306
|
-
'aria-multiline'?: Booleanish;
|
|
334
|
+
'aria-multiline'?: Booleanish | undefined;
|
|
307
335
|
/** Indicates that the user may select more than one item from the current selectable descendants. */
|
|
308
|
-
'aria-multiselectable'?: Booleanish;
|
|
336
|
+
'aria-multiselectable'?: Booleanish | undefined;
|
|
309
337
|
/** Indicates whether the element's orientation is horizontal, vertical, or unknown/ambiguous. */
|
|
310
|
-
'aria-orientation'?: 'horizontal' | 'vertical';
|
|
338
|
+
'aria-orientation'?: 'horizontal' | 'vertical' | undefined;
|
|
311
339
|
/**
|
|
312
340
|
* Identifies an element (or elements) in order to define a visual, functional, or contextual parent/child relationship
|
|
313
341
|
* between DOM elements where the DOM hierarchy cannot be used to represent the relationship.
|
|
314
342
|
* @see aria-controls.
|
|
315
343
|
*/
|
|
316
|
-
'aria-owns'?: string;
|
|
344
|
+
'aria-owns'?: string | undefined;
|
|
317
345
|
/**
|
|
318
346
|
* Defines a short hint (a word or short phrase) intended to aid the user with data entry when the control has no value.
|
|
319
347
|
* A hint could be a sample value or a brief description of the expected format.
|
|
320
348
|
*/
|
|
321
|
-
'aria-placeholder'?: string;
|
|
349
|
+
'aria-placeholder'?: string | undefined;
|
|
322
350
|
/**
|
|
323
351
|
* 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.
|
|
324
352
|
* @see aria-setsize.
|
|
325
353
|
*/
|
|
326
|
-
'aria-posinset'?: Numberish;
|
|
354
|
+
'aria-posinset'?: Numberish | undefined;
|
|
327
355
|
/**
|
|
328
356
|
* Indicates the current "pressed" state of toggle buttons.
|
|
329
357
|
* @see aria-checked @see aria-selected.
|
|
330
358
|
*/
|
|
331
|
-
'aria-pressed'?: Booleanish | 'mixed';
|
|
359
|
+
'aria-pressed'?: Booleanish | 'mixed' | undefined;
|
|
332
360
|
/**
|
|
333
361
|
* Indicates that the element is not editable, but is otherwise operable.
|
|
334
362
|
* @see aria-disabled.
|
|
335
363
|
*/
|
|
336
|
-
'aria-readonly'?: Booleanish;
|
|
364
|
+
'aria-readonly'?: Booleanish | undefined;
|
|
337
365
|
/**
|
|
338
366
|
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
|
|
339
367
|
* @see aria-atomic.
|
|
340
368
|
*/
|
|
341
|
-
'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals';
|
|
369
|
+
'aria-relevant'?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals' | undefined;
|
|
342
370
|
/** Indicates that user input is required on the element before a form may be submitted. */
|
|
343
|
-
'aria-required'?: Booleanish;
|
|
371
|
+
'aria-required'?: Booleanish | undefined;
|
|
344
372
|
/** Defines a human-readable, author-localized description for the role of an element. */
|
|
345
|
-
'aria-roledescription'?: string;
|
|
373
|
+
'aria-roledescription'?: string | undefined;
|
|
346
374
|
/**
|
|
347
375
|
* Defines the total number of rows in a table, grid, or treegrid.
|
|
348
376
|
* @see aria-rowindex.
|
|
349
377
|
*/
|
|
350
|
-
'aria-rowcount'?: Numberish;
|
|
378
|
+
'aria-rowcount'?: Numberish | undefined;
|
|
351
379
|
/**
|
|
352
380
|
* Defines an element's row index or position with respect to the total number of rows within a table, grid, or treegrid.
|
|
353
381
|
* @see aria-rowcount @see aria-rowspan.
|
|
354
382
|
*/
|
|
355
|
-
'aria-rowindex'?: Numberish;
|
|
383
|
+
'aria-rowindex'?: Numberish | undefined;
|
|
356
384
|
/**
|
|
357
385
|
* Defines the number of rows spanned by a cell or gridcell within a table, grid, or treegrid.
|
|
358
386
|
* @see aria-rowindex @see aria-colspan.
|
|
359
387
|
*/
|
|
360
|
-
'aria-rowspan'?: Numberish;
|
|
388
|
+
'aria-rowspan'?: Numberish | undefined;
|
|
361
389
|
/**
|
|
362
390
|
* Indicates the current "selected" state of various widgets.
|
|
363
391
|
* @see aria-checked @see aria-pressed.
|
|
364
392
|
*/
|
|
365
|
-
'aria-selected'?: Booleanish;
|
|
393
|
+
'aria-selected'?: Booleanish | undefined;
|
|
366
394
|
/**
|
|
367
395
|
* 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.
|
|
368
396
|
* @see aria-posinset.
|
|
369
397
|
*/
|
|
370
|
-
'aria-setsize'?: Numberish;
|
|
398
|
+
'aria-setsize'?: Numberish | undefined;
|
|
371
399
|
/** Indicates if items in a table or grid are sorted in ascending or descending order. */
|
|
372
|
-
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other';
|
|
400
|
+
'aria-sort'?: 'none' | 'ascending' | 'descending' | 'other' | undefined;
|
|
373
401
|
/** Defines the maximum allowed value for a range widget. */
|
|
374
|
-
'aria-valuemax'?: Numberish;
|
|
402
|
+
'aria-valuemax'?: Numberish | undefined;
|
|
375
403
|
/** Defines the minimum allowed value for a range widget. */
|
|
376
|
-
'aria-valuemin'?: Numberish;
|
|
404
|
+
'aria-valuemin'?: Numberish | undefined;
|
|
377
405
|
/**
|
|
378
406
|
* Defines the current value for a range widget.
|
|
379
407
|
* @see aria-valuetext.
|
|
380
408
|
*/
|
|
381
|
-
'aria-valuenow'?: Numberish;
|
|
409
|
+
'aria-valuenow'?: Numberish | undefined;
|
|
382
410
|
/** Defines the human readable text alternative of aria-valuenow for a range widget. */
|
|
383
|
-
'aria-valuetext'?: string;
|
|
411
|
+
'aria-valuetext'?: string | undefined;
|
|
384
412
|
}
|
|
385
413
|
export type StyleValue = false | null | undefined | string | CSSProperties | Array<StyleValue>;
|
|
386
414
|
export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
387
|
-
innerHTML?: string;
|
|
415
|
+
innerHTML?: string | undefined;
|
|
388
416
|
class?: any;
|
|
389
|
-
style?: StyleValue;
|
|
390
|
-
accesskey?: string;
|
|
391
|
-
contenteditable?: Booleanish | 'inherit' | 'plaintext-only';
|
|
392
|
-
contextmenu?: string;
|
|
393
|
-
dir?: string;
|
|
394
|
-
draggable?: Booleanish;
|
|
395
|
-
hidden?: Booleanish | '' | 'hidden' | 'until-found';
|
|
396
|
-
id?: string;
|
|
397
|
-
inert?: Booleanish;
|
|
398
|
-
lang?: string;
|
|
399
|
-
placeholder?: string;
|
|
400
|
-
spellcheck?: Booleanish;
|
|
401
|
-
tabindex?: Numberish;
|
|
402
|
-
title?: string;
|
|
403
|
-
translate?: 'yes' | 'no';
|
|
404
|
-
radiogroup?: string;
|
|
405
|
-
role?: string;
|
|
406
|
-
about?: string;
|
|
407
|
-
datatype?: string;
|
|
417
|
+
style?: StyleValue | undefined;
|
|
418
|
+
accesskey?: string | undefined;
|
|
419
|
+
contenteditable?: Booleanish | 'inherit' | 'plaintext-only' | undefined;
|
|
420
|
+
contextmenu?: string | undefined;
|
|
421
|
+
dir?: string | undefined;
|
|
422
|
+
draggable?: Booleanish | undefined;
|
|
423
|
+
hidden?: Booleanish | '' | 'hidden' | 'until-found' | undefined;
|
|
424
|
+
id?: string | undefined;
|
|
425
|
+
inert?: Booleanish | undefined;
|
|
426
|
+
lang?: string | undefined;
|
|
427
|
+
placeholder?: string | undefined;
|
|
428
|
+
spellcheck?: Booleanish | undefined;
|
|
429
|
+
tabindex?: Numberish | undefined;
|
|
430
|
+
title?: string | undefined;
|
|
431
|
+
translate?: 'yes' | 'no' | undefined;
|
|
432
|
+
radiogroup?: string | undefined;
|
|
433
|
+
role?: string | undefined;
|
|
434
|
+
about?: string | undefined;
|
|
435
|
+
datatype?: string | undefined;
|
|
408
436
|
inlist?: any;
|
|
409
|
-
prefix?: string;
|
|
410
|
-
property?: string;
|
|
411
|
-
resource?: string;
|
|
412
|
-
typeof?: string;
|
|
413
|
-
vocab?: string;
|
|
414
|
-
autocapitalize?: string;
|
|
415
|
-
autocorrect?: string;
|
|
416
|
-
autosave?: string;
|
|
417
|
-
color?: string;
|
|
418
|
-
itemprop?: string;
|
|
419
|
-
itemscope?: Booleanish;
|
|
420
|
-
itemtype?: string;
|
|
421
|
-
itemid?: string;
|
|
422
|
-
itemref?: string;
|
|
423
|
-
results?: Numberish;
|
|
424
|
-
security?: string;
|
|
425
|
-
unselectable?: 'on' | 'off';
|
|
437
|
+
prefix?: string | undefined;
|
|
438
|
+
property?: string | undefined;
|
|
439
|
+
resource?: string | undefined;
|
|
440
|
+
typeof?: string | undefined;
|
|
441
|
+
vocab?: string | undefined;
|
|
442
|
+
autocapitalize?: string | undefined;
|
|
443
|
+
autocorrect?: string | undefined;
|
|
444
|
+
autosave?: string | undefined;
|
|
445
|
+
color?: string | undefined;
|
|
446
|
+
itemprop?: string | undefined;
|
|
447
|
+
itemscope?: Booleanish | undefined;
|
|
448
|
+
itemtype?: string | undefined;
|
|
449
|
+
itemid?: string | undefined;
|
|
450
|
+
itemref?: string | undefined;
|
|
451
|
+
results?: Numberish | undefined;
|
|
452
|
+
security?: string | undefined;
|
|
453
|
+
unselectable?: 'on' | 'off' | undefined;
|
|
426
454
|
/**
|
|
427
455
|
* Hints at the type of data that might be entered by the user while editing the element or its contents
|
|
428
456
|
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
|
|
429
457
|
*/
|
|
430
|
-
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
458
|
+
inputmode?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search' | undefined;
|
|
431
459
|
/**
|
|
432
460
|
* Specify that a standard HTML element should behave like a defined custom built-in element
|
|
433
461
|
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
|
|
434
462
|
*/
|
|
435
|
-
is?: string;
|
|
463
|
+
is?: string | undefined;
|
|
436
464
|
}
|
|
437
465
|
type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
|
|
438
466
|
export interface AnchorHTMLAttributes extends HTMLAttributes {
|
|
439
467
|
download?: any;
|
|
440
|
-
href?: string;
|
|
441
|
-
hreflang?: string;
|
|
442
|
-
media?: string;
|
|
443
|
-
ping?: string;
|
|
444
|
-
rel?: string;
|
|
445
|
-
target?: string;
|
|
446
|
-
type?: string;
|
|
447
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
468
|
+
href?: string | undefined;
|
|
469
|
+
hreflang?: string | undefined;
|
|
470
|
+
media?: string | undefined;
|
|
471
|
+
ping?: string | undefined;
|
|
472
|
+
rel?: string | undefined;
|
|
473
|
+
target?: string | undefined;
|
|
474
|
+
type?: string | undefined;
|
|
475
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
448
476
|
}
|
|
449
477
|
export interface AreaHTMLAttributes extends HTMLAttributes {
|
|
450
|
-
alt?: string;
|
|
451
|
-
coords?: string;
|
|
478
|
+
alt?: string | undefined;
|
|
479
|
+
coords?: string | undefined;
|
|
452
480
|
download?: any;
|
|
453
|
-
href?: string;
|
|
454
|
-
hreflang?: string;
|
|
455
|
-
media?: string;
|
|
456
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
457
|
-
rel?: string;
|
|
458
|
-
shape?: string;
|
|
459
|
-
target?: string;
|
|
481
|
+
href?: string | undefined;
|
|
482
|
+
hreflang?: string | undefined;
|
|
483
|
+
media?: string | undefined;
|
|
484
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
485
|
+
rel?: string | undefined;
|
|
486
|
+
shape?: string | undefined;
|
|
487
|
+
target?: string | undefined;
|
|
460
488
|
}
|
|
461
489
|
export interface AudioHTMLAttributes extends MediaHTMLAttributes {
|
|
462
490
|
}
|
|
463
491
|
export interface BaseHTMLAttributes extends HTMLAttributes {
|
|
464
|
-
href?: string;
|
|
465
|
-
target?: string;
|
|
492
|
+
href?: string | undefined;
|
|
493
|
+
target?: string | undefined;
|
|
466
494
|
}
|
|
467
495
|
export interface BlockquoteHTMLAttributes extends HTMLAttributes {
|
|
468
|
-
cite?: string;
|
|
496
|
+
cite?: string | undefined;
|
|
469
497
|
}
|
|
470
498
|
export interface ButtonHTMLAttributes extends HTMLAttributes {
|
|
471
|
-
autofocus?: Booleanish;
|
|
472
|
-
disabled?: Booleanish;
|
|
473
|
-
form?: string;
|
|
474
|
-
formaction?: string;
|
|
475
|
-
formenctype?: string;
|
|
476
|
-
formmethod?: string;
|
|
477
|
-
formnovalidate?: Booleanish;
|
|
478
|
-
formtarget?: string;
|
|
479
|
-
name?: string;
|
|
480
|
-
type?: 'submit' | 'reset' | 'button';
|
|
481
|
-
value?: string | ReadonlyArray<string> | number;
|
|
499
|
+
autofocus?: Booleanish | undefined;
|
|
500
|
+
disabled?: Booleanish | undefined;
|
|
501
|
+
form?: string | undefined;
|
|
502
|
+
formaction?: string | undefined;
|
|
503
|
+
formenctype?: string | undefined;
|
|
504
|
+
formmethod?: string | undefined;
|
|
505
|
+
formnovalidate?: Booleanish | undefined;
|
|
506
|
+
formtarget?: string | undefined;
|
|
507
|
+
name?: string | undefined;
|
|
508
|
+
type?: 'submit' | 'reset' | 'button' | undefined;
|
|
509
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
482
510
|
}
|
|
483
511
|
export interface CanvasHTMLAttributes extends HTMLAttributes {
|
|
484
|
-
height?: Numberish;
|
|
485
|
-
width?: Numberish;
|
|
512
|
+
height?: Numberish | undefined;
|
|
513
|
+
width?: Numberish | undefined;
|
|
486
514
|
}
|
|
487
515
|
export interface ColHTMLAttributes extends HTMLAttributes {
|
|
488
|
-
span?: Numberish;
|
|
489
|
-
width?: Numberish;
|
|
516
|
+
span?: Numberish | undefined;
|
|
517
|
+
width?: Numberish | undefined;
|
|
490
518
|
}
|
|
491
519
|
export interface ColgroupHTMLAttributes extends HTMLAttributes {
|
|
492
|
-
span?: Numberish;
|
|
520
|
+
span?: Numberish | undefined;
|
|
493
521
|
}
|
|
494
522
|
export interface DataHTMLAttributes extends HTMLAttributes {
|
|
495
|
-
value?: string | ReadonlyArray<string> | number;
|
|
523
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
496
524
|
}
|
|
497
525
|
export interface DetailsHTMLAttributes extends HTMLAttributes {
|
|
498
|
-
name?: string;
|
|
499
|
-
open?: Booleanish;
|
|
500
|
-
onToggle?: (payload: ToggleEvent) => void;
|
|
526
|
+
name?: string | undefined;
|
|
527
|
+
open?: Booleanish | undefined;
|
|
501
528
|
}
|
|
502
529
|
export interface DelHTMLAttributes extends HTMLAttributes {
|
|
503
|
-
cite?: string;
|
|
504
|
-
datetime?: string;
|
|
530
|
+
cite?: string | undefined;
|
|
531
|
+
datetime?: string | undefined;
|
|
505
532
|
}
|
|
506
533
|
export interface DialogHTMLAttributes extends HTMLAttributes {
|
|
507
|
-
open?: Booleanish;
|
|
508
|
-
onClose?: (payload: Event) => void;
|
|
534
|
+
open?: Booleanish | undefined;
|
|
535
|
+
onClose?: ((payload: Event) => void) | undefined;
|
|
536
|
+
onCancel?: ((payload: Event) => void) | undefined;
|
|
509
537
|
}
|
|
510
538
|
export interface EmbedHTMLAttributes extends HTMLAttributes {
|
|
511
|
-
height?: Numberish;
|
|
512
|
-
src?: string;
|
|
513
|
-
type?: string;
|
|
514
|
-
width?: Numberish;
|
|
539
|
+
height?: Numberish | undefined;
|
|
540
|
+
src?: string | undefined;
|
|
541
|
+
type?: string | undefined;
|
|
542
|
+
width?: Numberish | undefined;
|
|
515
543
|
}
|
|
516
544
|
export interface FieldsetHTMLAttributes extends HTMLAttributes {
|
|
517
|
-
disabled?: Booleanish;
|
|
518
|
-
form?: string;
|
|
519
|
-
name?: string;
|
|
545
|
+
disabled?: Booleanish | undefined;
|
|
546
|
+
form?: string | undefined;
|
|
547
|
+
name?: string | undefined;
|
|
520
548
|
}
|
|
521
549
|
export interface FormHTMLAttributes extends HTMLAttributes {
|
|
522
|
-
acceptcharset?: string;
|
|
523
|
-
action?: string;
|
|
524
|
-
autocomplete?: string;
|
|
525
|
-
enctype?: string;
|
|
526
|
-
method?: string;
|
|
527
|
-
name?: string;
|
|
528
|
-
novalidate?: Booleanish;
|
|
529
|
-
target?: string;
|
|
550
|
+
acceptcharset?: string | undefined;
|
|
551
|
+
action?: string | undefined;
|
|
552
|
+
autocomplete?: string | undefined;
|
|
553
|
+
enctype?: string | undefined;
|
|
554
|
+
method?: string | undefined;
|
|
555
|
+
name?: string | undefined;
|
|
556
|
+
novalidate?: Booleanish | undefined;
|
|
557
|
+
target?: string | undefined;
|
|
530
558
|
}
|
|
531
559
|
export interface HtmlHTMLAttributes extends HTMLAttributes {
|
|
532
|
-
manifest?: string;
|
|
560
|
+
manifest?: string | undefined;
|
|
533
561
|
}
|
|
534
562
|
export interface IframeHTMLAttributes extends HTMLAttributes {
|
|
535
|
-
allow?: string;
|
|
536
|
-
allowfullscreen?: Booleanish;
|
|
537
|
-
allowtransparency?: Booleanish;
|
|
563
|
+
allow?: string | undefined;
|
|
564
|
+
allowfullscreen?: Booleanish | undefined;
|
|
565
|
+
allowtransparency?: Booleanish | undefined;
|
|
538
566
|
/** @deprecated */
|
|
539
|
-
frameborder?: Numberish;
|
|
540
|
-
height?: Numberish;
|
|
541
|
-
loading?: 'eager' | 'lazy';
|
|
567
|
+
frameborder?: Numberish | undefined;
|
|
568
|
+
height?: Numberish | undefined;
|
|
569
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
542
570
|
/** @deprecated */
|
|
543
|
-
marginheight?: Numberish;
|
|
571
|
+
marginheight?: Numberish | undefined;
|
|
544
572
|
/** @deprecated */
|
|
545
|
-
marginwidth?: Numberish;
|
|
546
|
-
name?: string;
|
|
547
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
548
|
-
sandbox?: string;
|
|
573
|
+
marginwidth?: Numberish | undefined;
|
|
574
|
+
name?: string | undefined;
|
|
575
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
576
|
+
sandbox?: string | undefined;
|
|
549
577
|
/** @deprecated */
|
|
550
|
-
scrolling?: string;
|
|
551
|
-
seamless?: Booleanish;
|
|
552
|
-
src?: string;
|
|
553
|
-
srcdoc?: string;
|
|
554
|
-
width?: Numberish;
|
|
578
|
+
scrolling?: string | undefined;
|
|
579
|
+
seamless?: Booleanish | undefined;
|
|
580
|
+
src?: string | undefined;
|
|
581
|
+
srcdoc?: string | undefined;
|
|
582
|
+
width?: Numberish | undefined;
|
|
555
583
|
}
|
|
556
584
|
export interface ImgHTMLAttributes extends HTMLAttributes {
|
|
557
|
-
alt?: string;
|
|
558
|
-
crossorigin?: 'anonymous' | 'use-credentials' | '';
|
|
559
|
-
decoding?: 'async' | 'auto' | 'sync';
|
|
560
|
-
height?: Numberish;
|
|
561
|
-
loading?: 'eager' | 'lazy';
|
|
562
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
563
|
-
sizes?: string;
|
|
564
|
-
src?: string;
|
|
565
|
-
srcset?: string;
|
|
566
|
-
usemap?: string;
|
|
567
|
-
width?: Numberish;
|
|
585
|
+
alt?: string | undefined;
|
|
586
|
+
crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined;
|
|
587
|
+
decoding?: 'async' | 'auto' | 'sync' | undefined;
|
|
588
|
+
height?: Numberish | undefined;
|
|
589
|
+
loading?: 'eager' | 'lazy' | undefined;
|
|
590
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
591
|
+
sizes?: string | undefined;
|
|
592
|
+
src?: string | undefined;
|
|
593
|
+
srcset?: string | undefined;
|
|
594
|
+
usemap?: string | undefined;
|
|
595
|
+
width?: Numberish | undefined;
|
|
568
596
|
}
|
|
569
597
|
export interface InsHTMLAttributes extends HTMLAttributes {
|
|
570
|
-
cite?: string;
|
|
571
|
-
datetime?: string;
|
|
598
|
+
cite?: string | undefined;
|
|
599
|
+
datetime?: string | undefined;
|
|
572
600
|
}
|
|
573
601
|
export type InputTypeHTMLAttribute = 'button' | 'checkbox' | 'color' | 'date' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | (string & {});
|
|
574
602
|
export interface InputHTMLAttributes extends HTMLAttributes {
|
|
575
|
-
accept?: string;
|
|
576
|
-
alt?: string;
|
|
577
|
-
autocomplete?: string;
|
|
578
|
-
autofocus?: Booleanish;
|
|
579
|
-
capture?: boolean | 'user' | 'environment';
|
|
580
|
-
checked?: Booleanish | any[] | Set<any
|
|
581
|
-
crossorigin?: string;
|
|
582
|
-
disabled?: Booleanish;
|
|
583
|
-
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send';
|
|
584
|
-
form?: string;
|
|
585
|
-
formaction?: string;
|
|
586
|
-
formenctype?: string;
|
|
587
|
-
formmethod?: string;
|
|
588
|
-
formnovalidate?: Booleanish;
|
|
589
|
-
formtarget?: string;
|
|
590
|
-
height?: Numberish;
|
|
591
|
-
indeterminate?: boolean;
|
|
592
|
-
list?: string;
|
|
593
|
-
max?: Numberish;
|
|
594
|
-
maxlength?: Numberish;
|
|
595
|
-
min?: Numberish;
|
|
596
|
-
minlength?: Numberish;
|
|
597
|
-
multiple?: Booleanish;
|
|
598
|
-
name?: string;
|
|
599
|
-
pattern?: string;
|
|
600
|
-
placeholder?: string;
|
|
601
|
-
readonly?: Booleanish;
|
|
602
|
-
required?: Booleanish;
|
|
603
|
-
size?: Numberish;
|
|
604
|
-
src?: string;
|
|
605
|
-
step?: Numberish;
|
|
606
|
-
type?: InputTypeHTMLAttribute;
|
|
603
|
+
accept?: string | undefined;
|
|
604
|
+
alt?: string | undefined;
|
|
605
|
+
autocomplete?: string | undefined;
|
|
606
|
+
autofocus?: Booleanish | undefined;
|
|
607
|
+
capture?: boolean | 'user' | 'environment' | undefined;
|
|
608
|
+
checked?: Booleanish | any[] | Set<any> | undefined;
|
|
609
|
+
crossorigin?: string | undefined;
|
|
610
|
+
disabled?: Booleanish | undefined;
|
|
611
|
+
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
|
|
612
|
+
form?: string | undefined;
|
|
613
|
+
formaction?: string | undefined;
|
|
614
|
+
formenctype?: string | undefined;
|
|
615
|
+
formmethod?: string | undefined;
|
|
616
|
+
formnovalidate?: Booleanish | undefined;
|
|
617
|
+
formtarget?: string | undefined;
|
|
618
|
+
height?: Numberish | undefined;
|
|
619
|
+
indeterminate?: boolean | undefined;
|
|
620
|
+
list?: string | undefined;
|
|
621
|
+
max?: Numberish | undefined;
|
|
622
|
+
maxlength?: Numberish | undefined;
|
|
623
|
+
min?: Numberish | undefined;
|
|
624
|
+
minlength?: Numberish | undefined;
|
|
625
|
+
multiple?: Booleanish | undefined;
|
|
626
|
+
name?: string | undefined;
|
|
627
|
+
pattern?: string | undefined;
|
|
628
|
+
placeholder?: string | undefined;
|
|
629
|
+
readonly?: Booleanish | undefined;
|
|
630
|
+
required?: Booleanish | undefined;
|
|
631
|
+
size?: Numberish | undefined;
|
|
632
|
+
src?: string | undefined;
|
|
633
|
+
step?: Numberish | undefined;
|
|
634
|
+
type?: InputTypeHTMLAttribute | undefined;
|
|
607
635
|
value?: any;
|
|
608
|
-
width?: Numberish;
|
|
636
|
+
width?: Numberish | undefined;
|
|
637
|
+
onCancel?: ((payload: Event) => void) | undefined;
|
|
609
638
|
}
|
|
610
639
|
export interface KeygenHTMLAttributes extends HTMLAttributes {
|
|
611
|
-
autofocus?: Booleanish;
|
|
612
|
-
challenge?: string;
|
|
613
|
-
disabled?: Booleanish;
|
|
614
|
-
form?: string;
|
|
615
|
-
keytype?: string;
|
|
616
|
-
keyparams?: string;
|
|
617
|
-
name?: string;
|
|
640
|
+
autofocus?: Booleanish | undefined;
|
|
641
|
+
challenge?: string | undefined;
|
|
642
|
+
disabled?: Booleanish | undefined;
|
|
643
|
+
form?: string | undefined;
|
|
644
|
+
keytype?: string | undefined;
|
|
645
|
+
keyparams?: string | undefined;
|
|
646
|
+
name?: string | undefined;
|
|
618
647
|
}
|
|
619
648
|
export interface LabelHTMLAttributes extends HTMLAttributes {
|
|
620
|
-
for?: string;
|
|
621
|
-
form?: string;
|
|
649
|
+
for?: string | undefined;
|
|
650
|
+
form?: string | undefined;
|
|
622
651
|
}
|
|
623
652
|
export interface LiHTMLAttributes extends HTMLAttributes {
|
|
624
|
-
value?: string | ReadonlyArray<string> | number;
|
|
653
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
625
654
|
}
|
|
626
655
|
export interface LinkHTMLAttributes extends HTMLAttributes {
|
|
627
|
-
as?: string;
|
|
628
|
-
crossorigin?: string;
|
|
629
|
-
href?: string;
|
|
630
|
-
hreflang?: string;
|
|
631
|
-
integrity?: string;
|
|
632
|
-
media?: string;
|
|
633
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
634
|
-
rel?: string;
|
|
635
|
-
sizes?: string;
|
|
636
|
-
type?: string;
|
|
637
|
-
charset?: string;
|
|
656
|
+
as?: string | undefined;
|
|
657
|
+
crossorigin?: string | undefined;
|
|
658
|
+
href?: string | undefined;
|
|
659
|
+
hreflang?: string | undefined;
|
|
660
|
+
integrity?: string | undefined;
|
|
661
|
+
media?: string | undefined;
|
|
662
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
663
|
+
rel?: string | undefined;
|
|
664
|
+
sizes?: string | undefined;
|
|
665
|
+
type?: string | undefined;
|
|
666
|
+
charset?: string | undefined;
|
|
638
667
|
}
|
|
639
668
|
export interface MapHTMLAttributes extends HTMLAttributes {
|
|
640
|
-
name?: string;
|
|
669
|
+
name?: string | undefined;
|
|
641
670
|
}
|
|
642
671
|
export interface MenuHTMLAttributes extends HTMLAttributes {
|
|
643
|
-
type?: string;
|
|
672
|
+
type?: string | undefined;
|
|
644
673
|
}
|
|
645
674
|
export interface MediaHTMLAttributes extends HTMLAttributes {
|
|
646
|
-
autoplay?: Booleanish;
|
|
647
|
-
controls?: Booleanish;
|
|
648
|
-
controlslist?: string;
|
|
649
|
-
crossorigin?: string;
|
|
650
|
-
loop?: Booleanish;
|
|
651
|
-
mediagroup?: string;
|
|
652
|
-
muted?: Booleanish;
|
|
653
|
-
playsinline?: Booleanish;
|
|
654
|
-
preload?: string;
|
|
655
|
-
src?: string;
|
|
675
|
+
autoplay?: Booleanish | undefined;
|
|
676
|
+
controls?: Booleanish | undefined;
|
|
677
|
+
controlslist?: string | undefined;
|
|
678
|
+
crossorigin?: string | undefined;
|
|
679
|
+
loop?: Booleanish | undefined;
|
|
680
|
+
mediagroup?: string | undefined;
|
|
681
|
+
muted?: Booleanish | undefined;
|
|
682
|
+
playsinline?: Booleanish | undefined;
|
|
683
|
+
preload?: string | undefined;
|
|
684
|
+
src?: string | undefined;
|
|
656
685
|
}
|
|
657
686
|
export interface MetaHTMLAttributes extends HTMLAttributes {
|
|
658
|
-
charset?: string;
|
|
659
|
-
content?: string;
|
|
660
|
-
httpequiv?: string;
|
|
661
|
-
name?: string;
|
|
687
|
+
charset?: string | undefined;
|
|
688
|
+
content?: string | undefined;
|
|
689
|
+
httpequiv?: string | undefined;
|
|
690
|
+
name?: string | undefined;
|
|
662
691
|
}
|
|
663
692
|
export interface MeterHTMLAttributes extends HTMLAttributes {
|
|
664
|
-
form?: string;
|
|
665
|
-
high?: Numberish;
|
|
666
|
-
low?: Numberish;
|
|
667
|
-
max?: Numberish;
|
|
668
|
-
min?: Numberish;
|
|
669
|
-
optimum?: Numberish;
|
|
670
|
-
value?: string | ReadonlyArray<string> | number;
|
|
693
|
+
form?: string | undefined;
|
|
694
|
+
high?: Numberish | undefined;
|
|
695
|
+
low?: Numberish | undefined;
|
|
696
|
+
max?: Numberish | undefined;
|
|
697
|
+
min?: Numberish | undefined;
|
|
698
|
+
optimum?: Numberish | undefined;
|
|
699
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
671
700
|
}
|
|
672
701
|
export interface QuoteHTMLAttributes extends HTMLAttributes {
|
|
673
|
-
cite?: string;
|
|
702
|
+
cite?: string | undefined;
|
|
674
703
|
}
|
|
675
704
|
export interface ObjectHTMLAttributes extends HTMLAttributes {
|
|
676
|
-
classid?: string;
|
|
677
|
-
data?: string;
|
|
678
|
-
form?: string;
|
|
679
|
-
height?: Numberish;
|
|
680
|
-
name?: string;
|
|
681
|
-
type?: string;
|
|
682
|
-
usemap?: string;
|
|
683
|
-
width?: Numberish;
|
|
684
|
-
wmode?: string;
|
|
705
|
+
classid?: string | undefined;
|
|
706
|
+
data?: string | undefined;
|
|
707
|
+
form?: string | undefined;
|
|
708
|
+
height?: Numberish | undefined;
|
|
709
|
+
name?: string | undefined;
|
|
710
|
+
type?: string | undefined;
|
|
711
|
+
usemap?: string | undefined;
|
|
712
|
+
width?: Numberish | undefined;
|
|
713
|
+
wmode?: string | undefined;
|
|
685
714
|
}
|
|
686
715
|
export interface OlHTMLAttributes extends HTMLAttributes {
|
|
687
|
-
reversed?: Booleanish;
|
|
688
|
-
start?: Numberish;
|
|
689
|
-
type?: '1' | 'a' | 'A' | 'i' | 'I';
|
|
716
|
+
reversed?: Booleanish | undefined;
|
|
717
|
+
start?: Numberish | undefined;
|
|
718
|
+
type?: '1' | 'a' | 'A' | 'i' | 'I' | undefined;
|
|
690
719
|
}
|
|
691
720
|
export interface OptgroupHTMLAttributes extends HTMLAttributes {
|
|
692
|
-
disabled?: Booleanish;
|
|
693
|
-
label?: string;
|
|
721
|
+
disabled?: Booleanish | undefined;
|
|
722
|
+
label?: string | undefined;
|
|
694
723
|
}
|
|
695
724
|
export interface OptionHTMLAttributes extends HTMLAttributes {
|
|
696
|
-
disabled?: Booleanish;
|
|
697
|
-
label?: string;
|
|
698
|
-
selected?: Booleanish;
|
|
725
|
+
disabled?: Booleanish | undefined;
|
|
726
|
+
label?: string | undefined;
|
|
727
|
+
selected?: Booleanish | undefined;
|
|
699
728
|
value?: any;
|
|
700
729
|
}
|
|
701
730
|
export interface OutputHTMLAttributes extends HTMLAttributes {
|
|
702
|
-
for?: string;
|
|
703
|
-
form?: string;
|
|
704
|
-
name?: string;
|
|
731
|
+
for?: string | undefined;
|
|
732
|
+
form?: string | undefined;
|
|
733
|
+
name?: string | undefined;
|
|
705
734
|
}
|
|
706
735
|
export interface ParamHTMLAttributes extends HTMLAttributes {
|
|
707
|
-
name?: string;
|
|
708
|
-
value?: string | ReadonlyArray<string> | number;
|
|
736
|
+
name?: string | undefined;
|
|
737
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
709
738
|
}
|
|
710
739
|
export interface ProgressHTMLAttributes extends HTMLAttributes {
|
|
711
|
-
max?: Numberish;
|
|
712
|
-
value?: string | ReadonlyArray<string> | number;
|
|
740
|
+
max?: Numberish | undefined;
|
|
741
|
+
value?: string | ReadonlyArray<string> | number | undefined;
|
|
713
742
|
}
|
|
714
743
|
export interface ScriptHTMLAttributes extends HTMLAttributes {
|
|
715
|
-
async?: Booleanish;
|
|
744
|
+
async?: Booleanish | undefined;
|
|
716
745
|
/** @deprecated */
|
|
717
|
-
charset?: string;
|
|
718
|
-
crossorigin?: string;
|
|
719
|
-
defer?: Booleanish;
|
|
720
|
-
integrity?: string;
|
|
721
|
-
nomodule?: Booleanish;
|
|
722
|
-
referrerpolicy?: HTMLAttributeReferrerPolicy;
|
|
723
|
-
nonce?: string;
|
|
724
|
-
src?: string;
|
|
725
|
-
type?: string;
|
|
746
|
+
charset?: string | undefined;
|
|
747
|
+
crossorigin?: string | undefined;
|
|
748
|
+
defer?: Booleanish | undefined;
|
|
749
|
+
integrity?: string | undefined;
|
|
750
|
+
nomodule?: Booleanish | undefined;
|
|
751
|
+
referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
|
|
752
|
+
nonce?: string | undefined;
|
|
753
|
+
src?: string | undefined;
|
|
754
|
+
type?: string | undefined;
|
|
726
755
|
}
|
|
727
756
|
export interface SelectHTMLAttributes extends HTMLAttributes {
|
|
728
|
-
autocomplete?: string;
|
|
729
|
-
autofocus?: Booleanish;
|
|
730
|
-
disabled?: Booleanish;
|
|
731
|
-
form?: string;
|
|
732
|
-
multiple?: Booleanish;
|
|
733
|
-
name?: string;
|
|
734
|
-
required?: Booleanish;
|
|
735
|
-
size?: Numberish;
|
|
757
|
+
autocomplete?: string | undefined;
|
|
758
|
+
autofocus?: Booleanish | undefined;
|
|
759
|
+
disabled?: Booleanish | undefined;
|
|
760
|
+
form?: string | undefined;
|
|
761
|
+
multiple?: Booleanish | undefined;
|
|
762
|
+
name?: string | undefined;
|
|
763
|
+
required?: Booleanish | undefined;
|
|
764
|
+
size?: Numberish | undefined;
|
|
736
765
|
value?: any;
|
|
737
766
|
}
|
|
738
767
|
export interface SourceHTMLAttributes extends HTMLAttributes {
|
|
739
|
-
media?: string;
|
|
740
|
-
sizes?: string;
|
|
741
|
-
src?: string;
|
|
742
|
-
srcset?: string;
|
|
743
|
-
type?: string;
|
|
768
|
+
media?: string | undefined;
|
|
769
|
+
sizes?: string | undefined;
|
|
770
|
+
src?: string | undefined;
|
|
771
|
+
srcset?: string | undefined;
|
|
772
|
+
type?: string | undefined;
|
|
744
773
|
}
|
|
745
774
|
export interface StyleHTMLAttributes extends HTMLAttributes {
|
|
746
|
-
media?: string;
|
|
747
|
-
nonce?: string;
|
|
748
|
-
scoped?: Booleanish;
|
|
749
|
-
type?: string;
|
|
775
|
+
media?: string | undefined;
|
|
776
|
+
nonce?: string | undefined;
|
|
777
|
+
scoped?: Booleanish | undefined;
|
|
778
|
+
type?: string | undefined;
|
|
750
779
|
}
|
|
751
780
|
export interface TableHTMLAttributes extends HTMLAttributes {
|
|
752
|
-
cellpadding?: Numberish;
|
|
753
|
-
cellspacing?: Numberish;
|
|
754
|
-
summary?: string;
|
|
755
|
-
width?: Numberish;
|
|
781
|
+
cellpadding?: Numberish | undefined;
|
|
782
|
+
cellspacing?: Numberish | undefined;
|
|
783
|
+
summary?: string | undefined;
|
|
784
|
+
width?: Numberish | undefined;
|
|
756
785
|
}
|
|
757
786
|
export interface TextareaHTMLAttributes extends HTMLAttributes {
|
|
758
|
-
autocomplete?: string;
|
|
759
|
-
autofocus?: Booleanish;
|
|
760
|
-
cols?: Numberish;
|
|
761
|
-
dirname?: string;
|
|
762
|
-
disabled?: Booleanish;
|
|
763
|
-
form?: string;
|
|
764
|
-
maxlength?: Numberish;
|
|
765
|
-
minlength?: Numberish;
|
|
766
|
-
name?: string;
|
|
767
|
-
placeholder?: string;
|
|
768
|
-
readonly?: Booleanish;
|
|
769
|
-
required?: Booleanish;
|
|
770
|
-
rows?: Numberish;
|
|
771
|
-
value?: string | ReadonlyArray<string> | number | null;
|
|
772
|
-
wrap?: string;
|
|
787
|
+
autocomplete?: string | undefined;
|
|
788
|
+
autofocus?: Booleanish | undefined;
|
|
789
|
+
cols?: Numberish | undefined;
|
|
790
|
+
dirname?: string | undefined;
|
|
791
|
+
disabled?: Booleanish | undefined;
|
|
792
|
+
form?: string | undefined;
|
|
793
|
+
maxlength?: Numberish | undefined;
|
|
794
|
+
minlength?: Numberish | undefined;
|
|
795
|
+
name?: string | undefined;
|
|
796
|
+
placeholder?: string | undefined;
|
|
797
|
+
readonly?: Booleanish | undefined;
|
|
798
|
+
required?: Booleanish | undefined;
|
|
799
|
+
rows?: Numberish | undefined;
|
|
800
|
+
value?: string | ReadonlyArray<string> | number | null | undefined;
|
|
801
|
+
wrap?: string | undefined;
|
|
773
802
|
}
|
|
774
803
|
export interface TdHTMLAttributes extends HTMLAttributes {
|
|
775
|
-
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
776
|
-
colspan?: Numberish;
|
|
777
|
-
headers?: string;
|
|
778
|
-
rowspan?: Numberish;
|
|
779
|
-
scope?: string;
|
|
780
|
-
abbr?: string;
|
|
781
|
-
height?: Numberish;
|
|
782
|
-
width?: Numberish;
|
|
783
|
-
valign?: 'top' | 'middle' | 'bottom' | 'baseline';
|
|
804
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
805
|
+
colspan?: Numberish | undefined;
|
|
806
|
+
headers?: string | undefined;
|
|
807
|
+
rowspan?: Numberish | undefined;
|
|
808
|
+
scope?: string | undefined;
|
|
809
|
+
abbr?: string | undefined;
|
|
810
|
+
height?: Numberish | undefined;
|
|
811
|
+
width?: Numberish | undefined;
|
|
812
|
+
valign?: 'top' | 'middle' | 'bottom' | 'baseline' | undefined;
|
|
784
813
|
}
|
|
785
814
|
export interface ThHTMLAttributes extends HTMLAttributes {
|
|
786
|
-
align?: 'left' | 'center' | 'right' | 'justify' | 'char';
|
|
787
|
-
colspan?: Numberish;
|
|
788
|
-
headers?: string;
|
|
789
|
-
rowspan?: Numberish;
|
|
790
|
-
scope?: string;
|
|
791
|
-
abbr?: string;
|
|
815
|
+
align?: 'left' | 'center' | 'right' | 'justify' | 'char' | undefined;
|
|
816
|
+
colspan?: Numberish | undefined;
|
|
817
|
+
headers?: string | undefined;
|
|
818
|
+
rowspan?: Numberish | undefined;
|
|
819
|
+
scope?: string | undefined;
|
|
820
|
+
abbr?: string | undefined;
|
|
792
821
|
}
|
|
793
822
|
export interface TimeHTMLAttributes extends HTMLAttributes {
|
|
794
|
-
datetime?: string;
|
|
823
|
+
datetime?: string | undefined;
|
|
795
824
|
}
|
|
796
825
|
export interface TrackHTMLAttributes extends HTMLAttributes {
|
|
797
|
-
default?: Booleanish;
|
|
798
|
-
kind?: string;
|
|
799
|
-
label?: string;
|
|
800
|
-
src?: string;
|
|
801
|
-
srclang?: string;
|
|
826
|
+
default?: Booleanish | undefined;
|
|
827
|
+
kind?: string | undefined;
|
|
828
|
+
label?: string | undefined;
|
|
829
|
+
src?: string | undefined;
|
|
830
|
+
srclang?: string | undefined;
|
|
802
831
|
}
|
|
803
832
|
export interface VideoHTMLAttributes extends MediaHTMLAttributes {
|
|
804
|
-
height?: Numberish;
|
|
805
|
-
playsinline?: Booleanish;
|
|
806
|
-
poster?: string;
|
|
807
|
-
width?: Numberish;
|
|
808
|
-
disablePictureInPicture?: Booleanish;
|
|
809
|
-
disableRemotePlayback?: Booleanish;
|
|
833
|
+
height?: Numberish | undefined;
|
|
834
|
+
playsinline?: Booleanish | undefined;
|
|
835
|
+
poster?: string | undefined;
|
|
836
|
+
width?: Numberish | undefined;
|
|
837
|
+
disablePictureInPicture?: Booleanish | undefined;
|
|
838
|
+
disableRemotePlayback?: Booleanish | undefined;
|
|
810
839
|
}
|
|
811
840
|
export interface WebViewHTMLAttributes extends HTMLAttributes {
|
|
812
|
-
allowfullscreen?: Booleanish;
|
|
813
|
-
allowpopups?: Booleanish;
|
|
814
|
-
autoFocus?: Booleanish;
|
|
815
|
-
autosize?: Booleanish;
|
|
816
|
-
blinkfeatures?: string;
|
|
817
|
-
disableblinkfeatures?: string;
|
|
818
|
-
disableguestresize?: Booleanish;
|
|
819
|
-
disablewebsecurity?: Booleanish;
|
|
820
|
-
guestinstance?: string;
|
|
821
|
-
httpreferrer?: string;
|
|
822
|
-
nodeintegration?: Booleanish;
|
|
823
|
-
partition?: string;
|
|
824
|
-
plugins?: Booleanish;
|
|
825
|
-
preload?: string;
|
|
826
|
-
src?: string;
|
|
827
|
-
useragent?: string;
|
|
828
|
-
webpreferences?: string;
|
|
841
|
+
allowfullscreen?: Booleanish | undefined;
|
|
842
|
+
allowpopups?: Booleanish | undefined;
|
|
843
|
+
autoFocus?: Booleanish | undefined;
|
|
844
|
+
autosize?: Booleanish | undefined;
|
|
845
|
+
blinkfeatures?: string | undefined;
|
|
846
|
+
disableblinkfeatures?: string | undefined;
|
|
847
|
+
disableguestresize?: Booleanish | undefined;
|
|
848
|
+
disablewebsecurity?: Booleanish | undefined;
|
|
849
|
+
guestinstance?: string | undefined;
|
|
850
|
+
httpreferrer?: string | undefined;
|
|
851
|
+
nodeintegration?: Booleanish | undefined;
|
|
852
|
+
partition?: string | undefined;
|
|
853
|
+
plugins?: Booleanish | undefined;
|
|
854
|
+
preload?: string | undefined;
|
|
855
|
+
src?: string | undefined;
|
|
856
|
+
useragent?: string | undefined;
|
|
857
|
+
webpreferences?: string | undefined;
|
|
829
858
|
}
|
|
830
859
|
export interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
|
|
831
|
-
innerHTML?: string;
|
|
860
|
+
innerHTML?: string | undefined;
|
|
832
861
|
/**
|
|
833
862
|
* SVG Styling Attributes
|
|
834
863
|
* @see https://www.w3.org/TR/SVG/styling.html#ElementSpecificStyling
|
|
835
864
|
*/
|
|
836
865
|
class?: any;
|
|
837
|
-
style?: StyleValue;
|
|
838
|
-
color?: string;
|
|
839
|
-
height?: Numberish;
|
|
840
|
-
id?: string;
|
|
841
|
-
lang?: string;
|
|
842
|
-
max?: Numberish;
|
|
843
|
-
media?: string;
|
|
844
|
-
method?: string;
|
|
845
|
-
min?: Numberish;
|
|
846
|
-
name?: string;
|
|
847
|
-
target?: string;
|
|
848
|
-
type?: string;
|
|
849
|
-
width?: Numberish;
|
|
850
|
-
role?: string;
|
|
851
|
-
tabindex?: Numberish;
|
|
852
|
-
crossOrigin?: 'anonymous' | 'use-credentials' | '';
|
|
853
|
-
'accent-height'?: Numberish;
|
|
854
|
-
accumulate?: 'none' | 'sum';
|
|
855
|
-
additive?: 'replace' | 'sum';
|
|
856
|
-
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit';
|
|
857
|
-
allowReorder?: 'no' | 'yes';
|
|
858
|
-
alphabetic?: Numberish;
|
|
859
|
-
amplitude?: Numberish;
|
|
860
|
-
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated';
|
|
861
|
-
ascent?: Numberish;
|
|
862
|
-
attributeName?: string;
|
|
863
|
-
attributeType?: string;
|
|
864
|
-
autoReverse?: Numberish;
|
|
865
|
-
azimuth?: Numberish;
|
|
866
|
-
baseFrequency?: Numberish;
|
|
867
|
-
'baseline-shift'?: Numberish;
|
|
868
|
-
baseProfile?: Numberish;
|
|
869
|
-
bbox?: Numberish;
|
|
870
|
-
begin?: Numberish;
|
|
871
|
-
bias?: Numberish;
|
|
872
|
-
by?: Numberish;
|
|
873
|
-
calcMode?: Numberish;
|
|
874
|
-
'cap-height'?: Numberish;
|
|
875
|
-
clip?: Numberish;
|
|
876
|
-
'clip-path'?: string;
|
|
877
|
-
clipPathUnits?: Numberish;
|
|
878
|
-
'clip-rule'?: Numberish;
|
|
879
|
-
'color-interpolation'?: Numberish;
|
|
880
|
-
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit';
|
|
881
|
-
'color-profile'?: Numberish;
|
|
882
|
-
'color-rendering'?: Numberish;
|
|
883
|
-
contentScriptType?: Numberish;
|
|
884
|
-
contentStyleType?: Numberish;
|
|
885
|
-
cursor?: Numberish;
|
|
886
|
-
cx?: Numberish;
|
|
887
|
-
cy?: Numberish;
|
|
888
|
-
d?: string;
|
|
889
|
-
decelerate?: Numberish;
|
|
890
|
-
descent?: Numberish;
|
|
891
|
-
diffuseConstant?: Numberish;
|
|
892
|
-
direction?: Numberish;
|
|
893
|
-
display?: Numberish;
|
|
894
|
-
divisor?: Numberish;
|
|
895
|
-
'dominant-baseline'?: Numberish;
|
|
896
|
-
dur?: Numberish;
|
|
897
|
-
dx?: Numberish;
|
|
898
|
-
dy?: Numberish;
|
|
899
|
-
edgeMode?: Numberish;
|
|
900
|
-
elevation?: Numberish;
|
|
901
|
-
'enable-background'?: Numberish;
|
|
902
|
-
end?: Numberish;
|
|
903
|
-
exponent?: Numberish;
|
|
904
|
-
externalResourcesRequired?: Numberish;
|
|
905
|
-
fill?: string;
|
|
906
|
-
'fill-opacity'?: Numberish;
|
|
907
|
-
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit';
|
|
908
|
-
filter?: string;
|
|
909
|
-
filterRes?: Numberish;
|
|
910
|
-
filterUnits?: Numberish;
|
|
911
|
-
'flood-color'?: Numberish;
|
|
912
|
-
'flood-opacity'?: Numberish;
|
|
913
|
-
focusable?: Numberish;
|
|
914
|
-
'font-family'?: string;
|
|
915
|
-
'font-size'?: Numberish;
|
|
916
|
-
'font-size-adjust'?: Numberish;
|
|
917
|
-
'font-stretch'?: Numberish;
|
|
918
|
-
'font-style'?: Numberish;
|
|
919
|
-
'font-variant'?: Numberish;
|
|
920
|
-
'font-weight'?: Numberish;
|
|
921
|
-
format?: Numberish;
|
|
922
|
-
from?: Numberish;
|
|
923
|
-
fx?: Numberish;
|
|
924
|
-
fy?: Numberish;
|
|
925
|
-
g1?: Numberish;
|
|
926
|
-
g2?: Numberish;
|
|
927
|
-
'glyph-name'?: Numberish;
|
|
928
|
-
'glyph-orientation-horizontal'?: Numberish;
|
|
929
|
-
'glyph-orientation-vertical'?: Numberish;
|
|
930
|
-
glyphRef?: Numberish;
|
|
931
|
-
gradientTransform?: string;
|
|
932
|
-
gradientUnits?: string;
|
|
933
|
-
hanging?: Numberish;
|
|
934
|
-
'horiz-adv-x'?: Numberish;
|
|
935
|
-
'horiz-origin-x'?: Numberish;
|
|
936
|
-
href?: string;
|
|
937
|
-
ideographic?: Numberish;
|
|
938
|
-
'image-rendering'?: Numberish;
|
|
939
|
-
in2?: Numberish;
|
|
940
|
-
in?: string;
|
|
941
|
-
intercept?: Numberish;
|
|
942
|
-
k1?: Numberish;
|
|
943
|
-
k2?: Numberish;
|
|
944
|
-
k3?: Numberish;
|
|
945
|
-
k4?: Numberish;
|
|
946
|
-
k?: Numberish;
|
|
947
|
-
kernelMatrix?: Numberish;
|
|
948
|
-
kernelUnitLength?: Numberish;
|
|
949
|
-
kerning?: Numberish;
|
|
950
|
-
keyPoints?: Numberish;
|
|
951
|
-
keySplines?: Numberish;
|
|
952
|
-
keyTimes?: Numberish;
|
|
953
|
-
lengthAdjust?: Numberish;
|
|
954
|
-
'letter-spacing'?: Numberish;
|
|
955
|
-
'lighting-color'?: Numberish;
|
|
956
|
-
limitingConeAngle?: Numberish;
|
|
957
|
-
local?: Numberish;
|
|
958
|
-
'marker-end'?: string;
|
|
959
|
-
markerHeight?: Numberish;
|
|
960
|
-
'marker-mid'?: string;
|
|
961
|
-
'marker-start'?: string;
|
|
962
|
-
markerUnits?: Numberish;
|
|
963
|
-
markerWidth?: Numberish;
|
|
964
|
-
mask?: string;
|
|
965
|
-
maskContentUnits?: Numberish;
|
|
966
|
-
maskUnits?: Numberish;
|
|
967
|
-
mathematical?: Numberish;
|
|
968
|
-
mode?: Numberish;
|
|
969
|
-
numOctaves?: Numberish;
|
|
970
|
-
offset?: Numberish;
|
|
971
|
-
opacity?: Numberish;
|
|
972
|
-
operator?: Numberish;
|
|
973
|
-
order?: Numberish;
|
|
974
|
-
orient?: Numberish;
|
|
975
|
-
orientation?: Numberish;
|
|
976
|
-
origin?: Numberish;
|
|
977
|
-
overflow?: Numberish;
|
|
978
|
-
'overline-position'?: Numberish;
|
|
979
|
-
'overline-thickness'?: Numberish;
|
|
980
|
-
'paint-order'?: Numberish;
|
|
981
|
-
'panose-1'?: Numberish;
|
|
982
|
-
pathLength?: Numberish;
|
|
983
|
-
patternContentUnits?: string;
|
|
984
|
-
patternTransform?: Numberish;
|
|
985
|
-
patternUnits?: string;
|
|
986
|
-
'pointer-events'?: Numberish;
|
|
987
|
-
points?: string;
|
|
988
|
-
pointsAtX?: Numberish;
|
|
989
|
-
pointsAtY?: Numberish;
|
|
990
|
-
pointsAtZ?: Numberish;
|
|
991
|
-
preserveAlpha?: Numberish;
|
|
992
|
-
preserveAspectRatio?: string;
|
|
993
|
-
primitiveUnits?: Numberish;
|
|
994
|
-
r?: Numberish;
|
|
995
|
-
radius?: Numberish;
|
|
996
|
-
refX?: Numberish;
|
|
997
|
-
refY?: Numberish;
|
|
998
|
-
renderingIntent?: Numberish;
|
|
999
|
-
repeatCount?: Numberish;
|
|
1000
|
-
repeatDur?: Numberish;
|
|
1001
|
-
requiredExtensions?: Numberish;
|
|
1002
|
-
requiredFeatures?: Numberish;
|
|
1003
|
-
restart?: Numberish;
|
|
1004
|
-
result?: string;
|
|
1005
|
-
rotate?: Numberish;
|
|
1006
|
-
rx?: Numberish;
|
|
1007
|
-
ry?: Numberish;
|
|
1008
|
-
scale?: Numberish;
|
|
1009
|
-
seed?: Numberish;
|
|
1010
|
-
'shape-rendering'?: Numberish;
|
|
1011
|
-
slope?: Numberish;
|
|
1012
|
-
spacing?: Numberish;
|
|
1013
|
-
specularConstant?: Numberish;
|
|
1014
|
-
specularExponent?: Numberish;
|
|
1015
|
-
speed?: Numberish;
|
|
1016
|
-
spreadMethod?: string;
|
|
1017
|
-
startOffset?: Numberish;
|
|
1018
|
-
stdDeviation?: Numberish;
|
|
1019
|
-
stemh?: Numberish;
|
|
1020
|
-
stemv?: Numberish;
|
|
1021
|
-
stitchTiles?: Numberish;
|
|
1022
|
-
'stop-color'?: string;
|
|
1023
|
-
'stop-opacity'?: Numberish;
|
|
1024
|
-
'strikethrough-position'?: Numberish;
|
|
1025
|
-
'strikethrough-thickness'?: Numberish;
|
|
1026
|
-
string?: Numberish;
|
|
1027
|
-
stroke?: string;
|
|
1028
|
-
'stroke-dasharray'?: Numberish;
|
|
1029
|
-
'stroke-dashoffset'?: Numberish;
|
|
1030
|
-
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit';
|
|
1031
|
-
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit';
|
|
1032
|
-
'stroke-miterlimit'?: Numberish;
|
|
1033
|
-
'stroke-opacity'?: Numberish;
|
|
1034
|
-
'stroke-width'?: Numberish;
|
|
1035
|
-
surfaceScale?: Numberish;
|
|
1036
|
-
systemLanguage?: Numberish;
|
|
1037
|
-
tableValues?: Numberish;
|
|
1038
|
-
targetX?: Numberish;
|
|
1039
|
-
targetY?: Numberish;
|
|
1040
|
-
'text-anchor'?: string;
|
|
1041
|
-
'text-decoration'?: Numberish;
|
|
1042
|
-
textLength?: Numberish;
|
|
1043
|
-
'text-rendering'?: Numberish;
|
|
1044
|
-
to?: Numberish;
|
|
1045
|
-
transform?: string;
|
|
1046
|
-
u1?: Numberish;
|
|
1047
|
-
u2?: Numberish;
|
|
1048
|
-
'underline-position'?: Numberish;
|
|
1049
|
-
'underline-thickness'?: Numberish;
|
|
1050
|
-
unicode?: Numberish;
|
|
1051
|
-
'unicode-bidi'?: Numberish;
|
|
1052
|
-
'unicode-range'?: Numberish;
|
|
1053
|
-
'unitsPer-em'?: Numberish;
|
|
1054
|
-
'v-alphabetic'?: Numberish;
|
|
1055
|
-
values?: string;
|
|
1056
|
-
'vector-effect'?: Numberish;
|
|
1057
|
-
version?: string;
|
|
1058
|
-
'vert-adv-y'?: Numberish;
|
|
1059
|
-
'vert-origin-x'?: Numberish;
|
|
1060
|
-
'vert-origin-y'?: Numberish;
|
|
1061
|
-
'v-hanging'?: Numberish;
|
|
1062
|
-
'v-ideographic'?: Numberish;
|
|
1063
|
-
viewBox?: string;
|
|
1064
|
-
viewTarget?: Numberish;
|
|
1065
|
-
visibility?: Numberish;
|
|
1066
|
-
'v-mathematical'?: Numberish;
|
|
1067
|
-
widths?: Numberish;
|
|
1068
|
-
'word-spacing'?: Numberish;
|
|
1069
|
-
'writing-mode'?: Numberish;
|
|
1070
|
-
x1?: Numberish;
|
|
1071
|
-
x2?: Numberish;
|
|
1072
|
-
x?: Numberish;
|
|
1073
|
-
xChannelSelector?: string;
|
|
1074
|
-
'x-height'?: Numberish;
|
|
1075
|
-
xlinkActuate?: string;
|
|
1076
|
-
xlinkArcrole?: string;
|
|
1077
|
-
xlinkHref?: string;
|
|
1078
|
-
xlinkRole?: string;
|
|
1079
|
-
xlinkShow?: string;
|
|
1080
|
-
xlinkTitle?: string;
|
|
1081
|
-
xlinkType?: string;
|
|
1082
|
-
xmlns?: string;
|
|
1083
|
-
xmlnsXlink?: string;
|
|
1084
|
-
y1?: Numberish;
|
|
1085
|
-
y2?: Numberish;
|
|
1086
|
-
y?: Numberish;
|
|
1087
|
-
yChannelSelector?: string;
|
|
1088
|
-
z?: Numberish;
|
|
1089
|
-
zoomAndPan?: string;
|
|
866
|
+
style?: StyleValue | undefined;
|
|
867
|
+
color?: string | undefined;
|
|
868
|
+
height?: Numberish | undefined;
|
|
869
|
+
id?: string | undefined;
|
|
870
|
+
lang?: string | undefined;
|
|
871
|
+
max?: Numberish | undefined;
|
|
872
|
+
media?: string | undefined;
|
|
873
|
+
method?: string | undefined;
|
|
874
|
+
min?: Numberish | undefined;
|
|
875
|
+
name?: string | undefined;
|
|
876
|
+
target?: string | undefined;
|
|
877
|
+
type?: string | undefined;
|
|
878
|
+
width?: Numberish | undefined;
|
|
879
|
+
role?: string | undefined;
|
|
880
|
+
tabindex?: Numberish | undefined;
|
|
881
|
+
crossOrigin?: 'anonymous' | 'use-credentials' | '' | undefined;
|
|
882
|
+
'accent-height'?: Numberish | undefined;
|
|
883
|
+
accumulate?: 'none' | 'sum' | undefined;
|
|
884
|
+
additive?: 'replace' | 'sum' | undefined;
|
|
885
|
+
'alignment-baseline'?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit' | undefined;
|
|
886
|
+
allowReorder?: 'no' | 'yes' | undefined;
|
|
887
|
+
alphabetic?: Numberish | undefined;
|
|
888
|
+
amplitude?: Numberish | undefined;
|
|
889
|
+
'arabic-form'?: 'initial' | 'medial' | 'terminal' | 'isolated' | undefined;
|
|
890
|
+
ascent?: Numberish | undefined;
|
|
891
|
+
attributeName?: string | undefined;
|
|
892
|
+
attributeType?: string | undefined;
|
|
893
|
+
autoReverse?: Numberish | undefined;
|
|
894
|
+
azimuth?: Numberish | undefined;
|
|
895
|
+
baseFrequency?: Numberish | undefined;
|
|
896
|
+
'baseline-shift'?: Numberish | undefined;
|
|
897
|
+
baseProfile?: Numberish | undefined;
|
|
898
|
+
bbox?: Numberish | undefined;
|
|
899
|
+
begin?: Numberish | undefined;
|
|
900
|
+
bias?: Numberish | undefined;
|
|
901
|
+
by?: Numberish | undefined;
|
|
902
|
+
calcMode?: Numberish | undefined;
|
|
903
|
+
'cap-height'?: Numberish | undefined;
|
|
904
|
+
clip?: Numberish | undefined;
|
|
905
|
+
'clip-path'?: string | undefined;
|
|
906
|
+
clipPathUnits?: Numberish | undefined;
|
|
907
|
+
'clip-rule'?: Numberish | undefined;
|
|
908
|
+
'color-interpolation'?: Numberish | undefined;
|
|
909
|
+
'color-interpolation-filters'?: 'auto' | 'sRGB' | 'linearRGB' | 'inherit' | undefined;
|
|
910
|
+
'color-profile'?: Numberish | undefined;
|
|
911
|
+
'color-rendering'?: Numberish | undefined;
|
|
912
|
+
contentScriptType?: Numberish | undefined;
|
|
913
|
+
contentStyleType?: Numberish | undefined;
|
|
914
|
+
cursor?: Numberish | undefined;
|
|
915
|
+
cx?: Numberish | undefined;
|
|
916
|
+
cy?: Numberish | undefined;
|
|
917
|
+
d?: string | undefined;
|
|
918
|
+
decelerate?: Numberish | undefined;
|
|
919
|
+
descent?: Numberish | undefined;
|
|
920
|
+
diffuseConstant?: Numberish | undefined;
|
|
921
|
+
direction?: Numberish | undefined;
|
|
922
|
+
display?: Numberish | undefined;
|
|
923
|
+
divisor?: Numberish | undefined;
|
|
924
|
+
'dominant-baseline'?: Numberish | undefined;
|
|
925
|
+
dur?: Numberish | undefined;
|
|
926
|
+
dx?: Numberish | undefined;
|
|
927
|
+
dy?: Numberish | undefined;
|
|
928
|
+
edgeMode?: Numberish | undefined;
|
|
929
|
+
elevation?: Numberish | undefined;
|
|
930
|
+
'enable-background'?: Numberish | undefined;
|
|
931
|
+
end?: Numberish | undefined;
|
|
932
|
+
exponent?: Numberish | undefined;
|
|
933
|
+
externalResourcesRequired?: Numberish | undefined;
|
|
934
|
+
fill?: string | undefined;
|
|
935
|
+
'fill-opacity'?: Numberish | undefined;
|
|
936
|
+
'fill-rule'?: 'nonzero' | 'evenodd' | 'inherit' | undefined;
|
|
937
|
+
filter?: string | undefined;
|
|
938
|
+
filterRes?: Numberish | undefined;
|
|
939
|
+
filterUnits?: Numberish | undefined;
|
|
940
|
+
'flood-color'?: Numberish | undefined;
|
|
941
|
+
'flood-opacity'?: Numberish | undefined;
|
|
942
|
+
focusable?: Numberish | undefined;
|
|
943
|
+
'font-family'?: string | undefined;
|
|
944
|
+
'font-size'?: Numberish | undefined;
|
|
945
|
+
'font-size-adjust'?: Numberish | undefined;
|
|
946
|
+
'font-stretch'?: Numberish | undefined;
|
|
947
|
+
'font-style'?: Numberish | undefined;
|
|
948
|
+
'font-variant'?: Numberish | undefined;
|
|
949
|
+
'font-weight'?: Numberish | undefined;
|
|
950
|
+
format?: Numberish | undefined;
|
|
951
|
+
from?: Numberish | undefined;
|
|
952
|
+
fx?: Numberish | undefined;
|
|
953
|
+
fy?: Numberish | undefined;
|
|
954
|
+
g1?: Numberish | undefined;
|
|
955
|
+
g2?: Numberish | undefined;
|
|
956
|
+
'glyph-name'?: Numberish | undefined;
|
|
957
|
+
'glyph-orientation-horizontal'?: Numberish | undefined;
|
|
958
|
+
'glyph-orientation-vertical'?: Numberish | undefined;
|
|
959
|
+
glyphRef?: Numberish | undefined;
|
|
960
|
+
gradientTransform?: string | undefined;
|
|
961
|
+
gradientUnits?: string | undefined;
|
|
962
|
+
hanging?: Numberish | undefined;
|
|
963
|
+
'horiz-adv-x'?: Numberish | undefined;
|
|
964
|
+
'horiz-origin-x'?: Numberish | undefined;
|
|
965
|
+
href?: string | undefined;
|
|
966
|
+
ideographic?: Numberish | undefined;
|
|
967
|
+
'image-rendering'?: Numberish | undefined;
|
|
968
|
+
in2?: Numberish | undefined;
|
|
969
|
+
in?: string | undefined;
|
|
970
|
+
intercept?: Numberish | undefined;
|
|
971
|
+
k1?: Numberish | undefined;
|
|
972
|
+
k2?: Numberish | undefined;
|
|
973
|
+
k3?: Numberish | undefined;
|
|
974
|
+
k4?: Numberish | undefined;
|
|
975
|
+
k?: Numberish | undefined;
|
|
976
|
+
kernelMatrix?: Numberish | undefined;
|
|
977
|
+
kernelUnitLength?: Numberish | undefined;
|
|
978
|
+
kerning?: Numberish | undefined;
|
|
979
|
+
keyPoints?: Numberish | undefined;
|
|
980
|
+
keySplines?: Numberish | undefined;
|
|
981
|
+
keyTimes?: Numberish | undefined;
|
|
982
|
+
lengthAdjust?: Numberish | undefined;
|
|
983
|
+
'letter-spacing'?: Numberish | undefined;
|
|
984
|
+
'lighting-color'?: Numberish | undefined;
|
|
985
|
+
limitingConeAngle?: Numberish | undefined;
|
|
986
|
+
local?: Numberish | undefined;
|
|
987
|
+
'marker-end'?: string | undefined;
|
|
988
|
+
markerHeight?: Numberish | undefined;
|
|
989
|
+
'marker-mid'?: string | undefined;
|
|
990
|
+
'marker-start'?: string | undefined;
|
|
991
|
+
markerUnits?: Numberish | undefined;
|
|
992
|
+
markerWidth?: Numberish | undefined;
|
|
993
|
+
mask?: string | undefined;
|
|
994
|
+
maskContentUnits?: Numberish | undefined;
|
|
995
|
+
maskUnits?: Numberish | undefined;
|
|
996
|
+
mathematical?: Numberish | undefined;
|
|
997
|
+
mode?: Numberish | undefined;
|
|
998
|
+
numOctaves?: Numberish | undefined;
|
|
999
|
+
offset?: Numberish | undefined;
|
|
1000
|
+
opacity?: Numberish | undefined;
|
|
1001
|
+
operator?: Numberish | undefined;
|
|
1002
|
+
order?: Numberish | undefined;
|
|
1003
|
+
orient?: Numberish | undefined;
|
|
1004
|
+
orientation?: Numberish | undefined;
|
|
1005
|
+
origin?: Numberish | undefined;
|
|
1006
|
+
overflow?: Numberish | undefined;
|
|
1007
|
+
'overline-position'?: Numberish | undefined;
|
|
1008
|
+
'overline-thickness'?: Numberish | undefined;
|
|
1009
|
+
'paint-order'?: Numberish | undefined;
|
|
1010
|
+
'panose-1'?: Numberish | undefined;
|
|
1011
|
+
pathLength?: Numberish | undefined;
|
|
1012
|
+
patternContentUnits?: string | undefined;
|
|
1013
|
+
patternTransform?: Numberish | undefined;
|
|
1014
|
+
patternUnits?: string | undefined;
|
|
1015
|
+
'pointer-events'?: Numberish | undefined;
|
|
1016
|
+
points?: string | undefined;
|
|
1017
|
+
pointsAtX?: Numberish | undefined;
|
|
1018
|
+
pointsAtY?: Numberish | undefined;
|
|
1019
|
+
pointsAtZ?: Numberish | undefined;
|
|
1020
|
+
preserveAlpha?: Numberish | undefined;
|
|
1021
|
+
preserveAspectRatio?: string | undefined;
|
|
1022
|
+
primitiveUnits?: Numberish | undefined;
|
|
1023
|
+
r?: Numberish | undefined;
|
|
1024
|
+
radius?: Numberish | undefined;
|
|
1025
|
+
refX?: Numberish | undefined;
|
|
1026
|
+
refY?: Numberish | undefined;
|
|
1027
|
+
renderingIntent?: Numberish | undefined;
|
|
1028
|
+
repeatCount?: Numberish | undefined;
|
|
1029
|
+
repeatDur?: Numberish | undefined;
|
|
1030
|
+
requiredExtensions?: Numberish | undefined;
|
|
1031
|
+
requiredFeatures?: Numberish | undefined;
|
|
1032
|
+
restart?: Numberish | undefined;
|
|
1033
|
+
result?: string | undefined;
|
|
1034
|
+
rotate?: Numberish | undefined;
|
|
1035
|
+
rx?: Numberish | undefined;
|
|
1036
|
+
ry?: Numberish | undefined;
|
|
1037
|
+
scale?: Numberish | undefined;
|
|
1038
|
+
seed?: Numberish | undefined;
|
|
1039
|
+
'shape-rendering'?: Numberish | undefined;
|
|
1040
|
+
slope?: Numberish | undefined;
|
|
1041
|
+
spacing?: Numberish | undefined;
|
|
1042
|
+
specularConstant?: Numberish | undefined;
|
|
1043
|
+
specularExponent?: Numberish | undefined;
|
|
1044
|
+
speed?: Numberish | undefined;
|
|
1045
|
+
spreadMethod?: string | undefined;
|
|
1046
|
+
startOffset?: Numberish | undefined;
|
|
1047
|
+
stdDeviation?: Numberish | undefined;
|
|
1048
|
+
stemh?: Numberish | undefined;
|
|
1049
|
+
stemv?: Numberish | undefined;
|
|
1050
|
+
stitchTiles?: Numberish | undefined;
|
|
1051
|
+
'stop-color'?: string | undefined;
|
|
1052
|
+
'stop-opacity'?: Numberish | undefined;
|
|
1053
|
+
'strikethrough-position'?: Numberish | undefined;
|
|
1054
|
+
'strikethrough-thickness'?: Numberish | undefined;
|
|
1055
|
+
string?: Numberish | undefined;
|
|
1056
|
+
stroke?: string | undefined;
|
|
1057
|
+
'stroke-dasharray'?: Numberish | undefined;
|
|
1058
|
+
'stroke-dashoffset'?: Numberish | undefined;
|
|
1059
|
+
'stroke-linecap'?: 'butt' | 'round' | 'square' | 'inherit' | undefined;
|
|
1060
|
+
'stroke-linejoin'?: 'miter' | 'round' | 'bevel' | 'inherit' | undefined;
|
|
1061
|
+
'stroke-miterlimit'?: Numberish | undefined;
|
|
1062
|
+
'stroke-opacity'?: Numberish | undefined;
|
|
1063
|
+
'stroke-width'?: Numberish | undefined;
|
|
1064
|
+
surfaceScale?: Numberish | undefined;
|
|
1065
|
+
systemLanguage?: Numberish | undefined;
|
|
1066
|
+
tableValues?: Numberish | undefined;
|
|
1067
|
+
targetX?: Numberish | undefined;
|
|
1068
|
+
targetY?: Numberish | undefined;
|
|
1069
|
+
'text-anchor'?: string | undefined;
|
|
1070
|
+
'text-decoration'?: Numberish | undefined;
|
|
1071
|
+
textLength?: Numberish | undefined;
|
|
1072
|
+
'text-rendering'?: Numberish | undefined;
|
|
1073
|
+
to?: Numberish | undefined;
|
|
1074
|
+
transform?: string | undefined;
|
|
1075
|
+
u1?: Numberish | undefined;
|
|
1076
|
+
u2?: Numberish | undefined;
|
|
1077
|
+
'underline-position'?: Numberish | undefined;
|
|
1078
|
+
'underline-thickness'?: Numberish | undefined;
|
|
1079
|
+
unicode?: Numberish | undefined;
|
|
1080
|
+
'unicode-bidi'?: Numberish | undefined;
|
|
1081
|
+
'unicode-range'?: Numberish | undefined;
|
|
1082
|
+
'unitsPer-em'?: Numberish | undefined;
|
|
1083
|
+
'v-alphabetic'?: Numberish | undefined;
|
|
1084
|
+
values?: string | undefined;
|
|
1085
|
+
'vector-effect'?: Numberish | undefined;
|
|
1086
|
+
version?: string | undefined;
|
|
1087
|
+
'vert-adv-y'?: Numberish | undefined;
|
|
1088
|
+
'vert-origin-x'?: Numberish | undefined;
|
|
1089
|
+
'vert-origin-y'?: Numberish | undefined;
|
|
1090
|
+
'v-hanging'?: Numberish | undefined;
|
|
1091
|
+
'v-ideographic'?: Numberish | undefined;
|
|
1092
|
+
viewBox?: string | undefined;
|
|
1093
|
+
viewTarget?: Numberish | undefined;
|
|
1094
|
+
visibility?: Numberish | undefined;
|
|
1095
|
+
'v-mathematical'?: Numberish | undefined;
|
|
1096
|
+
widths?: Numberish | undefined;
|
|
1097
|
+
'word-spacing'?: Numberish | undefined;
|
|
1098
|
+
'writing-mode'?: Numberish | undefined;
|
|
1099
|
+
x1?: Numberish | undefined;
|
|
1100
|
+
x2?: Numberish | undefined;
|
|
1101
|
+
x?: Numberish | undefined;
|
|
1102
|
+
xChannelSelector?: string | undefined;
|
|
1103
|
+
'x-height'?: Numberish | undefined;
|
|
1104
|
+
xlinkActuate?: string | undefined;
|
|
1105
|
+
xlinkArcrole?: string | undefined;
|
|
1106
|
+
xlinkHref?: string | undefined;
|
|
1107
|
+
xlinkRole?: string | undefined;
|
|
1108
|
+
xlinkShow?: string | undefined;
|
|
1109
|
+
xlinkTitle?: string | undefined;
|
|
1110
|
+
xlinkType?: string | undefined;
|
|
1111
|
+
xmlns?: string | undefined;
|
|
1112
|
+
xmlnsXlink?: string | undefined;
|
|
1113
|
+
y1?: Numberish | undefined;
|
|
1114
|
+
y2?: Numberish | undefined;
|
|
1115
|
+
y?: Numberish | undefined;
|
|
1116
|
+
yChannelSelector?: string | undefined;
|
|
1117
|
+
z?: Numberish | undefined;
|
|
1118
|
+
zoomAndPan?: string | undefined;
|
|
1090
1119
|
}
|
|
1091
1120
|
export interface IntrinsicElementAttributes {
|
|
1092
1121
|
a: AnchorHTMLAttributes;
|
|
@@ -1282,19 +1311,19 @@ export interface Events {
|
|
|
1282
1311
|
onFocusout: FocusEvent;
|
|
1283
1312
|
onBlur: FocusEvent;
|
|
1284
1313
|
onChange: Event;
|
|
1285
|
-
onBeforeinput:
|
|
1286
|
-
|
|
1314
|
+
onBeforeinput: InputEvent;
|
|
1315
|
+
onFormdata: FormDataEvent;
|
|
1316
|
+
onInput: InputEvent;
|
|
1287
1317
|
onReset: Event;
|
|
1288
|
-
onSubmit:
|
|
1318
|
+
onSubmit: SubmitEvent;
|
|
1289
1319
|
onInvalid: Event;
|
|
1320
|
+
onFullscreenchange: Event;
|
|
1321
|
+
onFullscreenerror: Event;
|
|
1290
1322
|
onLoad: Event;
|
|
1291
1323
|
onError: Event;
|
|
1292
1324
|
onKeydown: KeyboardEvent;
|
|
1293
1325
|
onKeypress: KeyboardEvent;
|
|
1294
1326
|
onKeyup: KeyboardEvent;
|
|
1295
|
-
onAuxclick: MouseEvent;
|
|
1296
|
-
onClick: MouseEvent;
|
|
1297
|
-
onContextmenu: MouseEvent;
|
|
1298
1327
|
onDblclick: MouseEvent;
|
|
1299
1328
|
onMousedown: MouseEvent;
|
|
1300
1329
|
onMouseenter: MouseEvent;
|
|
@@ -1303,12 +1332,12 @@ export interface Events {
|
|
|
1303
1332
|
onMouseout: MouseEvent;
|
|
1304
1333
|
onMouseover: MouseEvent;
|
|
1305
1334
|
onMouseup: MouseEvent;
|
|
1306
|
-
onAbort:
|
|
1335
|
+
onAbort: UIEvent;
|
|
1307
1336
|
onCanplay: Event;
|
|
1308
1337
|
onCanplaythrough: Event;
|
|
1309
1338
|
onDurationchange: Event;
|
|
1310
1339
|
onEmptied: Event;
|
|
1311
|
-
onEncrypted:
|
|
1340
|
+
onEncrypted: MediaEncryptedEvent;
|
|
1312
1341
|
onEnded: Event;
|
|
1313
1342
|
onLoadeddata: Event;
|
|
1314
1343
|
onLoadedmetadata: Event;
|
|
@@ -1316,7 +1345,7 @@ export interface Events {
|
|
|
1316
1345
|
onPause: Event;
|
|
1317
1346
|
onPlay: Event;
|
|
1318
1347
|
onPlaying: Event;
|
|
1319
|
-
onProgress:
|
|
1348
|
+
onProgress: ProgressEvent;
|
|
1320
1349
|
onRatechange: Event;
|
|
1321
1350
|
onSeeked: Event;
|
|
1322
1351
|
onSeeking: Event;
|
|
@@ -1332,6 +1361,11 @@ export interface Events {
|
|
|
1332
1361
|
onTouchend: TouchEvent;
|
|
1333
1362
|
onTouchmove: TouchEvent;
|
|
1334
1363
|
onTouchstart: TouchEvent;
|
|
1364
|
+
onAuxclick: PointerEvent;
|
|
1365
|
+
onClick: PointerEvent;
|
|
1366
|
+
onContextmenu: PointerEvent;
|
|
1367
|
+
onGotpointercapture: PointerEvent;
|
|
1368
|
+
onLostpointercapture: PointerEvent;
|
|
1335
1369
|
onPointerdown: PointerEvent;
|
|
1336
1370
|
onPointermove: PointerEvent;
|
|
1337
1371
|
onPointerup: PointerEvent;
|
|
@@ -1340,23 +1374,29 @@ export interface Events {
|
|
|
1340
1374
|
onPointerleave: PointerEvent;
|
|
1341
1375
|
onPointerover: PointerEvent;
|
|
1342
1376
|
onPointerout: PointerEvent;
|
|
1377
|
+
onBeforetoggle: ToggleEvent;
|
|
1378
|
+
onToggle: ToggleEvent;
|
|
1343
1379
|
onWheel: WheelEvent;
|
|
1380
|
+
onAnimationcancel: AnimationEvent;
|
|
1344
1381
|
onAnimationstart: AnimationEvent;
|
|
1345
1382
|
onAnimationend: AnimationEvent;
|
|
1346
1383
|
onAnimationiteration: AnimationEvent;
|
|
1384
|
+
onSecuritypolicyviolation: SecurityPolicyViolationEvent;
|
|
1385
|
+
onTransitioncancel: TransitionEvent;
|
|
1347
1386
|
onTransitionend: TransitionEvent;
|
|
1387
|
+
onTransitionrun: TransitionEvent;
|
|
1348
1388
|
onTransitionstart: TransitionEvent;
|
|
1349
1389
|
}
|
|
1350
1390
|
type EventHandlers<E> = {
|
|
1351
1391
|
[K in keyof E]?: E[K] extends (...args: any) => any ? E[K] : (payload: E[K]) => void;
|
|
1352
1392
|
};
|
|
1353
1393
|
|
|
1354
|
-
export
|
|
1355
|
-
key?: PropertyKey;
|
|
1356
|
-
ref?: VNodeRef;
|
|
1357
|
-
ref_for?: boolean;
|
|
1358
|
-
ref_key?: string;
|
|
1359
|
-
}
|
|
1394
|
+
export interface ReservedProps {
|
|
1395
|
+
key?: PropertyKey | undefined;
|
|
1396
|
+
ref?: VNodeRef | undefined;
|
|
1397
|
+
ref_for?: boolean | undefined;
|
|
1398
|
+
ref_key?: string | undefined;
|
|
1399
|
+
}
|
|
1360
1400
|
export type NativeElements = {
|
|
1361
1401
|
[K in keyof IntrinsicElementAttributes]: IntrinsicElementAttributes[K] & ReservedProps;
|
|
1362
1402
|
};
|
|
@@ -1366,10 +1406,9 @@ export type NativeElements = {
|
|
|
1366
1406
|
*
|
|
1367
1407
|
* To enable proper types, add `"dom"` to `"lib"` in your `tsconfig.json`.
|
|
1368
1408
|
*/
|
|
1369
|
-
type DomStub = {};
|
|
1370
1409
|
type DomType<T> = typeof globalThis extends {
|
|
1371
1410
|
window: unknown;
|
|
1372
|
-
} ? T :
|
|
1411
|
+
} ? T : never;
|
|
1373
1412
|
declare module '@vue/reactivity' {
|
|
1374
1413
|
interface RefUnwrapBailTypes {
|
|
1375
1414
|
runtimeDOMBailTypes: DomType<Node | Window>;
|