@indico-data/design-system 1.0.38 → 1.0.40
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/.vscode/extensions.json +7 -0
- package/.vscode/settings.json +10 -0
- package/.yarn/releases/yarn-4.0.2.cjs +893 -0
- package/.yarnrc.yml +1 -1
- package/lib/components/Accordion/Accordion.styles.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +3 -6
- package/lib/components/ListTable/Header/Header.styles.d.ts +1 -2
- package/lib/components/ListTable/ListTable.styles.d.ts +1 -2
- package/lib/components/Pagination/Pagination.styles.d.ts +1 -2
- package/lib/components/basic-section/Section/Section.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +1 -2
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +1 -2
- package/lib/components/buttons/Button/Button.styles.d.ts +1 -2
- package/lib/components/buttons/IconButton/IconButton.stories.d.ts +3 -3
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +2 -4
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +2 -4
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +1 -2
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +1 -2
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +1 -2
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +2 -4
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +1 -2
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +1 -2
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +1 -2
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +1 -2
- package/lib/index.esm.js +1 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +478 -472
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
- package/rollup.config.mjs +2 -0
- package/src/components/dropdowns/BorderSelect/BorderSelect.styles.ts +1 -1
- package/.husky/pre-commit +0 -4
- package/.yarn/releases/yarn-classic.cjs +0 -179386
package/.yarnrc.yml
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
yarnPath: .yarn/releases/yarn-
|
|
1
|
+
yarnPath: .yarn/releases/yarn-4.0.2.cjs
|
|
@@ -5,6 +5,7 @@ export declare const StyledAccordion: import("styled-components").IStyledCompone
|
|
|
5
5
|
key?: import("react").Key | null | undefined;
|
|
6
6
|
open?: boolean | undefined;
|
|
7
7
|
onToggle?: import("react").ReactEventHandler<HTMLDetailsElement> | undefined;
|
|
8
|
+
name?: string | undefined;
|
|
8
9
|
defaultChecked?: boolean | undefined;
|
|
9
10
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
10
11
|
suppressContentEditableWarning?: boolean | undefined;
|
|
@@ -20,7 +21,6 @@ export declare const StyledAccordion: import("styled-components").IStyledCompone
|
|
|
20
21
|
id?: string | undefined;
|
|
21
22
|
lang?: string | undefined;
|
|
22
23
|
nonce?: string | undefined;
|
|
23
|
-
placeholder?: string | undefined;
|
|
24
24
|
slot?: string | undefined;
|
|
25
25
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
26
26
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -51,7 +51,7 @@ export declare const StyledAccordion: import("styled-components").IStyledCompone
|
|
|
51
51
|
itemRef?: string | undefined;
|
|
52
52
|
results?: number | undefined;
|
|
53
53
|
security?: string | undefined;
|
|
54
|
-
unselectable?: "
|
|
54
|
+
unselectable?: "off" | "on" | undefined;
|
|
55
55
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
56
56
|
is?: string | undefined;
|
|
57
57
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -21,7 +21,6 @@ export declare const IconContainer: import("styled-components").IStyledComponent
|
|
|
21
21
|
id?: string | undefined;
|
|
22
22
|
lang?: string | undefined;
|
|
23
23
|
nonce?: string | undefined;
|
|
24
|
-
placeholder?: string | undefined;
|
|
25
24
|
slot?: string | undefined;
|
|
26
25
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
27
26
|
style?: React.CSSProperties | undefined;
|
|
@@ -52,7 +51,7 @@ export declare const IconContainer: import("styled-components").IStyledComponent
|
|
|
52
51
|
itemRef?: string | undefined;
|
|
53
52
|
results?: number | undefined;
|
|
54
53
|
security?: string | undefined;
|
|
55
|
-
unselectable?: "
|
|
54
|
+
unselectable?: "off" | "on" | undefined;
|
|
56
55
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
57
56
|
is?: string | undefined;
|
|
58
57
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -293,7 +292,6 @@ export declare const IconGroupContainer: import("styled-components").IStyledComp
|
|
|
293
292
|
id?: string | undefined;
|
|
294
293
|
lang?: string | undefined;
|
|
295
294
|
nonce?: string | undefined;
|
|
296
|
-
placeholder?: string | undefined;
|
|
297
295
|
slot?: string | undefined;
|
|
298
296
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
299
297
|
style?: React.CSSProperties | undefined;
|
|
@@ -324,7 +322,7 @@ export declare const IconGroupContainer: import("styled-components").IStyledComp
|
|
|
324
322
|
itemRef?: string | undefined;
|
|
325
323
|
results?: number | undefined;
|
|
326
324
|
security?: string | undefined;
|
|
327
|
-
unselectable?: "
|
|
325
|
+
unselectable?: "off" | "on" | undefined;
|
|
328
326
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
329
327
|
is?: string | undefined;
|
|
330
328
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -565,7 +563,6 @@ export declare const SpecifiedSizeContainer: import("styled-components").IStyled
|
|
|
565
563
|
id?: string | undefined;
|
|
566
564
|
lang?: string | undefined;
|
|
567
565
|
nonce?: string | undefined;
|
|
568
|
-
placeholder?: string | undefined;
|
|
569
566
|
slot?: string | undefined;
|
|
570
567
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
571
568
|
style?: React.CSSProperties | undefined;
|
|
@@ -596,7 +593,7 @@ export declare const SpecifiedSizeContainer: import("styled-components").IStyled
|
|
|
596
593
|
itemRef?: string | undefined;
|
|
597
594
|
results?: number | undefined;
|
|
598
595
|
security?: string | undefined;
|
|
599
|
-
unselectable?: "
|
|
596
|
+
unselectable?: "off" | "on" | undefined;
|
|
600
597
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
601
598
|
is?: string | undefined;
|
|
602
599
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledHeader: import("styled-components").IStyledComponent<
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledHeader: import("styled-components").IStyledComponent<
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledListTable: import("styled-components").IStyledCompone
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledListTable: import("styled-components").IStyledCompone
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledPagination: import("styled-components").IStyledCompon
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledPagination: import("styled-components").IStyledCompon
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSection: import("styled-components").IStyledComponent
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSection: import("styled-components").IStyledComponent
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSectionBlock: import("styled-components").IStyledComp
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSectionBlock: import("styled-components").IStyledComp
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSectionBody: import("styled-components").IStyledCompo
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSectionBody: import("styled-components").IStyledCompo
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSectionHeader: import("styled-components").IStyledCom
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSectionHeader: import("styled-components").IStyledCom
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSectionTable: import("styled-components").IStyledComp
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSectionTable: import("styled-components").IStyledComp
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -28,7 +28,6 @@ export declare const StyledButton: import("styled-components").IStyledComponent<
|
|
|
28
28
|
id?: string | undefined;
|
|
29
29
|
lang?: string | undefined;
|
|
30
30
|
nonce?: string | undefined;
|
|
31
|
-
placeholder?: string | undefined;
|
|
32
31
|
slot?: string | undefined;
|
|
33
32
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
34
33
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -59,7 +58,7 @@ export declare const StyledButton: import("styled-components").IStyledComponent<
|
|
|
59
58
|
itemRef?: string | undefined;
|
|
60
59
|
results?: number | undefined;
|
|
61
60
|
security?: string | undefined;
|
|
62
|
-
unselectable?: "
|
|
61
|
+
unselectable?: "off" | "on" | undefined;
|
|
63
62
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
64
63
|
is?: string | undefined;
|
|
65
64
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -29,7 +29,6 @@ export declare const StyledIconButton: import("styled-components").IStyledCompon
|
|
|
29
29
|
id?: string | undefined;
|
|
30
30
|
lang?: string | undefined;
|
|
31
31
|
nonce?: string | undefined;
|
|
32
|
-
placeholder?: string | undefined;
|
|
33
32
|
slot?: string | undefined;
|
|
34
33
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
35
34
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -60,7 +59,7 @@ export declare const StyledIconButton: import("styled-components").IStyledCompon
|
|
|
60
59
|
itemRef?: string | undefined;
|
|
61
60
|
results?: number | undefined;
|
|
62
61
|
security?: string | undefined;
|
|
63
|
-
unselectable?: "
|
|
62
|
+
unselectable?: "off" | "on" | undefined;
|
|
64
63
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
65
64
|
is?: string | undefined;
|
|
66
65
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -315,7 +314,6 @@ export declare const StyledIconButtonLink: import("styled-components").IStyledCo
|
|
|
315
314
|
dir?: string | undefined;
|
|
316
315
|
lang?: string | undefined;
|
|
317
316
|
nonce?: string | undefined;
|
|
318
|
-
placeholder?: string | undefined;
|
|
319
317
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
320
318
|
tabIndex?: number | undefined;
|
|
321
319
|
radioGroup?: string | undefined;
|
|
@@ -340,7 +338,7 @@ export declare const StyledIconButtonLink: import("styled-components").IStyledCo
|
|
|
340
338
|
itemRef?: string | undefined;
|
|
341
339
|
results?: number | undefined;
|
|
342
340
|
security?: string | undefined;
|
|
343
|
-
unselectable?: "
|
|
341
|
+
unselectable?: "off" | "on" | undefined;
|
|
344
342
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
345
343
|
is?: string | undefined;
|
|
346
344
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -290,7 +289,6 @@ export declare const StyledValidationError: import("styled-components").IStyledC
|
|
|
290
289
|
id?: string | undefined;
|
|
291
290
|
lang?: string | undefined;
|
|
292
291
|
nonce?: string | undefined;
|
|
293
|
-
placeholder?: string | undefined;
|
|
294
292
|
slot?: string | undefined;
|
|
295
293
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
296
294
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -321,7 +319,7 @@ export declare const StyledValidationError: import("styled-components").IStyledC
|
|
|
321
319
|
itemRef?: string | undefined;
|
|
322
320
|
results?: number | undefined;
|
|
323
321
|
security?: string | undefined;
|
|
324
|
-
unselectable?: "
|
|
322
|
+
unselectable?: "off" | "on" | undefined;
|
|
325
323
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
326
324
|
is?: string | undefined;
|
|
327
325
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -8,7 +8,6 @@ export declare const StyledMultiCombobox: import("styled-components").IStyledCom
|
|
|
8
8
|
'aria-label'?: string | undefined;
|
|
9
9
|
theme?: import("react-select").ThemeConfig | undefined;
|
|
10
10
|
autoFocus?: boolean | undefined;
|
|
11
|
-
placeholder?: import("react").ReactNode;
|
|
12
11
|
tabIndex?: number | undefined;
|
|
13
12
|
'aria-errormessage'?: string | undefined;
|
|
14
13
|
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
@@ -17,6 +16,7 @@ export declare const StyledMultiCombobox: import("styled-components").IStyledCom
|
|
|
17
16
|
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
18
17
|
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
19
18
|
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
19
|
+
placeholder?: import("react").ReactNode;
|
|
20
20
|
required?: boolean | undefined;
|
|
21
21
|
options?: import("react-select").OptionsOrGroups<unknown, import("react-select").GroupBase<unknown>> | undefined;
|
|
22
22
|
ariaLiveMessages?: import("react-select").AriaLiveMessages<unknown, boolean, import("react-select").GroupBase<unknown>> | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -8,7 +8,6 @@ export declare const StyledSingleCombobox: import("styled-components").IStyledCo
|
|
|
8
8
|
'aria-label'?: string | undefined;
|
|
9
9
|
theme?: import("react-select").ThemeConfig | undefined;
|
|
10
10
|
autoFocus?: boolean | undefined;
|
|
11
|
-
placeholder?: import("react").ReactNode;
|
|
12
11
|
tabIndex?: number | undefined;
|
|
13
12
|
'aria-errormessage'?: string | undefined;
|
|
14
13
|
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
@@ -17,6 +16,7 @@ export declare const StyledSingleCombobox: import("styled-components").IStyledCo
|
|
|
17
16
|
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
18
17
|
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
19
18
|
onKeyDown?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
|
|
19
|
+
placeholder?: import("react").ReactNode;
|
|
20
20
|
required?: boolean | undefined;
|
|
21
21
|
options?: import("react-select").OptionsOrGroups<unknown, import("react-select").GroupBase<unknown>> | undefined;
|
|
22
22
|
ariaLiveMessages?: import("react-select").AriaLiveMessages<unknown, boolean, import("react-select").GroupBase<unknown>> | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledEditableInput: import("styled-components").IStyledCom
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledEditableInput: import("styled-components").IStyledCom
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledNumberField: import("styled-components").IStyledCompo
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledNumberField: import("styled-components").IStyledCompo
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledTextInput: import("styled-components").IStyledCompone
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledTextInput: import("styled-components").IStyledCompone
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -290,7 +289,6 @@ export declare const StyledInputInfo: import("styled-components").IStyledCompone
|
|
|
290
289
|
id?: string | undefined;
|
|
291
290
|
lang?: string | undefined;
|
|
292
291
|
nonce?: string | undefined;
|
|
293
|
-
placeholder?: string | undefined;
|
|
294
292
|
slot?: string | undefined;
|
|
295
293
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
296
294
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -321,7 +319,7 @@ export declare const StyledInputInfo: import("styled-components").IStyledCompone
|
|
|
321
319
|
itemRef?: string | undefined;
|
|
322
320
|
results?: number | undefined;
|
|
323
321
|
security?: string | undefined;
|
|
324
|
-
unselectable?: "
|
|
322
|
+
unselectable?: "off" | "on" | undefined;
|
|
325
323
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
326
324
|
is?: string | undefined;
|
|
327
325
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledBarSpinner: import("styled-components").IStyledCompon
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledBarSpinner: import("styled-components").IStyledCompon
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledLoadingList: import("styled-components").IStyledCompo
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledLoadingList: import("styled-components").IStyledCompo
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledPercentageRing: import("styled-components").IStyledCo
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledPercentageRing: import("styled-components").IStyledCo
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
|
@@ -18,7 +18,6 @@ export declare const StyledShrug: import("styled-components").IStyledComponent<"
|
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
|
-
placeholder?: string | undefined;
|
|
22
21
|
slot?: string | undefined;
|
|
23
22
|
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
23
|
style?: import("react").CSSProperties | undefined;
|
|
@@ -49,7 +48,7 @@ export declare const StyledShrug: import("styled-components").IStyledComponent<"
|
|
|
49
48
|
itemRef?: string | undefined;
|
|
50
49
|
results?: number | undefined;
|
|
51
50
|
security?: string | undefined;
|
|
52
|
-
unselectable?: "
|
|
51
|
+
unselectable?: "off" | "on" | undefined;
|
|
53
52
|
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
53
|
is?: string | undefined;
|
|
55
54
|
"aria-activedescendant"?: string | undefined;
|
package/lib/index.esm.js
CHANGED
|
@@ -8638,7 +8638,7 @@ const StyledSelect$1 = styled.div `
|
|
|
8638
8638
|
|
|
8639
8639
|
select {
|
|
8640
8640
|
background: transparent;
|
|
8641
|
-
border: 1px solid
|
|
8641
|
+
border: 1px solid currentColor;
|
|
8642
8642
|
width: 100%;
|
|
8643
8643
|
// max-width: 300px;
|
|
8644
8644
|
// color: ${allColors.lightFontColor};
|