@primer/components 0.0.0-2021929142717 → 0.0.0-2021929153151
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/CHANGELOG.md +4 -2
- package/dist/browser.esm.js.map +1 -1
- package/dist/browser.umd.js.map +1 -1
- package/lib/Autocomplete/Autocomplete.d.ts +27 -27
- package/lib/Autocomplete/AutocompleteInput.d.ts +27 -27
- package/lib/Button/Button.d.ts +25 -25
- package/lib/Button/ButtonBase.d.ts +1 -1
- package/lib/Button/ButtonClose.d.ts +26 -26
- package/lib/Button/ButtonDanger.d.ts +25 -25
- package/lib/Button/ButtonInvisible.d.ts +25 -25
- package/lib/Button/ButtonOutline.d.ts +25 -25
- package/lib/Button/ButtonPrimary.d.ts +25 -25
- package/lib/CircleBadge.d.ts +2 -2
- package/lib/CircleOcticon.d.ts +25 -25
- package/lib/Dialog.d.ts +28 -28
- package/lib/Dropdown.d.ts +102 -102
- package/lib/DropdownMenu/DropdownButton.d.ts +27 -27
- package/lib/FilterList.d.ts +24 -24
- package/lib/Flash.d.ts +1 -1
- package/lib/Label.d.ts +1 -1
- package/lib/Position.d.ts +4 -4
- package/lib/ProgressBar.d.ts +1 -1
- package/lib/SelectMenu/SelectMenu.d.ts +152 -152
- package/lib/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib/TextInputWithTokens.d.ts +27 -27
- package/lib/Timeline.d.ts +26 -26
- package/lib/Token/AvatarToken.d.ts +1 -1
- package/lib/Token/IssueLabelToken.d.ts +1 -1
- package/lib/Token/Token.d.ts +1 -1
- package/lib/_TextInputWrapper.d.ts +1 -1
- package/lib/sx.d.ts +8 -2
- package/lib/theme.d.ts +78 -0
- package/lib/theme.js +3 -1
- package/lib/utils/types/KeyPaths.d.ts +3 -0
- package/lib/utils/types/KeyPaths.js +1 -0
- package/lib-esm/Autocomplete/Autocomplete.d.ts +27 -27
- package/lib-esm/Autocomplete/AutocompleteInput.d.ts +27 -27
- package/lib-esm/Button/Button.d.ts +25 -25
- package/lib-esm/Button/ButtonBase.d.ts +1 -1
- package/lib-esm/Button/ButtonClose.d.ts +26 -26
- package/lib-esm/Button/ButtonDanger.d.ts +25 -25
- package/lib-esm/Button/ButtonInvisible.d.ts +25 -25
- package/lib-esm/Button/ButtonOutline.d.ts +25 -25
- package/lib-esm/Button/ButtonPrimary.d.ts +25 -25
- package/lib-esm/CircleBadge.d.ts +2 -2
- package/lib-esm/CircleOcticon.d.ts +25 -25
- package/lib-esm/Dialog.d.ts +28 -28
- package/lib-esm/Dropdown.d.ts +102 -102
- package/lib-esm/DropdownMenu/DropdownButton.d.ts +27 -27
- package/lib-esm/FilterList.d.ts +24 -24
- package/lib-esm/Flash.d.ts +1 -1
- package/lib-esm/Label.d.ts +1 -1
- package/lib-esm/Position.d.ts +4 -4
- package/lib-esm/ProgressBar.d.ts +1 -1
- package/lib-esm/SelectMenu/SelectMenu.d.ts +152 -152
- package/lib-esm/SelectMenu/SelectMenuItem.d.ts +1 -1
- package/lib-esm/TextInputWithTokens.d.ts +27 -27
- package/lib-esm/Timeline.d.ts +26 -26
- package/lib-esm/Token/AvatarToken.d.ts +1 -1
- package/lib-esm/Token/IssueLabelToken.d.ts +1 -1
- package/lib-esm/Token/Token.d.ts +1 -1
- package/lib-esm/_TextInputWrapper.d.ts +1 -1
- package/lib-esm/sx.d.ts +8 -2
- package/lib-esm/theme.d.ts +78 -0
- package/lib-esm/theme.js +2 -1
- package/lib-esm/utils/types/KeyPaths.d.ts +3 -0
- package/lib-esm/utils/types/KeyPaths.js +1 -0
- package/package.json +1 -1
package/lib/Dropdown.d.ts
CHANGED
@@ -56,6 +56,7 @@ declare const _default: {
|
|
56
56
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
57
57
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
58
58
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
59
|
+
open?: boolean | undefined;
|
59
60
|
key?: React.Key | null | undefined;
|
60
61
|
defaultChecked?: boolean | undefined;
|
61
62
|
defaultValue?: string | number | readonly string[] | undefined;
|
@@ -63,14 +64,14 @@ declare const _default: {
|
|
63
64
|
suppressHydrationWarning?: boolean | undefined;
|
64
65
|
accessKey?: string | undefined;
|
65
66
|
className?: string | undefined;
|
66
|
-
contentEditable?: "inherit" | (boolean | "
|
67
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
67
68
|
contextMenu?: string | undefined;
|
68
69
|
dir?: string | undefined;
|
69
|
-
draggable?: (boolean | "
|
70
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
70
71
|
id?: string | undefined;
|
71
72
|
lang?: string | undefined;
|
72
73
|
placeholder?: string | undefined;
|
73
|
-
spellCheck?: (boolean | "
|
74
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
74
75
|
tabIndex?: number | undefined;
|
75
76
|
radioGroup?: string | undefined;
|
76
77
|
role?: React.AriaRole | undefined;
|
@@ -93,50 +94,50 @@ declare const _default: {
|
|
93
94
|
results?: number | undefined;
|
94
95
|
security?: string | undefined;
|
95
96
|
unselectable?: "on" | "off" | undefined;
|
96
|
-
inputMode?: "
|
97
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
97
98
|
is?: string | undefined;
|
98
99
|
'aria-activedescendant'?: string | undefined;
|
99
|
-
'aria-atomic'?: boolean | "
|
100
|
-
'aria-autocomplete'?: "none" | "
|
101
|
-
'aria-busy'?: boolean | "
|
102
|
-
'aria-checked'?: boolean | "
|
100
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
101
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
102
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
103
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
103
104
|
'aria-colcount'?: number | undefined;
|
104
105
|
'aria-colindex'?: number | undefined;
|
105
106
|
'aria-colspan'?: number | undefined;
|
106
107
|
'aria-controls'?: string | undefined;
|
107
|
-
'aria-current'?: boolean | "time" | "
|
108
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
108
109
|
'aria-describedby'?: string | undefined;
|
109
110
|
'aria-details'?: string | undefined;
|
110
|
-
'aria-disabled'?: boolean | "
|
111
|
-
'aria-dropeffect'?: "
|
111
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
112
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
112
113
|
'aria-errormessage'?: string | undefined;
|
113
|
-
'aria-expanded'?: boolean | "
|
114
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
114
115
|
'aria-flowto'?: string | undefined;
|
115
|
-
'aria-grabbed'?: boolean | "
|
116
|
-
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "
|
117
|
-
'aria-hidden'?: boolean | "
|
118
|
-
'aria-invalid'?: boolean | "
|
116
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
117
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
|
118
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
119
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
119
120
|
'aria-keyshortcuts'?: string | undefined;
|
120
121
|
'aria-label'?: string | undefined;
|
121
122
|
'aria-labelledby'?: string | undefined;
|
122
123
|
'aria-level'?: number | undefined;
|
123
124
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
124
|
-
'aria-modal'?: boolean | "
|
125
|
-
'aria-multiline'?: boolean | "
|
126
|
-
'aria-multiselectable'?: boolean | "
|
125
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
126
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
127
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
127
128
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
128
129
|
'aria-owns'?: string | undefined;
|
129
130
|
'aria-placeholder'?: string | undefined;
|
130
131
|
'aria-posinset'?: number | undefined;
|
131
|
-
'aria-pressed'?: boolean | "
|
132
|
-
'aria-readonly'?: boolean | "
|
132
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
133
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
133
134
|
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
134
|
-
'aria-required'?: boolean | "
|
135
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
135
136
|
'aria-roledescription'?: string | undefined;
|
136
137
|
'aria-rowcount'?: number | undefined;
|
137
138
|
'aria-rowindex'?: number | undefined;
|
138
139
|
'aria-rowspan'?: number | undefined;
|
139
|
-
'aria-selected'?: boolean | "
|
140
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
140
141
|
'aria-setsize'?: number | undefined;
|
141
142
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
142
143
|
'aria-valuemax'?: number | undefined;
|
@@ -306,8 +307,7 @@ declare const _default: {
|
|
306
307
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLElement> | undefined;
|
307
308
|
onTransitionEnd?: React.TransitionEventHandler<HTMLElement> | undefined;
|
308
309
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLElement> | undefined;
|
309
|
-
|
310
|
-
sx?: import("@styled-system/css").SystemStyleObject | undefined;
|
310
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
311
311
|
onToggle?: React.ReactEventHandler<HTMLElement> | undefined;
|
312
312
|
} & {
|
313
313
|
theme?: any;
|
@@ -353,6 +353,7 @@ declare const _default: {
|
|
353
353
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
354
354
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
355
355
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
356
|
+
open?: boolean | undefined;
|
356
357
|
key?: React.Key | null | undefined;
|
357
358
|
defaultChecked?: boolean | undefined;
|
358
359
|
defaultValue?: string | number | readonly string[] | undefined;
|
@@ -360,14 +361,14 @@ declare const _default: {
|
|
360
361
|
suppressHydrationWarning?: boolean | undefined;
|
361
362
|
accessKey?: string | undefined;
|
362
363
|
className?: string | undefined;
|
363
|
-
contentEditable?: "inherit" | (boolean | "
|
364
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
364
365
|
contextMenu?: string | undefined;
|
365
366
|
dir?: string | undefined;
|
366
|
-
draggable?: (boolean | "
|
367
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
367
368
|
id?: string | undefined;
|
368
369
|
lang?: string | undefined;
|
369
370
|
placeholder?: string | undefined;
|
370
|
-
spellCheck?: (boolean | "
|
371
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
371
372
|
tabIndex?: number | undefined;
|
372
373
|
radioGroup?: string | undefined;
|
373
374
|
role?: React.AriaRole | undefined;
|
@@ -390,50 +391,50 @@ declare const _default: {
|
|
390
391
|
results?: number | undefined;
|
391
392
|
security?: string | undefined;
|
392
393
|
unselectable?: "on" | "off" | undefined;
|
393
|
-
inputMode?: "
|
394
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
394
395
|
is?: string | undefined;
|
395
396
|
'aria-activedescendant'?: string | undefined;
|
396
|
-
'aria-atomic'?: boolean | "
|
397
|
-
'aria-autocomplete'?: "none" | "
|
398
|
-
'aria-busy'?: boolean | "
|
399
|
-
'aria-checked'?: boolean | "
|
397
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
398
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
399
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
400
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
400
401
|
'aria-colcount'?: number | undefined;
|
401
402
|
'aria-colindex'?: number | undefined;
|
402
403
|
'aria-colspan'?: number | undefined;
|
403
404
|
'aria-controls'?: string | undefined;
|
404
|
-
'aria-current'?: boolean | "time" | "
|
405
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
405
406
|
'aria-describedby'?: string | undefined;
|
406
407
|
'aria-details'?: string | undefined;
|
407
|
-
'aria-disabled'?: boolean | "
|
408
|
-
'aria-dropeffect'?: "
|
408
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
409
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
409
410
|
'aria-errormessage'?: string | undefined;
|
410
|
-
'aria-expanded'?: boolean | "
|
411
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
411
412
|
'aria-flowto'?: string | undefined;
|
412
|
-
'aria-grabbed'?: boolean | "
|
413
|
-
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "
|
414
|
-
'aria-hidden'?: boolean | "
|
415
|
-
'aria-invalid'?: boolean | "
|
413
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
414
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
|
415
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
416
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
416
417
|
'aria-keyshortcuts'?: string | undefined;
|
417
418
|
'aria-label'?: string | undefined;
|
418
419
|
'aria-labelledby'?: string | undefined;
|
419
420
|
'aria-level'?: number | undefined;
|
420
421
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
421
|
-
'aria-modal'?: boolean | "
|
422
|
-
'aria-multiline'?: boolean | "
|
423
|
-
'aria-multiselectable'?: boolean | "
|
422
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
423
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
424
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
424
425
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
425
426
|
'aria-owns'?: string | undefined;
|
426
427
|
'aria-placeholder'?: string | undefined;
|
427
428
|
'aria-posinset'?: number | undefined;
|
428
|
-
'aria-pressed'?: boolean | "
|
429
|
-
'aria-readonly'?: boolean | "
|
429
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
430
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
430
431
|
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
431
|
-
'aria-required'?: boolean | "
|
432
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
432
433
|
'aria-roledescription'?: string | undefined;
|
433
434
|
'aria-rowcount'?: number | undefined;
|
434
435
|
'aria-rowindex'?: number | undefined;
|
435
436
|
'aria-rowspan'?: number | undefined;
|
436
|
-
'aria-selected'?: boolean | "
|
437
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
437
438
|
'aria-setsize'?: number | undefined;
|
438
439
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
439
440
|
'aria-valuemax'?: number | undefined;
|
@@ -603,8 +604,7 @@ declare const _default: {
|
|
603
604
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLElement> | undefined;
|
604
605
|
onTransitionEnd?: React.TransitionEventHandler<HTMLElement> | undefined;
|
605
606
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLElement> | undefined;
|
606
|
-
|
607
|
-
sx?: import("@styled-system/css").SystemStyleObject | undefined;
|
607
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
608
608
|
onToggle?: React.ReactEventHandler<HTMLElement> | undefined;
|
609
609
|
} & {
|
610
610
|
theme?: any;
|
@@ -670,6 +670,7 @@ declare const _default: {
|
|
670
670
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
671
671
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
672
672
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
673
|
+
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
673
674
|
type?: "button" | "reset" | "submit" | undefined;
|
674
675
|
name?: string | undefined;
|
675
676
|
key?: React.Key | null | undefined;
|
@@ -679,14 +680,14 @@ declare const _default: {
|
|
679
680
|
suppressHydrationWarning?: boolean | undefined;
|
680
681
|
accessKey?: string | undefined;
|
681
682
|
className?: string | undefined;
|
682
|
-
contentEditable?: "inherit" | (boolean | "
|
683
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
683
684
|
contextMenu?: string | undefined;
|
684
685
|
dir?: string | undefined;
|
685
|
-
draggable?: (boolean | "
|
686
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
686
687
|
id?: string | undefined;
|
687
688
|
lang?: string | undefined;
|
688
689
|
placeholder?: string | undefined;
|
689
|
-
spellCheck?: (boolean | "
|
690
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
690
691
|
tabIndex?: number | undefined;
|
691
692
|
radioGroup?: string | undefined;
|
692
693
|
role?: React.AriaRole | undefined;
|
@@ -709,50 +710,50 @@ declare const _default: {
|
|
709
710
|
results?: number | undefined;
|
710
711
|
security?: string | undefined;
|
711
712
|
unselectable?: "on" | "off" | undefined;
|
712
|
-
inputMode?: "
|
713
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
713
714
|
is?: string | undefined;
|
714
715
|
'aria-activedescendant'?: string | undefined;
|
715
|
-
'aria-atomic'?: boolean | "
|
716
|
-
'aria-autocomplete'?: "none" | "
|
717
|
-
'aria-busy'?: boolean | "
|
718
|
-
'aria-checked'?: boolean | "
|
716
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
717
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
718
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
719
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
719
720
|
'aria-colcount'?: number | undefined;
|
720
721
|
'aria-colindex'?: number | undefined;
|
721
722
|
'aria-colspan'?: number | undefined;
|
722
723
|
'aria-controls'?: string | undefined;
|
723
|
-
'aria-current'?: boolean | "time" | "
|
724
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
724
725
|
'aria-describedby'?: string | undefined;
|
725
726
|
'aria-details'?: string | undefined;
|
726
|
-
'aria-disabled'?: boolean | "
|
727
|
-
'aria-dropeffect'?: "
|
727
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
728
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
728
729
|
'aria-errormessage'?: string | undefined;
|
729
|
-
'aria-expanded'?: boolean | "
|
730
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
730
731
|
'aria-flowto'?: string | undefined;
|
731
|
-
'aria-grabbed'?: boolean | "
|
732
|
-
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "
|
733
|
-
'aria-hidden'?: boolean | "
|
734
|
-
'aria-invalid'?: boolean | "
|
732
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
733
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
|
734
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
735
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
735
736
|
'aria-keyshortcuts'?: string | undefined;
|
736
737
|
'aria-label'?: string | undefined;
|
737
738
|
'aria-labelledby'?: string | undefined;
|
738
739
|
'aria-level'?: number | undefined;
|
739
740
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
740
|
-
'aria-modal'?: boolean | "
|
741
|
-
'aria-multiline'?: boolean | "
|
742
|
-
'aria-multiselectable'?: boolean | "
|
741
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
742
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
743
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
743
744
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
744
745
|
'aria-owns'?: string | undefined;
|
745
746
|
'aria-placeholder'?: string | undefined;
|
746
747
|
'aria-posinset'?: number | undefined;
|
747
|
-
'aria-pressed'?: boolean | "
|
748
|
-
'aria-readonly'?: boolean | "
|
748
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
749
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
749
750
|
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
750
|
-
'aria-required'?: boolean | "
|
751
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
751
752
|
'aria-roledescription'?: string | undefined;
|
752
753
|
'aria-rowcount'?: number | undefined;
|
753
754
|
'aria-rowindex'?: number | undefined;
|
754
755
|
'aria-rowspan'?: number | undefined;
|
755
|
-
'aria-selected'?: boolean | "
|
756
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
756
757
|
'aria-setsize'?: number | undefined;
|
757
758
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
758
759
|
'aria-valuemax'?: number | undefined;
|
@@ -922,9 +923,8 @@ declare const _default: {
|
|
922
923
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
923
924
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
924
925
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
925
|
-
|
926
|
-
|
927
|
-
variant?: "large" | "medium" | "small" | undefined;
|
926
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
927
|
+
variant?: "small" | "medium" | "large" | undefined;
|
928
928
|
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
929
929
|
disabled?: boolean | undefined;
|
930
930
|
autoFocus?: boolean | undefined;
|
@@ -990,6 +990,7 @@ declare const _default: {
|
|
990
990
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
991
991
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
992
992
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
993
|
+
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
993
994
|
type?: "button" | "reset" | "submit" | undefined;
|
994
995
|
name?: string | undefined;
|
995
996
|
key?: React.Key | null | undefined;
|
@@ -999,14 +1000,14 @@ declare const _default: {
|
|
999
1000
|
suppressHydrationWarning?: boolean | undefined;
|
1000
1001
|
accessKey?: string | undefined;
|
1001
1002
|
className?: string | undefined;
|
1002
|
-
contentEditable?: "inherit" | (boolean | "
|
1003
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
1003
1004
|
contextMenu?: string | undefined;
|
1004
1005
|
dir?: string | undefined;
|
1005
|
-
draggable?: (boolean | "
|
1006
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
1006
1007
|
id?: string | undefined;
|
1007
1008
|
lang?: string | undefined;
|
1008
1009
|
placeholder?: string | undefined;
|
1009
|
-
spellCheck?: (boolean | "
|
1010
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
1010
1011
|
tabIndex?: number | undefined;
|
1011
1012
|
radioGroup?: string | undefined;
|
1012
1013
|
role?: React.AriaRole | undefined;
|
@@ -1029,50 +1030,50 @@ declare const _default: {
|
|
1029
1030
|
results?: number | undefined;
|
1030
1031
|
security?: string | undefined;
|
1031
1032
|
unselectable?: "on" | "off" | undefined;
|
1032
|
-
inputMode?: "
|
1033
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1033
1034
|
is?: string | undefined;
|
1034
1035
|
'aria-activedescendant'?: string | undefined;
|
1035
|
-
'aria-atomic'?: boolean | "
|
1036
|
-
'aria-autocomplete'?: "none" | "
|
1037
|
-
'aria-busy'?: boolean | "
|
1038
|
-
'aria-checked'?: boolean | "
|
1036
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
1037
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
1038
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
1039
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
1039
1040
|
'aria-colcount'?: number | undefined;
|
1040
1041
|
'aria-colindex'?: number | undefined;
|
1041
1042
|
'aria-colspan'?: number | undefined;
|
1042
1043
|
'aria-controls'?: string | undefined;
|
1043
|
-
'aria-current'?: boolean | "time" | "
|
1044
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
1044
1045
|
'aria-describedby'?: string | undefined;
|
1045
1046
|
'aria-details'?: string | undefined;
|
1046
|
-
'aria-disabled'?: boolean | "
|
1047
|
-
'aria-dropeffect'?: "
|
1047
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
1048
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
1048
1049
|
'aria-errormessage'?: string | undefined;
|
1049
|
-
'aria-expanded'?: boolean | "
|
1050
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
1050
1051
|
'aria-flowto'?: string | undefined;
|
1051
|
-
'aria-grabbed'?: boolean | "
|
1052
|
-
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "
|
1053
|
-
'aria-hidden'?: boolean | "
|
1054
|
-
'aria-invalid'?: boolean | "
|
1052
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
1053
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
|
1054
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
1055
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
1055
1056
|
'aria-keyshortcuts'?: string | undefined;
|
1056
1057
|
'aria-label'?: string | undefined;
|
1057
1058
|
'aria-labelledby'?: string | undefined;
|
1058
1059
|
'aria-level'?: number | undefined;
|
1059
1060
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
1060
|
-
'aria-modal'?: boolean | "
|
1061
|
-
'aria-multiline'?: boolean | "
|
1062
|
-
'aria-multiselectable'?: boolean | "
|
1061
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
1062
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
1063
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
1063
1064
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
1064
1065
|
'aria-owns'?: string | undefined;
|
1065
1066
|
'aria-placeholder'?: string | undefined;
|
1066
1067
|
'aria-posinset'?: number | undefined;
|
1067
|
-
'aria-pressed'?: boolean | "
|
1068
|
-
'aria-readonly'?: boolean | "
|
1068
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
1069
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
1069
1070
|
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
1070
|
-
'aria-required'?: boolean | "
|
1071
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
1071
1072
|
'aria-roledescription'?: string | undefined;
|
1072
1073
|
'aria-rowcount'?: number | undefined;
|
1073
1074
|
'aria-rowindex'?: number | undefined;
|
1074
1075
|
'aria-rowspan'?: number | undefined;
|
1075
|
-
'aria-selected'?: boolean | "
|
1076
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
1076
1077
|
'aria-setsize'?: number | undefined;
|
1077
1078
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
1078
1079
|
'aria-valuemax'?: number | undefined;
|
@@ -1242,9 +1243,8 @@ declare const _default: {
|
|
1242
1243
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
1243
1244
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
1244
1245
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
1245
|
-
|
1246
|
-
|
1247
|
-
variant?: "large" | "medium" | "small" | undefined;
|
1246
|
+
sx?: import("./sx").BetterSystemStyleObject | undefined;
|
1247
|
+
variant?: "small" | "medium" | "large" | undefined;
|
1248
1248
|
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
1249
1249
|
disabled?: boolean | undefined;
|
1250
1250
|
autoFocus?: boolean | undefined;
|
@@ -55,6 +55,7 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
55
55
|
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
56
56
|
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
57
57
|
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
58
|
+
size?: import("styled-system").ResponsiveValue<import("csstype").Property.Height<import("styled-system").TLengthStyledSystem>, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
58
59
|
type?: "button" | "reset" | "submit" | undefined;
|
59
60
|
name?: string | undefined;
|
60
61
|
key?: React.Key | null | undefined;
|
@@ -64,14 +65,14 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
64
65
|
suppressHydrationWarning?: boolean | undefined;
|
65
66
|
accessKey?: string | undefined;
|
66
67
|
className?: string | undefined;
|
67
|
-
contentEditable?: "inherit" | (boolean | "
|
68
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
68
69
|
contextMenu?: string | undefined;
|
69
70
|
dir?: string | undefined;
|
70
|
-
draggable?: (boolean | "
|
71
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
71
72
|
id?: string | undefined;
|
72
73
|
lang?: string | undefined;
|
73
74
|
placeholder?: string | undefined;
|
74
|
-
spellCheck?: (boolean | "
|
75
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
75
76
|
tabIndex?: number | undefined;
|
76
77
|
radioGroup?: string | undefined;
|
77
78
|
role?: React.AriaRole | undefined;
|
@@ -94,50 +95,50 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
94
95
|
results?: number | undefined;
|
95
96
|
security?: string | undefined;
|
96
97
|
unselectable?: "on" | "off" | undefined;
|
97
|
-
inputMode?: "
|
98
|
+
inputMode?: "search" | "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
98
99
|
is?: string | undefined;
|
99
100
|
'aria-activedescendant'?: string | undefined;
|
100
|
-
'aria-atomic'?: boolean | "
|
101
|
-
'aria-autocomplete'?: "none" | "
|
102
|
-
'aria-busy'?: boolean | "
|
103
|
-
'aria-checked'?: boolean | "
|
101
|
+
'aria-atomic'?: boolean | "false" | "true" | undefined;
|
102
|
+
'aria-autocomplete'?: "none" | "both" | "inline" | "list" | undefined;
|
103
|
+
'aria-busy'?: boolean | "false" | "true" | undefined;
|
104
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
104
105
|
'aria-colcount'?: number | undefined;
|
105
106
|
'aria-colindex'?: number | undefined;
|
106
107
|
'aria-colspan'?: number | undefined;
|
107
108
|
'aria-controls'?: string | undefined;
|
108
|
-
'aria-current'?: boolean | "time" | "
|
109
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
109
110
|
'aria-describedby'?: string | undefined;
|
110
111
|
'aria-details'?: string | undefined;
|
111
|
-
'aria-disabled'?: boolean | "
|
112
|
-
'aria-dropeffect'?: "
|
112
|
+
'aria-disabled'?: boolean | "false" | "true" | undefined;
|
113
|
+
'aria-dropeffect'?: "link" | "none" | "copy" | "move" | "execute" | "popup" | undefined;
|
113
114
|
'aria-errormessage'?: string | undefined;
|
114
|
-
'aria-expanded'?: boolean | "
|
115
|
+
'aria-expanded'?: boolean | "false" | "true" | undefined;
|
115
116
|
'aria-flowto'?: string | undefined;
|
116
|
-
'aria-grabbed'?: boolean | "
|
117
|
-
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "
|
118
|
-
'aria-hidden'?: boolean | "
|
119
|
-
'aria-invalid'?: boolean | "
|
117
|
+
'aria-grabbed'?: boolean | "false" | "true" | undefined;
|
118
|
+
'aria-haspopup'?: boolean | "grid" | "dialog" | "menu" | "listbox" | "false" | "true" | "tree" | undefined;
|
119
|
+
'aria-hidden'?: boolean | "false" | "true" | undefined;
|
120
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
120
121
|
'aria-keyshortcuts'?: string | undefined;
|
121
122
|
'aria-label'?: string | undefined;
|
122
123
|
'aria-labelledby'?: string | undefined;
|
123
124
|
'aria-level'?: number | undefined;
|
124
125
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
125
|
-
'aria-modal'?: boolean | "
|
126
|
-
'aria-multiline'?: boolean | "
|
127
|
-
'aria-multiselectable'?: boolean | "
|
126
|
+
'aria-modal'?: boolean | "false" | "true" | undefined;
|
127
|
+
'aria-multiline'?: boolean | "false" | "true" | undefined;
|
128
|
+
'aria-multiselectable'?: boolean | "false" | "true" | undefined;
|
128
129
|
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
129
130
|
'aria-owns'?: string | undefined;
|
130
131
|
'aria-placeholder'?: string | undefined;
|
131
132
|
'aria-posinset'?: number | undefined;
|
132
|
-
'aria-pressed'?: boolean | "
|
133
|
-
'aria-readonly'?: boolean | "
|
133
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
134
|
+
'aria-readonly'?: boolean | "false" | "true" | undefined;
|
134
135
|
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
135
|
-
'aria-required'?: boolean | "
|
136
|
+
'aria-required'?: boolean | "false" | "true" | undefined;
|
136
137
|
'aria-roledescription'?: string | undefined;
|
137
138
|
'aria-rowcount'?: number | undefined;
|
138
139
|
'aria-rowindex'?: number | undefined;
|
139
140
|
'aria-rowspan'?: number | undefined;
|
140
|
-
'aria-selected'?: boolean | "
|
141
|
+
'aria-selected'?: boolean | "false" | "true" | undefined;
|
141
142
|
'aria-setsize'?: number | undefined;
|
142
143
|
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
143
144
|
'aria-valuemax'?: number | undefined;
|
@@ -307,9 +308,8 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
307
308
|
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLButtonElement> | undefined;
|
308
309
|
onTransitionEnd?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
309
310
|
onTransitionEndCapture?: React.TransitionEventHandler<HTMLButtonElement> | undefined;
|
310
|
-
|
311
|
-
|
312
|
-
variant?: "large" | "medium" | "small" | undefined;
|
311
|
+
sx?: import("../sx").BetterSystemStyleObject | undefined;
|
312
|
+
variant?: "small" | "medium" | "large" | undefined;
|
313
313
|
as?: string | React.ComponentClass<any, any> | React.FunctionComponent<any> | undefined;
|
314
314
|
disabled?: boolean | undefined;
|
315
315
|
autoFocus?: boolean | undefined;
|
@@ -320,4 +320,4 @@ export declare const DropdownButton: React.ForwardRefExoticComponent<Pick<React.
|
|
320
320
|
formTarget?: string | undefined;
|
321
321
|
} & {
|
322
322
|
theme?: any;
|
323
|
-
}>, "backgroundColor" | "color" | "display" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "verticalAlign" | "width" | "margin" | "overflow" | "padding" | "hidden" | "children" | "theme" | "value" | "form" | "p" | "slot" | "style" | "title" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "type" | "name" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "
|
323
|
+
}>, "backgroundColor" | "color" | "display" | "fontSize" | "height" | "marginBottom" | "marginLeft" | "marginRight" | "marginTop" | "maxHeight" | "maxWidth" | "minHeight" | "minWidth" | "opacity" | "overflowX" | "overflowY" | "paddingBottom" | "paddingLeft" | "paddingRight" | "paddingTop" | "translate" | "verticalAlign" | "width" | "margin" | "overflow" | "padding" | "hidden" | "children" | "theme" | "value" | "form" | "p" | "slot" | "style" | "title" | "bg" | "m" | "mt" | "mr" | "mb" | "ml" | "mx" | "marginX" | "my" | "marginY" | "pt" | "pr" | "pb" | "pl" | "px" | "paddingX" | "py" | "paddingY" | "size" | "type" | "name" | "key" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "className" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "tabIndex" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEnd" | "onTransitionEndCapture" | "sx" | "variant" | "as" | "disabled" | "autoFocus" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget"> & React.RefAttributes<HTMLElement>>;
|