@20minutes/hela 2.16.10 → 2.17.0
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/dist/index.es.js +1062 -869
- package/dist/index.umd.cjs +1 -0
- package/dist/js/scripts.es.js +7 -4
- package/dist/js/{scripts.umd.js → scripts.umd.cjs} +1 -1
- package/dist/scss/abstracts/variables/_token-variables.scss +69 -69
- package/dist/scss/abstracts/variables/_variables.scss +45 -46
- package/dist/src/components/atoms/InlineSeparator/InlineSeparator.stories.d.ts +1 -1
- package/dist/src/components/atoms/Link/Link.d.ts +5 -3
- package/dist/src/components/atoms/Link/Link.stories.d.ts +3 -1
- package/dist/src/components/atoms/ScrollToTopButton/ScrollToTopButton.stories.d.ts +112 -112
- package/dist/src/components/atoms/SkipLink/SkipLink.stories.d.ts +1 -1
- package/dist/src/components/molecules/DiscoverList/DiscoverList.stories.d.ts +104 -104
- package/dist/src/components/molecules/Elections/SearchBanner/SearchBanner.stories.d.ts +69 -69
- package/dist/src/components/molecules/VerticalTimeline/VerticalTimeline.stories.d.ts +105 -105
- package/dist/src/components/organisms/Footer/Footer.stories.d.ts +2 -2
- package/dist/src/constants/cssProperties/typography.d.ts +5 -4
- package/dist/src/constants/tokenNameList.d.ts +5 -5
- package/dist/src/constants/tokenVariables.d.ts +364 -132
- package/dist/src/helpers/forwardRef.d.ts +2 -2
- package/dist/src/helpers/imgHelper.d.ts +1 -1
- package/dist/src/helpers/storybookHelper.d.ts +3 -3
- package/dist/src/helpers/systemPropsHelper/classNameWithModifier.d.ts +2 -2
- package/dist/src/helpers/systemPropsHelper/classNamesWithModifiers.d.ts +3 -3
- package/dist/src/helpers/systemPropsHelper/typographySystemClassName.d.ts +1 -1
- package/dist/src/types/ComponentWithAs.d.ts +3 -2
- package/dist/style.css +1 -1
- package/package.json +38 -40
- package/dist/index.umd.js +0 -1
|
@@ -7,133 +7,133 @@ declare const meta: {
|
|
|
7
7
|
args: {
|
|
8
8
|
[x: `data-${string}`]: string;
|
|
9
9
|
topics: import('./DiscoverList').TopicProps[];
|
|
10
|
-
m?:
|
|
11
|
-
mt?:
|
|
12
|
-
mr?:
|
|
13
|
-
mb?:
|
|
14
|
-
ml?:
|
|
15
|
-
mx?:
|
|
16
|
-
my?:
|
|
17
|
-
p?:
|
|
18
|
-
pt?:
|
|
19
|
-
pr?:
|
|
20
|
-
pb?:
|
|
21
|
-
pl?:
|
|
22
|
-
px?:
|
|
23
|
-
py?:
|
|
24
|
-
borderColor?: import('../../..').ColorType
|
|
25
|
-
bg?:
|
|
26
|
-
color?:
|
|
27
|
-
radius?:
|
|
28
|
-
slot?: string | undefined;
|
|
10
|
+
m?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
11
|
+
mt?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
12
|
+
mr?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
13
|
+
mb?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
14
|
+
ml?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
15
|
+
mx?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
16
|
+
my?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
17
|
+
p?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
18
|
+
pt?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
19
|
+
pr?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
20
|
+
pb?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
21
|
+
pl?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
22
|
+
px?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
23
|
+
py?: import('../../..').SpacingType | import('../../..').TypeWithMediaQueriesType<import('../../..').SpacingType>;
|
|
24
|
+
borderColor?: import('../../..').ColorType;
|
|
25
|
+
bg?: import('../../..').ColorType | string;
|
|
26
|
+
color?: import('../../..').ColorType | string;
|
|
27
|
+
radius?: import('../../..').RadiusType | import('../../..').TypeWithMediaQueriesType<import('../../..').RadiusType>;
|
|
28
|
+
slot?: string | undefined | undefined;
|
|
29
29
|
style?: React.CSSProperties | undefined;
|
|
30
|
-
title?: string | undefined;
|
|
31
|
-
as?: import('../../..').As
|
|
30
|
+
title?: string | undefined | undefined;
|
|
31
|
+
as?: ((string | React.ComponentClass<any, any> | React.FunctionComponent<any>) & import('../../..').As) | undefined;
|
|
32
32
|
key?: React.Key | null | undefined;
|
|
33
|
-
defaultChecked?: boolean | undefined;
|
|
33
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
34
34
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
35
|
-
suppressContentEditableWarning?: boolean | undefined;
|
|
36
|
-
suppressHydrationWarning?: boolean | undefined;
|
|
37
|
-
accessKey?: string | undefined;
|
|
38
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {}) | undefined;
|
|
39
|
-
autoFocus?: boolean | undefined;
|
|
40
|
-
className?: string | undefined;
|
|
35
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
36
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
37
|
+
accessKey?: string | undefined | undefined;
|
|
38
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
39
|
+
autoFocus?: boolean | undefined | undefined;
|
|
40
|
+
className?: string | undefined | undefined;
|
|
41
41
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
42
|
-
contextMenu?: string | undefined;
|
|
43
|
-
dir?: string | undefined;
|
|
42
|
+
contextMenu?: string | undefined | undefined;
|
|
43
|
+
dir?: string | undefined | undefined;
|
|
44
44
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
45
|
-
enterKeyHint?: "
|
|
46
|
-
hidden?: boolean | undefined;
|
|
47
|
-
id?: string | undefined;
|
|
48
|
-
lang?: string | undefined;
|
|
49
|
-
nonce?: string | undefined;
|
|
45
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
46
|
+
hidden?: boolean | undefined | undefined;
|
|
47
|
+
id?: string | undefined | undefined;
|
|
48
|
+
lang?: string | undefined | undefined;
|
|
49
|
+
nonce?: string | undefined | undefined;
|
|
50
50
|
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
51
|
-
tabIndex?: number | undefined;
|
|
52
|
-
translate?: "yes" | "no" | undefined;
|
|
53
|
-
radioGroup?: string | undefined;
|
|
51
|
+
tabIndex?: number | undefined | undefined;
|
|
52
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
53
|
+
radioGroup?: string | undefined | undefined;
|
|
54
54
|
role?: React.AriaRole | undefined;
|
|
55
|
-
about?: string | undefined;
|
|
56
|
-
content?: string | undefined;
|
|
57
|
-
datatype?: string | undefined;
|
|
55
|
+
about?: string | undefined | undefined;
|
|
56
|
+
content?: string | undefined | undefined;
|
|
57
|
+
datatype?: string | undefined | undefined;
|
|
58
58
|
inlist?: any;
|
|
59
|
-
prefix?: string | undefined;
|
|
60
|
-
property?: string | undefined;
|
|
61
|
-
rel?: string | undefined;
|
|
62
|
-
resource?: string | undefined;
|
|
63
|
-
rev?: string | undefined;
|
|
64
|
-
typeof?: string | undefined;
|
|
65
|
-
vocab?: string | undefined;
|
|
66
|
-
autoCorrect?: string | undefined;
|
|
67
|
-
autoSave?: string | undefined;
|
|
68
|
-
itemProp?: string | undefined;
|
|
69
|
-
itemScope?: boolean | undefined;
|
|
70
|
-
itemType?: string | undefined;
|
|
71
|
-
itemID?: string | undefined;
|
|
72
|
-
itemRef?: string | undefined;
|
|
73
|
-
results?: number | undefined;
|
|
74
|
-
security?: string | undefined;
|
|
75
|
-
unselectable?: "
|
|
76
|
-
inputMode?: "
|
|
77
|
-
is?: string | undefined;
|
|
78
|
-
exportparts?: string | undefined;
|
|
79
|
-
part?: string | undefined;
|
|
80
|
-
"aria-activedescendant"?: string | undefined;
|
|
59
|
+
prefix?: string | undefined | undefined;
|
|
60
|
+
property?: string | undefined | undefined;
|
|
61
|
+
rel?: string | undefined | undefined;
|
|
62
|
+
resource?: string | undefined | undefined;
|
|
63
|
+
rev?: string | undefined | undefined;
|
|
64
|
+
typeof?: string | undefined | undefined;
|
|
65
|
+
vocab?: string | undefined | undefined;
|
|
66
|
+
autoCorrect?: string | undefined | undefined;
|
|
67
|
+
autoSave?: string | undefined | undefined;
|
|
68
|
+
itemProp?: string | undefined | undefined;
|
|
69
|
+
itemScope?: boolean | undefined | undefined;
|
|
70
|
+
itemType?: string | undefined | undefined;
|
|
71
|
+
itemID?: string | undefined | undefined;
|
|
72
|
+
itemRef?: string | undefined | undefined;
|
|
73
|
+
results?: number | undefined | undefined;
|
|
74
|
+
security?: string | undefined | undefined;
|
|
75
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
76
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
77
|
+
is?: string | undefined | undefined;
|
|
78
|
+
exportparts?: string | undefined | undefined;
|
|
79
|
+
part?: string | undefined | undefined;
|
|
80
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
81
81
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
82
|
-
"aria-autocomplete"?: "none" | "
|
|
83
|
-
"aria-braillelabel"?: string | undefined;
|
|
84
|
-
"aria-brailleroledescription"?: string | undefined;
|
|
82
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
83
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
84
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
85
85
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
86
|
-
"aria-checked"?: boolean | "
|
|
87
|
-
"aria-colcount"?: number | undefined;
|
|
88
|
-
"aria-colindex"?: number | undefined;
|
|
89
|
-
"aria-colindextext"?: string | undefined;
|
|
90
|
-
"aria-colspan"?: number | undefined;
|
|
91
|
-
"aria-controls"?: string | undefined;
|
|
92
|
-
"aria-current"?: boolean | "
|
|
93
|
-
"aria-describedby"?: string | undefined;
|
|
94
|
-
"aria-description"?: string | undefined;
|
|
95
|
-
"aria-details"?: string | undefined;
|
|
86
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
87
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
88
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
89
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
90
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
91
|
+
"aria-controls"?: string | undefined | undefined;
|
|
92
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
93
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
94
|
+
"aria-description"?: string | undefined | undefined;
|
|
95
|
+
"aria-details"?: string | undefined | undefined;
|
|
96
96
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
97
|
-
"aria-dropeffect"?: "
|
|
98
|
-
"aria-errormessage"?: string | undefined;
|
|
97
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
98
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
99
99
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
100
|
-
"aria-flowto"?: string | undefined;
|
|
100
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
101
101
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
102
|
-
"aria-haspopup"?: boolean | "
|
|
102
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
103
103
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
104
|
-
"aria-invalid"?: boolean | "
|
|
105
|
-
"aria-keyshortcuts"?: string | undefined;
|
|
106
|
-
"aria-label"?: string | undefined;
|
|
107
|
-
"aria-labelledby"?: string | undefined;
|
|
108
|
-
"aria-level"?: number | undefined;
|
|
109
|
-
"aria-live"?: "off" | "assertive" | "polite" | undefined;
|
|
104
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
105
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
106
|
+
"aria-label"?: string | undefined | undefined;
|
|
107
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
108
|
+
"aria-level"?: number | undefined | undefined;
|
|
109
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
110
110
|
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
111
111
|
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
112
112
|
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
113
|
-
"aria-orientation"?: "horizontal" | "vertical" | undefined;
|
|
114
|
-
"aria-owns"?: string | undefined;
|
|
115
|
-
"aria-placeholder"?: string | undefined;
|
|
116
|
-
"aria-posinset"?: number | undefined;
|
|
117
|
-
"aria-pressed"?: boolean | "
|
|
113
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
114
|
+
"aria-owns"?: string | undefined | undefined;
|
|
115
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
116
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
117
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
118
118
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
119
|
-
"aria-relevant"?: "
|
|
119
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
120
120
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
121
|
-
"aria-roledescription"?: string | undefined;
|
|
122
|
-
"aria-rowcount"?: number | undefined;
|
|
123
|
-
"aria-rowindex"?: number | undefined;
|
|
124
|
-
"aria-rowindextext"?: string | undefined;
|
|
125
|
-
"aria-rowspan"?: number | undefined;
|
|
121
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
122
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
123
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
124
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
125
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
126
126
|
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
127
|
-
"aria-setsize"?: number | undefined;
|
|
128
|
-
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined;
|
|
129
|
-
"aria-valuemax"?: number | undefined;
|
|
130
|
-
"aria-valuemin"?: number | undefined;
|
|
131
|
-
"aria-valuenow"?: number | undefined;
|
|
132
|
-
"aria-valuetext"?: string | undefined;
|
|
127
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
128
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
129
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
130
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
131
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
132
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
133
133
|
children?: React.ReactNode;
|
|
134
134
|
dangerouslySetInnerHTML?: {
|
|
135
135
|
__html: string | TrustedHTML;
|
|
136
|
-
} | undefined;
|
|
136
|
+
} | undefined | undefined;
|
|
137
137
|
onCopy?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
138
138
|
onCopyCapture?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
139
139
|
onCut?: React.ClipboardEventHandler<HTMLDivElement> | undefined;
|
|
@@ -8,40 +8,40 @@ declare const meta: {
|
|
|
8
8
|
searchFormProps: {
|
|
9
9
|
inputProps: {
|
|
10
10
|
placeholder: string;
|
|
11
|
-
label?: string
|
|
12
|
-
icon?: import('../../../../types').IconNameType
|
|
13
|
-
positionIcon?: "left" | "right"
|
|
14
|
-
isIconButton?: boolean
|
|
15
|
-
iconButtonProps?: import('../../..').ButtonProps
|
|
16
|
-
variant?: "
|
|
17
|
-
msg?: import('../../../../types').MessageType[]
|
|
18
|
-
containerProps?: import('../../..').FlexProps
|
|
19
|
-
isRounded?: boolean
|
|
20
|
-
isTransparent?: boolean
|
|
21
|
-
isLarge?: boolean
|
|
22
|
-
hint?: string
|
|
23
|
-
error?: string
|
|
24
|
-
color?:
|
|
11
|
+
label?: string;
|
|
12
|
+
icon?: import('../../../../types').IconNameType;
|
|
13
|
+
positionIcon?: "left" | "right";
|
|
14
|
+
isIconButton?: boolean;
|
|
15
|
+
iconButtonProps?: import('../../..').ButtonProps;
|
|
16
|
+
variant?: "success" | "error";
|
|
17
|
+
msg?: import('../../../../types').MessageType[];
|
|
18
|
+
containerProps?: import('../../..').FlexProps;
|
|
19
|
+
isRounded?: boolean;
|
|
20
|
+
isTransparent?: boolean;
|
|
21
|
+
isLarge?: boolean;
|
|
22
|
+
hint?: string;
|
|
23
|
+
error?: string;
|
|
24
|
+
color?: import('../../../../types').ColorType | string;
|
|
25
25
|
form?: string | undefined;
|
|
26
26
|
slot?: string | undefined;
|
|
27
27
|
style?: import('react').CSSProperties | undefined;
|
|
28
28
|
title?: string | undefined;
|
|
29
29
|
pattern?: string | undefined;
|
|
30
|
-
as?: import('
|
|
30
|
+
as?: ((string | import('react').ComponentClass<any, any> | import('react').FunctionComponent<any>) & import('../../../../types').As) | undefined;
|
|
31
31
|
key?: import('react').Key | null | undefined;
|
|
32
32
|
defaultChecked?: boolean | undefined;
|
|
33
33
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
34
34
|
suppressContentEditableWarning?: boolean | undefined;
|
|
35
35
|
suppressHydrationWarning?: boolean | undefined;
|
|
36
36
|
accessKey?: string | undefined;
|
|
37
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {})
|
|
37
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
38
38
|
autoFocus?: boolean | undefined;
|
|
39
39
|
className?: string | undefined;
|
|
40
40
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
41
41
|
contextMenu?: string | undefined;
|
|
42
42
|
dir?: string | undefined;
|
|
43
43
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
44
|
-
enterKeyHint?: "
|
|
44
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
45
45
|
hidden?: boolean | undefined;
|
|
46
46
|
id?: string | undefined;
|
|
47
47
|
lang?: string | undefined;
|
|
@@ -71,36 +71,36 @@ declare const meta: {
|
|
|
71
71
|
itemRef?: string | undefined;
|
|
72
72
|
results?: number | undefined;
|
|
73
73
|
security?: string | undefined;
|
|
74
|
-
unselectable?: "
|
|
75
|
-
inputMode?: "
|
|
74
|
+
unselectable?: "on" | "off" | undefined;
|
|
75
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
76
76
|
is?: string | undefined;
|
|
77
77
|
exportparts?: string | undefined;
|
|
78
78
|
part?: string | undefined;
|
|
79
79
|
"aria-activedescendant"?: string | undefined;
|
|
80
80
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
81
|
-
"aria-autocomplete"?: "none" | "
|
|
81
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
82
82
|
"aria-braillelabel"?: string | undefined;
|
|
83
83
|
"aria-brailleroledescription"?: string | undefined;
|
|
84
84
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
85
|
-
"aria-checked"?: boolean | "
|
|
85
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
86
86
|
"aria-colcount"?: number | undefined;
|
|
87
87
|
"aria-colindex"?: number | undefined;
|
|
88
88
|
"aria-colindextext"?: string | undefined;
|
|
89
89
|
"aria-colspan"?: number | undefined;
|
|
90
90
|
"aria-controls"?: string | undefined;
|
|
91
|
-
"aria-current"?: boolean | "
|
|
91
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
92
92
|
"aria-describedby"?: string | undefined;
|
|
93
93
|
"aria-description"?: string | undefined;
|
|
94
94
|
"aria-details"?: string | undefined;
|
|
95
95
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
96
|
-
"aria-dropeffect"?: "
|
|
96
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
97
97
|
"aria-errormessage"?: string | undefined;
|
|
98
98
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
99
99
|
"aria-flowto"?: string | undefined;
|
|
100
100
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
101
|
-
"aria-haspopup"?: boolean | "
|
|
101
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
102
102
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
103
|
-
"aria-invalid"?: boolean | "
|
|
103
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
104
104
|
"aria-keyshortcuts"?: string | undefined;
|
|
105
105
|
"aria-label"?: string | undefined;
|
|
106
106
|
"aria-labelledby"?: string | undefined;
|
|
@@ -113,9 +113,9 @@ declare const meta: {
|
|
|
113
113
|
"aria-owns"?: string | undefined;
|
|
114
114
|
"aria-placeholder"?: string | undefined;
|
|
115
115
|
"aria-posinset"?: number | undefined;
|
|
116
|
-
"aria-pressed"?: boolean | "
|
|
116
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
117
117
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
118
|
-
"aria-relevant"?: "
|
|
118
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
119
119
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
120
120
|
"aria-roledescription"?: string | undefined;
|
|
121
121
|
"aria-rowcount"?: number | undefined;
|
|
@@ -129,7 +129,7 @@ declare const meta: {
|
|
|
129
129
|
"aria-valuemin"?: number | undefined;
|
|
130
130
|
"aria-valuenow"?: number | undefined;
|
|
131
131
|
"aria-valuetext"?: string | undefined;
|
|
132
|
-
children?: import('react').ReactNode;
|
|
132
|
+
children?: import('react').ReactNode | undefined;
|
|
133
133
|
dangerouslySetInnerHTML?: {
|
|
134
134
|
__html: string | TrustedHTML;
|
|
135
135
|
} | undefined;
|
|
@@ -292,76 +292,76 @@ declare const meta: {
|
|
|
292
292
|
onTransitionEnd?: import('react').TransitionEventHandler<HTMLInputElement> | undefined;
|
|
293
293
|
onTransitionEndCapture?: import('react').TransitionEventHandler<HTMLInputElement> | undefined;
|
|
294
294
|
list?: string | undefined;
|
|
295
|
-
step?:
|
|
295
|
+
step?: number | string | undefined;
|
|
296
296
|
disabled?: boolean | undefined;
|
|
297
|
-
formAction?: string | undefined;
|
|
297
|
+
formAction?: string | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_EXPERIMENTAL_FORM_ACTIONS] | undefined;
|
|
298
298
|
formEncType?: string | undefined;
|
|
299
299
|
formMethod?: string | undefined;
|
|
300
300
|
formNoValidate?: boolean | undefined;
|
|
301
301
|
formTarget?: string | undefined;
|
|
302
302
|
name?: string | undefined;
|
|
303
303
|
type?: import('react').HTMLInputTypeAttribute | undefined;
|
|
304
|
-
value?: string |
|
|
304
|
+
value?: string | readonly string[] | number | undefined;
|
|
305
305
|
size?: number | undefined;
|
|
306
306
|
accept?: string | undefined;
|
|
307
307
|
alt?: string | undefined;
|
|
308
308
|
autoComplete?: import('react').HTMLInputAutoCompleteAttribute | undefined;
|
|
309
309
|
capture?: boolean | "user" | "environment" | undefined;
|
|
310
310
|
checked?: boolean | undefined;
|
|
311
|
-
height?:
|
|
312
|
-
max?:
|
|
311
|
+
height?: number | string | undefined;
|
|
312
|
+
max?: number | string | undefined;
|
|
313
313
|
maxLength?: number | undefined;
|
|
314
|
-
min?:
|
|
314
|
+
min?: number | string | undefined;
|
|
315
315
|
minLength?: number | undefined;
|
|
316
316
|
multiple?: boolean | undefined;
|
|
317
317
|
readOnly?: boolean | undefined;
|
|
318
318
|
required?: boolean | undefined;
|
|
319
319
|
src?: string | undefined;
|
|
320
|
-
width?:
|
|
320
|
+
width?: number | string | undefined;
|
|
321
321
|
};
|
|
322
322
|
id: string;
|
|
323
323
|
url: string;
|
|
324
324
|
autocompleteResults?: {
|
|
325
325
|
value: string;
|
|
326
326
|
url: string;
|
|
327
|
-
}[]
|
|
328
|
-
ariaLabel?: string
|
|
329
|
-
m?:
|
|
330
|
-
mt?:
|
|
331
|
-
mr?:
|
|
332
|
-
mb?:
|
|
333
|
-
ml?:
|
|
334
|
-
mx?:
|
|
335
|
-
my?:
|
|
336
|
-
p?:
|
|
337
|
-
pt?:
|
|
338
|
-
pr?:
|
|
339
|
-
pb?:
|
|
340
|
-
pl?:
|
|
341
|
-
px?:
|
|
342
|
-
py?:
|
|
343
|
-
borderColor?: import('../../../../types').ColorType
|
|
344
|
-
bg?:
|
|
345
|
-
color?:
|
|
346
|
-
radius?:
|
|
327
|
+
}[];
|
|
328
|
+
ariaLabel?: string;
|
|
329
|
+
m?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
330
|
+
mt?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
331
|
+
mr?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
332
|
+
mb?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
333
|
+
ml?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
334
|
+
mx?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
335
|
+
my?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
336
|
+
p?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
337
|
+
pt?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
338
|
+
pr?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
339
|
+
pb?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
340
|
+
pl?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
341
|
+
px?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
342
|
+
py?: import('../../../../types').SpacingType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').SpacingType>;
|
|
343
|
+
borderColor?: import('../../../../types').ColorType;
|
|
344
|
+
bg?: import('../../../../types').ColorType | string;
|
|
345
|
+
color?: import('../../../../types').ColorType | string;
|
|
346
|
+
radius?: import('../../../../types').RadiusType | import('../../../../types').TypeWithMediaQueriesType<import('../../../../types').RadiusType>;
|
|
347
347
|
slot?: string | undefined;
|
|
348
348
|
style?: import('react').CSSProperties | undefined;
|
|
349
349
|
title?: string | undefined;
|
|
350
|
-
as?: import('
|
|
350
|
+
as?: ((string | import('react').ComponentClass<any, any> | import('react').FunctionComponent<any>) & import('../../../../types').As) | undefined;
|
|
351
351
|
key?: import('react').Key | null | undefined;
|
|
352
352
|
defaultChecked?: boolean | undefined;
|
|
353
353
|
defaultValue?: string | number | readonly string[] | undefined;
|
|
354
354
|
suppressContentEditableWarning?: boolean | undefined;
|
|
355
355
|
suppressHydrationWarning?: boolean | undefined;
|
|
356
356
|
accessKey?: string | undefined;
|
|
357
|
-
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | (string & {})
|
|
357
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {});
|
|
358
358
|
autoFocus?: boolean | undefined;
|
|
359
359
|
className?: string | undefined;
|
|
360
360
|
contentEditable?: (boolean | "true" | "false") | "inherit" | "plaintext-only" | undefined;
|
|
361
361
|
contextMenu?: string | undefined;
|
|
362
362
|
dir?: string | undefined;
|
|
363
363
|
draggable?: (boolean | "true" | "false") | undefined;
|
|
364
|
-
enterKeyHint?: "
|
|
364
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined;
|
|
365
365
|
hidden?: boolean | undefined;
|
|
366
366
|
lang?: string | undefined;
|
|
367
367
|
nonce?: string | undefined;
|
|
@@ -390,36 +390,36 @@ declare const meta: {
|
|
|
390
390
|
itemRef?: string | undefined;
|
|
391
391
|
results?: number | undefined;
|
|
392
392
|
security?: string | undefined;
|
|
393
|
-
unselectable?: "
|
|
394
|
-
inputMode?: "
|
|
393
|
+
unselectable?: "on" | "off" | undefined;
|
|
394
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined;
|
|
395
395
|
is?: string | undefined;
|
|
396
396
|
exportparts?: string | undefined;
|
|
397
397
|
part?: string | undefined;
|
|
398
398
|
"aria-activedescendant"?: string | undefined;
|
|
399
399
|
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
400
|
-
"aria-autocomplete"?: "none" | "
|
|
400
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined;
|
|
401
401
|
"aria-braillelabel"?: string | undefined;
|
|
402
402
|
"aria-brailleroledescription"?: string | undefined;
|
|
403
403
|
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
404
|
-
"aria-checked"?: boolean | "
|
|
404
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
405
405
|
"aria-colcount"?: number | undefined;
|
|
406
406
|
"aria-colindex"?: number | undefined;
|
|
407
407
|
"aria-colindextext"?: string | undefined;
|
|
408
408
|
"aria-colspan"?: number | undefined;
|
|
409
409
|
"aria-controls"?: string | undefined;
|
|
410
|
-
"aria-current"?: boolean | "
|
|
410
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined;
|
|
411
411
|
"aria-describedby"?: string | undefined;
|
|
412
412
|
"aria-description"?: string | undefined;
|
|
413
413
|
"aria-details"?: string | undefined;
|
|
414
414
|
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
415
|
-
"aria-dropeffect"?: "
|
|
415
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined;
|
|
416
416
|
"aria-errormessage"?: string | undefined;
|
|
417
417
|
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
418
418
|
"aria-flowto"?: string | undefined;
|
|
419
419
|
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
420
|
-
"aria-haspopup"?: boolean | "
|
|
420
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined;
|
|
421
421
|
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
422
|
-
"aria-invalid"?: boolean | "
|
|
422
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
|
423
423
|
"aria-keyshortcuts"?: string | undefined;
|
|
424
424
|
"aria-label"?: string | undefined;
|
|
425
425
|
"aria-labelledby"?: string | undefined;
|
|
@@ -432,9 +432,9 @@ declare const meta: {
|
|
|
432
432
|
"aria-owns"?: string | undefined;
|
|
433
433
|
"aria-placeholder"?: string | undefined;
|
|
434
434
|
"aria-posinset"?: number | undefined;
|
|
435
|
-
"aria-pressed"?: boolean | "
|
|
435
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined;
|
|
436
436
|
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
437
|
-
"aria-relevant"?: "
|
|
437
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined;
|
|
438
438
|
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
439
439
|
"aria-roledescription"?: string | undefined;
|
|
440
440
|
"aria-rowcount"?: number | undefined;
|
|
@@ -448,7 +448,7 @@ declare const meta: {
|
|
|
448
448
|
"aria-valuemin"?: number | undefined;
|
|
449
449
|
"aria-valuenow"?: number | undefined;
|
|
450
450
|
"aria-valuetext"?: string | undefined;
|
|
451
|
-
children?: import('react').ReactNode;
|
|
451
|
+
children?: import('react').ReactNode | undefined;
|
|
452
452
|
dangerouslySetInnerHTML?: {
|
|
453
453
|
__html: string | TrustedHTML;
|
|
454
454
|
} | undefined;
|