@chayns-components/core 5.0.0-beta.822 → 5.0.0-beta.824
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/lib/cjs/components/list/list-item/ListItem.styles.js +9 -8
- package/lib/cjs/components/list/list-item/ListItem.styles.js.map +1 -1
- package/lib/cjs/components/sharing-bar/SharingBar.js +4 -2
- package/lib/cjs/components/sharing-bar/SharingBar.js.map +1 -1
- package/lib/esm/components/list/list-item/ListItem.styles.js +12 -11
- package/lib/esm/components/list/list-item/ListItem.styles.js.map +1 -1
- package/lib/esm/components/sharing-bar/SharingBar.js +4 -2
- package/lib/esm/components/sharing-bar/SharingBar.js.map +1 -1
- package/lib/types/components/accordion/Accordion.styles.d.ts +3 -2
- package/lib/types/components/accordion/accordion-body/AccordionBody.styles.d.ts +3 -2
- package/lib/types/components/accordion/accordion-head/AccordionHead.styles.d.ts +30 -21
- package/lib/types/components/amount-control/AmountControl.styles.d.ts +3 -2
- package/lib/types/components/button/Button.styles.d.ts +9 -6
- package/lib/types/components/combobox/ComboBox.styles.d.ts +3 -2
- package/lib/types/components/context-menu/context-menu-content/ContextMenuContent.styles.d.ts +3 -2
- package/lib/types/components/expandable-content/ExpandableContent.styles.d.ts +3 -2
- package/lib/types/components/file-input/FileInput.styles.d.ts +3 -2
- package/lib/types/components/filter-buttons/filter-button/FilterButton.styles.d.ts +3 -2
- package/lib/types/components/input/Input.styles.d.ts +9 -6
- package/lib/types/components/list/list-item/ListItem.styles.d.ts +3 -2
- package/lib/types/components/list/list-item/list-item-body/ListItemBody.styles.d.ts +3 -2
- package/lib/types/components/list/list-item/list-item-head/ListItemHead.styles.d.ts +12 -8
- package/lib/types/components/mention-finder/MentionFinder.styles.d.ts +3 -2
- package/lib/types/components/popup/popup-content-wrapper/PopupContentWrapper.styles.d.ts +3 -2
- package/lib/types/components/progress-bar/ProgressBar.styles.d.ts +3 -2
- package/lib/types/components/radio-button/RadioButton.styles.d.ts +3 -2
- package/lib/types/components/search-box/SearchBox.styles.d.ts +3 -2
- package/lib/types/components/search-box/search-box-body/SearchBoxBody.styles.d.ts +3 -2
- package/lib/types/components/search-input/SearchInput.styles.d.ts +6 -4
- package/lib/types/components/sharing-bar/SharingBar.d.ts +4 -0
- package/lib/types/components/slider/Slider.styles.d.ts +6 -6
- package/lib/types/components/slider-button/SliderButton.styles.d.ts +3 -2
- package/lib/types/components/truncation/Truncation.styles.d.ts +3 -2
- package/package.json +3 -3
|
@@ -34,11 +34,13 @@ export declare const StyledMotionInputLabelWrapper: import("styled-components/di
|
|
|
34
34
|
suppressContentEditableWarning?: boolean | undefined;
|
|
35
35
|
suppressHydrationWarning?: boolean | undefined;
|
|
36
36
|
accessKey?: string | undefined;
|
|
37
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
37
38
|
autoFocus?: boolean | undefined;
|
|
38
39
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
39
40
|
contextMenu?: string | undefined;
|
|
40
41
|
dir?: string | undefined;
|
|
41
42
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
43
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
42
44
|
hidden?: boolean | undefined;
|
|
43
45
|
id?: string | undefined;
|
|
44
46
|
lang?: string | undefined;
|
|
@@ -58,7 +60,6 @@ export declare const StyledMotionInputLabelWrapper: import("styled-components/di
|
|
|
58
60
|
rev?: string | undefined;
|
|
59
61
|
typeof?: string | undefined;
|
|
60
62
|
vocab?: string | undefined;
|
|
61
|
-
autoCapitalize?: string | undefined;
|
|
62
63
|
autoCorrect?: string | undefined;
|
|
63
64
|
autoSave?: string | undefined;
|
|
64
65
|
itemProp?: string | undefined;
|
|
@@ -68,7 +69,7 @@ export declare const StyledMotionInputLabelWrapper: import("styled-components/di
|
|
|
68
69
|
itemRef?: string | undefined;
|
|
69
70
|
results?: number | undefined;
|
|
70
71
|
security?: string | undefined;
|
|
71
|
-
unselectable?: "
|
|
72
|
+
unselectable?: "off" | "on" | undefined;
|
|
72
73
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
73
74
|
is?: string | undefined;
|
|
74
75
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -298,11 +299,13 @@ export declare const StyledMotionInputElement: import("styled-components/dist/ty
|
|
|
298
299
|
suppressContentEditableWarning?: boolean | undefined;
|
|
299
300
|
suppressHydrationWarning?: boolean | undefined;
|
|
300
301
|
accessKey?: string | undefined;
|
|
302
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
301
303
|
autoFocus?: boolean | undefined;
|
|
302
304
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
303
305
|
contextMenu?: string | undefined;
|
|
304
306
|
dir?: string | undefined;
|
|
305
307
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
308
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
306
309
|
hidden?: boolean | undefined;
|
|
307
310
|
id?: string | undefined;
|
|
308
311
|
lang?: string | undefined;
|
|
@@ -322,7 +325,6 @@ export declare const StyledMotionInputElement: import("styled-components/dist/ty
|
|
|
322
325
|
rev?: string | undefined;
|
|
323
326
|
typeof?: string | undefined;
|
|
324
327
|
vocab?: string | undefined;
|
|
325
|
-
autoCapitalize?: string | undefined;
|
|
326
328
|
autoCorrect?: string | undefined;
|
|
327
329
|
autoSave?: string | undefined;
|
|
328
330
|
itemProp?: string | undefined;
|
|
@@ -332,7 +334,7 @@ export declare const StyledMotionInputElement: import("styled-components/dist/ty
|
|
|
332
334
|
itemRef?: string | undefined;
|
|
333
335
|
results?: number | undefined;
|
|
334
336
|
security?: string | undefined;
|
|
335
|
-
unselectable?: "
|
|
337
|
+
unselectable?: "off" | "on" | undefined;
|
|
336
338
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
337
339
|
is?: string | undefined;
|
|
338
340
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -569,11 +571,13 @@ export declare const StyledMotionInputClearIcon: import("styled-components/dist/
|
|
|
569
571
|
suppressContentEditableWarning?: boolean | undefined;
|
|
570
572
|
suppressHydrationWarning?: boolean | undefined;
|
|
571
573
|
accessKey?: string | undefined;
|
|
574
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
572
575
|
autoFocus?: boolean | undefined;
|
|
573
576
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
574
577
|
contextMenu?: string | undefined;
|
|
575
578
|
dir?: string | undefined;
|
|
576
579
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
580
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
577
581
|
hidden?: boolean | undefined;
|
|
578
582
|
id?: string | undefined;
|
|
579
583
|
lang?: string | undefined;
|
|
@@ -593,7 +597,6 @@ export declare const StyledMotionInputClearIcon: import("styled-components/dist/
|
|
|
593
597
|
rev?: string | undefined;
|
|
594
598
|
typeof?: string | undefined;
|
|
595
599
|
vocab?: string | undefined;
|
|
596
|
-
autoCapitalize?: string | undefined;
|
|
597
600
|
autoCorrect?: string | undefined;
|
|
598
601
|
autoSave?: string | undefined;
|
|
599
602
|
itemProp?: string | undefined;
|
|
@@ -603,7 +606,7 @@ export declare const StyledMotionInputClearIcon: import("styled-components/dist/
|
|
|
603
606
|
itemRef?: string | undefined;
|
|
604
607
|
results?: number | undefined;
|
|
605
608
|
security?: string | undefined;
|
|
606
|
-
unselectable?: "
|
|
609
|
+
unselectable?: "off" | "on" | undefined;
|
|
607
610
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
608
611
|
is?: string | undefined;
|
|
609
612
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -17,11 +17,13 @@ export declare const StyledMotionListItem: import("styled-components/dist/types"
|
|
|
17
17
|
suppressContentEditableWarning?: boolean | undefined;
|
|
18
18
|
suppressHydrationWarning?: boolean | undefined;
|
|
19
19
|
accessKey?: string | undefined;
|
|
20
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
20
21
|
autoFocus?: boolean | undefined;
|
|
21
22
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
22
23
|
contextMenu?: string | undefined;
|
|
23
24
|
dir?: string | undefined;
|
|
24
25
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
26
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
25
27
|
hidden?: boolean | undefined;
|
|
26
28
|
id?: string | undefined;
|
|
27
29
|
lang?: string | undefined;
|
|
@@ -41,7 +43,6 @@ export declare const StyledMotionListItem: import("styled-components/dist/types"
|
|
|
41
43
|
rev?: string | undefined;
|
|
42
44
|
typeof?: string | undefined;
|
|
43
45
|
vocab?: string | undefined;
|
|
44
|
-
autoCapitalize?: string | undefined;
|
|
45
46
|
autoCorrect?: string | undefined;
|
|
46
47
|
autoSave?: string | undefined;
|
|
47
48
|
itemProp?: string | undefined;
|
|
@@ -51,7 +52,7 @@ export declare const StyledMotionListItem: import("styled-components/dist/types"
|
|
|
51
52
|
itemRef?: string | undefined;
|
|
52
53
|
results?: number | undefined;
|
|
53
54
|
security?: string | undefined;
|
|
54
|
-
unselectable?: "
|
|
55
|
+
unselectable?: "off" | "on" | undefined;
|
|
55
56
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
56
57
|
is?: string | undefined;
|
|
57
58
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -9,11 +9,13 @@ export declare const StyledMotionListItemBody: import("styled-components/dist/ty
|
|
|
9
9
|
suppressContentEditableWarning?: boolean | undefined;
|
|
10
10
|
suppressHydrationWarning?: boolean | undefined;
|
|
11
11
|
accessKey?: string | undefined;
|
|
12
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
12
13
|
autoFocus?: boolean | undefined;
|
|
13
14
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
15
|
contextMenu?: string | undefined;
|
|
15
16
|
dir?: string | undefined;
|
|
16
17
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
18
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
17
19
|
hidden?: boolean | undefined;
|
|
18
20
|
id?: string | undefined;
|
|
19
21
|
lang?: string | undefined;
|
|
@@ -33,7 +35,6 @@ export declare const StyledMotionListItemBody: import("styled-components/dist/ty
|
|
|
33
35
|
rev?: string | undefined;
|
|
34
36
|
typeof?: string | undefined;
|
|
35
37
|
vocab?: string | undefined;
|
|
36
|
-
autoCapitalize?: string | undefined;
|
|
37
38
|
autoCorrect?: string | undefined;
|
|
38
39
|
autoSave?: string | undefined;
|
|
39
40
|
itemProp?: string | undefined;
|
|
@@ -43,7 +44,7 @@ export declare const StyledMotionListItemBody: import("styled-components/dist/ty
|
|
|
43
44
|
itemRef?: string | undefined;
|
|
44
45
|
results?: number | undefined;
|
|
45
46
|
security?: string | undefined;
|
|
46
|
-
unselectable?: "
|
|
47
|
+
unselectable?: "off" | "on" | undefined;
|
|
47
48
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
48
49
|
is?: string | undefined;
|
|
49
50
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -14,11 +14,13 @@ export declare const StyledListItemHead: import("styled-components/dist/types").
|
|
|
14
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
15
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
17
18
|
autoFocus?: boolean | undefined;
|
|
18
19
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
19
20
|
contextMenu?: string | undefined;
|
|
20
21
|
dir?: string | undefined;
|
|
21
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
23
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
22
24
|
hidden?: boolean | undefined;
|
|
23
25
|
id?: string | undefined;
|
|
24
26
|
lang?: string | undefined;
|
|
@@ -38,7 +40,6 @@ export declare const StyledListItemHead: import("styled-components/dist/types").
|
|
|
38
40
|
rev?: string | undefined;
|
|
39
41
|
typeof?: string | undefined;
|
|
40
42
|
vocab?: string | undefined;
|
|
41
|
-
autoCapitalize?: string | undefined;
|
|
42
43
|
autoCorrect?: string | undefined;
|
|
43
44
|
autoSave?: string | undefined;
|
|
44
45
|
itemProp?: string | undefined;
|
|
@@ -48,7 +49,7 @@ export declare const StyledListItemHead: import("styled-components/dist/types").
|
|
|
48
49
|
itemRef?: string | undefined;
|
|
49
50
|
results?: number | undefined;
|
|
50
51
|
security?: string | undefined;
|
|
51
|
-
unselectable?: "
|
|
52
|
+
unselectable?: "off" | "on" | undefined;
|
|
52
53
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
54
|
is?: string | undefined;
|
|
54
55
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -278,11 +279,13 @@ export declare const StyledMotionListItemHeadIndicator: import("styled-component
|
|
|
278
279
|
suppressContentEditableWarning?: boolean | undefined;
|
|
279
280
|
suppressHydrationWarning?: boolean | undefined;
|
|
280
281
|
accessKey?: string | undefined;
|
|
282
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
281
283
|
autoFocus?: boolean | undefined;
|
|
282
284
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
283
285
|
contextMenu?: string | undefined;
|
|
284
286
|
dir?: string | undefined;
|
|
285
287
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
288
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
286
289
|
hidden?: boolean | undefined;
|
|
287
290
|
id?: string | undefined;
|
|
288
291
|
lang?: string | undefined;
|
|
@@ -302,7 +305,6 @@ export declare const StyledMotionListItemHeadIndicator: import("styled-component
|
|
|
302
305
|
rev?: string | undefined;
|
|
303
306
|
typeof?: string | undefined;
|
|
304
307
|
vocab?: string | undefined;
|
|
305
|
-
autoCapitalize?: string | undefined;
|
|
306
308
|
autoCorrect?: string | undefined;
|
|
307
309
|
autoSave?: string | undefined;
|
|
308
310
|
itemProp?: string | undefined;
|
|
@@ -312,7 +314,7 @@ export declare const StyledMotionListItemHeadIndicator: import("styled-component
|
|
|
312
314
|
itemRef?: string | undefined;
|
|
313
315
|
results?: number | undefined;
|
|
314
316
|
security?: string | undefined;
|
|
315
|
-
unselectable?: "
|
|
317
|
+
unselectable?: "off" | "on" | undefined;
|
|
316
318
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
317
319
|
is?: string | undefined;
|
|
318
320
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -555,11 +557,13 @@ export declare const StyledListItemHeadTitleText: import("styled-components/dist
|
|
|
555
557
|
suppressContentEditableWarning?: boolean | undefined;
|
|
556
558
|
suppressHydrationWarning?: boolean | undefined;
|
|
557
559
|
accessKey?: string | undefined;
|
|
560
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
558
561
|
autoFocus?: boolean | undefined;
|
|
559
562
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
560
563
|
contextMenu?: string | undefined;
|
|
561
564
|
dir?: string | undefined;
|
|
562
565
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
566
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
563
567
|
hidden?: boolean | undefined;
|
|
564
568
|
id?: string | undefined;
|
|
565
569
|
lang?: string | undefined;
|
|
@@ -579,7 +583,6 @@ export declare const StyledListItemHeadTitleText: import("styled-components/dist
|
|
|
579
583
|
rev?: string | undefined;
|
|
580
584
|
typeof?: string | undefined;
|
|
581
585
|
vocab?: string | undefined;
|
|
582
|
-
autoCapitalize?: string | undefined;
|
|
583
586
|
autoCorrect?: string | undefined;
|
|
584
587
|
autoSave?: string | undefined;
|
|
585
588
|
itemProp?: string | undefined;
|
|
@@ -589,7 +592,7 @@ export declare const StyledListItemHeadTitleText: import("styled-components/dist
|
|
|
589
592
|
itemRef?: string | undefined;
|
|
590
593
|
results?: number | undefined;
|
|
591
594
|
security?: string | undefined;
|
|
592
|
-
unselectable?: "
|
|
595
|
+
unselectable?: "off" | "on" | undefined;
|
|
593
596
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
594
597
|
is?: string | undefined;
|
|
595
598
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -831,11 +834,13 @@ export declare const StyledMotionListItemHeadHoverItem: import("styled-component
|
|
|
831
834
|
suppressContentEditableWarning?: boolean | undefined;
|
|
832
835
|
suppressHydrationWarning?: boolean | undefined;
|
|
833
836
|
accessKey?: string | undefined;
|
|
837
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
834
838
|
autoFocus?: boolean | undefined;
|
|
835
839
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
836
840
|
contextMenu?: string | undefined;
|
|
837
841
|
dir?: string | undefined;
|
|
838
842
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
843
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
839
844
|
hidden?: boolean | undefined;
|
|
840
845
|
id?: string | undefined;
|
|
841
846
|
lang?: string | undefined;
|
|
@@ -855,7 +860,6 @@ export declare const StyledMotionListItemHeadHoverItem: import("styled-component
|
|
|
855
860
|
rev?: string | undefined;
|
|
856
861
|
typeof?: string | undefined;
|
|
857
862
|
vocab?: string | undefined;
|
|
858
|
-
autoCapitalize?: string | undefined;
|
|
859
863
|
autoCorrect?: string | undefined;
|
|
860
864
|
autoSave?: string | undefined;
|
|
861
865
|
itemProp?: string | undefined;
|
|
@@ -865,7 +869,7 @@ export declare const StyledMotionListItemHeadHoverItem: import("styled-component
|
|
|
865
869
|
itemRef?: string | undefined;
|
|
866
870
|
results?: number | undefined;
|
|
867
871
|
security?: string | undefined;
|
|
868
|
-
unselectable?: "
|
|
872
|
+
unselectable?: "off" | "on" | undefined;
|
|
869
873
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
870
874
|
is?: string | undefined;
|
|
871
875
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -15,11 +15,13 @@ export declare const StyledMotionMentionFinderPopup: import("styled-components/d
|
|
|
15
15
|
suppressContentEditableWarning?: boolean | undefined;
|
|
16
16
|
suppressHydrationWarning?: boolean | undefined;
|
|
17
17
|
accessKey?: string | undefined;
|
|
18
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
18
19
|
autoFocus?: boolean | undefined;
|
|
19
20
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
20
21
|
contextMenu?: string | undefined;
|
|
21
22
|
dir?: string | undefined;
|
|
22
23
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
24
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
23
25
|
hidden?: boolean | undefined;
|
|
24
26
|
id?: string | undefined;
|
|
25
27
|
lang?: string | undefined;
|
|
@@ -39,7 +41,6 @@ export declare const StyledMotionMentionFinderPopup: import("styled-components/d
|
|
|
39
41
|
rev?: string | undefined;
|
|
40
42
|
typeof?: string | undefined;
|
|
41
43
|
vocab?: string | undefined;
|
|
42
|
-
autoCapitalize?: string | undefined;
|
|
43
44
|
autoCorrect?: string | undefined;
|
|
44
45
|
autoSave?: string | undefined;
|
|
45
46
|
itemProp?: string | undefined;
|
|
@@ -49,7 +50,7 @@ export declare const StyledMotionMentionFinderPopup: import("styled-components/d
|
|
|
49
50
|
itemRef?: string | undefined;
|
|
50
51
|
results?: number | undefined;
|
|
51
52
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
53
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
54
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
54
55
|
is?: string | undefined;
|
|
55
56
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -17,11 +17,13 @@ export declare const StyledMotionPopupContentWrapper: import("styled-components/
|
|
|
17
17
|
suppressContentEditableWarning?: boolean | undefined;
|
|
18
18
|
suppressHydrationWarning?: boolean | undefined;
|
|
19
19
|
accessKey?: string | undefined;
|
|
20
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
20
21
|
autoFocus?: boolean | undefined;
|
|
21
22
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
22
23
|
contextMenu?: string | undefined;
|
|
23
24
|
dir?: string | undefined;
|
|
24
25
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
26
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
25
27
|
hidden?: boolean | undefined;
|
|
26
28
|
id?: string | undefined;
|
|
27
29
|
lang?: string | undefined;
|
|
@@ -41,7 +43,6 @@ export declare const StyledMotionPopupContentWrapper: import("styled-components/
|
|
|
41
43
|
rev?: string | undefined;
|
|
42
44
|
typeof?: string | undefined;
|
|
43
45
|
vocab?: string | undefined;
|
|
44
|
-
autoCapitalize?: string | undefined;
|
|
45
46
|
autoCorrect?: string | undefined;
|
|
46
47
|
autoSave?: string | undefined;
|
|
47
48
|
itemProp?: string | undefined;
|
|
@@ -51,7 +52,7 @@ export declare const StyledMotionPopupContentWrapper: import("styled-components/
|
|
|
51
52
|
itemRef?: string | undefined;
|
|
52
53
|
results?: number | undefined;
|
|
53
54
|
security?: string | undefined;
|
|
54
|
-
unselectable?: "
|
|
55
|
+
unselectable?: "off" | "on" | undefined;
|
|
55
56
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
56
57
|
is?: string | undefined;
|
|
57
58
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -14,11 +14,13 @@ export declare const StyledMotionProgressBarProgress: import("styled-components/
|
|
|
14
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
15
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
17
18
|
autoFocus?: boolean | undefined;
|
|
18
19
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
19
20
|
contextMenu?: string | undefined;
|
|
20
21
|
dir?: string | undefined;
|
|
21
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
23
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
22
24
|
hidden?: boolean | undefined;
|
|
23
25
|
id?: string | undefined;
|
|
24
26
|
lang?: string | undefined;
|
|
@@ -38,7 +40,6 @@ export declare const StyledMotionProgressBarProgress: import("styled-components/
|
|
|
38
40
|
rev?: string | undefined;
|
|
39
41
|
typeof?: string | undefined;
|
|
40
42
|
vocab?: string | undefined;
|
|
41
|
-
autoCapitalize?: string | undefined;
|
|
42
43
|
autoCorrect?: string | undefined;
|
|
43
44
|
autoSave?: string | undefined;
|
|
44
45
|
itemProp?: string | undefined;
|
|
@@ -48,7 +49,7 @@ export declare const StyledMotionProgressBarProgress: import("styled-components/
|
|
|
48
49
|
itemRef?: string | undefined;
|
|
49
50
|
results?: number | undefined;
|
|
50
51
|
security?: string | undefined;
|
|
51
|
-
unselectable?: "
|
|
52
|
+
unselectable?: "off" | "on" | undefined;
|
|
52
53
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
54
|
is?: string | undefined;
|
|
54
55
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -36,11 +36,13 @@ export declare const StyledMotionRadioButtonChildren: import("styled-components/
|
|
|
36
36
|
suppressContentEditableWarning?: boolean | undefined;
|
|
37
37
|
suppressHydrationWarning?: boolean | undefined;
|
|
38
38
|
accessKey?: string | undefined;
|
|
39
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
39
40
|
autoFocus?: boolean | undefined;
|
|
40
41
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
41
42
|
contextMenu?: string | undefined;
|
|
42
43
|
dir?: string | undefined;
|
|
43
44
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
45
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
44
46
|
hidden?: boolean | undefined;
|
|
45
47
|
id?: string | undefined;
|
|
46
48
|
lang?: string | undefined;
|
|
@@ -60,7 +62,6 @@ export declare const StyledMotionRadioButtonChildren: import("styled-components/
|
|
|
60
62
|
rev?: string | undefined;
|
|
61
63
|
typeof?: string | undefined;
|
|
62
64
|
vocab?: string | undefined;
|
|
63
|
-
autoCapitalize?: string | undefined;
|
|
64
65
|
autoCorrect?: string | undefined;
|
|
65
66
|
autoSave?: string | undefined;
|
|
66
67
|
itemProp?: string | undefined;
|
|
@@ -70,7 +71,7 @@ export declare const StyledMotionRadioButtonChildren: import("styled-components/
|
|
|
70
71
|
itemRef?: string | undefined;
|
|
71
72
|
results?: number | undefined;
|
|
72
73
|
security?: string | undefined;
|
|
73
|
-
unselectable?: "
|
|
74
|
+
unselectable?: "off" | "on" | undefined;
|
|
74
75
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
75
76
|
is?: string | undefined;
|
|
76
77
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -17,11 +17,13 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
17
17
|
suppressContentEditableWarning?: boolean | undefined;
|
|
18
18
|
suppressHydrationWarning?: boolean | undefined;
|
|
19
19
|
accessKey?: string | undefined;
|
|
20
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
20
21
|
autoFocus?: boolean | undefined;
|
|
21
22
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
22
23
|
contextMenu?: string | undefined;
|
|
23
24
|
dir?: string | undefined;
|
|
24
25
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
26
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
25
27
|
hidden?: boolean | undefined;
|
|
26
28
|
id?: string | undefined;
|
|
27
29
|
lang?: string | undefined;
|
|
@@ -41,7 +43,6 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
41
43
|
rev?: string | undefined;
|
|
42
44
|
typeof?: string | undefined;
|
|
43
45
|
vocab?: string | undefined;
|
|
44
|
-
autoCapitalize?: string | undefined;
|
|
45
46
|
autoCorrect?: string | undefined;
|
|
46
47
|
autoSave?: string | undefined;
|
|
47
48
|
itemProp?: string | undefined;
|
|
@@ -51,7 +52,7 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
51
52
|
itemRef?: string | undefined;
|
|
52
53
|
results?: number | undefined;
|
|
53
54
|
security?: string | undefined;
|
|
54
|
-
unselectable?: "
|
|
55
|
+
unselectable?: "off" | "on" | undefined;
|
|
55
56
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
56
57
|
is?: string | undefined;
|
|
57
58
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -14,11 +14,13 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
14
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
15
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
17
18
|
autoFocus?: boolean | undefined;
|
|
18
19
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
19
20
|
contextMenu?: string | undefined;
|
|
20
21
|
dir?: string | undefined;
|
|
21
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
23
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
22
24
|
hidden?: boolean | undefined;
|
|
23
25
|
id?: string | undefined;
|
|
24
26
|
lang?: string | undefined;
|
|
@@ -38,7 +40,6 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
38
40
|
rev?: string | undefined;
|
|
39
41
|
typeof?: string | undefined;
|
|
40
42
|
vocab?: string | undefined;
|
|
41
|
-
autoCapitalize?: string | undefined;
|
|
42
43
|
autoCorrect?: string | undefined;
|
|
43
44
|
autoSave?: string | undefined;
|
|
44
45
|
itemProp?: string | undefined;
|
|
@@ -48,7 +49,7 @@ export declare const StyledMotionSearchBoxBody: import("styled-components/dist/t
|
|
|
48
49
|
itemRef?: string | undefined;
|
|
49
50
|
results?: number | undefined;
|
|
50
51
|
security?: string | undefined;
|
|
51
|
-
unselectable?: "
|
|
52
|
+
unselectable?: "off" | "on" | undefined;
|
|
52
53
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
54
|
is?: string | undefined;
|
|
54
55
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -14,11 +14,13 @@ export declare const StyledMotionSearchInputContentWrapper: import("styled-compo
|
|
|
14
14
|
suppressContentEditableWarning?: boolean | undefined;
|
|
15
15
|
suppressHydrationWarning?: boolean | undefined;
|
|
16
16
|
accessKey?: string | undefined;
|
|
17
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
17
18
|
autoFocus?: boolean | undefined;
|
|
18
19
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
19
20
|
contextMenu?: string | undefined;
|
|
20
21
|
dir?: string | undefined;
|
|
21
22
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
23
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
22
24
|
hidden?: boolean | undefined;
|
|
23
25
|
id?: string | undefined;
|
|
24
26
|
lang?: string | undefined;
|
|
@@ -38,7 +40,6 @@ export declare const StyledMotionSearchInputContentWrapper: import("styled-compo
|
|
|
38
40
|
rev?: string | undefined;
|
|
39
41
|
typeof?: string | undefined;
|
|
40
42
|
vocab?: string | undefined;
|
|
41
|
-
autoCapitalize?: string | undefined;
|
|
42
43
|
autoCorrect?: string | undefined;
|
|
43
44
|
autoSave?: string | undefined;
|
|
44
45
|
itemProp?: string | undefined;
|
|
@@ -48,7 +49,7 @@ export declare const StyledMotionSearchInputContentWrapper: import("styled-compo
|
|
|
48
49
|
itemRef?: string | undefined;
|
|
49
50
|
results?: number | undefined;
|
|
50
51
|
security?: string | undefined;
|
|
51
|
-
unselectable?: "
|
|
52
|
+
unselectable?: "off" | "on" | undefined;
|
|
52
53
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
53
54
|
is?: string | undefined;
|
|
54
55
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -280,11 +281,13 @@ export declare const StyledMotionSearchInputIconWrapperContent: import("styled-c
|
|
|
280
281
|
suppressContentEditableWarning?: boolean | undefined;
|
|
281
282
|
suppressHydrationWarning?: boolean | undefined;
|
|
282
283
|
accessKey?: string | undefined;
|
|
284
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
283
285
|
autoFocus?: boolean | undefined;
|
|
284
286
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
285
287
|
contextMenu?: string | undefined;
|
|
286
288
|
dir?: string | undefined;
|
|
287
289
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
290
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
288
291
|
hidden?: boolean | undefined;
|
|
289
292
|
id?: string | undefined;
|
|
290
293
|
lang?: string | undefined;
|
|
@@ -304,7 +307,6 @@ export declare const StyledMotionSearchInputIconWrapperContent: import("styled-c
|
|
|
304
307
|
rev?: string | undefined;
|
|
305
308
|
typeof?: string | undefined;
|
|
306
309
|
vocab?: string | undefined;
|
|
307
|
-
autoCapitalize?: string | undefined;
|
|
308
310
|
autoCorrect?: string | undefined;
|
|
309
311
|
autoSave?: string | undefined;
|
|
310
312
|
itemProp?: string | undefined;
|
|
@@ -314,7 +316,7 @@ export declare const StyledMotionSearchInputIconWrapperContent: import("styled-c
|
|
|
314
316
|
itemRef?: string | undefined;
|
|
315
317
|
results?: number | undefined;
|
|
316
318
|
security?: string | undefined;
|
|
317
|
-
unselectable?: "
|
|
319
|
+
unselectable?: "off" | "on" | undefined;
|
|
318
320
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
319
321
|
is?: string | undefined;
|
|
320
322
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
import { FC } from 'react';
|
|
2
2
|
import type { ContextMenuAlignment } from '../../types/contextMenu';
|
|
3
3
|
export type SharingBarProps = {
|
|
4
|
+
/**
|
|
5
|
+
* The element where the content of the `SharingBar` should be rendered via React Portal.
|
|
6
|
+
*/
|
|
7
|
+
container?: Element;
|
|
4
8
|
/**
|
|
5
9
|
* The label that should be displayed.
|
|
6
10
|
*/
|
|
@@ -23,11 +23,13 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
23
23
|
suppressContentEditableWarning?: boolean | undefined;
|
|
24
24
|
suppressHydrationWarning?: boolean | undefined;
|
|
25
25
|
accessKey?: string | undefined;
|
|
26
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
26
27
|
autoFocus?: boolean | undefined;
|
|
27
28
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
28
29
|
contextMenu?: string | undefined;
|
|
29
30
|
dir?: string | undefined;
|
|
30
31
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
32
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
31
33
|
hidden?: boolean | undefined;
|
|
32
34
|
id?: string | undefined;
|
|
33
35
|
lang?: string | undefined;
|
|
@@ -47,7 +49,6 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
47
49
|
rev?: string | undefined;
|
|
48
50
|
typeof?: string | undefined;
|
|
49
51
|
vocab?: string | undefined;
|
|
50
|
-
autoCapitalize?: string | undefined;
|
|
51
52
|
autoCorrect?: string | undefined;
|
|
52
53
|
autoSave?: string | undefined;
|
|
53
54
|
itemProp?: string | undefined;
|
|
@@ -57,7 +58,7 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
57
58
|
itemRef?: string | undefined;
|
|
58
59
|
results?: number | undefined;
|
|
59
60
|
security?: string | undefined;
|
|
60
|
-
unselectable?: "
|
|
61
|
+
unselectable?: "off" | "on" | undefined;
|
|
61
62
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
62
63
|
is?: string | undefined;
|
|
63
64
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -282,7 +283,6 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
282
283
|
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
283
284
|
capture?: boolean | "user" | "environment" | undefined;
|
|
284
285
|
checked?: boolean | undefined;
|
|
285
|
-
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
286
286
|
formAction?: string | undefined;
|
|
287
287
|
formEncType?: string | undefined;
|
|
288
288
|
formMethod?: string | undefined;
|
|
@@ -316,11 +316,13 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
316
316
|
suppressContentEditableWarning?: boolean | undefined;
|
|
317
317
|
suppressHydrationWarning?: boolean | undefined;
|
|
318
318
|
accessKey?: string | undefined;
|
|
319
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
319
320
|
autoFocus?: boolean | undefined;
|
|
320
321
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
321
322
|
contextMenu?: string | undefined;
|
|
322
323
|
dir?: string | undefined;
|
|
323
324
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
325
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
324
326
|
hidden?: boolean | undefined;
|
|
325
327
|
id?: string | undefined;
|
|
326
328
|
lang?: string | undefined;
|
|
@@ -340,7 +342,6 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
340
342
|
rev?: string | undefined;
|
|
341
343
|
typeof?: string | undefined;
|
|
342
344
|
vocab?: string | undefined;
|
|
343
|
-
autoCapitalize?: string | undefined;
|
|
344
345
|
autoCorrect?: string | undefined;
|
|
345
346
|
autoSave?: string | undefined;
|
|
346
347
|
itemProp?: string | undefined;
|
|
@@ -350,7 +351,7 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
350
351
|
itemRef?: string | undefined;
|
|
351
352
|
results?: number | undefined;
|
|
352
353
|
security?: string | undefined;
|
|
353
|
-
unselectable?: "
|
|
354
|
+
unselectable?: "off" | "on" | undefined;
|
|
354
355
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
355
356
|
is?: string | undefined;
|
|
356
357
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -575,7 +576,6 @@ export declare const StyledSliderInput: import("styled-components/dist/types").I
|
|
|
575
576
|
autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
|
|
576
577
|
capture?: boolean | "user" | "environment" | undefined;
|
|
577
578
|
checked?: boolean | undefined;
|
|
578
|
-
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
579
579
|
formAction?: string | undefined;
|
|
580
580
|
formEncType?: string | undefined;
|
|
581
581
|
formMethod?: string | undefined;
|
|
@@ -28,11 +28,13 @@ export declare const StyledMotionSliderButtonThumb: import("styled-components/di
|
|
|
28
28
|
suppressContentEditableWarning?: boolean | undefined;
|
|
29
29
|
suppressHydrationWarning?: boolean | undefined;
|
|
30
30
|
accessKey?: string | undefined;
|
|
31
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
31
32
|
autoFocus?: boolean | undefined;
|
|
32
33
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
33
34
|
contextMenu?: string | undefined;
|
|
34
35
|
dir?: string | undefined;
|
|
35
36
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
37
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
36
38
|
hidden?: boolean | undefined;
|
|
37
39
|
id?: string | undefined;
|
|
38
40
|
lang?: string | undefined;
|
|
@@ -52,7 +54,6 @@ export declare const StyledMotionSliderButtonThumb: import("styled-components/di
|
|
|
52
54
|
rev?: string | undefined;
|
|
53
55
|
typeof?: string | undefined;
|
|
54
56
|
vocab?: string | undefined;
|
|
55
|
-
autoCapitalize?: string | undefined;
|
|
56
57
|
autoCorrect?: string | undefined;
|
|
57
58
|
autoSave?: string | undefined;
|
|
58
59
|
itemProp?: string | undefined;
|
|
@@ -62,7 +63,7 @@ export declare const StyledMotionSliderButtonThumb: import("styled-components/di
|
|
|
62
63
|
itemRef?: string | undefined;
|
|
63
64
|
results?: number | undefined;
|
|
64
65
|
security?: string | undefined;
|
|
65
|
-
unselectable?: "
|
|
66
|
+
unselectable?: "off" | "on" | undefined;
|
|
66
67
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
67
68
|
is?: string | undefined;
|
|
68
69
|
"aria-activedescendant"?: string | undefined;
|