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