@vue/runtime-dom 3.3.0-alpha.5 → 3.3.0-alpha.6

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