j20 0.0.0 → 0.0.1

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