@chayns-components/core 5.0.0-beta.822 → 5.0.0-beta.823
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/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/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/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
|
@@ -40,11 +40,13 @@ export declare const StyledMotionComboBoxBody: import("styled-components/dist/ty
|
|
|
40
40
|
suppressContentEditableWarning?: boolean | undefined;
|
|
41
41
|
suppressHydrationWarning?: boolean | undefined;
|
|
42
42
|
accessKey?: string | undefined;
|
|
43
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
43
44
|
autoFocus?: boolean | undefined;
|
|
44
45
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
45
46
|
contextMenu?: string | undefined;
|
|
46
47
|
dir?: string | undefined;
|
|
47
48
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
49
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
48
50
|
hidden?: boolean | undefined;
|
|
49
51
|
id?: string | undefined;
|
|
50
52
|
lang?: string | undefined;
|
|
@@ -64,7 +66,6 @@ export declare const StyledMotionComboBoxBody: import("styled-components/dist/ty
|
|
|
64
66
|
rev?: string | undefined;
|
|
65
67
|
typeof?: string | undefined;
|
|
66
68
|
vocab?: string | undefined;
|
|
67
|
-
autoCapitalize?: string | undefined;
|
|
68
69
|
autoCorrect?: string | undefined;
|
|
69
70
|
autoSave?: string | undefined;
|
|
70
71
|
itemProp?: string | undefined;
|
|
@@ -74,7 +75,7 @@ export declare const StyledMotionComboBoxBody: import("styled-components/dist/ty
|
|
|
74
75
|
itemRef?: string | undefined;
|
|
75
76
|
results?: number | undefined;
|
|
76
77
|
security?: string | undefined;
|
|
77
|
-
unselectable?: "
|
|
78
|
+
unselectable?: "off" | "on" | undefined;
|
|
78
79
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
79
80
|
is?: string | undefined;
|
|
80
81
|
"aria-activedescendant"?: string | undefined;
|
package/lib/types/components/context-menu/context-menu-content/ContextMenuContent.styles.d.ts
CHANGED
|
@@ -14,11 +14,13 @@ export declare const StyledMotionContextMenuContent: import("styled-components/d
|
|
|
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 StyledMotionContextMenuContent: import("styled-components/d
|
|
|
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 StyledMotionContextMenuContent: import("styled-components/d
|
|
|
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;
|
|
@@ -12,11 +12,13 @@ export declare const StyledMotionExpandableContent: import("styled-components/di
|
|
|
12
12
|
suppressContentEditableWarning?: boolean | undefined;
|
|
13
13
|
suppressHydrationWarning?: boolean | undefined;
|
|
14
14
|
accessKey?: string | undefined;
|
|
15
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
15
16
|
autoFocus?: boolean | undefined;
|
|
16
17
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
17
18
|
contextMenu?: string | undefined;
|
|
18
19
|
dir?: string | undefined;
|
|
19
20
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
21
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
20
22
|
hidden?: boolean | undefined;
|
|
21
23
|
id?: string | undefined;
|
|
22
24
|
lang?: string | undefined;
|
|
@@ -36,7 +38,6 @@ export declare const StyledMotionExpandableContent: import("styled-components/di
|
|
|
36
38
|
rev?: string | undefined;
|
|
37
39
|
typeof?: string | undefined;
|
|
38
40
|
vocab?: string | undefined;
|
|
39
|
-
autoCapitalize?: string | undefined;
|
|
40
41
|
autoCorrect?: string | undefined;
|
|
41
42
|
autoSave?: string | undefined;
|
|
42
43
|
itemProp?: string | undefined;
|
|
@@ -46,7 +47,7 @@ export declare const StyledMotionExpandableContent: import("styled-components/di
|
|
|
46
47
|
itemRef?: string | undefined;
|
|
47
48
|
results?: number | undefined;
|
|
48
49
|
security?: string | undefined;
|
|
49
|
-
unselectable?: "
|
|
50
|
+
unselectable?: "off" | "on" | undefined;
|
|
50
51
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
51
52
|
is?: string | undefined;
|
|
52
53
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -26,11 +26,13 @@ export declare const StyledMotionFileInputList: import("styled-components/dist/t
|
|
|
26
26
|
suppressContentEditableWarning?: boolean | undefined;
|
|
27
27
|
suppressHydrationWarning?: boolean | undefined;
|
|
28
28
|
accessKey?: string | undefined;
|
|
29
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
29
30
|
autoFocus?: boolean | undefined;
|
|
30
31
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
31
32
|
contextMenu?: string | undefined;
|
|
32
33
|
dir?: string | undefined;
|
|
33
34
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
35
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
34
36
|
hidden?: boolean | undefined;
|
|
35
37
|
id?: string | undefined;
|
|
36
38
|
lang?: string | undefined;
|
|
@@ -50,7 +52,6 @@ export declare const StyledMotionFileInputList: import("styled-components/dist/t
|
|
|
50
52
|
rev?: string | undefined;
|
|
51
53
|
typeof?: string | undefined;
|
|
52
54
|
vocab?: string | undefined;
|
|
53
|
-
autoCapitalize?: string | undefined;
|
|
54
55
|
autoCorrect?: string | undefined;
|
|
55
56
|
autoSave?: string | undefined;
|
|
56
57
|
itemProp?: string | undefined;
|
|
@@ -60,7 +61,7 @@ export declare const StyledMotionFileInputList: import("styled-components/dist/t
|
|
|
60
61
|
itemRef?: string | undefined;
|
|
61
62
|
results?: number | undefined;
|
|
62
63
|
security?: string | undefined;
|
|
63
|
-
unselectable?: "
|
|
64
|
+
unselectable?: "off" | "on" | undefined;
|
|
64
65
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
65
66
|
is?: string | undefined;
|
|
66
67
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -35,11 +35,13 @@ export declare const StyledMotionFilterButtonItemBackground: import("styled-comp
|
|
|
35
35
|
suppressContentEditableWarning?: boolean | undefined;
|
|
36
36
|
suppressHydrationWarning?: boolean | undefined;
|
|
37
37
|
accessKey?: string | undefined;
|
|
38
|
+
autoCapitalize?: (string & {}) | "none" | "off" | "on" | "sentences" | "words" | "characters" | undefined;
|
|
38
39
|
autoFocus?: boolean | undefined;
|
|
39
40
|
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
40
41
|
contextMenu?: string | undefined;
|
|
41
42
|
dir?: string | undefined;
|
|
42
43
|
draggable?: (boolean | "false" | "true") | undefined;
|
|
44
|
+
enterKeyHint?: "search" | "next" | "enter" | "done" | "go" | "previous" | "send" | undefined;
|
|
43
45
|
hidden?: boolean | undefined;
|
|
44
46
|
id?: string | undefined;
|
|
45
47
|
lang?: string | undefined;
|
|
@@ -59,7 +61,6 @@ export declare const StyledMotionFilterButtonItemBackground: import("styled-comp
|
|
|
59
61
|
rev?: string | undefined;
|
|
60
62
|
typeof?: string | undefined;
|
|
61
63
|
vocab?: string | undefined;
|
|
62
|
-
autoCapitalize?: string | undefined;
|
|
63
64
|
autoCorrect?: string | undefined;
|
|
64
65
|
autoSave?: string | undefined;
|
|
65
66
|
itemProp?: string | undefined;
|
|
@@ -69,7 +70,7 @@ export declare const StyledMotionFilterButtonItemBackground: import("styled-comp
|
|
|
69
70
|
itemRef?: string | undefined;
|
|
70
71
|
results?: number | undefined;
|
|
71
72
|
security?: string | undefined;
|
|
72
|
-
unselectable?: "
|
|
73
|
+
unselectable?: "off" | "on" | undefined;
|
|
73
74
|
inputMode?: "search" | "text" | "none" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
|
74
75
|
is?: string | undefined;
|
|
75
76
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -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;
|