@indico-data/design-system 1.0.12 → 1.0.13
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/components/Accordion/Accordion.styles.d.ts +24 -24
- package/lib/components/Icon/Icon.stories.d.ts +2 -2
- package/lib/components/Icon/storyHelpers.d.ts +72 -72
- package/lib/components/ListTable/Header/Header.styles.d.ts +24 -24
- package/lib/components/ListTable/ListTable.styles.d.ts +24 -24
- package/lib/components/Pagination/Pagination.styles.d.ts +24 -24
- package/lib/components/basic-section/Section/Section.styles.d.ts +24 -24
- package/lib/components/basic-section/SectionBlock/SectionBlock.styles.d.ts +24 -24
- package/lib/components/basic-section/SectionBody/SectionBody.styles.d.ts +24 -24
- package/lib/components/basic-section/SectionHeader/SectionHeader.styles.d.ts +24 -24
- package/lib/components/basic-section/SectionTable/SectionTable.styles.d.ts +24 -24
- package/lib/components/buttons/Button/Button.styles.d.ts +24 -24
- package/lib/components/buttons/IconButton/IconButton.styles.d.ts +56 -56
- package/lib/components/dropdowns/BorderSelect/BorderSelect.styles.d.ts +48 -48
- package/lib/components/dropdowns/MultiCombobox/MultiCombobox.styles.d.ts +1 -1
- package/lib/components/dropdowns/Select/Select.styles.d.ts +24 -24
- package/lib/components/dropdowns/SingleCombobox/SingleCombobox.styles.d.ts +1 -1
- package/lib/components/inputs/EditableInput/EditableInput.styles.d.ts +24 -24
- package/lib/components/inputs/NumberInput/NumberInput.styles.d.ts +24 -24
- package/lib/components/inputs/SearchInput/SearchInput.styles.d.ts +24 -24
- package/lib/components/inputs/TextInput/TextInput.styles.d.ts +48 -48
- package/lib/components/loading-indicators/BarSpinner/BarSpinner.styles.d.ts +24 -24
- package/lib/components/loading-indicators/LoadingList/LoadingList.styles.d.ts +24 -24
- package/lib/components/loading-indicators/PercentageRing/PercentageRing.styles.d.ts +24 -24
- package/lib/components/user-feedback/Shrug/Shrug.styles.d.ts +24 -24
- package/lib/index.d.ts +3 -1
- package/lib/index.esm.js +7699 -7175
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +7698 -7173
- package/lib/index.js.map +1 -1
- package/lib/styles/index.d.ts +1 -0
- package/package.json +1 -1
- package/rollup.config.mjs +5 -0
|
@@ -10,17 +10,17 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
10
10
|
accessKey?: string | undefined;
|
|
11
11
|
autoFocus?: boolean | undefined;
|
|
12
12
|
className?: string | undefined;
|
|
13
|
-
contentEditable?:
|
|
13
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
14
|
contextMenu?: string | undefined;
|
|
15
15
|
dir?: string | undefined;
|
|
16
|
-
draggable?: (boolean | "
|
|
16
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
17
17
|
hidden?: boolean | undefined;
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
21
|
placeholder?: string | undefined;
|
|
22
22
|
slot?: string | undefined;
|
|
23
|
-
spellCheck?: (boolean | "
|
|
23
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
24
|
style?: import("react").CSSProperties | undefined;
|
|
25
25
|
tabIndex?: number | undefined;
|
|
26
26
|
title?: string | undefined;
|
|
@@ -50,55 +50,55 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
50
50
|
results?: number | undefined;
|
|
51
51
|
security?: string | undefined;
|
|
52
52
|
unselectable?: "on" | "off" | undefined;
|
|
53
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
54
|
is?: string | undefined;
|
|
55
55
|
"aria-activedescendant"?: string | undefined;
|
|
56
|
-
"aria-atomic"?: (boolean | "
|
|
57
|
-
"aria-autocomplete"?: "
|
|
56
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
58
58
|
"aria-braillelabel"?: string | undefined;
|
|
59
59
|
"aria-brailleroledescription"?: string | undefined;
|
|
60
|
-
"aria-busy"?: (boolean | "
|
|
61
|
-
"aria-checked"?: boolean | "
|
|
60
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
61
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
62
62
|
"aria-colcount"?: number | undefined;
|
|
63
63
|
"aria-colindex"?: number | undefined;
|
|
64
64
|
"aria-colindextext"?: string | undefined;
|
|
65
65
|
"aria-colspan"?: number | undefined;
|
|
66
66
|
"aria-controls"?: string | undefined;
|
|
67
|
-
"aria-current"?: boolean | "
|
|
67
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
|
|
68
68
|
"aria-describedby"?: string | undefined;
|
|
69
69
|
"aria-description"?: string | undefined;
|
|
70
70
|
"aria-details"?: string | undefined;
|
|
71
|
-
"aria-disabled"?: (boolean | "
|
|
72
|
-
"aria-dropeffect"?: "
|
|
71
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
72
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
73
73
|
"aria-errormessage"?: string | undefined;
|
|
74
|
-
"aria-expanded"?: (boolean | "
|
|
74
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
75
75
|
"aria-flowto"?: string | undefined;
|
|
76
|
-
"aria-grabbed"?: (boolean | "
|
|
77
|
-
"aria-haspopup"?: boolean | "
|
|
78
|
-
"aria-hidden"?: (boolean | "
|
|
79
|
-
"aria-invalid"?: boolean | "
|
|
76
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
77
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
78
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
79
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
80
80
|
"aria-keyshortcuts"?: string | undefined;
|
|
81
81
|
"aria-label"?: string | undefined;
|
|
82
82
|
"aria-labelledby"?: string | undefined;
|
|
83
83
|
"aria-level"?: number | undefined;
|
|
84
84
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
85
|
-
"aria-modal"?: (boolean | "
|
|
86
|
-
"aria-multiline"?: (boolean | "
|
|
87
|
-
"aria-multiselectable"?: (boolean | "
|
|
85
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
86
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
87
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
88
88
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
89
89
|
"aria-owns"?: string | undefined;
|
|
90
90
|
"aria-placeholder"?: string | undefined;
|
|
91
91
|
"aria-posinset"?: number | undefined;
|
|
92
|
-
"aria-pressed"?: boolean | "
|
|
93
|
-
"aria-readonly"?: (boolean | "
|
|
94
|
-
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "
|
|
95
|
-
"aria-required"?: (boolean | "
|
|
92
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
93
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
94
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
95
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
96
96
|
"aria-roledescription"?: string | undefined;
|
|
97
97
|
"aria-rowcount"?: number | undefined;
|
|
98
98
|
"aria-rowindex"?: number | undefined;
|
|
99
99
|
"aria-rowindextext"?: string | undefined;
|
|
100
100
|
"aria-rowspan"?: number | undefined;
|
|
101
|
-
"aria-selected"?: (boolean | "
|
|
101
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
102
102
|
"aria-setsize"?: number | undefined;
|
|
103
103
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
104
104
|
"aria-valuemax"?: number | undefined;
|
|
@@ -282,17 +282,17 @@ export declare const StyledValidationError: import("styled-components").IStyledC
|
|
|
282
282
|
accessKey?: string | undefined;
|
|
283
283
|
autoFocus?: boolean | undefined;
|
|
284
284
|
className?: string | undefined;
|
|
285
|
-
contentEditable?:
|
|
285
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
286
286
|
contextMenu?: string | undefined;
|
|
287
287
|
dir?: string | undefined;
|
|
288
|
-
draggable?: (boolean | "
|
|
288
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
289
289
|
hidden?: boolean | undefined;
|
|
290
290
|
id?: string | undefined;
|
|
291
291
|
lang?: string | undefined;
|
|
292
292
|
nonce?: string | undefined;
|
|
293
293
|
placeholder?: string | undefined;
|
|
294
294
|
slot?: string | undefined;
|
|
295
|
-
spellCheck?: (boolean | "
|
|
295
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
296
296
|
style?: import("react").CSSProperties | undefined;
|
|
297
297
|
tabIndex?: number | undefined;
|
|
298
298
|
title?: string | undefined;
|
|
@@ -322,55 +322,55 @@ export declare const StyledValidationError: import("styled-components").IStyledC
|
|
|
322
322
|
results?: number | undefined;
|
|
323
323
|
security?: string | undefined;
|
|
324
324
|
unselectable?: "on" | "off" | undefined;
|
|
325
|
-
inputMode?: "
|
|
325
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
326
326
|
is?: string | undefined;
|
|
327
327
|
"aria-activedescendant"?: string | undefined;
|
|
328
|
-
"aria-atomic"?: (boolean | "
|
|
329
|
-
"aria-autocomplete"?: "
|
|
328
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
329
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
330
330
|
"aria-braillelabel"?: string | undefined;
|
|
331
331
|
"aria-brailleroledescription"?: string | undefined;
|
|
332
|
-
"aria-busy"?: (boolean | "
|
|
333
|
-
"aria-checked"?: boolean | "
|
|
332
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
333
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
334
334
|
"aria-colcount"?: number | undefined;
|
|
335
335
|
"aria-colindex"?: number | undefined;
|
|
336
336
|
"aria-colindextext"?: string | undefined;
|
|
337
337
|
"aria-colspan"?: number | undefined;
|
|
338
338
|
"aria-controls"?: string | undefined;
|
|
339
|
-
"aria-current"?: boolean | "
|
|
339
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
|
|
340
340
|
"aria-describedby"?: string | undefined;
|
|
341
341
|
"aria-description"?: string | undefined;
|
|
342
342
|
"aria-details"?: string | undefined;
|
|
343
|
-
"aria-disabled"?: (boolean | "
|
|
344
|
-
"aria-dropeffect"?: "
|
|
343
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
344
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
345
345
|
"aria-errormessage"?: string | undefined;
|
|
346
|
-
"aria-expanded"?: (boolean | "
|
|
346
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
347
347
|
"aria-flowto"?: string | undefined;
|
|
348
|
-
"aria-grabbed"?: (boolean | "
|
|
349
|
-
"aria-haspopup"?: boolean | "
|
|
350
|
-
"aria-hidden"?: (boolean | "
|
|
351
|
-
"aria-invalid"?: boolean | "
|
|
348
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
349
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
350
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
351
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
352
352
|
"aria-keyshortcuts"?: string | undefined;
|
|
353
353
|
"aria-label"?: string | undefined;
|
|
354
354
|
"aria-labelledby"?: string | undefined;
|
|
355
355
|
"aria-level"?: number | undefined;
|
|
356
356
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
357
|
-
"aria-modal"?: (boolean | "
|
|
358
|
-
"aria-multiline"?: (boolean | "
|
|
359
|
-
"aria-multiselectable"?: (boolean | "
|
|
357
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
358
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
359
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
360
360
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
361
361
|
"aria-owns"?: string | undefined;
|
|
362
362
|
"aria-placeholder"?: string | undefined;
|
|
363
363
|
"aria-posinset"?: number | undefined;
|
|
364
|
-
"aria-pressed"?: boolean | "
|
|
365
|
-
"aria-readonly"?: (boolean | "
|
|
366
|
-
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "
|
|
367
|
-
"aria-required"?: (boolean | "
|
|
364
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
365
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
366
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
367
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
368
368
|
"aria-roledescription"?: string | undefined;
|
|
369
369
|
"aria-rowcount"?: number | undefined;
|
|
370
370
|
"aria-rowindex"?: number | undefined;
|
|
371
371
|
"aria-rowindextext"?: string | undefined;
|
|
372
372
|
"aria-rowspan"?: number | undefined;
|
|
373
|
-
"aria-selected"?: (boolean | "
|
|
373
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
374
374
|
"aria-setsize"?: number | undefined;
|
|
375
375
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
376
376
|
"aria-valuemax"?: number | undefined;
|
|
@@ -11,7 +11,7 @@ export declare const StyledMultiCombobox: import("styled-components").IStyledCom
|
|
|
11
11
|
placeholder?: import("react").ReactNode;
|
|
12
12
|
tabIndex?: number | undefined;
|
|
13
13
|
'aria-errormessage'?: string | undefined;
|
|
14
|
-
'aria-invalid'?: boolean | "
|
|
14
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
15
15
|
'aria-labelledby'?: string | undefined;
|
|
16
16
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
17
17
|
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
@@ -10,17 +10,17 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
10
10
|
accessKey?: string | undefined;
|
|
11
11
|
autoFocus?: boolean | undefined;
|
|
12
12
|
className?: string | undefined;
|
|
13
|
-
contentEditable?:
|
|
13
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
14
|
contextMenu?: string | undefined;
|
|
15
15
|
dir?: string | undefined;
|
|
16
|
-
draggable?: (boolean | "
|
|
16
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
17
17
|
hidden?: boolean | undefined;
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
21
|
placeholder?: string | undefined;
|
|
22
22
|
slot?: string | undefined;
|
|
23
|
-
spellCheck?: (boolean | "
|
|
23
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
24
|
style?: import("react").CSSProperties | undefined;
|
|
25
25
|
tabIndex?: number | undefined;
|
|
26
26
|
title?: string | undefined;
|
|
@@ -50,55 +50,55 @@ export declare const StyledSelect: import("styled-components").IStyledComponent<
|
|
|
50
50
|
results?: number | undefined;
|
|
51
51
|
security?: string | undefined;
|
|
52
52
|
unselectable?: "on" | "off" | undefined;
|
|
53
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
54
|
is?: string | undefined;
|
|
55
55
|
"aria-activedescendant"?: string | undefined;
|
|
56
|
-
"aria-atomic"?: (boolean | "
|
|
57
|
-
"aria-autocomplete"?: "
|
|
56
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
58
58
|
"aria-braillelabel"?: string | undefined;
|
|
59
59
|
"aria-brailleroledescription"?: string | undefined;
|
|
60
|
-
"aria-busy"?: (boolean | "
|
|
61
|
-
"aria-checked"?: boolean | "
|
|
60
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
61
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
62
62
|
"aria-colcount"?: number | undefined;
|
|
63
63
|
"aria-colindex"?: number | undefined;
|
|
64
64
|
"aria-colindextext"?: string | undefined;
|
|
65
65
|
"aria-colspan"?: number | undefined;
|
|
66
66
|
"aria-controls"?: string | undefined;
|
|
67
|
-
"aria-current"?: boolean | "
|
|
67
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
|
|
68
68
|
"aria-describedby"?: string | undefined;
|
|
69
69
|
"aria-description"?: string | undefined;
|
|
70
70
|
"aria-details"?: string | undefined;
|
|
71
|
-
"aria-disabled"?: (boolean | "
|
|
72
|
-
"aria-dropeffect"?: "
|
|
71
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
72
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
73
73
|
"aria-errormessage"?: string | undefined;
|
|
74
|
-
"aria-expanded"?: (boolean | "
|
|
74
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
75
75
|
"aria-flowto"?: string | undefined;
|
|
76
|
-
"aria-grabbed"?: (boolean | "
|
|
77
|
-
"aria-haspopup"?: boolean | "
|
|
78
|
-
"aria-hidden"?: (boolean | "
|
|
79
|
-
"aria-invalid"?: boolean | "
|
|
76
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
77
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
78
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
79
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
80
80
|
"aria-keyshortcuts"?: string | undefined;
|
|
81
81
|
"aria-label"?: string | undefined;
|
|
82
82
|
"aria-labelledby"?: string | undefined;
|
|
83
83
|
"aria-level"?: number | undefined;
|
|
84
84
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
85
|
-
"aria-modal"?: (boolean | "
|
|
86
|
-
"aria-multiline"?: (boolean | "
|
|
87
|
-
"aria-multiselectable"?: (boolean | "
|
|
85
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
86
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
87
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
88
88
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
89
89
|
"aria-owns"?: string | undefined;
|
|
90
90
|
"aria-placeholder"?: string | undefined;
|
|
91
91
|
"aria-posinset"?: number | undefined;
|
|
92
|
-
"aria-pressed"?: boolean | "
|
|
93
|
-
"aria-readonly"?: (boolean | "
|
|
94
|
-
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "
|
|
95
|
-
"aria-required"?: (boolean | "
|
|
92
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
93
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
94
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
95
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
96
96
|
"aria-roledescription"?: string | undefined;
|
|
97
97
|
"aria-rowcount"?: number | undefined;
|
|
98
98
|
"aria-rowindex"?: number | undefined;
|
|
99
99
|
"aria-rowindextext"?: string | undefined;
|
|
100
100
|
"aria-rowspan"?: number | undefined;
|
|
101
|
-
"aria-selected"?: (boolean | "
|
|
101
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
102
102
|
"aria-setsize"?: number | undefined;
|
|
103
103
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
104
104
|
"aria-valuemax"?: number | undefined;
|
|
@@ -11,7 +11,7 @@ export declare const StyledSingleCombobox: import("styled-components").IStyledCo
|
|
|
11
11
|
placeholder?: import("react").ReactNode;
|
|
12
12
|
tabIndex?: number | undefined;
|
|
13
13
|
'aria-errormessage'?: string | undefined;
|
|
14
|
-
'aria-invalid'?: boolean | "
|
|
14
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
15
15
|
'aria-labelledby'?: string | undefined;
|
|
16
16
|
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
|
17
17
|
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
|
@@ -10,17 +10,17 @@ export declare const StyledEditableInput: import("styled-components").IStyledCom
|
|
|
10
10
|
accessKey?: string | undefined;
|
|
11
11
|
autoFocus?: boolean | undefined;
|
|
12
12
|
className?: string | undefined;
|
|
13
|
-
contentEditable?:
|
|
13
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
14
|
contextMenu?: string | undefined;
|
|
15
15
|
dir?: string | undefined;
|
|
16
|
-
draggable?: (boolean | "
|
|
16
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
17
17
|
hidden?: boolean | undefined;
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
21
|
placeholder?: string | undefined;
|
|
22
22
|
slot?: string | undefined;
|
|
23
|
-
spellCheck?: (boolean | "
|
|
23
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
24
|
style?: import("react").CSSProperties | undefined;
|
|
25
25
|
tabIndex?: number | undefined;
|
|
26
26
|
title?: string | undefined;
|
|
@@ -50,55 +50,55 @@ export declare const StyledEditableInput: import("styled-components").IStyledCom
|
|
|
50
50
|
results?: number | undefined;
|
|
51
51
|
security?: string | undefined;
|
|
52
52
|
unselectable?: "on" | "off" | undefined;
|
|
53
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
54
|
is?: string | undefined;
|
|
55
55
|
"aria-activedescendant"?: string | undefined;
|
|
56
|
-
"aria-atomic"?: (boolean | "
|
|
57
|
-
"aria-autocomplete"?: "
|
|
56
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
58
58
|
"aria-braillelabel"?: string | undefined;
|
|
59
59
|
"aria-brailleroledescription"?: string | undefined;
|
|
60
|
-
"aria-busy"?: (boolean | "
|
|
61
|
-
"aria-checked"?: boolean | "
|
|
60
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
61
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
62
62
|
"aria-colcount"?: number | undefined;
|
|
63
63
|
"aria-colindex"?: number | undefined;
|
|
64
64
|
"aria-colindextext"?: string | undefined;
|
|
65
65
|
"aria-colspan"?: number | undefined;
|
|
66
66
|
"aria-controls"?: string | undefined;
|
|
67
|
-
"aria-current"?: boolean | "
|
|
67
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
|
|
68
68
|
"aria-describedby"?: string | undefined;
|
|
69
69
|
"aria-description"?: string | undefined;
|
|
70
70
|
"aria-details"?: string | undefined;
|
|
71
|
-
"aria-disabled"?: (boolean | "
|
|
72
|
-
"aria-dropeffect"?: "
|
|
71
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
72
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
73
73
|
"aria-errormessage"?: string | undefined;
|
|
74
|
-
"aria-expanded"?: (boolean | "
|
|
74
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
75
75
|
"aria-flowto"?: string | undefined;
|
|
76
|
-
"aria-grabbed"?: (boolean | "
|
|
77
|
-
"aria-haspopup"?: boolean | "
|
|
78
|
-
"aria-hidden"?: (boolean | "
|
|
79
|
-
"aria-invalid"?: boolean | "
|
|
76
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
77
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
78
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
79
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
80
80
|
"aria-keyshortcuts"?: string | undefined;
|
|
81
81
|
"aria-label"?: string | undefined;
|
|
82
82
|
"aria-labelledby"?: string | undefined;
|
|
83
83
|
"aria-level"?: number | undefined;
|
|
84
84
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
85
|
-
"aria-modal"?: (boolean | "
|
|
86
|
-
"aria-multiline"?: (boolean | "
|
|
87
|
-
"aria-multiselectable"?: (boolean | "
|
|
85
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
86
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
87
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
88
88
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
89
89
|
"aria-owns"?: string | undefined;
|
|
90
90
|
"aria-placeholder"?: string | undefined;
|
|
91
91
|
"aria-posinset"?: number | undefined;
|
|
92
|
-
"aria-pressed"?: boolean | "
|
|
93
|
-
"aria-readonly"?: (boolean | "
|
|
94
|
-
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "
|
|
95
|
-
"aria-required"?: (boolean | "
|
|
92
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
93
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
94
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
95
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
96
96
|
"aria-roledescription"?: string | undefined;
|
|
97
97
|
"aria-rowcount"?: number | undefined;
|
|
98
98
|
"aria-rowindex"?: number | undefined;
|
|
99
99
|
"aria-rowindextext"?: string | undefined;
|
|
100
100
|
"aria-rowspan"?: number | undefined;
|
|
101
|
-
"aria-selected"?: (boolean | "
|
|
101
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
102
102
|
"aria-setsize"?: number | undefined;
|
|
103
103
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
104
104
|
"aria-valuemax"?: number | undefined;
|
|
@@ -10,17 +10,17 @@ export declare const StyledNumberField: import("styled-components").IStyledCompo
|
|
|
10
10
|
accessKey?: string | undefined;
|
|
11
11
|
autoFocus?: boolean | undefined;
|
|
12
12
|
className?: string | undefined;
|
|
13
|
-
contentEditable?:
|
|
13
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
|
|
14
14
|
contextMenu?: string | undefined;
|
|
15
15
|
dir?: string | undefined;
|
|
16
|
-
draggable?: (boolean | "
|
|
16
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
|
17
17
|
hidden?: boolean | undefined;
|
|
18
18
|
id?: string | undefined;
|
|
19
19
|
lang?: string | undefined;
|
|
20
20
|
nonce?: string | undefined;
|
|
21
21
|
placeholder?: string | undefined;
|
|
22
22
|
slot?: string | undefined;
|
|
23
|
-
spellCheck?: (boolean | "
|
|
23
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
|
24
24
|
style?: import("react").CSSProperties | undefined;
|
|
25
25
|
tabIndex?: number | undefined;
|
|
26
26
|
title?: string | undefined;
|
|
@@ -50,55 +50,55 @@ export declare const StyledNumberField: import("styled-components").IStyledCompo
|
|
|
50
50
|
results?: number | undefined;
|
|
51
51
|
security?: string | undefined;
|
|
52
52
|
unselectable?: "on" | "off" | undefined;
|
|
53
|
-
inputMode?: "
|
|
53
|
+
inputMode?: "none" | "text" | "search" | "email" | "url" | "tel" | "numeric" | "decimal" | undefined;
|
|
54
54
|
is?: string | undefined;
|
|
55
55
|
"aria-activedescendant"?: string | undefined;
|
|
56
|
-
"aria-atomic"?: (boolean | "
|
|
57
|
-
"aria-autocomplete"?: "
|
|
56
|
+
"aria-atomic"?: (boolean | "false" | "true") | undefined;
|
|
57
|
+
"aria-autocomplete"?: "both" | "none" | "inline" | "list" | undefined;
|
|
58
58
|
"aria-braillelabel"?: string | undefined;
|
|
59
59
|
"aria-brailleroledescription"?: string | undefined;
|
|
60
|
-
"aria-busy"?: (boolean | "
|
|
61
|
-
"aria-checked"?: boolean | "
|
|
60
|
+
"aria-busy"?: (boolean | "false" | "true") | undefined;
|
|
61
|
+
"aria-checked"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
62
62
|
"aria-colcount"?: number | undefined;
|
|
63
63
|
"aria-colindex"?: number | undefined;
|
|
64
64
|
"aria-colindextext"?: string | undefined;
|
|
65
65
|
"aria-colspan"?: number | undefined;
|
|
66
66
|
"aria-controls"?: string | undefined;
|
|
67
|
-
"aria-current"?: boolean | "
|
|
67
|
+
"aria-current"?: boolean | "page" | "false" | "true" | "time" | "date" | "location" | "step" | undefined;
|
|
68
68
|
"aria-describedby"?: string | undefined;
|
|
69
69
|
"aria-description"?: string | undefined;
|
|
70
70
|
"aria-details"?: string | undefined;
|
|
71
|
-
"aria-disabled"?: (boolean | "
|
|
72
|
-
"aria-dropeffect"?: "
|
|
71
|
+
"aria-disabled"?: (boolean | "false" | "true") | undefined;
|
|
72
|
+
"aria-dropeffect"?: "none" | "copy" | "move" | "link" | "popup" | "execute" | undefined;
|
|
73
73
|
"aria-errormessage"?: string | undefined;
|
|
74
|
-
"aria-expanded"?: (boolean | "
|
|
74
|
+
"aria-expanded"?: (boolean | "false" | "true") | undefined;
|
|
75
75
|
"aria-flowto"?: string | undefined;
|
|
76
|
-
"aria-grabbed"?: (boolean | "
|
|
77
|
-
"aria-haspopup"?: boolean | "
|
|
78
|
-
"aria-hidden"?: (boolean | "
|
|
79
|
-
"aria-invalid"?: boolean | "
|
|
76
|
+
"aria-grabbed"?: (boolean | "false" | "true") | undefined;
|
|
77
|
+
"aria-haspopup"?: boolean | "listbox" | "grid" | "menu" | "false" | "true" | "dialog" | "tree" | undefined;
|
|
78
|
+
"aria-hidden"?: (boolean | "false" | "true") | undefined;
|
|
79
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
80
80
|
"aria-keyshortcuts"?: string | undefined;
|
|
81
81
|
"aria-label"?: string | undefined;
|
|
82
82
|
"aria-labelledby"?: string | undefined;
|
|
83
83
|
"aria-level"?: number | undefined;
|
|
84
84
|
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
85
|
-
"aria-modal"?: (boolean | "
|
|
86
|
-
"aria-multiline"?: (boolean | "
|
|
87
|
-
"aria-multiselectable"?: (boolean | "
|
|
85
|
+
"aria-modal"?: (boolean | "false" | "true") | undefined;
|
|
86
|
+
"aria-multiline"?: (boolean | "false" | "true") | undefined;
|
|
87
|
+
"aria-multiselectable"?: (boolean | "false" | "true") | undefined;
|
|
88
88
|
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
89
89
|
"aria-owns"?: string | undefined;
|
|
90
90
|
"aria-placeholder"?: string | undefined;
|
|
91
91
|
"aria-posinset"?: number | undefined;
|
|
92
|
-
"aria-pressed"?: boolean | "
|
|
93
|
-
"aria-readonly"?: (boolean | "
|
|
94
|
-
"aria-relevant"?: "text" | "additions" | "additions removals" | "additions text" | "
|
|
95
|
-
"aria-required"?: (boolean | "
|
|
92
|
+
"aria-pressed"?: boolean | "mixed" | "false" | "true" | undefined;
|
|
93
|
+
"aria-readonly"?: (boolean | "false" | "true") | undefined;
|
|
94
|
+
"aria-relevant"?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
|
95
|
+
"aria-required"?: (boolean | "false" | "true") | undefined;
|
|
96
96
|
"aria-roledescription"?: string | undefined;
|
|
97
97
|
"aria-rowcount"?: number | undefined;
|
|
98
98
|
"aria-rowindex"?: number | undefined;
|
|
99
99
|
"aria-rowindextext"?: string | undefined;
|
|
100
100
|
"aria-rowspan"?: number | undefined;
|
|
101
|
-
"aria-selected"?: (boolean | "
|
|
101
|
+
"aria-selected"?: (boolean | "false" | "true") | undefined;
|
|
102
102
|
"aria-setsize"?: number | undefined;
|
|
103
103
|
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
104
104
|
"aria-valuemax"?: number | undefined;
|