@transferwise/components 0.0.0-experimental-f7197aa → 0.0.0-experimental-d024c8c
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/build/es/no-polyfill/index.js +1 -1
- package/build/es/no-polyfill/inputs/Input.js +1 -1
- package/build/es/no-polyfill/inputs/TextArea.js +1 -1
- package/build/es/no-polyfill/inputs/_common.js +1 -1
- package/build/es/polyfill/index.js +1 -1
- package/build/es/polyfill/inputs/Input.js +1 -1
- package/build/es/polyfill/inputs/TextArea.js +1 -1
- package/build/es/polyfill/inputs/_common.js +1 -1
- package/build/types/button/Button.story.d.ts +348 -348
- package/build/types/index.d.ts +0 -1
- package/build/types/inputs/Input.d.ts +1 -1
- package/build/types/inputs/TextArea.d.ts +1 -1
- package/build/types/inputs/_common.d.ts +0 -7
- package/build/types/select/searchBox/SearchBox.d.ts +1 -1
- package/build/umd/no-polyfill/main.js +1 -1
- package/build/umd/polyfill/main.js +1 -1
- package/package.json +4 -12
- package/scripts/neptune-upgrader.js +0 -114
- package/upgrades/2021-02-v34-35.js +0 -193
- package/upgrades/2021-04-v35-36-typescript-support.js +0 -290
- package/upgrades/utils/index.js +0 -17
|
@@ -28,8 +28,6 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
28
28
|
type?: "link" | "primary" | "pay" | "secondary" | "danger" | "accent" | "negative" | "positive" | undefined;
|
|
29
29
|
priority?: "primary" | "secondary" | "tertiary" | undefined;
|
|
30
30
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
31
|
-
value?: string | number | readonly string[] | undefined;
|
|
32
|
-
children?: import("react").ReactNode;
|
|
33
31
|
form?: string | undefined;
|
|
34
32
|
slot?: string | undefined;
|
|
35
33
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -42,6 +40,7 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
42
40
|
formTarget?: string | undefined;
|
|
43
41
|
name?: string | undefined;
|
|
44
42
|
placeholder?: string | undefined;
|
|
43
|
+
value?: string | number | readonly string[] | undefined;
|
|
45
44
|
onChange?: (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
46
45
|
defaultChecked?: boolean | undefined;
|
|
47
46
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -49,15 +48,15 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
49
48
|
suppressHydrationWarning?: boolean | undefined;
|
|
50
49
|
accessKey?: string | undefined;
|
|
51
50
|
className?: string | undefined;
|
|
52
|
-
contentEditable?: (boolean | "
|
|
51
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
53
52
|
contextMenu?: string | undefined;
|
|
54
53
|
dir?: string | undefined;
|
|
55
|
-
draggable?: (boolean | "
|
|
54
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
56
55
|
hidden?: boolean | undefined;
|
|
57
56
|
id?: string | undefined;
|
|
58
57
|
lang?: string | undefined;
|
|
59
58
|
nonce?: string | undefined;
|
|
60
|
-
spellCheck?: (boolean | "
|
|
59
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
61
60
|
tabIndex?: number | undefined;
|
|
62
61
|
translate?: "yes" | "no" | undefined;
|
|
63
62
|
radioGroup?: string | undefined;
|
|
@@ -85,53 +84,54 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
85
84
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
86
85
|
is?: string | undefined;
|
|
87
86
|
"aria-activedescendant"?: string | undefined;
|
|
88
|
-
"aria-atomic"?: (boolean | "
|
|
87
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
89
88
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
90
|
-
"aria-busy"?: (boolean | "
|
|
91
|
-
"aria-checked"?: boolean | "
|
|
89
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
90
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
92
91
|
"aria-colcount"?: number | undefined;
|
|
93
92
|
"aria-colindex"?: number | undefined;
|
|
94
93
|
"aria-colspan"?: number | undefined;
|
|
95
94
|
"aria-controls"?: string | undefined;
|
|
96
|
-
"aria-current"?: boolean | "
|
|
95
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
97
96
|
"aria-describedby"?: string | undefined;
|
|
98
97
|
"aria-details"?: string | undefined;
|
|
99
|
-
"aria-disabled"?: (boolean | "
|
|
98
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
100
99
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
101
100
|
"aria-errormessage"?: string | undefined;
|
|
102
|
-
"aria-expanded"?: (boolean | "
|
|
101
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
103
102
|
"aria-flowto"?: string | undefined;
|
|
104
|
-
"aria-grabbed"?: (boolean | "
|
|
105
|
-
"aria-haspopup"?: boolean | "
|
|
106
|
-
"aria-hidden"?: (boolean | "
|
|
107
|
-
"aria-invalid"?: boolean | "
|
|
103
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
104
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
105
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
106
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
108
107
|
"aria-keyshortcuts"?: string | undefined;
|
|
109
108
|
"aria-label"?: string | undefined;
|
|
110
109
|
"aria-labelledby"?: string | undefined;
|
|
111
110
|
"aria-level"?: number | undefined;
|
|
112
111
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
113
|
-
"aria-modal"?: (boolean | "
|
|
114
|
-
"aria-multiline"?: (boolean | "
|
|
115
|
-
"aria-multiselectable"?: (boolean | "
|
|
112
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
113
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
114
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
116
115
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
117
116
|
"aria-owns"?: string | undefined;
|
|
118
117
|
"aria-placeholder"?: string | undefined;
|
|
119
118
|
"aria-posinset"?: number | undefined;
|
|
120
|
-
"aria-pressed"?: boolean | "
|
|
121
|
-
"aria-readonly"?: (boolean | "
|
|
119
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
120
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
122
121
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
123
|
-
"aria-required"?: (boolean | "
|
|
122
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
124
123
|
"aria-roledescription"?: string | undefined;
|
|
125
124
|
"aria-rowcount"?: number | undefined;
|
|
126
125
|
"aria-rowindex"?: number | undefined;
|
|
127
126
|
"aria-rowspan"?: number | undefined;
|
|
128
|
-
"aria-selected"?: (boolean | "
|
|
127
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
129
128
|
"aria-setsize"?: number | undefined;
|
|
130
129
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
131
130
|
"aria-valuemax"?: number | undefined;
|
|
132
131
|
"aria-valuemin"?: number | undefined;
|
|
133
132
|
"aria-valuenow"?: number | undefined;
|
|
134
133
|
"aria-valuetext"?: string | undefined;
|
|
134
|
+
children?: import("react").ReactNode;
|
|
135
135
|
dangerouslySetInnerHTML?: {
|
|
136
136
|
__html: string;
|
|
137
137
|
} | undefined;
|
|
@@ -327,17 +327,17 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
327
327
|
suppressHydrationWarning?: boolean | undefined;
|
|
328
328
|
accessKey?: string | undefined;
|
|
329
329
|
className?: string | undefined;
|
|
330
|
-
contentEditable?: (boolean | "
|
|
330
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
331
331
|
contextMenu?: string | undefined;
|
|
332
332
|
dir?: string | undefined;
|
|
333
|
-
draggable?: (boolean | "
|
|
333
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
334
334
|
hidden?: boolean | undefined;
|
|
335
335
|
id?: string | undefined;
|
|
336
336
|
lang?: string | undefined;
|
|
337
337
|
nonce?: string | undefined;
|
|
338
338
|
placeholder?: string | undefined;
|
|
339
339
|
slot?: string | undefined;
|
|
340
|
-
spellCheck?: (boolean | "
|
|
340
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
341
341
|
style?: import("react").CSSProperties | undefined;
|
|
342
342
|
tabIndex?: number | undefined;
|
|
343
343
|
title?: string | undefined;
|
|
@@ -367,47 +367,47 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
367
367
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
368
368
|
is?: string | undefined;
|
|
369
369
|
"aria-activedescendant"?: string | undefined;
|
|
370
|
-
"aria-atomic"?: (boolean | "
|
|
370
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
371
371
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
372
|
-
"aria-busy"?: (boolean | "
|
|
373
|
-
"aria-checked"?: boolean | "
|
|
372
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
373
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
374
374
|
"aria-colcount"?: number | undefined;
|
|
375
375
|
"aria-colindex"?: number | undefined;
|
|
376
376
|
"aria-colspan"?: number | undefined;
|
|
377
377
|
"aria-controls"?: string | undefined;
|
|
378
|
-
"aria-current"?: boolean | "
|
|
378
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
379
379
|
"aria-describedby"?: string | undefined;
|
|
380
380
|
"aria-details"?: string | undefined;
|
|
381
|
-
"aria-disabled"?: (boolean | "
|
|
381
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
382
382
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
383
383
|
"aria-errormessage"?: string | undefined;
|
|
384
|
-
"aria-expanded"?: (boolean | "
|
|
384
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
385
385
|
"aria-flowto"?: string | undefined;
|
|
386
|
-
"aria-grabbed"?: (boolean | "
|
|
387
|
-
"aria-haspopup"?: boolean | "
|
|
388
|
-
"aria-hidden"?: (boolean | "
|
|
389
|
-
"aria-invalid"?: boolean | "
|
|
386
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
387
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
388
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
389
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
390
390
|
"aria-keyshortcuts"?: string | undefined;
|
|
391
391
|
"aria-label"?: string | undefined;
|
|
392
392
|
"aria-labelledby"?: string | undefined;
|
|
393
393
|
"aria-level"?: number | undefined;
|
|
394
394
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
395
|
-
"aria-modal"?: (boolean | "
|
|
396
|
-
"aria-multiline"?: (boolean | "
|
|
397
|
-
"aria-multiselectable"?: (boolean | "
|
|
395
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
396
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
397
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
398
398
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
399
399
|
"aria-owns"?: string | undefined;
|
|
400
400
|
"aria-placeholder"?: string | undefined;
|
|
401
401
|
"aria-posinset"?: number | undefined;
|
|
402
|
-
"aria-pressed"?: boolean | "
|
|
403
|
-
"aria-readonly"?: (boolean | "
|
|
402
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
403
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
404
404
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
405
|
-
"aria-required"?: (boolean | "
|
|
405
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
406
406
|
"aria-roledescription"?: string | undefined;
|
|
407
407
|
"aria-rowcount"?: number | undefined;
|
|
408
408
|
"aria-rowindex"?: number | undefined;
|
|
409
409
|
"aria-rowspan"?: number | undefined;
|
|
410
|
-
"aria-selected"?: (boolean | "
|
|
410
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
411
411
|
"aria-setsize"?: number | undefined;
|
|
412
412
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
413
413
|
"aria-valuemax"?: number | undefined;
|
|
@@ -580,7 +580,6 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
580
580
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLAnchorElement> & import("react").TransitionEventHandler<HTMLButtonElement>) | undefined;
|
|
581
581
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
582
582
|
key?: import("react").Key | null | undefined;
|
|
583
|
-
value?: string | number | readonly string[] | undefined;
|
|
584
583
|
form?: string | undefined;
|
|
585
584
|
autoFocus?: boolean | undefined;
|
|
586
585
|
formAction?: string | undefined;
|
|
@@ -589,9 +588,9 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
589
588
|
formNoValidate?: boolean | undefined;
|
|
590
589
|
formTarget?: string | undefined;
|
|
591
590
|
name?: string | undefined;
|
|
591
|
+
value?: string | number | readonly string[] | undefined;
|
|
592
592
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
593
593
|
}, {
|
|
594
|
-
value?: string | number | readonly string[] | undefined;
|
|
595
594
|
form?: string | undefined;
|
|
596
595
|
autoFocus?: boolean | undefined;
|
|
597
596
|
formAction?: string | undefined;
|
|
@@ -600,6 +599,7 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
600
599
|
formNoValidate?: boolean | undefined;
|
|
601
600
|
formTarget?: string | undefined;
|
|
602
601
|
name?: string | undefined;
|
|
602
|
+
value?: string | number | readonly string[] | undefined;
|
|
603
603
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
604
604
|
href?: string | undefined;
|
|
605
605
|
hrefLang?: string | undefined;
|
|
@@ -608,7 +608,6 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
608
608
|
rel?: string | undefined;
|
|
609
609
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
610
610
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
611
|
-
children?: import("react").ReactNode;
|
|
612
611
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
613
612
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
614
613
|
slot?: string | undefined;
|
|
@@ -625,15 +624,15 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
625
624
|
suppressHydrationWarning?: boolean | undefined;
|
|
626
625
|
accessKey?: string | undefined;
|
|
627
626
|
className?: string | undefined;
|
|
628
|
-
contentEditable?: (boolean | "
|
|
627
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
629
628
|
contextMenu?: string | undefined;
|
|
630
629
|
dir?: string | undefined;
|
|
631
|
-
draggable?: (boolean | "
|
|
630
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
632
631
|
hidden?: boolean | undefined;
|
|
633
632
|
id?: string | undefined;
|
|
634
633
|
lang?: string | undefined;
|
|
635
634
|
nonce?: string | undefined;
|
|
636
|
-
spellCheck?: (boolean | "
|
|
635
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
637
636
|
tabIndex?: number | undefined;
|
|
638
637
|
translate?: "yes" | "no" | undefined;
|
|
639
638
|
radioGroup?: string | undefined;
|
|
@@ -661,53 +660,54 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
661
660
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
662
661
|
is?: string | undefined;
|
|
663
662
|
"aria-activedescendant"?: string | undefined;
|
|
664
|
-
"aria-atomic"?: (boolean | "
|
|
663
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
665
664
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
666
|
-
"aria-busy"?: (boolean | "
|
|
667
|
-
"aria-checked"?: boolean | "
|
|
665
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
666
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
668
667
|
"aria-colcount"?: number | undefined;
|
|
669
668
|
"aria-colindex"?: number | undefined;
|
|
670
669
|
"aria-colspan"?: number | undefined;
|
|
671
670
|
"aria-controls"?: string | undefined;
|
|
672
|
-
"aria-current"?: boolean | "
|
|
671
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
673
672
|
"aria-describedby"?: string | undefined;
|
|
674
673
|
"aria-details"?: string | undefined;
|
|
675
|
-
"aria-disabled"?: (boolean | "
|
|
674
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
676
675
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
677
676
|
"aria-errormessage"?: string | undefined;
|
|
678
|
-
"aria-expanded"?: (boolean | "
|
|
677
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
679
678
|
"aria-flowto"?: string | undefined;
|
|
680
|
-
"aria-grabbed"?: (boolean | "
|
|
681
|
-
"aria-haspopup"?: boolean | "
|
|
682
|
-
"aria-hidden"?: (boolean | "
|
|
683
|
-
"aria-invalid"?: boolean | "
|
|
679
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
680
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
681
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
682
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
684
683
|
"aria-keyshortcuts"?: string | undefined;
|
|
685
684
|
"aria-label"?: string | undefined;
|
|
686
685
|
"aria-labelledby"?: string | undefined;
|
|
687
686
|
"aria-level"?: number | undefined;
|
|
688
687
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
689
|
-
"aria-modal"?: (boolean | "
|
|
690
|
-
"aria-multiline"?: (boolean | "
|
|
691
|
-
"aria-multiselectable"?: (boolean | "
|
|
688
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
689
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
690
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
692
691
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
693
692
|
"aria-owns"?: string | undefined;
|
|
694
693
|
"aria-placeholder"?: string | undefined;
|
|
695
694
|
"aria-posinset"?: number | undefined;
|
|
696
|
-
"aria-pressed"?: boolean | "
|
|
697
|
-
"aria-readonly"?: (boolean | "
|
|
695
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
696
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
698
697
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
699
|
-
"aria-required"?: (boolean | "
|
|
698
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
700
699
|
"aria-roledescription"?: string | undefined;
|
|
701
700
|
"aria-rowcount"?: number | undefined;
|
|
702
701
|
"aria-rowindex"?: number | undefined;
|
|
703
702
|
"aria-rowspan"?: number | undefined;
|
|
704
|
-
"aria-selected"?: (boolean | "
|
|
703
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
705
704
|
"aria-setsize"?: number | undefined;
|
|
706
705
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
707
706
|
"aria-valuemax"?: number | undefined;
|
|
708
707
|
"aria-valuemin"?: number | undefined;
|
|
709
708
|
"aria-valuenow"?: number | undefined;
|
|
710
709
|
"aria-valuetext"?: string | undefined;
|
|
710
|
+
children?: import("react").ReactNode;
|
|
711
711
|
dangerouslySetInnerHTML?: {
|
|
712
712
|
__html: string;
|
|
713
713
|
} | undefined;
|
|
@@ -883,7 +883,6 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
883
883
|
rel?: string | undefined;
|
|
884
884
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
885
885
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
886
|
-
value?: string | number | readonly string[] | undefined;
|
|
887
886
|
form?: string | undefined;
|
|
888
887
|
autoFocus?: boolean | undefined;
|
|
889
888
|
formAction?: string | undefined;
|
|
@@ -892,8 +891,8 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
892
891
|
formNoValidate?: boolean | undefined;
|
|
893
892
|
formTarget?: string | undefined;
|
|
894
893
|
name?: string | undefined;
|
|
894
|
+
value?: string | number | readonly string[] | undefined;
|
|
895
895
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
896
|
-
children?: import("react").ReactNode;
|
|
897
896
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
898
897
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
899
898
|
slot?: string | undefined;
|
|
@@ -910,15 +909,15 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
910
909
|
suppressHydrationWarning?: boolean | undefined;
|
|
911
910
|
accessKey?: string | undefined;
|
|
912
911
|
className?: string | undefined;
|
|
913
|
-
contentEditable?: (boolean | "
|
|
912
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
914
913
|
contextMenu?: string | undefined;
|
|
915
914
|
dir?: string | undefined;
|
|
916
|
-
draggable?: (boolean | "
|
|
915
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
917
916
|
hidden?: boolean | undefined;
|
|
918
917
|
id?: string | undefined;
|
|
919
918
|
lang?: string | undefined;
|
|
920
919
|
nonce?: string | undefined;
|
|
921
|
-
spellCheck?: (boolean | "
|
|
920
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
922
921
|
tabIndex?: number | undefined;
|
|
923
922
|
translate?: "yes" | "no" | undefined;
|
|
924
923
|
radioGroup?: string | undefined;
|
|
@@ -946,53 +945,54 @@ export declare const Focused: import("@storybook/types").StoryAnnotations<import
|
|
|
946
945
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
947
946
|
is?: string | undefined;
|
|
948
947
|
"aria-activedescendant"?: string | undefined;
|
|
949
|
-
"aria-atomic"?: (boolean | "
|
|
948
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
950
949
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
951
|
-
"aria-busy"?: (boolean | "
|
|
952
|
-
"aria-checked"?: boolean | "
|
|
950
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
951
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
953
952
|
"aria-colcount"?: number | undefined;
|
|
954
953
|
"aria-colindex"?: number | undefined;
|
|
955
954
|
"aria-colspan"?: number | undefined;
|
|
956
955
|
"aria-controls"?: string | undefined;
|
|
957
|
-
"aria-current"?: boolean | "
|
|
956
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
958
957
|
"aria-describedby"?: string | undefined;
|
|
959
958
|
"aria-details"?: string | undefined;
|
|
960
|
-
"aria-disabled"?: (boolean | "
|
|
959
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
961
960
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
962
961
|
"aria-errormessage"?: string | undefined;
|
|
963
|
-
"aria-expanded"?: (boolean | "
|
|
962
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
964
963
|
"aria-flowto"?: string | undefined;
|
|
965
|
-
"aria-grabbed"?: (boolean | "
|
|
966
|
-
"aria-haspopup"?: boolean | "
|
|
967
|
-
"aria-hidden"?: (boolean | "
|
|
968
|
-
"aria-invalid"?: boolean | "
|
|
964
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
965
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
966
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
967
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
969
968
|
"aria-keyshortcuts"?: string | undefined;
|
|
970
969
|
"aria-label"?: string | undefined;
|
|
971
970
|
"aria-labelledby"?: string | undefined;
|
|
972
971
|
"aria-level"?: number | undefined;
|
|
973
972
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
974
|
-
"aria-modal"?: (boolean | "
|
|
975
|
-
"aria-multiline"?: (boolean | "
|
|
976
|
-
"aria-multiselectable"?: (boolean | "
|
|
973
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
974
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
975
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
977
976
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
978
977
|
"aria-owns"?: string | undefined;
|
|
979
978
|
"aria-placeholder"?: string | undefined;
|
|
980
979
|
"aria-posinset"?: number | undefined;
|
|
981
|
-
"aria-pressed"?: boolean | "
|
|
982
|
-
"aria-readonly"?: (boolean | "
|
|
980
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
981
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
983
982
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
984
|
-
"aria-required"?: (boolean | "
|
|
983
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
985
984
|
"aria-roledescription"?: string | undefined;
|
|
986
985
|
"aria-rowcount"?: number | undefined;
|
|
987
986
|
"aria-rowindex"?: number | undefined;
|
|
988
987
|
"aria-rowspan"?: number | undefined;
|
|
989
|
-
"aria-selected"?: (boolean | "
|
|
988
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
990
989
|
"aria-setsize"?: number | undefined;
|
|
991
990
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
992
991
|
"aria-valuemax"?: number | undefined;
|
|
993
992
|
"aria-valuemin"?: number | undefined;
|
|
994
993
|
"aria-valuenow"?: number | undefined;
|
|
995
994
|
"aria-valuetext"?: string | undefined;
|
|
995
|
+
children?: import("react").ReactNode;
|
|
996
996
|
dangerouslySetInnerHTML?: {
|
|
997
997
|
__html: string;
|
|
998
998
|
} | undefined;
|
|
@@ -1169,8 +1169,6 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1169
1169
|
type?: "link" | "primary" | "pay" | "secondary" | "danger" | "accent" | "negative" | "positive" | undefined;
|
|
1170
1170
|
priority?: "primary" | "secondary" | "tertiary" | undefined;
|
|
1171
1171
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
1172
|
-
value?: string | number | readonly string[] | undefined;
|
|
1173
|
-
children?: import("react").ReactNode;
|
|
1174
1172
|
form?: string | undefined;
|
|
1175
1173
|
slot?: string | undefined;
|
|
1176
1174
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -1183,6 +1181,7 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1183
1181
|
formTarget?: string | undefined;
|
|
1184
1182
|
name?: string | undefined;
|
|
1185
1183
|
placeholder?: string | undefined;
|
|
1184
|
+
value?: string | number | readonly string[] | undefined;
|
|
1186
1185
|
onChange?: (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
1187
1186
|
defaultChecked?: boolean | undefined;
|
|
1188
1187
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -1190,15 +1189,15 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1190
1189
|
suppressHydrationWarning?: boolean | undefined;
|
|
1191
1190
|
accessKey?: string | undefined;
|
|
1192
1191
|
className?: string | undefined;
|
|
1193
|
-
contentEditable?: (boolean | "
|
|
1192
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1194
1193
|
contextMenu?: string | undefined;
|
|
1195
1194
|
dir?: string | undefined;
|
|
1196
|
-
draggable?: (boolean | "
|
|
1195
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1197
1196
|
hidden?: boolean | undefined;
|
|
1198
1197
|
id?: string | undefined;
|
|
1199
1198
|
lang?: string | undefined;
|
|
1200
1199
|
nonce?: string | undefined;
|
|
1201
|
-
spellCheck?: (boolean | "
|
|
1200
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1202
1201
|
tabIndex?: number | undefined;
|
|
1203
1202
|
translate?: "yes" | "no" | undefined;
|
|
1204
1203
|
radioGroup?: string | undefined;
|
|
@@ -1226,53 +1225,54 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1226
1225
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
1227
1226
|
is?: string | undefined;
|
|
1228
1227
|
"aria-activedescendant"?: string | undefined;
|
|
1229
|
-
"aria-atomic"?: (boolean | "
|
|
1228
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1230
1229
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1231
|
-
"aria-busy"?: (boolean | "
|
|
1232
|
-
"aria-checked"?: boolean | "
|
|
1230
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1231
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1233
1232
|
"aria-colcount"?: number | undefined;
|
|
1234
1233
|
"aria-colindex"?: number | undefined;
|
|
1235
1234
|
"aria-colspan"?: number | undefined;
|
|
1236
1235
|
"aria-controls"?: string | undefined;
|
|
1237
|
-
"aria-current"?: boolean | "
|
|
1236
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
1238
1237
|
"aria-describedby"?: string | undefined;
|
|
1239
1238
|
"aria-details"?: string | undefined;
|
|
1240
|
-
"aria-disabled"?: (boolean | "
|
|
1239
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1241
1240
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1242
1241
|
"aria-errormessage"?: string | undefined;
|
|
1243
|
-
"aria-expanded"?: (boolean | "
|
|
1242
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1244
1243
|
"aria-flowto"?: string | undefined;
|
|
1245
|
-
"aria-grabbed"?: (boolean | "
|
|
1246
|
-
"aria-haspopup"?: boolean | "
|
|
1247
|
-
"aria-hidden"?: (boolean | "
|
|
1248
|
-
"aria-invalid"?: boolean | "
|
|
1244
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1245
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1246
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1247
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1249
1248
|
"aria-keyshortcuts"?: string | undefined;
|
|
1250
1249
|
"aria-label"?: string | undefined;
|
|
1251
1250
|
"aria-labelledby"?: string | undefined;
|
|
1252
1251
|
"aria-level"?: number | undefined;
|
|
1253
1252
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1254
|
-
"aria-modal"?: (boolean | "
|
|
1255
|
-
"aria-multiline"?: (boolean | "
|
|
1256
|
-
"aria-multiselectable"?: (boolean | "
|
|
1253
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1254
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1255
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1257
1256
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1258
1257
|
"aria-owns"?: string | undefined;
|
|
1259
1258
|
"aria-placeholder"?: string | undefined;
|
|
1260
1259
|
"aria-posinset"?: number | undefined;
|
|
1261
|
-
"aria-pressed"?: boolean | "
|
|
1262
|
-
"aria-readonly"?: (boolean | "
|
|
1260
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1261
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1263
1262
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1264
|
-
"aria-required"?: (boolean | "
|
|
1263
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1265
1264
|
"aria-roledescription"?: string | undefined;
|
|
1266
1265
|
"aria-rowcount"?: number | undefined;
|
|
1267
1266
|
"aria-rowindex"?: number | undefined;
|
|
1268
1267
|
"aria-rowspan"?: number | undefined;
|
|
1269
|
-
"aria-selected"?: (boolean | "
|
|
1268
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1270
1269
|
"aria-setsize"?: number | undefined;
|
|
1271
1270
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1272
1271
|
"aria-valuemax"?: number | undefined;
|
|
1273
1272
|
"aria-valuemin"?: number | undefined;
|
|
1274
1273
|
"aria-valuenow"?: number | undefined;
|
|
1275
1274
|
"aria-valuetext"?: string | undefined;
|
|
1275
|
+
children?: import("react").ReactNode;
|
|
1276
1276
|
dangerouslySetInnerHTML?: {
|
|
1277
1277
|
__html: string;
|
|
1278
1278
|
} | undefined;
|
|
@@ -1468,17 +1468,17 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1468
1468
|
suppressHydrationWarning?: boolean | undefined;
|
|
1469
1469
|
accessKey?: string | undefined;
|
|
1470
1470
|
className?: string | undefined;
|
|
1471
|
-
contentEditable?: (boolean | "
|
|
1471
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1472
1472
|
contextMenu?: string | undefined;
|
|
1473
1473
|
dir?: string | undefined;
|
|
1474
|
-
draggable?: (boolean | "
|
|
1474
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1475
1475
|
hidden?: boolean | undefined;
|
|
1476
1476
|
id?: string | undefined;
|
|
1477
1477
|
lang?: string | undefined;
|
|
1478
1478
|
nonce?: string | undefined;
|
|
1479
1479
|
placeholder?: string | undefined;
|
|
1480
1480
|
slot?: string | undefined;
|
|
1481
|
-
spellCheck?: (boolean | "
|
|
1481
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1482
1482
|
style?: import("react").CSSProperties | undefined;
|
|
1483
1483
|
tabIndex?: number | undefined;
|
|
1484
1484
|
title?: string | undefined;
|
|
@@ -1508,47 +1508,47 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1508
1508
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
1509
1509
|
is?: string | undefined;
|
|
1510
1510
|
"aria-activedescendant"?: string | undefined;
|
|
1511
|
-
"aria-atomic"?: (boolean | "
|
|
1511
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1512
1512
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1513
|
-
"aria-busy"?: (boolean | "
|
|
1514
|
-
"aria-checked"?: boolean | "
|
|
1513
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1514
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1515
1515
|
"aria-colcount"?: number | undefined;
|
|
1516
1516
|
"aria-colindex"?: number | undefined;
|
|
1517
1517
|
"aria-colspan"?: number | undefined;
|
|
1518
1518
|
"aria-controls"?: string | undefined;
|
|
1519
|
-
"aria-current"?: boolean | "
|
|
1519
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
1520
1520
|
"aria-describedby"?: string | undefined;
|
|
1521
1521
|
"aria-details"?: string | undefined;
|
|
1522
|
-
"aria-disabled"?: (boolean | "
|
|
1522
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1523
1523
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1524
1524
|
"aria-errormessage"?: string | undefined;
|
|
1525
|
-
"aria-expanded"?: (boolean | "
|
|
1525
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1526
1526
|
"aria-flowto"?: string | undefined;
|
|
1527
|
-
"aria-grabbed"?: (boolean | "
|
|
1528
|
-
"aria-haspopup"?: boolean | "
|
|
1529
|
-
"aria-hidden"?: (boolean | "
|
|
1530
|
-
"aria-invalid"?: boolean | "
|
|
1527
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1528
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1529
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1530
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1531
1531
|
"aria-keyshortcuts"?: string | undefined;
|
|
1532
1532
|
"aria-label"?: string | undefined;
|
|
1533
1533
|
"aria-labelledby"?: string | undefined;
|
|
1534
1534
|
"aria-level"?: number | undefined;
|
|
1535
1535
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1536
|
-
"aria-modal"?: (boolean | "
|
|
1537
|
-
"aria-multiline"?: (boolean | "
|
|
1538
|
-
"aria-multiselectable"?: (boolean | "
|
|
1536
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1537
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1538
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1539
1539
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1540
1540
|
"aria-owns"?: string | undefined;
|
|
1541
1541
|
"aria-placeholder"?: string | undefined;
|
|
1542
1542
|
"aria-posinset"?: number | undefined;
|
|
1543
|
-
"aria-pressed"?: boolean | "
|
|
1544
|
-
"aria-readonly"?: (boolean | "
|
|
1543
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1544
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1545
1545
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1546
|
-
"aria-required"?: (boolean | "
|
|
1546
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1547
1547
|
"aria-roledescription"?: string | undefined;
|
|
1548
1548
|
"aria-rowcount"?: number | undefined;
|
|
1549
1549
|
"aria-rowindex"?: number | undefined;
|
|
1550
1550
|
"aria-rowspan"?: number | undefined;
|
|
1551
|
-
"aria-selected"?: (boolean | "
|
|
1551
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1552
1552
|
"aria-setsize"?: number | undefined;
|
|
1553
1553
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1554
1554
|
"aria-valuemax"?: number | undefined;
|
|
@@ -1721,7 +1721,6 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1721
1721
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLAnchorElement> & import("react").TransitionEventHandler<HTMLButtonElement>) | undefined;
|
|
1722
1722
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
1723
1723
|
key?: import("react").Key | null | undefined;
|
|
1724
|
-
value?: string | number | readonly string[] | undefined;
|
|
1725
1724
|
form?: string | undefined;
|
|
1726
1725
|
autoFocus?: boolean | undefined;
|
|
1727
1726
|
formAction?: string | undefined;
|
|
@@ -1730,9 +1729,9 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1730
1729
|
formNoValidate?: boolean | undefined;
|
|
1731
1730
|
formTarget?: string | undefined;
|
|
1732
1731
|
name?: string | undefined;
|
|
1732
|
+
value?: string | number | readonly string[] | undefined;
|
|
1733
1733
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
1734
1734
|
}, {
|
|
1735
|
-
value?: string | number | readonly string[] | undefined;
|
|
1736
1735
|
form?: string | undefined;
|
|
1737
1736
|
autoFocus?: boolean | undefined;
|
|
1738
1737
|
formAction?: string | undefined;
|
|
@@ -1741,6 +1740,7 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1741
1740
|
formNoValidate?: boolean | undefined;
|
|
1742
1741
|
formTarget?: string | undefined;
|
|
1743
1742
|
name?: string | undefined;
|
|
1743
|
+
value?: string | number | readonly string[] | undefined;
|
|
1744
1744
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
1745
1745
|
href?: string | undefined;
|
|
1746
1746
|
hrefLang?: string | undefined;
|
|
@@ -1749,7 +1749,6 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1749
1749
|
rel?: string | undefined;
|
|
1750
1750
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
1751
1751
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
1752
|
-
children?: import("react").ReactNode;
|
|
1753
1752
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
1754
1753
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
1755
1754
|
slot?: string | undefined;
|
|
@@ -1766,15 +1765,15 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1766
1765
|
suppressHydrationWarning?: boolean | undefined;
|
|
1767
1766
|
accessKey?: string | undefined;
|
|
1768
1767
|
className?: string | undefined;
|
|
1769
|
-
contentEditable?: (boolean | "
|
|
1768
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
1770
1769
|
contextMenu?: string | undefined;
|
|
1771
1770
|
dir?: string | undefined;
|
|
1772
|
-
draggable?: (boolean | "
|
|
1771
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
1773
1772
|
hidden?: boolean | undefined;
|
|
1774
1773
|
id?: string | undefined;
|
|
1775
1774
|
lang?: string | undefined;
|
|
1776
1775
|
nonce?: string | undefined;
|
|
1777
|
-
spellCheck?: (boolean | "
|
|
1776
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
1778
1777
|
tabIndex?: number | undefined;
|
|
1779
1778
|
translate?: "yes" | "no" | undefined;
|
|
1780
1779
|
radioGroup?: string | undefined;
|
|
@@ -1802,53 +1801,54 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
1802
1801
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
1803
1802
|
is?: string | undefined;
|
|
1804
1803
|
"aria-activedescendant"?: string | undefined;
|
|
1805
|
-
"aria-atomic"?: (boolean | "
|
|
1804
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
1806
1805
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
1807
|
-
"aria-busy"?: (boolean | "
|
|
1808
|
-
"aria-checked"?: boolean | "
|
|
1806
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
1807
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1809
1808
|
"aria-colcount"?: number | undefined;
|
|
1810
1809
|
"aria-colindex"?: number | undefined;
|
|
1811
1810
|
"aria-colspan"?: number | undefined;
|
|
1812
1811
|
"aria-controls"?: string | undefined;
|
|
1813
|
-
"aria-current"?: boolean | "
|
|
1812
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
1814
1813
|
"aria-describedby"?: string | undefined;
|
|
1815
1814
|
"aria-details"?: string | undefined;
|
|
1816
|
-
"aria-disabled"?: (boolean | "
|
|
1815
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
1817
1816
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
1818
1817
|
"aria-errormessage"?: string | undefined;
|
|
1819
|
-
"aria-expanded"?: (boolean | "
|
|
1818
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
1820
1819
|
"aria-flowto"?: string | undefined;
|
|
1821
|
-
"aria-grabbed"?: (boolean | "
|
|
1822
|
-
"aria-haspopup"?: boolean | "
|
|
1823
|
-
"aria-hidden"?: (boolean | "
|
|
1824
|
-
"aria-invalid"?: boolean | "
|
|
1820
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
1821
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
1822
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
1823
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
1825
1824
|
"aria-keyshortcuts"?: string | undefined;
|
|
1826
1825
|
"aria-label"?: string | undefined;
|
|
1827
1826
|
"aria-labelledby"?: string | undefined;
|
|
1828
1827
|
"aria-level"?: number | undefined;
|
|
1829
1828
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
1830
|
-
"aria-modal"?: (boolean | "
|
|
1831
|
-
"aria-multiline"?: (boolean | "
|
|
1832
|
-
"aria-multiselectable"?: (boolean | "
|
|
1829
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
1830
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
1831
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
1833
1832
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
1834
1833
|
"aria-owns"?: string | undefined;
|
|
1835
1834
|
"aria-placeholder"?: string | undefined;
|
|
1836
1835
|
"aria-posinset"?: number | undefined;
|
|
1837
|
-
"aria-pressed"?: boolean | "
|
|
1838
|
-
"aria-readonly"?: (boolean | "
|
|
1836
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
1837
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
1839
1838
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
1840
|
-
"aria-required"?: (boolean | "
|
|
1839
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
1841
1840
|
"aria-roledescription"?: string | undefined;
|
|
1842
1841
|
"aria-rowcount"?: number | undefined;
|
|
1843
1842
|
"aria-rowindex"?: number | undefined;
|
|
1844
1843
|
"aria-rowspan"?: number | undefined;
|
|
1845
|
-
"aria-selected"?: (boolean | "
|
|
1844
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
1846
1845
|
"aria-setsize"?: number | undefined;
|
|
1847
1846
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
1848
1847
|
"aria-valuemax"?: number | undefined;
|
|
1849
1848
|
"aria-valuemin"?: number | undefined;
|
|
1850
1849
|
"aria-valuenow"?: number | undefined;
|
|
1851
1850
|
"aria-valuetext"?: string | undefined;
|
|
1851
|
+
children?: import("react").ReactNode;
|
|
1852
1852
|
dangerouslySetInnerHTML?: {
|
|
1853
1853
|
__html: string;
|
|
1854
1854
|
} | undefined;
|
|
@@ -2024,7 +2024,6 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
2024
2024
|
rel?: string | undefined;
|
|
2025
2025
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
2026
2026
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
2027
|
-
value?: string | number | readonly string[] | undefined;
|
|
2028
2027
|
form?: string | undefined;
|
|
2029
2028
|
autoFocus?: boolean | undefined;
|
|
2030
2029
|
formAction?: string | undefined;
|
|
@@ -2033,8 +2032,8 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
2033
2032
|
formNoValidate?: boolean | undefined;
|
|
2034
2033
|
formTarget?: string | undefined;
|
|
2035
2034
|
name?: string | undefined;
|
|
2035
|
+
value?: string | number | readonly string[] | undefined;
|
|
2036
2036
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
2037
|
-
children?: import("react").ReactNode;
|
|
2038
2037
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
2039
2038
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
2040
2039
|
slot?: string | undefined;
|
|
@@ -2051,15 +2050,15 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
2051
2050
|
suppressHydrationWarning?: boolean | undefined;
|
|
2052
2051
|
accessKey?: string | undefined;
|
|
2053
2052
|
className?: string | undefined;
|
|
2054
|
-
contentEditable?: (boolean | "
|
|
2053
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
2055
2054
|
contextMenu?: string | undefined;
|
|
2056
2055
|
dir?: string | undefined;
|
|
2057
|
-
draggable?: (boolean | "
|
|
2056
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2058
2057
|
hidden?: boolean | undefined;
|
|
2059
2058
|
id?: string | undefined;
|
|
2060
2059
|
lang?: string | undefined;
|
|
2061
2060
|
nonce?: string | undefined;
|
|
2062
|
-
spellCheck?: (boolean | "
|
|
2061
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2063
2062
|
tabIndex?: number | undefined;
|
|
2064
2063
|
translate?: "yes" | "no" | undefined;
|
|
2065
2064
|
radioGroup?: string | undefined;
|
|
@@ -2087,53 +2086,54 @@ export declare const Variants: import("@storybook/types").StoryAnnotations<impor
|
|
|
2087
2086
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
2088
2087
|
is?: string | undefined;
|
|
2089
2088
|
"aria-activedescendant"?: string | undefined;
|
|
2090
|
-
"aria-atomic"?: (boolean | "
|
|
2089
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2091
2090
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2092
|
-
"aria-busy"?: (boolean | "
|
|
2093
|
-
"aria-checked"?: boolean | "
|
|
2091
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2092
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2094
2093
|
"aria-colcount"?: number | undefined;
|
|
2095
2094
|
"aria-colindex"?: number | undefined;
|
|
2096
2095
|
"aria-colspan"?: number | undefined;
|
|
2097
2096
|
"aria-controls"?: string | undefined;
|
|
2098
|
-
"aria-current"?: boolean | "
|
|
2097
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
2099
2098
|
"aria-describedby"?: string | undefined;
|
|
2100
2099
|
"aria-details"?: string | undefined;
|
|
2101
|
-
"aria-disabled"?: (boolean | "
|
|
2100
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2102
2101
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2103
2102
|
"aria-errormessage"?: string | undefined;
|
|
2104
|
-
"aria-expanded"?: (boolean | "
|
|
2103
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2105
2104
|
"aria-flowto"?: string | undefined;
|
|
2106
|
-
"aria-grabbed"?: (boolean | "
|
|
2107
|
-
"aria-haspopup"?: boolean | "
|
|
2108
|
-
"aria-hidden"?: (boolean | "
|
|
2109
|
-
"aria-invalid"?: boolean | "
|
|
2105
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2106
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2107
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2108
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2110
2109
|
"aria-keyshortcuts"?: string | undefined;
|
|
2111
2110
|
"aria-label"?: string | undefined;
|
|
2112
2111
|
"aria-labelledby"?: string | undefined;
|
|
2113
2112
|
"aria-level"?: number | undefined;
|
|
2114
2113
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2115
|
-
"aria-modal"?: (boolean | "
|
|
2116
|
-
"aria-multiline"?: (boolean | "
|
|
2117
|
-
"aria-multiselectable"?: (boolean | "
|
|
2114
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2115
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2116
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2118
2117
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2119
2118
|
"aria-owns"?: string | undefined;
|
|
2120
2119
|
"aria-placeholder"?: string | undefined;
|
|
2121
2120
|
"aria-posinset"?: number | undefined;
|
|
2122
|
-
"aria-pressed"?: boolean | "
|
|
2123
|
-
"aria-readonly"?: (boolean | "
|
|
2121
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2122
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2124
2123
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2125
|
-
"aria-required"?: (boolean | "
|
|
2124
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2126
2125
|
"aria-roledescription"?: string | undefined;
|
|
2127
2126
|
"aria-rowcount"?: number | undefined;
|
|
2128
2127
|
"aria-rowindex"?: number | undefined;
|
|
2129
2128
|
"aria-rowspan"?: number | undefined;
|
|
2130
|
-
"aria-selected"?: (boolean | "
|
|
2129
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2131
2130
|
"aria-setsize"?: number | undefined;
|
|
2132
2131
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2133
2132
|
"aria-valuemax"?: number | undefined;
|
|
2134
2133
|
"aria-valuemin"?: number | undefined;
|
|
2135
2134
|
"aria-valuenow"?: number | undefined;
|
|
2136
2135
|
"aria-valuetext"?: string | undefined;
|
|
2136
|
+
children?: import("react").ReactNode;
|
|
2137
2137
|
dangerouslySetInnerHTML?: {
|
|
2138
2138
|
__html: string;
|
|
2139
2139
|
} | undefined;
|
|
@@ -2310,8 +2310,6 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2310
2310
|
type?: "link" | "primary" | "pay" | "secondary" | "danger" | "accent" | "negative" | "positive" | undefined;
|
|
2311
2311
|
priority?: "primary" | "secondary" | "tertiary" | undefined;
|
|
2312
2312
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
2313
|
-
value?: string | number | readonly string[] | undefined;
|
|
2314
|
-
children?: import("react").ReactNode;
|
|
2315
2313
|
form?: string | undefined;
|
|
2316
2314
|
slot?: string | undefined;
|
|
2317
2315
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -2324,6 +2322,7 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2324
2322
|
formTarget?: string | undefined;
|
|
2325
2323
|
name?: string | undefined;
|
|
2326
2324
|
placeholder?: string | undefined;
|
|
2325
|
+
value?: string | number | readonly string[] | undefined;
|
|
2327
2326
|
onChange?: (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
2328
2327
|
defaultChecked?: boolean | undefined;
|
|
2329
2328
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -2331,15 +2330,15 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2331
2330
|
suppressHydrationWarning?: boolean | undefined;
|
|
2332
2331
|
accessKey?: string | undefined;
|
|
2333
2332
|
className?: string | undefined;
|
|
2334
|
-
contentEditable?: (boolean | "
|
|
2333
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
2335
2334
|
contextMenu?: string | undefined;
|
|
2336
2335
|
dir?: string | undefined;
|
|
2337
|
-
draggable?: (boolean | "
|
|
2336
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2338
2337
|
hidden?: boolean | undefined;
|
|
2339
2338
|
id?: string | undefined;
|
|
2340
2339
|
lang?: string | undefined;
|
|
2341
2340
|
nonce?: string | undefined;
|
|
2342
|
-
spellCheck?: (boolean | "
|
|
2341
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2343
2342
|
tabIndex?: number | undefined;
|
|
2344
2343
|
translate?: "yes" | "no" | undefined;
|
|
2345
2344
|
radioGroup?: string | undefined;
|
|
@@ -2367,53 +2366,54 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2367
2366
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
2368
2367
|
is?: string | undefined;
|
|
2369
2368
|
"aria-activedescendant"?: string | undefined;
|
|
2370
|
-
"aria-atomic"?: (boolean | "
|
|
2369
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2371
2370
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2372
|
-
"aria-busy"?: (boolean | "
|
|
2373
|
-
"aria-checked"?: boolean | "
|
|
2371
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2372
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2374
2373
|
"aria-colcount"?: number | undefined;
|
|
2375
2374
|
"aria-colindex"?: number | undefined;
|
|
2376
2375
|
"aria-colspan"?: number | undefined;
|
|
2377
2376
|
"aria-controls"?: string | undefined;
|
|
2378
|
-
"aria-current"?: boolean | "
|
|
2377
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
2379
2378
|
"aria-describedby"?: string | undefined;
|
|
2380
2379
|
"aria-details"?: string | undefined;
|
|
2381
|
-
"aria-disabled"?: (boolean | "
|
|
2380
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2382
2381
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2383
2382
|
"aria-errormessage"?: string | undefined;
|
|
2384
|
-
"aria-expanded"?: (boolean | "
|
|
2383
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2385
2384
|
"aria-flowto"?: string | undefined;
|
|
2386
|
-
"aria-grabbed"?: (boolean | "
|
|
2387
|
-
"aria-haspopup"?: boolean | "
|
|
2388
|
-
"aria-hidden"?: (boolean | "
|
|
2389
|
-
"aria-invalid"?: boolean | "
|
|
2385
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2386
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2387
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2388
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2390
2389
|
"aria-keyshortcuts"?: string | undefined;
|
|
2391
2390
|
"aria-label"?: string | undefined;
|
|
2392
2391
|
"aria-labelledby"?: string | undefined;
|
|
2393
2392
|
"aria-level"?: number | undefined;
|
|
2394
2393
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2395
|
-
"aria-modal"?: (boolean | "
|
|
2396
|
-
"aria-multiline"?: (boolean | "
|
|
2397
|
-
"aria-multiselectable"?: (boolean | "
|
|
2394
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2395
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2396
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2398
2397
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2399
2398
|
"aria-owns"?: string | undefined;
|
|
2400
2399
|
"aria-placeholder"?: string | undefined;
|
|
2401
2400
|
"aria-posinset"?: number | undefined;
|
|
2402
|
-
"aria-pressed"?: boolean | "
|
|
2403
|
-
"aria-readonly"?: (boolean | "
|
|
2401
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2402
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2404
2403
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2405
|
-
"aria-required"?: (boolean | "
|
|
2404
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2406
2405
|
"aria-roledescription"?: string | undefined;
|
|
2407
2406
|
"aria-rowcount"?: number | undefined;
|
|
2408
2407
|
"aria-rowindex"?: number | undefined;
|
|
2409
2408
|
"aria-rowspan"?: number | undefined;
|
|
2410
|
-
"aria-selected"?: (boolean | "
|
|
2409
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2411
2410
|
"aria-setsize"?: number | undefined;
|
|
2412
2411
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2413
2412
|
"aria-valuemax"?: number | undefined;
|
|
2414
2413
|
"aria-valuemin"?: number | undefined;
|
|
2415
2414
|
"aria-valuenow"?: number | undefined;
|
|
2416
2415
|
"aria-valuetext"?: string | undefined;
|
|
2416
|
+
children?: import("react").ReactNode;
|
|
2417
2417
|
dangerouslySetInnerHTML?: {
|
|
2418
2418
|
__html: string;
|
|
2419
2419
|
} | undefined;
|
|
@@ -2609,17 +2609,17 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2609
2609
|
suppressHydrationWarning?: boolean | undefined;
|
|
2610
2610
|
accessKey?: string | undefined;
|
|
2611
2611
|
className?: string | undefined;
|
|
2612
|
-
contentEditable?: (boolean | "
|
|
2612
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
2613
2613
|
contextMenu?: string | undefined;
|
|
2614
2614
|
dir?: string | undefined;
|
|
2615
|
-
draggable?: (boolean | "
|
|
2615
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2616
2616
|
hidden?: boolean | undefined;
|
|
2617
2617
|
id?: string | undefined;
|
|
2618
2618
|
lang?: string | undefined;
|
|
2619
2619
|
nonce?: string | undefined;
|
|
2620
2620
|
placeholder?: string | undefined;
|
|
2621
2621
|
slot?: string | undefined;
|
|
2622
|
-
spellCheck?: (boolean | "
|
|
2622
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2623
2623
|
style?: import("react").CSSProperties | undefined;
|
|
2624
2624
|
tabIndex?: number | undefined;
|
|
2625
2625
|
title?: string | undefined;
|
|
@@ -2649,47 +2649,47 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2649
2649
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
2650
2650
|
is?: string | undefined;
|
|
2651
2651
|
"aria-activedescendant"?: string | undefined;
|
|
2652
|
-
"aria-atomic"?: (boolean | "
|
|
2652
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2653
2653
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2654
|
-
"aria-busy"?: (boolean | "
|
|
2655
|
-
"aria-checked"?: boolean | "
|
|
2654
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2655
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2656
2656
|
"aria-colcount"?: number | undefined;
|
|
2657
2657
|
"aria-colindex"?: number | undefined;
|
|
2658
2658
|
"aria-colspan"?: number | undefined;
|
|
2659
2659
|
"aria-controls"?: string | undefined;
|
|
2660
|
-
"aria-current"?: boolean | "
|
|
2660
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
2661
2661
|
"aria-describedby"?: string | undefined;
|
|
2662
2662
|
"aria-details"?: string | undefined;
|
|
2663
|
-
"aria-disabled"?: (boolean | "
|
|
2663
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2664
2664
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2665
2665
|
"aria-errormessage"?: string | undefined;
|
|
2666
|
-
"aria-expanded"?: (boolean | "
|
|
2666
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2667
2667
|
"aria-flowto"?: string | undefined;
|
|
2668
|
-
"aria-grabbed"?: (boolean | "
|
|
2669
|
-
"aria-haspopup"?: boolean | "
|
|
2670
|
-
"aria-hidden"?: (boolean | "
|
|
2671
|
-
"aria-invalid"?: boolean | "
|
|
2668
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2669
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2670
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2671
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2672
2672
|
"aria-keyshortcuts"?: string | undefined;
|
|
2673
2673
|
"aria-label"?: string | undefined;
|
|
2674
2674
|
"aria-labelledby"?: string | undefined;
|
|
2675
2675
|
"aria-level"?: number | undefined;
|
|
2676
2676
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2677
|
-
"aria-modal"?: (boolean | "
|
|
2678
|
-
"aria-multiline"?: (boolean | "
|
|
2679
|
-
"aria-multiselectable"?: (boolean | "
|
|
2677
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2678
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2679
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2680
2680
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2681
2681
|
"aria-owns"?: string | undefined;
|
|
2682
2682
|
"aria-placeholder"?: string | undefined;
|
|
2683
2683
|
"aria-posinset"?: number | undefined;
|
|
2684
|
-
"aria-pressed"?: boolean | "
|
|
2685
|
-
"aria-readonly"?: (boolean | "
|
|
2684
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2685
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2686
2686
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2687
|
-
"aria-required"?: (boolean | "
|
|
2687
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2688
2688
|
"aria-roledescription"?: string | undefined;
|
|
2689
2689
|
"aria-rowcount"?: number | undefined;
|
|
2690
2690
|
"aria-rowindex"?: number | undefined;
|
|
2691
2691
|
"aria-rowspan"?: number | undefined;
|
|
2692
|
-
"aria-selected"?: (boolean | "
|
|
2692
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2693
2693
|
"aria-setsize"?: number | undefined;
|
|
2694
2694
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2695
2695
|
"aria-valuemax"?: number | undefined;
|
|
@@ -2862,7 +2862,6 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2862
2862
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLAnchorElement> & import("react").TransitionEventHandler<HTMLButtonElement>) | undefined;
|
|
2863
2863
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
2864
2864
|
key?: import("react").Key | null | undefined;
|
|
2865
|
-
value?: string | number | readonly string[] | undefined;
|
|
2866
2865
|
form?: string | undefined;
|
|
2867
2866
|
autoFocus?: boolean | undefined;
|
|
2868
2867
|
formAction?: string | undefined;
|
|
@@ -2871,9 +2870,9 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2871
2870
|
formNoValidate?: boolean | undefined;
|
|
2872
2871
|
formTarget?: string | undefined;
|
|
2873
2872
|
name?: string | undefined;
|
|
2873
|
+
value?: string | number | readonly string[] | undefined;
|
|
2874
2874
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
2875
2875
|
}, {
|
|
2876
|
-
value?: string | number | readonly string[] | undefined;
|
|
2877
2876
|
form?: string | undefined;
|
|
2878
2877
|
autoFocus?: boolean | undefined;
|
|
2879
2878
|
formAction?: string | undefined;
|
|
@@ -2882,6 +2881,7 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2882
2881
|
formNoValidate?: boolean | undefined;
|
|
2883
2882
|
formTarget?: string | undefined;
|
|
2884
2883
|
name?: string | undefined;
|
|
2884
|
+
value?: string | number | readonly string[] | undefined;
|
|
2885
2885
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
2886
2886
|
href?: string | undefined;
|
|
2887
2887
|
hrefLang?: string | undefined;
|
|
@@ -2890,7 +2890,6 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2890
2890
|
rel?: string | undefined;
|
|
2891
2891
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
2892
2892
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
2893
|
-
children?: import("react").ReactNode;
|
|
2894
2893
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
2895
2894
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
2896
2895
|
slot?: string | undefined;
|
|
@@ -2907,15 +2906,15 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2907
2906
|
suppressHydrationWarning?: boolean | undefined;
|
|
2908
2907
|
accessKey?: string | undefined;
|
|
2909
2908
|
className?: string | undefined;
|
|
2910
|
-
contentEditable?: (boolean | "
|
|
2909
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
2911
2910
|
contextMenu?: string | undefined;
|
|
2912
2911
|
dir?: string | undefined;
|
|
2913
|
-
draggable?: (boolean | "
|
|
2912
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
2914
2913
|
hidden?: boolean | undefined;
|
|
2915
2914
|
id?: string | undefined;
|
|
2916
2915
|
lang?: string | undefined;
|
|
2917
2916
|
nonce?: string | undefined;
|
|
2918
|
-
spellCheck?: (boolean | "
|
|
2917
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
2919
2918
|
tabIndex?: number | undefined;
|
|
2920
2919
|
translate?: "yes" | "no" | undefined;
|
|
2921
2920
|
radioGroup?: string | undefined;
|
|
@@ -2943,53 +2942,54 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
2943
2942
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
2944
2943
|
is?: string | undefined;
|
|
2945
2944
|
"aria-activedescendant"?: string | undefined;
|
|
2946
|
-
"aria-atomic"?: (boolean | "
|
|
2945
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
2947
2946
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
2948
|
-
"aria-busy"?: (boolean | "
|
|
2949
|
-
"aria-checked"?: boolean | "
|
|
2947
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
2948
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2950
2949
|
"aria-colcount"?: number | undefined;
|
|
2951
2950
|
"aria-colindex"?: number | undefined;
|
|
2952
2951
|
"aria-colspan"?: number | undefined;
|
|
2953
2952
|
"aria-controls"?: string | undefined;
|
|
2954
|
-
"aria-current"?: boolean | "
|
|
2953
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
2955
2954
|
"aria-describedby"?: string | undefined;
|
|
2956
2955
|
"aria-details"?: string | undefined;
|
|
2957
|
-
"aria-disabled"?: (boolean | "
|
|
2956
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
2958
2957
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
2959
2958
|
"aria-errormessage"?: string | undefined;
|
|
2960
|
-
"aria-expanded"?: (boolean | "
|
|
2959
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
2961
2960
|
"aria-flowto"?: string | undefined;
|
|
2962
|
-
"aria-grabbed"?: (boolean | "
|
|
2963
|
-
"aria-haspopup"?: boolean | "
|
|
2964
|
-
"aria-hidden"?: (boolean | "
|
|
2965
|
-
"aria-invalid"?: boolean | "
|
|
2961
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
2962
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
2963
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
2964
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
2966
2965
|
"aria-keyshortcuts"?: string | undefined;
|
|
2967
2966
|
"aria-label"?: string | undefined;
|
|
2968
2967
|
"aria-labelledby"?: string | undefined;
|
|
2969
2968
|
"aria-level"?: number | undefined;
|
|
2970
2969
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
2971
|
-
"aria-modal"?: (boolean | "
|
|
2972
|
-
"aria-multiline"?: (boolean | "
|
|
2973
|
-
"aria-multiselectable"?: (boolean | "
|
|
2970
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
2971
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
2972
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
2974
2973
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
2975
2974
|
"aria-owns"?: string | undefined;
|
|
2976
2975
|
"aria-placeholder"?: string | undefined;
|
|
2977
2976
|
"aria-posinset"?: number | undefined;
|
|
2978
|
-
"aria-pressed"?: boolean | "
|
|
2979
|
-
"aria-readonly"?: (boolean | "
|
|
2977
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
2978
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
2980
2979
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
2981
|
-
"aria-required"?: (boolean | "
|
|
2980
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
2982
2981
|
"aria-roledescription"?: string | undefined;
|
|
2983
2982
|
"aria-rowcount"?: number | undefined;
|
|
2984
2983
|
"aria-rowindex"?: number | undefined;
|
|
2985
2984
|
"aria-rowspan"?: number | undefined;
|
|
2986
|
-
"aria-selected"?: (boolean | "
|
|
2985
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
2987
2986
|
"aria-setsize"?: number | undefined;
|
|
2988
2987
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
2989
2988
|
"aria-valuemax"?: number | undefined;
|
|
2990
2989
|
"aria-valuemin"?: number | undefined;
|
|
2991
2990
|
"aria-valuenow"?: number | undefined;
|
|
2992
2991
|
"aria-valuetext"?: string | undefined;
|
|
2992
|
+
children?: import("react").ReactNode;
|
|
2993
2993
|
dangerouslySetInnerHTML?: {
|
|
2994
2994
|
__html: string;
|
|
2995
2995
|
} | undefined;
|
|
@@ -3165,7 +3165,6 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
3165
3165
|
rel?: string | undefined;
|
|
3166
3166
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
3167
3167
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
3168
|
-
value?: string | number | readonly string[] | undefined;
|
|
3169
3168
|
form?: string | undefined;
|
|
3170
3169
|
autoFocus?: boolean | undefined;
|
|
3171
3170
|
formAction?: string | undefined;
|
|
@@ -3174,8 +3173,8 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
3174
3173
|
formNoValidate?: boolean | undefined;
|
|
3175
3174
|
formTarget?: string | undefined;
|
|
3176
3175
|
name?: string | undefined;
|
|
3176
|
+
value?: string | number | readonly string[] | undefined;
|
|
3177
3177
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
3178
|
-
children?: import("react").ReactNode;
|
|
3179
3178
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
3180
3179
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
3181
3180
|
slot?: string | undefined;
|
|
@@ -3192,15 +3191,15 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
3192
3191
|
suppressHydrationWarning?: boolean | undefined;
|
|
3193
3192
|
accessKey?: string | undefined;
|
|
3194
3193
|
className?: string | undefined;
|
|
3195
|
-
contentEditable?: (boolean | "
|
|
3194
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
3196
3195
|
contextMenu?: string | undefined;
|
|
3197
3196
|
dir?: string | undefined;
|
|
3198
|
-
draggable?: (boolean | "
|
|
3197
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
3199
3198
|
hidden?: boolean | undefined;
|
|
3200
3199
|
id?: string | undefined;
|
|
3201
3200
|
lang?: string | undefined;
|
|
3202
3201
|
nonce?: string | undefined;
|
|
3203
|
-
spellCheck?: (boolean | "
|
|
3202
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
3204
3203
|
tabIndex?: number | undefined;
|
|
3205
3204
|
translate?: "yes" | "no" | undefined;
|
|
3206
3205
|
radioGroup?: string | undefined;
|
|
@@ -3228,53 +3227,54 @@ export declare const SocialMedia: import("@storybook/types").StoryAnnotations<im
|
|
|
3228
3227
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
3229
3228
|
is?: string | undefined;
|
|
3230
3229
|
"aria-activedescendant"?: string | undefined;
|
|
3231
|
-
"aria-atomic"?: (boolean | "
|
|
3230
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3232
3231
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
3233
|
-
"aria-busy"?: (boolean | "
|
|
3234
|
-
"aria-checked"?: boolean | "
|
|
3232
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3233
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3235
3234
|
"aria-colcount"?: number | undefined;
|
|
3236
3235
|
"aria-colindex"?: number | undefined;
|
|
3237
3236
|
"aria-colspan"?: number | undefined;
|
|
3238
3237
|
"aria-controls"?: string | undefined;
|
|
3239
|
-
"aria-current"?: boolean | "
|
|
3238
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
3240
3239
|
"aria-describedby"?: string | undefined;
|
|
3241
3240
|
"aria-details"?: string | undefined;
|
|
3242
|
-
"aria-disabled"?: (boolean | "
|
|
3241
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3243
3242
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
3244
3243
|
"aria-errormessage"?: string | undefined;
|
|
3245
|
-
"aria-expanded"?: (boolean | "
|
|
3244
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
3246
3245
|
"aria-flowto"?: string | undefined;
|
|
3247
|
-
"aria-grabbed"?: (boolean | "
|
|
3248
|
-
"aria-haspopup"?: boolean | "
|
|
3249
|
-
"aria-hidden"?: (boolean | "
|
|
3250
|
-
"aria-invalid"?: boolean | "
|
|
3246
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3247
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
3248
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3249
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
3251
3250
|
"aria-keyshortcuts"?: string | undefined;
|
|
3252
3251
|
"aria-label"?: string | undefined;
|
|
3253
3252
|
"aria-labelledby"?: string | undefined;
|
|
3254
3253
|
"aria-level"?: number | undefined;
|
|
3255
3254
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
3256
|
-
"aria-modal"?: (boolean | "
|
|
3257
|
-
"aria-multiline"?: (boolean | "
|
|
3258
|
-
"aria-multiselectable"?: (boolean | "
|
|
3255
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3256
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3257
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
3259
3258
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
3260
3259
|
"aria-owns"?: string | undefined;
|
|
3261
3260
|
"aria-placeholder"?: string | undefined;
|
|
3262
3261
|
"aria-posinset"?: number | undefined;
|
|
3263
|
-
"aria-pressed"?: boolean | "
|
|
3264
|
-
"aria-readonly"?: (boolean | "
|
|
3262
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3263
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3265
3264
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3266
|
-
"aria-required"?: (boolean | "
|
|
3265
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
3267
3266
|
"aria-roledescription"?: string | undefined;
|
|
3268
3267
|
"aria-rowcount"?: number | undefined;
|
|
3269
3268
|
"aria-rowindex"?: number | undefined;
|
|
3270
3269
|
"aria-rowspan"?: number | undefined;
|
|
3271
|
-
"aria-selected"?: (boolean | "
|
|
3270
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
3272
3271
|
"aria-setsize"?: number | undefined;
|
|
3273
3272
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
3274
3273
|
"aria-valuemax"?: number | undefined;
|
|
3275
3274
|
"aria-valuemin"?: number | undefined;
|
|
3276
3275
|
"aria-valuenow"?: number | undefined;
|
|
3277
3276
|
"aria-valuetext"?: string | undefined;
|
|
3277
|
+
children?: import("react").ReactNode;
|
|
3278
3278
|
dangerouslySetInnerHTML?: {
|
|
3279
3279
|
__html: string;
|
|
3280
3280
|
} | undefined;
|
|
@@ -3451,8 +3451,6 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3451
3451
|
type?: "link" | "primary" | "pay" | "secondary" | "danger" | "accent" | "negative" | "positive" | undefined;
|
|
3452
3452
|
priority?: "primary" | "secondary" | "tertiary" | undefined;
|
|
3453
3453
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
3454
|
-
value?: string | number | readonly string[] | undefined;
|
|
3455
|
-
children?: import("react").ReactNode;
|
|
3456
3454
|
form?: string | undefined;
|
|
3457
3455
|
slot?: string | undefined;
|
|
3458
3456
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -3465,6 +3463,7 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3465
3463
|
formTarget?: string | undefined;
|
|
3466
3464
|
name?: string | undefined;
|
|
3467
3465
|
placeholder?: string | undefined;
|
|
3466
|
+
value?: string | number | readonly string[] | undefined;
|
|
3468
3467
|
onChange?: (import("react").FormEventHandler<HTMLButtonElement> & import("react").FormEventHandler<HTMLAnchorElement>) | undefined;
|
|
3469
3468
|
defaultChecked?: boolean | undefined;
|
|
3470
3469
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
@@ -3472,15 +3471,15 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3472
3471
|
suppressHydrationWarning?: boolean | undefined;
|
|
3473
3472
|
accessKey?: string | undefined;
|
|
3474
3473
|
className?: string | undefined;
|
|
3475
|
-
contentEditable?: (boolean | "
|
|
3474
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
3476
3475
|
contextMenu?: string | undefined;
|
|
3477
3476
|
dir?: string | undefined;
|
|
3478
|
-
draggable?: (boolean | "
|
|
3477
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
3479
3478
|
hidden?: boolean | undefined;
|
|
3480
3479
|
id?: string | undefined;
|
|
3481
3480
|
lang?: string | undefined;
|
|
3482
3481
|
nonce?: string | undefined;
|
|
3483
|
-
spellCheck?: (boolean | "
|
|
3482
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
3484
3483
|
tabIndex?: number | undefined;
|
|
3485
3484
|
translate?: "yes" | "no" | undefined;
|
|
3486
3485
|
radioGroup?: string | undefined;
|
|
@@ -3508,53 +3507,54 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3508
3507
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
3509
3508
|
is?: string | undefined;
|
|
3510
3509
|
"aria-activedescendant"?: string | undefined;
|
|
3511
|
-
"aria-atomic"?: (boolean | "
|
|
3510
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3512
3511
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
3513
|
-
"aria-busy"?: (boolean | "
|
|
3514
|
-
"aria-checked"?: boolean | "
|
|
3512
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3513
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3515
3514
|
"aria-colcount"?: number | undefined;
|
|
3516
3515
|
"aria-colindex"?: number | undefined;
|
|
3517
3516
|
"aria-colspan"?: number | undefined;
|
|
3518
3517
|
"aria-controls"?: string | undefined;
|
|
3519
|
-
"aria-current"?: boolean | "
|
|
3518
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
3520
3519
|
"aria-describedby"?: string | undefined;
|
|
3521
3520
|
"aria-details"?: string | undefined;
|
|
3522
|
-
"aria-disabled"?: (boolean | "
|
|
3521
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3523
3522
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
3524
3523
|
"aria-errormessage"?: string | undefined;
|
|
3525
|
-
"aria-expanded"?: (boolean | "
|
|
3524
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
3526
3525
|
"aria-flowto"?: string | undefined;
|
|
3527
|
-
"aria-grabbed"?: (boolean | "
|
|
3528
|
-
"aria-haspopup"?: boolean | "
|
|
3529
|
-
"aria-hidden"?: (boolean | "
|
|
3530
|
-
"aria-invalid"?: boolean | "
|
|
3526
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3527
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
3528
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3529
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
3531
3530
|
"aria-keyshortcuts"?: string | undefined;
|
|
3532
3531
|
"aria-label"?: string | undefined;
|
|
3533
3532
|
"aria-labelledby"?: string | undefined;
|
|
3534
3533
|
"aria-level"?: number | undefined;
|
|
3535
3534
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
3536
|
-
"aria-modal"?: (boolean | "
|
|
3537
|
-
"aria-multiline"?: (boolean | "
|
|
3538
|
-
"aria-multiselectable"?: (boolean | "
|
|
3535
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3536
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3537
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
3539
3538
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
3540
3539
|
"aria-owns"?: string | undefined;
|
|
3541
3540
|
"aria-placeholder"?: string | undefined;
|
|
3542
3541
|
"aria-posinset"?: number | undefined;
|
|
3543
|
-
"aria-pressed"?: boolean | "
|
|
3544
|
-
"aria-readonly"?: (boolean | "
|
|
3542
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3543
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3545
3544
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3546
|
-
"aria-required"?: (boolean | "
|
|
3545
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
3547
3546
|
"aria-roledescription"?: string | undefined;
|
|
3548
3547
|
"aria-rowcount"?: number | undefined;
|
|
3549
3548
|
"aria-rowindex"?: number | undefined;
|
|
3550
3549
|
"aria-rowspan"?: number | undefined;
|
|
3551
|
-
"aria-selected"?: (boolean | "
|
|
3550
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
3552
3551
|
"aria-setsize"?: number | undefined;
|
|
3553
3552
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
3554
3553
|
"aria-valuemax"?: number | undefined;
|
|
3555
3554
|
"aria-valuemin"?: number | undefined;
|
|
3556
3555
|
"aria-valuenow"?: number | undefined;
|
|
3557
3556
|
"aria-valuetext"?: string | undefined;
|
|
3557
|
+
children?: import("react").ReactNode;
|
|
3558
3558
|
dangerouslySetInnerHTML?: {
|
|
3559
3559
|
__html: string;
|
|
3560
3560
|
} | undefined;
|
|
@@ -3750,17 +3750,17 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3750
3750
|
suppressHydrationWarning?: boolean | undefined;
|
|
3751
3751
|
accessKey?: string | undefined;
|
|
3752
3752
|
className?: string | undefined;
|
|
3753
|
-
contentEditable?: (boolean | "
|
|
3753
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
3754
3754
|
contextMenu?: string | undefined;
|
|
3755
3755
|
dir?: string | undefined;
|
|
3756
|
-
draggable?: (boolean | "
|
|
3756
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
3757
3757
|
hidden?: boolean | undefined;
|
|
3758
3758
|
id?: string | undefined;
|
|
3759
3759
|
lang?: string | undefined;
|
|
3760
3760
|
nonce?: string | undefined;
|
|
3761
3761
|
placeholder?: string | undefined;
|
|
3762
3762
|
slot?: string | undefined;
|
|
3763
|
-
spellCheck?: (boolean | "
|
|
3763
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
3764
3764
|
style?: import("react").CSSProperties | undefined;
|
|
3765
3765
|
tabIndex?: number | undefined;
|
|
3766
3766
|
title?: string | undefined;
|
|
@@ -3790,47 +3790,47 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
3790
3790
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
3791
3791
|
is?: string | undefined;
|
|
3792
3792
|
"aria-activedescendant"?: string | undefined;
|
|
3793
|
-
"aria-atomic"?: (boolean | "
|
|
3793
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
3794
3794
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
3795
|
-
"aria-busy"?: (boolean | "
|
|
3796
|
-
"aria-checked"?: boolean | "
|
|
3795
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
3796
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3797
3797
|
"aria-colcount"?: number | undefined;
|
|
3798
3798
|
"aria-colindex"?: number | undefined;
|
|
3799
3799
|
"aria-colspan"?: number | undefined;
|
|
3800
3800
|
"aria-controls"?: string | undefined;
|
|
3801
|
-
"aria-current"?: boolean | "
|
|
3801
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
3802
3802
|
"aria-describedby"?: string | undefined;
|
|
3803
3803
|
"aria-details"?: string | undefined;
|
|
3804
|
-
"aria-disabled"?: (boolean | "
|
|
3804
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
3805
3805
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
3806
3806
|
"aria-errormessage"?: string | undefined;
|
|
3807
|
-
"aria-expanded"?: (boolean | "
|
|
3807
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
3808
3808
|
"aria-flowto"?: string | undefined;
|
|
3809
|
-
"aria-grabbed"?: (boolean | "
|
|
3810
|
-
"aria-haspopup"?: boolean | "
|
|
3811
|
-
"aria-hidden"?: (boolean | "
|
|
3812
|
-
"aria-invalid"?: boolean | "
|
|
3809
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
3810
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
3811
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
3812
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
3813
3813
|
"aria-keyshortcuts"?: string | undefined;
|
|
3814
3814
|
"aria-label"?: string | undefined;
|
|
3815
3815
|
"aria-labelledby"?: string | undefined;
|
|
3816
3816
|
"aria-level"?: number | undefined;
|
|
3817
3817
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
3818
|
-
"aria-modal"?: (boolean | "
|
|
3819
|
-
"aria-multiline"?: (boolean | "
|
|
3820
|
-
"aria-multiselectable"?: (boolean | "
|
|
3818
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
3819
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
3820
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
3821
3821
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
3822
3822
|
"aria-owns"?: string | undefined;
|
|
3823
3823
|
"aria-placeholder"?: string | undefined;
|
|
3824
3824
|
"aria-posinset"?: number | undefined;
|
|
3825
|
-
"aria-pressed"?: boolean | "
|
|
3826
|
-
"aria-readonly"?: (boolean | "
|
|
3825
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
3826
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
3827
3827
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
3828
|
-
"aria-required"?: (boolean | "
|
|
3828
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
3829
3829
|
"aria-roledescription"?: string | undefined;
|
|
3830
3830
|
"aria-rowcount"?: number | undefined;
|
|
3831
3831
|
"aria-rowindex"?: number | undefined;
|
|
3832
3832
|
"aria-rowspan"?: number | undefined;
|
|
3833
|
-
"aria-selected"?: (boolean | "
|
|
3833
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
3834
3834
|
"aria-setsize"?: number | undefined;
|
|
3835
3835
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
3836
3836
|
"aria-valuemax"?: number | undefined;
|
|
@@ -4003,7 +4003,6 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4003
4003
|
onTransitionEndCapture?: (import("react").TransitionEventHandler<HTMLAnchorElement> & import("react").TransitionEventHandler<HTMLButtonElement>) | undefined;
|
|
4004
4004
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
4005
4005
|
key?: import("react").Key | null | undefined;
|
|
4006
|
-
value?: string | number | readonly string[] | undefined;
|
|
4007
4006
|
form?: string | undefined;
|
|
4008
4007
|
autoFocus?: boolean | undefined;
|
|
4009
4008
|
formAction?: string | undefined;
|
|
@@ -4012,9 +4011,9 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4012
4011
|
formNoValidate?: boolean | undefined;
|
|
4013
4012
|
formTarget?: string | undefined;
|
|
4014
4013
|
name?: string | undefined;
|
|
4014
|
+
value?: string | number | readonly string[] | undefined;
|
|
4015
4015
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
4016
4016
|
}, {
|
|
4017
|
-
value?: string | number | readonly string[] | undefined;
|
|
4018
4017
|
form?: string | undefined;
|
|
4019
4018
|
autoFocus?: boolean | undefined;
|
|
4020
4019
|
formAction?: string | undefined;
|
|
@@ -4023,6 +4022,7 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4023
4022
|
formNoValidate?: boolean | undefined;
|
|
4024
4023
|
formTarget?: string | undefined;
|
|
4025
4024
|
name?: string | undefined;
|
|
4025
|
+
value?: string | number | readonly string[] | undefined;
|
|
4026
4026
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
4027
4027
|
href?: string | undefined;
|
|
4028
4028
|
hrefLang?: string | undefined;
|
|
@@ -4031,7 +4031,6 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4031
4031
|
rel?: string | undefined;
|
|
4032
4032
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
4033
4033
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
4034
|
-
children?: import("react").ReactNode;
|
|
4035
4034
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
4036
4035
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
4037
4036
|
slot?: string | undefined;
|
|
@@ -4048,15 +4047,15 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4048
4047
|
suppressHydrationWarning?: boolean | undefined;
|
|
4049
4048
|
accessKey?: string | undefined;
|
|
4050
4049
|
className?: string | undefined;
|
|
4051
|
-
contentEditable?: (boolean | "
|
|
4050
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
4052
4051
|
contextMenu?: string | undefined;
|
|
4053
4052
|
dir?: string | undefined;
|
|
4054
|
-
draggable?: (boolean | "
|
|
4053
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
4055
4054
|
hidden?: boolean | undefined;
|
|
4056
4055
|
id?: string | undefined;
|
|
4057
4056
|
lang?: string | undefined;
|
|
4058
4057
|
nonce?: string | undefined;
|
|
4059
|
-
spellCheck?: (boolean | "
|
|
4058
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
4060
4059
|
tabIndex?: number | undefined;
|
|
4061
4060
|
translate?: "yes" | "no" | undefined;
|
|
4062
4061
|
radioGroup?: string | undefined;
|
|
@@ -4084,53 +4083,54 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4084
4083
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
4085
4084
|
is?: string | undefined;
|
|
4086
4085
|
"aria-activedescendant"?: string | undefined;
|
|
4087
|
-
"aria-atomic"?: (boolean | "
|
|
4086
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
4088
4087
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
4089
|
-
"aria-busy"?: (boolean | "
|
|
4090
|
-
"aria-checked"?: boolean | "
|
|
4088
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
4089
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
4091
4090
|
"aria-colcount"?: number | undefined;
|
|
4092
4091
|
"aria-colindex"?: number | undefined;
|
|
4093
4092
|
"aria-colspan"?: number | undefined;
|
|
4094
4093
|
"aria-controls"?: string | undefined;
|
|
4095
|
-
"aria-current"?: boolean | "
|
|
4094
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
4096
4095
|
"aria-describedby"?: string | undefined;
|
|
4097
4096
|
"aria-details"?: string | undefined;
|
|
4098
|
-
"aria-disabled"?: (boolean | "
|
|
4097
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
4099
4098
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
4100
4099
|
"aria-errormessage"?: string | undefined;
|
|
4101
|
-
"aria-expanded"?: (boolean | "
|
|
4100
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
4102
4101
|
"aria-flowto"?: string | undefined;
|
|
4103
|
-
"aria-grabbed"?: (boolean | "
|
|
4104
|
-
"aria-haspopup"?: boolean | "
|
|
4105
|
-
"aria-hidden"?: (boolean | "
|
|
4106
|
-
"aria-invalid"?: boolean | "
|
|
4102
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
4103
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
4104
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
4105
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
4107
4106
|
"aria-keyshortcuts"?: string | undefined;
|
|
4108
4107
|
"aria-label"?: string | undefined;
|
|
4109
4108
|
"aria-labelledby"?: string | undefined;
|
|
4110
4109
|
"aria-level"?: number | undefined;
|
|
4111
4110
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
4112
|
-
"aria-modal"?: (boolean | "
|
|
4113
|
-
"aria-multiline"?: (boolean | "
|
|
4114
|
-
"aria-multiselectable"?: (boolean | "
|
|
4111
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
4112
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
4113
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
4115
4114
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
4116
4115
|
"aria-owns"?: string | undefined;
|
|
4117
4116
|
"aria-placeholder"?: string | undefined;
|
|
4118
4117
|
"aria-posinset"?: number | undefined;
|
|
4119
|
-
"aria-pressed"?: boolean | "
|
|
4120
|
-
"aria-readonly"?: (boolean | "
|
|
4118
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
4119
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
4121
4120
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
4122
|
-
"aria-required"?: (boolean | "
|
|
4121
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
4123
4122
|
"aria-roledescription"?: string | undefined;
|
|
4124
4123
|
"aria-rowcount"?: number | undefined;
|
|
4125
4124
|
"aria-rowindex"?: number | undefined;
|
|
4126
4125
|
"aria-rowspan"?: number | undefined;
|
|
4127
|
-
"aria-selected"?: (boolean | "
|
|
4126
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
4128
4127
|
"aria-setsize"?: number | undefined;
|
|
4129
4128
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
4130
4129
|
"aria-valuemax"?: number | undefined;
|
|
4131
4130
|
"aria-valuemin"?: number | undefined;
|
|
4132
4131
|
"aria-valuenow"?: number | undefined;
|
|
4133
4132
|
"aria-valuetext"?: string | undefined;
|
|
4133
|
+
children?: import("react").ReactNode;
|
|
4134
4134
|
dangerouslySetInnerHTML?: {
|
|
4135
4135
|
__html: string;
|
|
4136
4136
|
} | undefined;
|
|
@@ -4306,7 +4306,6 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4306
4306
|
rel?: string | undefined;
|
|
4307
4307
|
target?: "_blank" | "_self" | "_parent" | "_top" | undefined;
|
|
4308
4308
|
referrerPolicy?: import("react").HTMLAttributeReferrerPolicy | undefined;
|
|
4309
|
-
value?: string | number | readonly string[] | undefined;
|
|
4310
4309
|
form?: string | undefined;
|
|
4311
4310
|
autoFocus?: boolean | undefined;
|
|
4312
4311
|
formAction?: string | undefined;
|
|
@@ -4315,8 +4314,8 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4315
4314
|
formNoValidate?: boolean | undefined;
|
|
4316
4315
|
formTarget?: string | undefined;
|
|
4317
4316
|
name?: string | undefined;
|
|
4317
|
+
value?: string | number | readonly string[] | undefined;
|
|
4318
4318
|
htmlType?: "button" | "reset" | "submit" | undefined;
|
|
4319
|
-
children?: import("react").ReactNode;
|
|
4320
4319
|
size?: "sm" | "md" | "lg" | "xs" | undefined;
|
|
4321
4320
|
ref?: import("react").Ref<import("./Button").ButtonReferenceType> | undefined;
|
|
4322
4321
|
slot?: string | undefined;
|
|
@@ -4333,15 +4332,15 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4333
4332
|
suppressHydrationWarning?: boolean | undefined;
|
|
4334
4333
|
accessKey?: string | undefined;
|
|
4335
4334
|
className?: string | undefined;
|
|
4336
|
-
contentEditable?: (boolean | "
|
|
4335
|
+
contentEditable?: (boolean | "true" | "false") | "inherit" | undefined;
|
|
4337
4336
|
contextMenu?: string | undefined;
|
|
4338
4337
|
dir?: string | undefined;
|
|
4339
|
-
draggable?: (boolean | "
|
|
4338
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
4340
4339
|
hidden?: boolean | undefined;
|
|
4341
4340
|
id?: string | undefined;
|
|
4342
4341
|
lang?: string | undefined;
|
|
4343
4342
|
nonce?: string | undefined;
|
|
4344
|
-
spellCheck?: (boolean | "
|
|
4343
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
4345
4344
|
tabIndex?: number | undefined;
|
|
4346
4345
|
translate?: "yes" | "no" | undefined;
|
|
4347
4346
|
radioGroup?: string | undefined;
|
|
@@ -4369,53 +4368,54 @@ export declare const SocialMediaMobile: import("@storybook/types").StoryAnnotati
|
|
|
4369
4368
|
inputMode?: "text" | "search" | "email" | "tel" | "url" | "none" | "numeric" | "decimal" | undefined;
|
|
4370
4369
|
is?: string | undefined;
|
|
4371
4370
|
"aria-activedescendant"?: string | undefined;
|
|
4372
|
-
"aria-atomic"?: (boolean | "
|
|
4371
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
4373
4372
|
"aria-autocomplete"?: "list" | "none" | "inline" | "both" | undefined;
|
|
4374
|
-
"aria-busy"?: (boolean | "
|
|
4375
|
-
"aria-checked"?: boolean | "
|
|
4373
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
4374
|
+
"aria-checked"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
4376
4375
|
"aria-colcount"?: number | undefined;
|
|
4377
4376
|
"aria-colindex"?: number | undefined;
|
|
4378
4377
|
"aria-colspan"?: number | undefined;
|
|
4379
4378
|
"aria-controls"?: string | undefined;
|
|
4380
|
-
"aria-current"?: boolean | "
|
|
4379
|
+
"aria-current"?: boolean | "time" | "step" | "date" | "true" | "false" | "page" | "location" | undefined;
|
|
4381
4380
|
"aria-describedby"?: string | undefined;
|
|
4382
4381
|
"aria-details"?: string | undefined;
|
|
4383
|
-
"aria-disabled"?: (boolean | "
|
|
4382
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
4384
4383
|
"aria-dropeffect"?: "link" | "none" | "copy" | "execute" | "move" | "popup" | undefined;
|
|
4385
4384
|
"aria-errormessage"?: string | undefined;
|
|
4386
|
-
"aria-expanded"?: (boolean | "
|
|
4385
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
4387
4386
|
"aria-flowto"?: string | undefined;
|
|
4388
|
-
"aria-grabbed"?: (boolean | "
|
|
4389
|
-
"aria-haspopup"?: boolean | "
|
|
4390
|
-
"aria-hidden"?: (boolean | "
|
|
4391
|
-
"aria-invalid"?: boolean | "
|
|
4387
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
4388
|
+
"aria-haspopup"?: boolean | "dialog" | "menu" | "true" | "false" | "grid" | "listbox" | "tree" | undefined;
|
|
4389
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
4390
|
+
"aria-invalid"?: boolean | "true" | "false" | "grammar" | "spelling" | undefined;
|
|
4392
4391
|
"aria-keyshortcuts"?: string | undefined;
|
|
4393
4392
|
"aria-label"?: string | undefined;
|
|
4394
4393
|
"aria-labelledby"?: string | undefined;
|
|
4395
4394
|
"aria-level"?: number | undefined;
|
|
4396
4395
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
4397
|
-
"aria-modal"?: (boolean | "
|
|
4398
|
-
"aria-multiline"?: (boolean | "
|
|
4399
|
-
"aria-multiselectable"?: (boolean | "
|
|
4396
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
4397
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
4398
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
4400
4399
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
4401
4400
|
"aria-owns"?: string | undefined;
|
|
4402
4401
|
"aria-placeholder"?: string | undefined;
|
|
4403
4402
|
"aria-posinset"?: number | undefined;
|
|
4404
|
-
"aria-pressed"?: boolean | "
|
|
4405
|
-
"aria-readonly"?: (boolean | "
|
|
4403
|
+
"aria-pressed"?: boolean | "true" | "false" | "mixed" | undefined;
|
|
4404
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
4406
4405
|
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
4407
|
-
"aria-required"?: (boolean | "
|
|
4406
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
4408
4407
|
"aria-roledescription"?: string | undefined;
|
|
4409
4408
|
"aria-rowcount"?: number | undefined;
|
|
4410
4409
|
"aria-rowindex"?: number | undefined;
|
|
4411
4410
|
"aria-rowspan"?: number | undefined;
|
|
4412
|
-
"aria-selected"?: (boolean | "
|
|
4411
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
4413
4412
|
"aria-setsize"?: number | undefined;
|
|
4414
4413
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
4415
4414
|
"aria-valuemax"?: number | undefined;
|
|
4416
4415
|
"aria-valuemin"?: number | undefined;
|
|
4417
4416
|
"aria-valuenow"?: number | undefined;
|
|
4418
4417
|
"aria-valuetext"?: string | undefined;
|
|
4418
|
+
children?: import("react").ReactNode;
|
|
4419
4419
|
dangerouslySetInnerHTML?: {
|
|
4420
4420
|
__html: string;
|
|
4421
4421
|
} | undefined;
|