@pingux/astro 2.32.0-alpha.14 → 2.32.0-alpha.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/cjs/hooks/useField/index.d.ts +1 -0
- package/lib/cjs/hooks/useField/useField.d.ts +1686 -0
- package/lib/cjs/hooks/useField/useField.js +7 -16
- package/lib/cjs/hooks/useField/useField.test.d.ts +1 -0
- package/lib/cjs/hooks/useField/useField.test.js +6 -6
- package/lib/cjs/hooks/useStatusClasses/index.d.ts +1 -0
- package/lib/cjs/hooks/useStatusClasses/useStatusClasses.d.ts +18 -0
- package/lib/cjs/hooks/useStatusClasses/useStatusClasses.js +0 -9
- package/lib/cjs/hooks/useStatusClasses/useStatusClasses.test.d.ts +1 -0
- package/lib/hooks/useField/useField.js +7 -16
- package/lib/hooks/useField/useField.test.js +6 -6
- package/lib/hooks/useStatusClasses/useStatusClasses.js +0 -10
- package/package.json +1 -1
@@ -0,0 +1,1686 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
/// <reference types="react" />
|
3
|
+
import { LabelProps as ThemeUILabelProps } from 'theme-ui';
|
4
|
+
import { BoxProps } from '../../types';
|
5
|
+
/**
|
6
|
+
* Generates the necessary props to be used in field components.
|
7
|
+
* @param {{}} props Props for the field
|
8
|
+
* @returns {{}} Prop objects to be spread into field components.
|
9
|
+
*/
|
10
|
+
interface WrapperProps extends BoxProps {
|
11
|
+
id?: string;
|
12
|
+
statusClasses?: {
|
13
|
+
[className: string]: boolean;
|
14
|
+
};
|
15
|
+
}
|
16
|
+
interface ContainerProps extends WrapperProps {
|
17
|
+
isFloatLabelActive?: boolean;
|
18
|
+
}
|
19
|
+
interface LabelProps extends ThemeUILabelProps {
|
20
|
+
labelMode?: 'default' | 'float' | 'left';
|
21
|
+
statusClasses?: {
|
22
|
+
[className: string]: boolean;
|
23
|
+
};
|
24
|
+
}
|
25
|
+
interface ControlProps<T> extends React.HTMLAttributes<T> {
|
26
|
+
statusClasses?: {
|
27
|
+
[className: string]: boolean;
|
28
|
+
};
|
29
|
+
}
|
30
|
+
export interface UseFieldProps<T> {
|
31
|
+
autocomplete?: string;
|
32
|
+
autoComplete?: string;
|
33
|
+
autoCorrect?: string;
|
34
|
+
children?: React.ReactNode;
|
35
|
+
className?: string;
|
36
|
+
containerProps?: ContainerProps;
|
37
|
+
controlProps?: ControlProps<T>;
|
38
|
+
defaultText?: string;
|
39
|
+
defaultValue?: string | number;
|
40
|
+
direction?: string;
|
41
|
+
disabledKeys?: string[];
|
42
|
+
hasAutoFocus?: boolean;
|
43
|
+
hasNoStatusIndicator?: boolean;
|
44
|
+
helperText?: string;
|
45
|
+
hintText?: string;
|
46
|
+
id?: string;
|
47
|
+
isDefaultSelected?: boolean;
|
48
|
+
isDisabled?: boolean;
|
49
|
+
isIndeterminate?: boolean;
|
50
|
+
isReadOnly?: boolean;
|
51
|
+
isRequired?: boolean;
|
52
|
+
isRestrictiveMultivalues?: boolean;
|
53
|
+
isSelected?: boolean;
|
54
|
+
label?: string;
|
55
|
+
labelMode?: string;
|
56
|
+
labelProps?: LabelProps;
|
57
|
+
maxLength?: number;
|
58
|
+
name?: string;
|
59
|
+
onBlur?: (e: React.FocusEvent) => void;
|
60
|
+
onChange?: (e: React.ChangeEvent) => void;
|
61
|
+
onClear?: () => void;
|
62
|
+
onFocus?: (e: React.FocusEvent) => void;
|
63
|
+
onFocusChange?: (isFocused: boolean) => void;
|
64
|
+
onLoadMore?: () => void;
|
65
|
+
onOpenChange?: () => void;
|
66
|
+
onSelectionChange?: (key: string) => void;
|
67
|
+
placeholder?: string | number;
|
68
|
+
role?: string;
|
69
|
+
selectedKey?: string;
|
70
|
+
spellCheck?: string;
|
71
|
+
status?: string;
|
72
|
+
statusClasses?: {
|
73
|
+
[className: string]: boolean;
|
74
|
+
};
|
75
|
+
type?: string;
|
76
|
+
value?: string | number;
|
77
|
+
wrapperProps?: WrapperProps;
|
78
|
+
}
|
79
|
+
type CustomChangeEventType = {
|
80
|
+
target?: {
|
81
|
+
value: string | number | undefined;
|
82
|
+
};
|
83
|
+
persist?(): void;
|
84
|
+
};
|
85
|
+
declare const useField: <T>(props: UseFieldProps<T>) => {
|
86
|
+
fieldContainerProps: any;
|
87
|
+
fieldControlInputProps: {
|
88
|
+
'aria-label'?: string | undefined;
|
89
|
+
'aria-labelledby'?: string | undefined;
|
90
|
+
'aria-describedby'?: string | undefined;
|
91
|
+
'aria-details'?: string | undefined;
|
92
|
+
id: string | undefined;
|
93
|
+
autoComplete: string | undefined;
|
94
|
+
autoCorrect: string | undefined;
|
95
|
+
autoFocus: boolean | undefined;
|
96
|
+
className: string;
|
97
|
+
defaultSelected: boolean | undefined;
|
98
|
+
defaultValue: string | number | undefined;
|
99
|
+
disabled: boolean | undefined;
|
100
|
+
isFocused: boolean;
|
101
|
+
isIndeterminate: boolean | undefined;
|
102
|
+
maxLength: number | undefined;
|
103
|
+
name: string | undefined;
|
104
|
+
onChange: (e: CustomChangeEventType) => any;
|
105
|
+
placeholder: string | number | undefined;
|
106
|
+
readOnly: boolean | undefined;
|
107
|
+
required: boolean | undefined;
|
108
|
+
role: string | undefined;
|
109
|
+
spellCheck: string | undefined;
|
110
|
+
type: string | undefined;
|
111
|
+
value: string | number | undefined;
|
112
|
+
};
|
113
|
+
fieldControlWrapperProps: {
|
114
|
+
id?: string | undefined;
|
115
|
+
statusClasses?: {
|
116
|
+
[className: string]: boolean;
|
117
|
+
} | undefined;
|
118
|
+
bg?: import("theme-ui").StylePropertyValue<string | undefined>;
|
119
|
+
isRow?: boolean | undefined;
|
120
|
+
isDisabled?: boolean | undefined;
|
121
|
+
variant?: string | undefined;
|
122
|
+
as?: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | import("react").ReactPortal | import("react").ComponentClass<any, any> | import("react").FunctionComponent<any> | null | undefined;
|
123
|
+
grid?: import("theme-ui").StylePropertyValue<import("csstype").Property.Grid | undefined>;
|
124
|
+
accentColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.AccentColor | undefined>;
|
125
|
+
alignContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignContent | undefined>;
|
126
|
+
alignItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignItems | undefined>;
|
127
|
+
alignSelf?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignSelf | undefined>;
|
128
|
+
alignTracks?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignTracks | undefined>;
|
129
|
+
animationComposition?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationComposition | undefined>;
|
130
|
+
animationDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
|
131
|
+
animationDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDirection | undefined>;
|
132
|
+
animationDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
|
133
|
+
animationFillMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationFillMode | undefined>;
|
134
|
+
animationIterationCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationIterationCount | undefined>;
|
135
|
+
animationName?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationName | undefined>;
|
136
|
+
animationPlayState?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationPlayState | undefined>;
|
137
|
+
animationTimeline?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationTimeline | undefined>;
|
138
|
+
animationTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationTimingFunction | undefined>;
|
139
|
+
appearance?: import("theme-ui").StylePropertyValue<import("csstype").Property.Appearance | undefined>;
|
140
|
+
aspectRatio?: import("theme-ui").StylePropertyValue<import("csstype").Property.AspectRatio | undefined>;
|
141
|
+
backdropFilter?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackdropFilter | undefined>;
|
142
|
+
backfaceVisibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackfaceVisibility | undefined>;
|
143
|
+
backgroundAttachment?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundAttachment | undefined>;
|
144
|
+
backgroundBlendMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundBlendMode | undefined>;
|
145
|
+
backgroundClip?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundClip | undefined>;
|
146
|
+
backgroundColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundColor | undefined>;
|
147
|
+
backgroundImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundImage | undefined>;
|
148
|
+
backgroundOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundOrigin | undefined>;
|
149
|
+
backgroundPositionX?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundPositionX<string | number> | undefined>;
|
150
|
+
backgroundPositionY?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundPositionY<string | number> | undefined>;
|
151
|
+
backgroundRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundRepeat | undefined>;
|
152
|
+
backgroundSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
|
153
|
+
blockOverflow?: import("theme-ui").StylePropertyValue<import("csstype").Property.BlockOverflow | undefined>;
|
154
|
+
blockSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.BlockSize<string | number> | undefined>;
|
155
|
+
borderBlockColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockColor | undefined>;
|
156
|
+
borderBlockEndColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockEndColor | undefined>;
|
157
|
+
borderBlockEndStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockEndStyle | undefined>;
|
158
|
+
borderBlockEndWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>;
|
159
|
+
borderBlockStartColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockStartColor | undefined>;
|
160
|
+
borderBlockStartStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockStartStyle | undefined>;
|
161
|
+
borderBlockStartWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>;
|
162
|
+
borderBlockStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockStyle | undefined>;
|
163
|
+
borderBlockWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockWidth<string | number> | undefined>;
|
164
|
+
borderBottomColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomColor | undefined>;
|
165
|
+
borderBottomLeftRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
|
166
|
+
borderBottomRightRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
|
167
|
+
borderBottomWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomWidth<string | number> | undefined>;
|
168
|
+
borderCollapse?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderCollapse | undefined>;
|
169
|
+
borderEndEndRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>;
|
170
|
+
borderEndStartRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>;
|
171
|
+
borderImageOutset?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageOutset<string | number> | undefined>;
|
172
|
+
borderImageRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageRepeat | undefined>;
|
173
|
+
borderImageSlice?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageSlice | undefined>;
|
174
|
+
borderImageSource?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageSource | undefined>;
|
175
|
+
borderImageWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageWidth<string | number> | undefined>;
|
176
|
+
borderInlineColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineColor | undefined>;
|
177
|
+
borderInlineEndColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndColor | undefined>;
|
178
|
+
borderInlineEndStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
|
179
|
+
borderInlineEndWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
|
180
|
+
borderInlineStartColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStartColor | undefined>;
|
181
|
+
borderInlineStartStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
|
182
|
+
borderInlineStartWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>;
|
183
|
+
borderInlineStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStyle | undefined>;
|
184
|
+
borderInlineWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineWidth<string | number> | undefined>;
|
185
|
+
borderLeftColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderLeftColor | undefined>;
|
186
|
+
borderLeftWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderLeftWidth<string | number> | undefined>;
|
187
|
+
borderRightColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRightColor | undefined>;
|
188
|
+
borderRightWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRightWidth<string | number> | undefined>;
|
189
|
+
borderSpacing?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderSpacing<string | number> | undefined>;
|
190
|
+
borderStartEndRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>;
|
191
|
+
borderStartStartRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>;
|
192
|
+
borderTopColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopColor | undefined>;
|
193
|
+
borderTopLeftRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
|
194
|
+
borderTopRightRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
|
195
|
+
borderTopWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopWidth<string | number> | undefined>;
|
196
|
+
bottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.Bottom<string | number> | undefined>;
|
197
|
+
boxDecorationBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxDecorationBreak | undefined>;
|
198
|
+
boxSizing?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxSizing | undefined>;
|
199
|
+
breakAfter?: import("theme-ui").StylePropertyValue<import("csstype").Property.BreakAfter | undefined>;
|
200
|
+
breakBefore?: import("theme-ui").StylePropertyValue<import("csstype").Property.BreakBefore | undefined>;
|
201
|
+
breakInside?: import("theme-ui").StylePropertyValue<import("csstype").Property.BreakInside | undefined>;
|
202
|
+
captionSide?: import("theme-ui").StylePropertyValue<import("csstype").Property.CaptionSide | undefined>;
|
203
|
+
caretColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.CaretColor | undefined>;
|
204
|
+
clear?: import("theme-ui").StylePropertyValue<import("csstype").Property.Clear | undefined>;
|
205
|
+
clipPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.ClipPath | undefined>;
|
206
|
+
color?: import("theme-ui").StylePropertyValue<import("csstype").Property.Color | undefined>;
|
207
|
+
colorAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.PrintColorAdjust | undefined>;
|
208
|
+
colorScheme?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorScheme | undefined>;
|
209
|
+
columnCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnCount | undefined>;
|
210
|
+
columnFill?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnFill | undefined>;
|
211
|
+
columnGap?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnGap<string | number> | undefined>;
|
212
|
+
columnRuleColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleColor | undefined>;
|
213
|
+
columnRuleStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleStyle | undefined>;
|
214
|
+
columnRuleWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
|
215
|
+
columnSpan?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnSpan | undefined>;
|
216
|
+
columnWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
|
217
|
+
contain?: import("theme-ui").StylePropertyValue<import("csstype").Property.Contain | undefined>;
|
218
|
+
content?: import("theme-ui").StylePropertyValue<import("csstype").Property.Content | undefined>;
|
219
|
+
contentVisibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.ContentVisibility | undefined>;
|
220
|
+
counterIncrement?: import("theme-ui").StylePropertyValue<import("csstype").Property.CounterIncrement | undefined>;
|
221
|
+
counterReset?: import("theme-ui").StylePropertyValue<import("csstype").Property.CounterReset | undefined>;
|
222
|
+
counterSet?: import("theme-ui").StylePropertyValue<import("csstype").Property.CounterSet | undefined>;
|
223
|
+
cursor?: import("theme-ui").StylePropertyValue<import("csstype").Property.Cursor | undefined>;
|
224
|
+
direction?: import("theme-ui").StylePropertyValue<import("csstype").Property.Direction | undefined>;
|
225
|
+
display?: import("theme-ui").StylePropertyValue<import("csstype").Property.Display | undefined>;
|
226
|
+
emptyCells?: import("theme-ui").StylePropertyValue<import("csstype").Property.EmptyCells | undefined>;
|
227
|
+
filter?: import("theme-ui").StylePropertyValue<import("csstype").Property.Filter | undefined>;
|
228
|
+
flexBasis?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
|
229
|
+
flexDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexDirection | undefined>;
|
230
|
+
flexGrow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexGrow | undefined>;
|
231
|
+
flexShrink?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexShrink | undefined>;
|
232
|
+
flexWrap?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexWrap | undefined>;
|
233
|
+
float?: import("theme-ui").StylePropertyValue<import("csstype").Property.Float | undefined>;
|
234
|
+
fontFamily?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontFamily | undefined>;
|
235
|
+
fontFeatureSettings?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontFeatureSettings | undefined>;
|
236
|
+
fontKerning?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontKerning | undefined>;
|
237
|
+
fontLanguageOverride?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontLanguageOverride | undefined>;
|
238
|
+
fontOpticalSizing?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontOpticalSizing | undefined>;
|
239
|
+
fontSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSize<string | number> | undefined>;
|
240
|
+
fontSizeAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSizeAdjust | undefined>;
|
241
|
+
fontSmooth?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
|
242
|
+
fontStretch?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontStretch | undefined>;
|
243
|
+
fontStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontStyle | undefined>;
|
244
|
+
fontSynthesis?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSynthesis | undefined>;
|
245
|
+
fontVariant?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariant | undefined>;
|
246
|
+
fontVariantAlternates?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantAlternates | undefined>;
|
247
|
+
fontVariantCaps?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantCaps | undefined>;
|
248
|
+
fontVariantEastAsian?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantEastAsian | undefined>;
|
249
|
+
fontVariantLigatures?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantLigatures | undefined>;
|
250
|
+
fontVariantNumeric?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantNumeric | undefined>;
|
251
|
+
fontVariantPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantPosition | undefined>;
|
252
|
+
fontVariationSettings?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariationSettings | undefined>;
|
253
|
+
forcedColorAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.ForcedColorAdjust | undefined>;
|
254
|
+
gridAutoColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridAutoColumns<string | number> | undefined>;
|
255
|
+
gridAutoFlow?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridAutoFlow | undefined>;
|
256
|
+
gridAutoRows?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridAutoRows<string | number> | undefined>;
|
257
|
+
gridColumnEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridColumnEnd | undefined>;
|
258
|
+
gridColumnStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridColumnStart | undefined>;
|
259
|
+
gridRowEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridRowEnd | undefined>;
|
260
|
+
gridRowStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridRowStart | undefined>;
|
261
|
+
gridTemplateAreas?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplateAreas | undefined>;
|
262
|
+
gridTemplateColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplateColumns<string | number> | undefined>;
|
263
|
+
gridTemplateRows?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplateRows<string | number> | undefined>;
|
264
|
+
hangingPunctuation?: import("theme-ui").StylePropertyValue<import("csstype").Property.HangingPunctuation | undefined>;
|
265
|
+
height?: import("theme-ui").StylePropertyValue<import("csstype").Property.Height<string | number> | undefined>;
|
266
|
+
hyphenateCharacter?: import("theme-ui").StylePropertyValue<import("csstype").Property.HyphenateCharacter | undefined>;
|
267
|
+
hyphens?: import("theme-ui").StylePropertyValue<import("csstype").Property.Hyphens | undefined>;
|
268
|
+
imageOrientation?: import("theme-ui").StylePropertyValue<import("csstype").Property.ImageOrientation | undefined>;
|
269
|
+
imageRendering?: import("theme-ui").StylePropertyValue<import("csstype").Property.ImageRendering | undefined>;
|
270
|
+
imageResolution?: import("theme-ui").StylePropertyValue<import("csstype").Property.ImageResolution | undefined>;
|
271
|
+
initialLetter?: import("theme-ui").StylePropertyValue<import("csstype").Property.InitialLetter | undefined>;
|
272
|
+
inlineSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.InlineSize<string | number> | undefined>;
|
273
|
+
inputSecurity?: import("theme-ui").StylePropertyValue<import("csstype").Property.InputSecurity | undefined>;
|
274
|
+
inset?: import("theme-ui").StylePropertyValue<import("csstype").Property.Inset<string | number> | undefined>;
|
275
|
+
insetBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetBlock<string | number> | undefined>;
|
276
|
+
insetBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetBlockEnd<string | number> | undefined>;
|
277
|
+
insetBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetBlockStart<string | number> | undefined>;
|
278
|
+
insetInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetInline<string | number> | undefined>;
|
279
|
+
insetInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetInlineEnd<string | number> | undefined>;
|
280
|
+
insetInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.InsetInlineStart<string | number> | undefined>;
|
281
|
+
isolation?: import("theme-ui").StylePropertyValue<import("csstype").Property.Isolation | undefined>;
|
282
|
+
justifyContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.JustifyContent | undefined>;
|
283
|
+
justifyItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.JustifyItems | undefined>;
|
284
|
+
justifySelf?: import("theme-ui").StylePropertyValue<import("csstype").Property.JustifySelf | undefined>;
|
285
|
+
justifyTracks?: import("theme-ui").StylePropertyValue<import("csstype").Property.JustifyTracks | undefined>;
|
286
|
+
left?: import("theme-ui").StylePropertyValue<import("csstype").Property.Left<string | number> | undefined>;
|
287
|
+
letterSpacing?: import("theme-ui").StylePropertyValue<import("csstype").Property.LetterSpacing<string | number> | undefined>;
|
288
|
+
lineBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineBreak | undefined>;
|
289
|
+
lineHeight?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineHeight<string | number> | undefined>;
|
290
|
+
lineHeightStep?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineHeightStep<string | number> | undefined>;
|
291
|
+
listStyleImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.ListStyleImage | undefined>;
|
292
|
+
listStylePosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.ListStylePosition | undefined>;
|
293
|
+
listStyleType?: import("theme-ui").StylePropertyValue<import("csstype").Property.ListStyleType | undefined>;
|
294
|
+
marginBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlock<string | number> | undefined>;
|
295
|
+
marginBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlockEnd<string | number> | undefined>;
|
296
|
+
marginBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBlockStart<string | number> | undefined>;
|
297
|
+
marginBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
|
298
|
+
marginInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInline<string | number> | undefined>;
|
299
|
+
marginInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
|
300
|
+
marginInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
|
301
|
+
marginLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
302
|
+
marginRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginRight<string | number> | undefined>;
|
303
|
+
marginTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
304
|
+
maskBorderMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderMode | undefined>;
|
305
|
+
maskBorderOutset?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
|
306
|
+
maskBorderRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderRepeat | undefined>;
|
307
|
+
maskBorderSlice?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderSlice | undefined>;
|
308
|
+
maskBorderSource?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderSource | undefined>;
|
309
|
+
maskBorderWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
|
310
|
+
maskClip?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskClip | undefined>;
|
311
|
+
maskComposite?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskComposite | undefined>;
|
312
|
+
maskImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskImage | undefined>;
|
313
|
+
maskMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskMode | undefined>;
|
314
|
+
maskOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskOrigin | undefined>;
|
315
|
+
maskPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskPosition<string | number> | undefined>;
|
316
|
+
maskRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskRepeat | undefined>;
|
317
|
+
maskSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskSize<string | number> | undefined>;
|
318
|
+
maskType?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskType | undefined>;
|
319
|
+
mathDepth?: import("theme-ui").StylePropertyValue<import("csstype").Property.MathDepth | undefined>;
|
320
|
+
mathShift?: import("theme-ui").StylePropertyValue<import("csstype").Property.MathShift | undefined>;
|
321
|
+
mathStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.MathStyle | undefined>;
|
322
|
+
maxBlockSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxBlockSize<string | number> | undefined>;
|
323
|
+
maxHeight?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxHeight<string | number> | undefined>;
|
324
|
+
maxInlineSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
|
325
|
+
maxLines?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxLines | undefined>;
|
326
|
+
maxWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxWidth<string | number> | undefined>;
|
327
|
+
minBlockSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MinBlockSize<string | number> | undefined>;
|
328
|
+
minHeight?: import("theme-ui").StylePropertyValue<import("csstype").Property.MinHeight<string | number> | undefined>;
|
329
|
+
minInlineSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MinInlineSize<string | number> | undefined>;
|
330
|
+
minWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.MinWidth<string | number> | undefined>;
|
331
|
+
mixBlendMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.MixBlendMode | undefined>;
|
332
|
+
motionDistance?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
|
333
|
+
motionPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetPath | undefined>;
|
334
|
+
motionRotation?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetRotate | undefined>;
|
335
|
+
objectFit?: import("theme-ui").StylePropertyValue<import("csstype").Property.ObjectFit | undefined>;
|
336
|
+
objectPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.ObjectPosition<string | number> | undefined>;
|
337
|
+
offsetAnchor?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetAnchor<string | number> | undefined>;
|
338
|
+
offsetDistance?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetDistance<string | number> | undefined>;
|
339
|
+
offsetPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetPath | undefined>;
|
340
|
+
offsetRotate?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetRotate | undefined>;
|
341
|
+
offsetRotation?: import("theme-ui").StylePropertyValue<import("csstype").Property.OffsetRotate | undefined>;
|
342
|
+
opacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.Opacity | undefined>;
|
343
|
+
order?: import("theme-ui").StylePropertyValue<import("csstype").Property.Order | undefined>;
|
344
|
+
orphans?: import("theme-ui").StylePropertyValue<import("csstype").Property.Orphans | undefined>;
|
345
|
+
outlineColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.OutlineColor | undefined>;
|
346
|
+
outlineOffset?: import("theme-ui").StylePropertyValue<import("csstype").Property.OutlineOffset<string | number> | undefined>;
|
347
|
+
outlineStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.OutlineStyle | undefined>;
|
348
|
+
outlineWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.OutlineWidth<string | number> | undefined>;
|
349
|
+
overflowAnchor?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowAnchor | undefined>;
|
350
|
+
overflowBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowBlock | undefined>;
|
351
|
+
overflowClipBox?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowClipBox | undefined>;
|
352
|
+
overflowClipMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowClipMargin<string | number> | undefined>;
|
353
|
+
overflowInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowInline | undefined>;
|
354
|
+
overflowWrap?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowWrap | undefined>;
|
355
|
+
overflowX?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowX | undefined>;
|
356
|
+
overflowY?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowY | undefined>;
|
357
|
+
overscrollBehaviorBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehaviorBlock | undefined>;
|
358
|
+
overscrollBehaviorInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehaviorInline | undefined>;
|
359
|
+
overscrollBehaviorX?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehaviorX | undefined>;
|
360
|
+
overscrollBehaviorY?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehaviorY | undefined>;
|
361
|
+
paddingBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlock<string | number> | undefined>;
|
362
|
+
paddingBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>;
|
363
|
+
paddingBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBlockStart<string | number> | undefined>;
|
364
|
+
paddingBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
|
365
|
+
paddingInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInline<string | number> | undefined>;
|
366
|
+
paddingInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
|
367
|
+
paddingInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
|
368
|
+
paddingLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
369
|
+
paddingRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
|
370
|
+
paddingTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
371
|
+
pageBreakAfter?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakAfter | undefined>;
|
372
|
+
pageBreakBefore?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakBefore | undefined>;
|
373
|
+
pageBreakInside?: import("theme-ui").StylePropertyValue<import("csstype").Property.PageBreakInside | undefined>;
|
374
|
+
paintOrder?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaintOrder | undefined>;
|
375
|
+
perspective?: import("theme-ui").StylePropertyValue<import("csstype").Property.Perspective<string | number> | undefined>;
|
376
|
+
perspectiveOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
|
377
|
+
placeContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.PlaceContent | undefined>;
|
378
|
+
pointerEvents?: import("theme-ui").StylePropertyValue<import("csstype").Property.PointerEvents | undefined>;
|
379
|
+
position?: import("theme-ui").StylePropertyValue<import("csstype").Property.Position | undefined>;
|
380
|
+
printColorAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.PrintColorAdjust | undefined>;
|
381
|
+
quotes?: import("theme-ui").StylePropertyValue<import("csstype").Property.Quotes | undefined>;
|
382
|
+
resize?: import("theme-ui").StylePropertyValue<import("csstype").Property.Resize | undefined>;
|
383
|
+
right?: import("theme-ui").StylePropertyValue<import("csstype").Property.Right<string | number> | undefined>;
|
384
|
+
rotate?: import("theme-ui").StylePropertyValue<import("csstype").Property.Rotate | undefined>;
|
385
|
+
rowGap?: import("theme-ui").StylePropertyValue<import("csstype").Property.RowGap<string | number> | undefined>;
|
386
|
+
rubyAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.RubyAlign | undefined>;
|
387
|
+
rubyMerge?: import("theme-ui").StylePropertyValue<import("csstype").Property.RubyMerge | undefined>;
|
388
|
+
rubyPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.RubyPosition | undefined>;
|
389
|
+
scale?: import("theme-ui").StylePropertyValue<import("csstype").Property.Scale | undefined>;
|
390
|
+
scrollBehavior?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollBehavior | undefined>;
|
391
|
+
scrollMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
|
392
|
+
scrollMarginBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>;
|
393
|
+
scrollMarginBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>;
|
394
|
+
scrollMarginBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>;
|
395
|
+
scrollMarginBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
|
396
|
+
scrollMarginInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginInline<string | number> | undefined>;
|
397
|
+
scrollMarginInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>;
|
398
|
+
scrollMarginInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>;
|
399
|
+
scrollMarginLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
|
400
|
+
scrollMarginRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
|
401
|
+
scrollMarginTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
|
402
|
+
scrollPadding?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPadding<string | number> | undefined>;
|
403
|
+
scrollPaddingBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>;
|
404
|
+
scrollPaddingBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>;
|
405
|
+
scrollPaddingBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>;
|
406
|
+
scrollPaddingBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>;
|
407
|
+
scrollPaddingInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>;
|
408
|
+
scrollPaddingInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>;
|
409
|
+
scrollPaddingInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>;
|
410
|
+
scrollPaddingLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
|
411
|
+
scrollPaddingRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>;
|
412
|
+
scrollPaddingTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
|
413
|
+
scrollSnapAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollSnapAlign | undefined>;
|
414
|
+
scrollSnapMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMargin<string | number> | undefined>;
|
415
|
+
scrollSnapMarginBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>;
|
416
|
+
scrollSnapMarginLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
|
417
|
+
scrollSnapMarginRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginRight<string | number> | undefined>;
|
418
|
+
scrollSnapMarginTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
|
419
|
+
scrollSnapStop?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollSnapStop | undefined>;
|
420
|
+
scrollSnapType?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollSnapType | undefined>;
|
421
|
+
scrollbarColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollbarColor | undefined>;
|
422
|
+
scrollbarGutter?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollbarGutter | undefined>;
|
423
|
+
scrollbarWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollbarWidth | undefined>;
|
424
|
+
shapeImageThreshold?: import("theme-ui").StylePropertyValue<import("csstype").Property.ShapeImageThreshold | undefined>;
|
425
|
+
shapeMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
|
426
|
+
shapeOutside?: import("theme-ui").StylePropertyValue<import("csstype").Property.ShapeOutside | undefined>;
|
427
|
+
tabSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.TabSize<string | number> | undefined>;
|
428
|
+
tableLayout?: import("theme-ui").StylePropertyValue<import("csstype").Property.TableLayout | undefined>;
|
429
|
+
textAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextAlign | undefined>;
|
430
|
+
textAlignLast?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextAlignLast | undefined>;
|
431
|
+
textCombineUpright?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextCombineUpright | undefined>;
|
432
|
+
textDecorationColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationColor | undefined>;
|
433
|
+
textDecorationLine?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationLine | undefined>;
|
434
|
+
textDecorationSkip?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationSkip | undefined>;
|
435
|
+
textDecorationSkipInk?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationSkipInk | undefined>;
|
436
|
+
textDecorationStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationStyle | undefined>;
|
437
|
+
textDecorationThickness?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationThickness<string | number> | undefined>;
|
438
|
+
textEmphasisColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisColor | undefined>;
|
439
|
+
textEmphasisPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisPosition | undefined>;
|
440
|
+
textEmphasisStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisStyle | undefined>;
|
441
|
+
textIndent?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextIndent<string | number> | undefined>;
|
442
|
+
textJustify?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextJustify | undefined>;
|
443
|
+
textOrientation?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextOrientation | undefined>;
|
444
|
+
textOverflow?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextOverflow | undefined>;
|
445
|
+
textRendering?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextRendering | undefined>;
|
446
|
+
textShadow?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextShadow | undefined>;
|
447
|
+
textSizeAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextSizeAdjust | undefined>;
|
448
|
+
textTransform?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextTransform | undefined>;
|
449
|
+
textUnderlineOffset?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>;
|
450
|
+
textUnderlinePosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextUnderlinePosition | undefined>;
|
451
|
+
top?: import("theme-ui").StylePropertyValue<import("csstype").Property.Top<string | number> | undefined>;
|
452
|
+
touchAction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TouchAction | undefined>;
|
453
|
+
transform?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transform | undefined>;
|
454
|
+
transformBox?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformBox | undefined>;
|
455
|
+
transformOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
|
456
|
+
transformStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformStyle | undefined>;
|
457
|
+
transitionDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
|
458
|
+
transitionDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
|
459
|
+
transitionProperty?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionProperty | undefined>;
|
460
|
+
transitionTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionTimingFunction | undefined>;
|
461
|
+
translate?: import("theme-ui").StylePropertyValue<import("csstype").Property.Translate<string | number> | undefined>;
|
462
|
+
unicodeBidi?: import("theme-ui").StylePropertyValue<import("csstype").Property.UnicodeBidi | undefined>;
|
463
|
+
userSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.UserSelect | undefined>;
|
464
|
+
verticalAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.VerticalAlign<string | number> | undefined>;
|
465
|
+
visibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.Visibility | undefined>;
|
466
|
+
whiteSpace?: import("theme-ui").StylePropertyValue<import("csstype").Property.WhiteSpace | undefined>;
|
467
|
+
widows?: import("theme-ui").StylePropertyValue<import("csstype").Property.Widows | undefined>;
|
468
|
+
width?: import("theme-ui").StylePropertyValue<import("csstype").Property.Width<string | number> | undefined>;
|
469
|
+
willChange?: import("theme-ui").StylePropertyValue<import("csstype").Property.WillChange | undefined>;
|
470
|
+
wordBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordBreak | undefined>;
|
471
|
+
wordSpacing?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordSpacing<string | number> | undefined>;
|
472
|
+
wordWrap?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordWrap | undefined>;
|
473
|
+
writingMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.WritingMode | undefined>;
|
474
|
+
zoom?: import("theme-ui").StylePropertyValue<import("csstype").Property.Zoom | undefined>;
|
475
|
+
all?: import("theme-ui").StylePropertyValue<import("csstype").Globals | undefined>;
|
476
|
+
animation?: import("theme-ui").StylePropertyValue<import("csstype").Property.Animation<string & {}> | undefined>;
|
477
|
+
background?: import("theme-ui").StylePropertyValue<import("csstype").Property.Background<string | number> | undefined>;
|
478
|
+
backgroundPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundPosition<string | number> | undefined>;
|
479
|
+
border?: import("theme-ui").StylePropertyValue<import("csstype").Property.Border<string | number> | undefined>;
|
480
|
+
borderBlock?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlock<string | number> | undefined>;
|
481
|
+
borderBlockEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockEnd<string | number> | undefined>;
|
482
|
+
borderBlockStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBlockStart<string | number> | undefined>;
|
483
|
+
borderBottom?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottom<string | number> | undefined>;
|
484
|
+
borderColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderColor | undefined>;
|
485
|
+
borderImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImage | undefined>;
|
486
|
+
borderInline?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInline<string | number> | undefined>;
|
487
|
+
borderInlineEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEnd<string | number> | undefined>;
|
488
|
+
borderInlineStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStart<string | number> | undefined>;
|
489
|
+
borderLeft?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderLeft<string | number> | undefined>;
|
490
|
+
borderRight?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRight<string | number> | undefined>;
|
491
|
+
borderStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderStyle | undefined>;
|
492
|
+
borderTop?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTop<string | number> | undefined>;
|
493
|
+
borderWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderWidth<string | number> | undefined>;
|
494
|
+
columnRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
|
495
|
+
columns?: import("theme-ui").StylePropertyValue<import("csstype").Property.Columns<string | number> | undefined>;
|
496
|
+
flex?: import("theme-ui").StylePropertyValue<import("csstype").Property.Flex<string | number> | undefined>;
|
497
|
+
flexFlow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexFlow | undefined>;
|
498
|
+
font?: import("theme-ui").StylePropertyValue<import("csstype").Property.Font | undefined>;
|
499
|
+
gap?: import("theme-ui").StylePropertyValue<import("csstype").Property.Gap<string | number> | undefined>;
|
500
|
+
gridArea?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridArea | undefined>;
|
501
|
+
gridColumn?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridColumn | undefined>;
|
502
|
+
gridRow?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridRow | undefined>;
|
503
|
+
gridTemplate?: import("theme-ui").StylePropertyValue<import("csstype").Property.GridTemplate | undefined>;
|
504
|
+
lineClamp?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineClamp | undefined>;
|
505
|
+
listStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.ListStyle | undefined>;
|
506
|
+
margin?: import("theme-ui").StylePropertyValue<import("csstype").Property.Margin<string | number> | undefined>;
|
507
|
+
mask?: import("theme-ui").StylePropertyValue<import("csstype").Property.Mask<string | number> | undefined>;
|
508
|
+
maskBorder?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorder | undefined>;
|
509
|
+
motion?: import("theme-ui").StylePropertyValue<import("csstype").Property.Offset<string | number> | undefined>;
|
510
|
+
offset?: import("theme-ui").StylePropertyValue<import("csstype").Property.Offset<string | number> | undefined>;
|
511
|
+
outline?: import("theme-ui").StylePropertyValue<import("csstype").Property.Outline<string | number> | undefined>;
|
512
|
+
overflow?: import("theme-ui").StylePropertyValue<import("csstype").Property.Overflow | undefined>;
|
513
|
+
overscrollBehavior?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverscrollBehavior | undefined>;
|
514
|
+
padding?: import("theme-ui").StylePropertyValue<import("csstype").Property.Padding<string | number> | undefined>;
|
515
|
+
placeItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.PlaceItems | undefined>;
|
516
|
+
placeSelf?: import("theme-ui").StylePropertyValue<import("csstype").Property.PlaceSelf | undefined>;
|
517
|
+
textDecoration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecoration<string | number> | undefined>;
|
518
|
+
textEmphasis?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasis | undefined>;
|
519
|
+
transition?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transition<string & {}> | undefined>;
|
520
|
+
alignmentBaseline?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignmentBaseline | undefined>;
|
521
|
+
baselineShift?: import("theme-ui").StylePropertyValue<import("csstype").Property.BaselineShift<string | number> | undefined>;
|
522
|
+
clip?: import("theme-ui").StylePropertyValue<import("csstype").Property.Clip | undefined>;
|
523
|
+
clipRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.ClipRule | undefined>;
|
524
|
+
colorInterpolation?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorInterpolation | undefined>;
|
525
|
+
colorRendering?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColorRendering | undefined>;
|
526
|
+
dominantBaseline?: import("theme-ui").StylePropertyValue<import("csstype").Property.DominantBaseline | undefined>;
|
527
|
+
fill?: import("theme-ui").StylePropertyValue<import("csstype").Property.Fill | undefined>;
|
528
|
+
fillOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.FillOpacity | undefined>;
|
529
|
+
fillRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.FillRule | undefined>;
|
530
|
+
floodColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.FloodColor | undefined>;
|
531
|
+
floodOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.FloodOpacity | undefined>;
|
532
|
+
glyphOrientationVertical?: import("theme-ui").StylePropertyValue<import("csstype").Property.GlyphOrientationVertical | undefined>;
|
533
|
+
lightingColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.LightingColor | undefined>;
|
534
|
+
marker?: import("theme-ui").StylePropertyValue<import("csstype").Property.Marker | undefined>;
|
535
|
+
markerEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerEnd | undefined>;
|
536
|
+
markerMid?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerMid | undefined>;
|
537
|
+
markerStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarkerStart | undefined>;
|
538
|
+
shapeRendering?: import("theme-ui").StylePropertyValue<import("csstype").Property.ShapeRendering | undefined>;
|
539
|
+
stopColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.StopColor | undefined>;
|
540
|
+
stopOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.StopOpacity | undefined>;
|
541
|
+
stroke?: import("theme-ui").StylePropertyValue<import("csstype").Property.Stroke | undefined>;
|
542
|
+
strokeDasharray?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeDasharray<string | number> | undefined>;
|
543
|
+
strokeDashoffset?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeDashoffset<string | number> | undefined>;
|
544
|
+
strokeLinecap?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeLinecap | undefined>;
|
545
|
+
strokeLinejoin?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeLinejoin | undefined>;
|
546
|
+
strokeMiterlimit?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeMiterlimit | undefined>;
|
547
|
+
strokeOpacity?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeOpacity | undefined>;
|
548
|
+
strokeWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.StrokeWidth<string | number> | undefined>;
|
549
|
+
textAnchor?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextAnchor | undefined>;
|
550
|
+
vectorEffect?: import("theme-ui").StylePropertyValue<import("csstype").Property.VectorEffect | undefined>;
|
551
|
+
MozAnimationDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
|
552
|
+
MozAnimationDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDirection | undefined>;
|
553
|
+
MozAnimationDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
|
554
|
+
MozAnimationFillMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationFillMode | undefined>;
|
555
|
+
MozAnimationIterationCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationIterationCount | undefined>;
|
556
|
+
MozAnimationName?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationName | undefined>;
|
557
|
+
MozAnimationPlayState?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationPlayState | undefined>;
|
558
|
+
MozAnimationTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationTimingFunction | undefined>;
|
559
|
+
MozAppearance?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozAppearance | undefined>;
|
560
|
+
MozBackfaceVisibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackfaceVisibility | undefined>;
|
561
|
+
MozBorderBottomColors?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozBorderBottomColors | undefined>;
|
562
|
+
MozBorderEndColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndColor | undefined>;
|
563
|
+
MozBorderEndStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndStyle | undefined>;
|
564
|
+
MozBorderEndWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>;
|
565
|
+
MozBorderLeftColors?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozBorderLeftColors | undefined>;
|
566
|
+
MozBorderRightColors?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozBorderRightColors | undefined>;
|
567
|
+
MozBorderStartColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStartColor | undefined>;
|
568
|
+
MozBorderStartStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderInlineStartStyle | undefined>;
|
569
|
+
MozBorderTopColors?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozBorderTopColors | undefined>;
|
570
|
+
MozBoxSizing?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxSizing | undefined>;
|
571
|
+
MozColumnCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnCount | undefined>;
|
572
|
+
MozColumnFill?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnFill | undefined>;
|
573
|
+
MozColumnRuleColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleColor | undefined>;
|
574
|
+
MozColumnRuleStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleStyle | undefined>;
|
575
|
+
MozColumnRuleWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
|
576
|
+
MozColumnWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
|
577
|
+
MozContextProperties?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozContextProperties | undefined>;
|
578
|
+
MozFontFeatureSettings?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontFeatureSettings | undefined>;
|
579
|
+
MozFontLanguageOverride?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontLanguageOverride | undefined>;
|
580
|
+
MozHyphens?: import("theme-ui").StylePropertyValue<import("csstype").Property.Hyphens | undefined>;
|
581
|
+
MozImageRegion?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozImageRegion | undefined>;
|
582
|
+
MozMarginEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
|
583
|
+
MozMarginStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
|
584
|
+
MozOrient?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozOrient | undefined>;
|
585
|
+
MozOsxFontSmoothing?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
|
586
|
+
MozPaddingEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
|
587
|
+
MozPaddingStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
|
588
|
+
MozPerspective?: import("theme-ui").StylePropertyValue<import("csstype").Property.Perspective<string | number> | undefined>;
|
589
|
+
MozPerspectiveOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
|
590
|
+
MozStackSizing?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozStackSizing | undefined>;
|
591
|
+
MozTabSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.TabSize<string | number> | undefined>;
|
592
|
+
MozTextBlink?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozTextBlink | undefined>;
|
593
|
+
MozTextSizeAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextSizeAdjust | undefined>;
|
594
|
+
MozTransformOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
|
595
|
+
MozTransformStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformStyle | undefined>;
|
596
|
+
MozTransitionDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
|
597
|
+
MozTransitionDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
|
598
|
+
MozTransitionProperty?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionProperty | undefined>;
|
599
|
+
MozTransitionTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionTimingFunction | undefined>;
|
600
|
+
MozUserFocus?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozUserFocus | undefined>;
|
601
|
+
MozUserModify?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozUserModify | undefined>;
|
602
|
+
MozUserSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.UserSelect | undefined>;
|
603
|
+
MozWindowDragging?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozWindowDragging | undefined>;
|
604
|
+
MozWindowShadow?: import("theme-ui").StylePropertyValue<import("csstype").Property.MozWindowShadow | undefined>;
|
605
|
+
msAccelerator?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsAccelerator | undefined>;
|
606
|
+
msBlockProgression?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsBlockProgression | undefined>;
|
607
|
+
msContentZoomChaining?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomChaining | undefined>;
|
608
|
+
msContentZoomLimitMax?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomLimitMax | undefined>;
|
609
|
+
msContentZoomLimitMin?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomLimitMin | undefined>;
|
610
|
+
msContentZoomSnapPoints?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomSnapPoints | undefined>;
|
611
|
+
msContentZoomSnapType?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomSnapType | undefined>;
|
612
|
+
msContentZooming?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZooming | undefined>;
|
613
|
+
msFilter?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsFilter | undefined>;
|
614
|
+
msFlexDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexDirection | undefined>;
|
615
|
+
msFlexPositive?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexGrow | undefined>;
|
616
|
+
msFlowFrom?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsFlowFrom | undefined>;
|
617
|
+
msFlowInto?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsFlowInto | undefined>;
|
618
|
+
msGridColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsGridColumns<string | number> | undefined>;
|
619
|
+
msGridRows?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsGridRows<string | number> | undefined>;
|
620
|
+
msHighContrastAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsHighContrastAdjust | undefined>;
|
621
|
+
msHyphenateLimitChars?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsHyphenateLimitChars | undefined>;
|
622
|
+
msHyphenateLimitLines?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsHyphenateLimitLines | undefined>;
|
623
|
+
msHyphenateLimitZone?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>;
|
624
|
+
msHyphens?: import("theme-ui").StylePropertyValue<import("csstype").Property.Hyphens | undefined>;
|
625
|
+
msImeAlign?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsImeAlign | undefined>;
|
626
|
+
msLineBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineBreak | undefined>;
|
627
|
+
msOrder?: import("theme-ui").StylePropertyValue<import("csstype").Property.Order | undefined>;
|
628
|
+
msOverflowStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsOverflowStyle | undefined>;
|
629
|
+
msOverflowX?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowX | undefined>;
|
630
|
+
msOverflowY?: import("theme-ui").StylePropertyValue<import("csstype").Property.OverflowY | undefined>;
|
631
|
+
msScrollChaining?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollChaining | undefined>;
|
632
|
+
msScrollLimitXMax?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>;
|
633
|
+
msScrollLimitXMin?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>;
|
634
|
+
msScrollLimitYMax?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>;
|
635
|
+
msScrollLimitYMin?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>;
|
636
|
+
msScrollRails?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollRails | undefined>;
|
637
|
+
msScrollSnapPointsX?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollSnapPointsX | undefined>;
|
638
|
+
msScrollSnapPointsY?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollSnapPointsY | undefined>;
|
639
|
+
msScrollSnapType?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollSnapType | undefined>;
|
640
|
+
msScrollTranslation?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollTranslation | undefined>;
|
641
|
+
msScrollbar3dlightColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbar3dlightColor | undefined>;
|
642
|
+
msScrollbarArrowColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarArrowColor | undefined>;
|
643
|
+
msScrollbarBaseColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarBaseColor | undefined>;
|
644
|
+
msScrollbarDarkshadowColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarDarkshadowColor | undefined>;
|
645
|
+
msScrollbarFaceColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarFaceColor | undefined>;
|
646
|
+
msScrollbarHighlightColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarHighlightColor | undefined>;
|
647
|
+
msScrollbarShadowColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarShadowColor | undefined>;
|
648
|
+
msScrollbarTrackColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollbarTrackColor | undefined>;
|
649
|
+
msTextAutospace?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsTextAutospace | undefined>;
|
650
|
+
msTextCombineHorizontal?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextCombineUpright | undefined>;
|
651
|
+
msTextOverflow?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextOverflow | undefined>;
|
652
|
+
msTouchAction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TouchAction | undefined>;
|
653
|
+
msTouchSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsTouchSelect | undefined>;
|
654
|
+
msTransform?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transform | undefined>;
|
655
|
+
msTransformOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
|
656
|
+
msTransitionDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
|
657
|
+
msTransitionDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
|
658
|
+
msTransitionProperty?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionProperty | undefined>;
|
659
|
+
msTransitionTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionTimingFunction | undefined>;
|
660
|
+
msUserSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsUserSelect | undefined>;
|
661
|
+
msWordBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.WordBreak | undefined>;
|
662
|
+
msWrapFlow?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsWrapFlow | undefined>;
|
663
|
+
msWrapMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsWrapMargin<string | number> | undefined>;
|
664
|
+
msWrapThrough?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsWrapThrough | undefined>;
|
665
|
+
msWritingMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.WritingMode | undefined>;
|
666
|
+
WebkitAlignContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignContent | undefined>;
|
667
|
+
WebkitAlignItems?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignItems | undefined>;
|
668
|
+
WebkitAlignSelf?: import("theme-ui").StylePropertyValue<import("csstype").Property.AlignSelf | undefined>;
|
669
|
+
WebkitAnimationDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDelay<string & {}> | undefined>;
|
670
|
+
WebkitAnimationDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDirection | undefined>;
|
671
|
+
WebkitAnimationDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationDuration<string & {}> | undefined>;
|
672
|
+
WebkitAnimationFillMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationFillMode | undefined>;
|
673
|
+
WebkitAnimationIterationCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationIterationCount | undefined>;
|
674
|
+
WebkitAnimationName?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationName | undefined>;
|
675
|
+
WebkitAnimationPlayState?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationPlayState | undefined>;
|
676
|
+
WebkitAnimationTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.AnimationTimingFunction | undefined>;
|
677
|
+
WebkitAppearance?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitAppearance | undefined>;
|
678
|
+
WebkitBackdropFilter?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackdropFilter | undefined>;
|
679
|
+
WebkitBackfaceVisibility?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackfaceVisibility | undefined>;
|
680
|
+
WebkitBackgroundClip?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundClip | undefined>;
|
681
|
+
WebkitBackgroundOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundOrigin | undefined>;
|
682
|
+
WebkitBackgroundSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.BackgroundSize<string | number> | undefined>;
|
683
|
+
WebkitBorderBeforeColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitBorderBeforeColor | undefined>;
|
684
|
+
WebkitBorderBeforeStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitBorderBeforeStyle | undefined>;
|
685
|
+
WebkitBorderBeforeWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>;
|
686
|
+
WebkitBorderBottomLeftRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>;
|
687
|
+
WebkitBorderBottomRightRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>;
|
688
|
+
WebkitBorderImageSlice?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImageSlice | undefined>;
|
689
|
+
WebkitBorderTopLeftRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>;
|
690
|
+
WebkitBorderTopRightRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>;
|
691
|
+
WebkitBoxDecorationBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxDecorationBreak | undefined>;
|
692
|
+
WebkitBoxReflect?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>;
|
693
|
+
WebkitBoxShadow?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxShadow | undefined>;
|
694
|
+
WebkitBoxSizing?: import("theme-ui").StylePropertyValue<import("csstype").Property.BoxSizing | undefined>;
|
695
|
+
WebkitClipPath?: import("theme-ui").StylePropertyValue<import("csstype").Property.ClipPath | undefined>;
|
696
|
+
WebkitColumnCount?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnCount | undefined>;
|
697
|
+
WebkitColumnFill?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnFill | undefined>;
|
698
|
+
WebkitColumnRuleColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleColor | undefined>;
|
699
|
+
WebkitColumnRuleStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleStyle | undefined>;
|
700
|
+
WebkitColumnRuleWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>;
|
701
|
+
WebkitColumnSpan?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnSpan | undefined>;
|
702
|
+
WebkitColumnWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnWidth<string | number> | undefined>;
|
703
|
+
WebkitFilter?: import("theme-ui").StylePropertyValue<import("csstype").Property.Filter | undefined>;
|
704
|
+
WebkitFlexBasis?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexBasis<string | number> | undefined>;
|
705
|
+
WebkitFlexDirection?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexDirection | undefined>;
|
706
|
+
WebkitFlexGrow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexGrow | undefined>;
|
707
|
+
WebkitFlexShrink?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexShrink | undefined>;
|
708
|
+
WebkitFlexWrap?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexWrap | undefined>;
|
709
|
+
WebkitFontFeatureSettings?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontFeatureSettings | undefined>;
|
710
|
+
WebkitFontKerning?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontKerning | undefined>;
|
711
|
+
WebkitFontSmoothing?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontSmooth<string | number> | undefined>;
|
712
|
+
WebkitFontVariantLigatures?: import("theme-ui").StylePropertyValue<import("csstype").Property.FontVariantLigatures | undefined>;
|
713
|
+
WebkitHyphenateCharacter?: import("theme-ui").StylePropertyValue<import("csstype").Property.HyphenateCharacter | undefined>;
|
714
|
+
WebkitHyphens?: import("theme-ui").StylePropertyValue<import("csstype").Property.Hyphens | undefined>;
|
715
|
+
WebkitInitialLetter?: import("theme-ui").StylePropertyValue<import("csstype").Property.InitialLetter | undefined>;
|
716
|
+
WebkitJustifyContent?: import("theme-ui").StylePropertyValue<import("csstype").Property.JustifyContent | undefined>;
|
717
|
+
WebkitLineBreak?: import("theme-ui").StylePropertyValue<import("csstype").Property.LineBreak | undefined>;
|
718
|
+
WebkitLineClamp?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitLineClamp | undefined>;
|
719
|
+
WebkitMarginEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineEnd<string | number> | undefined>;
|
720
|
+
WebkitMarginStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginInlineStart<string | number> | undefined>;
|
721
|
+
WebkitMaskAttachment?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskAttachment | undefined>;
|
722
|
+
WebkitMaskBoxImageOutset?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderOutset<string | number> | undefined>;
|
723
|
+
WebkitMaskBoxImageRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderRepeat | undefined>;
|
724
|
+
WebkitMaskBoxImageSlice?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderSlice | undefined>;
|
725
|
+
WebkitMaskBoxImageSource?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderSource | undefined>;
|
726
|
+
WebkitMaskBoxImageWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorderWidth<string | number> | undefined>;
|
727
|
+
WebkitMaskClip?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskClip | undefined>;
|
728
|
+
WebkitMaskComposite?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskComposite | undefined>;
|
729
|
+
WebkitMaskImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskImage | undefined>;
|
730
|
+
WebkitMaskOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskOrigin | undefined>;
|
731
|
+
WebkitMaskPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>;
|
732
|
+
WebkitMaskPositionX?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>;
|
733
|
+
WebkitMaskPositionY?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>;
|
734
|
+
WebkitMaskRepeat?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskRepeat | undefined>;
|
735
|
+
WebkitMaskRepeatX?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskRepeatX | undefined>;
|
736
|
+
WebkitMaskRepeatY?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskRepeatY | undefined>;
|
737
|
+
WebkitMaskSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMaskSize<string | number> | undefined>;
|
738
|
+
WebkitMaxInlineSize?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaxInlineSize<string | number> | undefined>;
|
739
|
+
WebkitOrder?: import("theme-ui").StylePropertyValue<import("csstype").Property.Order | undefined>;
|
740
|
+
WebkitOverflowScrolling?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitOverflowScrolling | undefined>;
|
741
|
+
WebkitPaddingEnd?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>;
|
742
|
+
WebkitPaddingStart?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingInlineStart<string | number> | undefined>;
|
743
|
+
WebkitPerspective?: import("theme-ui").StylePropertyValue<import("csstype").Property.Perspective<string | number> | undefined>;
|
744
|
+
WebkitPerspectiveOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>;
|
745
|
+
WebkitPrintColorAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.PrintColorAdjust | undefined>;
|
746
|
+
WebkitRubyPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.RubyPosition | undefined>;
|
747
|
+
WebkitScrollSnapType?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollSnapType | undefined>;
|
748
|
+
WebkitShapeMargin?: import("theme-ui").StylePropertyValue<import("csstype").Property.ShapeMargin<string | number> | undefined>;
|
749
|
+
WebkitTapHighlightColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTapHighlightColor | undefined>;
|
750
|
+
WebkitTextCombine?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextCombineUpright | undefined>;
|
751
|
+
WebkitTextDecorationColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationColor | undefined>;
|
752
|
+
WebkitTextDecorationLine?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationLine | undefined>;
|
753
|
+
WebkitTextDecorationSkip?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationSkip | undefined>;
|
754
|
+
WebkitTextDecorationStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextDecorationStyle | undefined>;
|
755
|
+
WebkitTextEmphasisColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisColor | undefined>;
|
756
|
+
WebkitTextEmphasisPosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisPosition | undefined>;
|
757
|
+
WebkitTextEmphasisStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasisStyle | undefined>;
|
758
|
+
WebkitTextFillColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTextFillColor | undefined>;
|
759
|
+
WebkitTextOrientation?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextOrientation | undefined>;
|
760
|
+
WebkitTextSizeAdjust?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextSizeAdjust | undefined>;
|
761
|
+
WebkitTextStrokeColor?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTextStrokeColor | undefined>;
|
762
|
+
WebkitTextStrokeWidth?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>;
|
763
|
+
WebkitTextUnderlinePosition?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextUnderlinePosition | undefined>;
|
764
|
+
WebkitTouchCallout?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTouchCallout | undefined>;
|
765
|
+
WebkitTransform?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transform | undefined>;
|
766
|
+
WebkitTransformOrigin?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformOrigin<string | number> | undefined>;
|
767
|
+
WebkitTransformStyle?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransformStyle | undefined>;
|
768
|
+
WebkitTransitionDelay?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDelay<string & {}> | undefined>;
|
769
|
+
WebkitTransitionDuration?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionDuration<string & {}> | undefined>;
|
770
|
+
WebkitTransitionProperty?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionProperty | undefined>;
|
771
|
+
WebkitTransitionTimingFunction?: import("theme-ui").StylePropertyValue<import("csstype").Property.TransitionTimingFunction | undefined>;
|
772
|
+
WebkitUserModify?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitUserModify | undefined>;
|
773
|
+
WebkitUserSelect?: import("theme-ui").StylePropertyValue<import("csstype").Property.UserSelect | undefined>;
|
774
|
+
WebkitWritingMode?: import("theme-ui").StylePropertyValue<import("csstype").Property.WritingMode | undefined>;
|
775
|
+
MozAnimation?: import("theme-ui").StylePropertyValue<import("csstype").Property.Animation<string & {}> | undefined>;
|
776
|
+
MozBorderImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImage | undefined>;
|
777
|
+
MozColumnRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
|
778
|
+
MozColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.Columns<string | number> | undefined>;
|
779
|
+
MozTransition?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transition<string & {}> | undefined>;
|
780
|
+
msContentZoomLimit?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomLimit | undefined>;
|
781
|
+
msContentZoomSnap?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsContentZoomSnap | undefined>;
|
782
|
+
msFlex?: import("theme-ui").StylePropertyValue<import("csstype").Property.Flex<string | number> | undefined>;
|
783
|
+
msScrollLimit?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollLimit | undefined>;
|
784
|
+
msScrollSnapX?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollSnapX | undefined>;
|
785
|
+
msScrollSnapY?: import("theme-ui").StylePropertyValue<import("csstype").Property.MsScrollSnapY | undefined>;
|
786
|
+
msTransition?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transition<string & {}> | undefined>;
|
787
|
+
WebkitAnimation?: import("theme-ui").StylePropertyValue<import("csstype").Property.Animation<string & {}> | undefined>;
|
788
|
+
WebkitBorderBefore?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>;
|
789
|
+
WebkitBorderImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderImage | undefined>;
|
790
|
+
WebkitBorderRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
|
791
|
+
WebkitColumnRule?: import("theme-ui").StylePropertyValue<import("csstype").Property.ColumnRule<string | number> | undefined>;
|
792
|
+
WebkitColumns?: import("theme-ui").StylePropertyValue<import("csstype").Property.Columns<string | number> | undefined>;
|
793
|
+
WebkitFlex?: import("theme-ui").StylePropertyValue<import("csstype").Property.Flex<string | number> | undefined>;
|
794
|
+
WebkitFlexFlow?: import("theme-ui").StylePropertyValue<import("csstype").Property.FlexFlow | undefined>;
|
795
|
+
WebkitMask?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitMask<string | number> | undefined>;
|
796
|
+
WebkitMaskBoxImage?: import("theme-ui").StylePropertyValue<import("csstype").Property.MaskBorder | undefined>;
|
797
|
+
WebkitTextEmphasis?: import("theme-ui").StylePropertyValue<import("csstype").Property.TextEmphasis | undefined>;
|
798
|
+
WebkitTextStroke?: import("theme-ui").StylePropertyValue<import("csstype").Property.WebkitTextStroke<string | number> | undefined>;
|
799
|
+
WebkitTransition?: import("theme-ui").StylePropertyValue<import("csstype").Property.Transition<string & {}> | undefined>;
|
800
|
+
m?: import("theme-ui").StylePropertyValue<import("csstype").Property.Margin<string | number> | undefined>;
|
801
|
+
mt?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
802
|
+
mr?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginRight<string | number> | undefined>;
|
803
|
+
mb?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginBottom<string | number> | undefined>;
|
804
|
+
ml?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
805
|
+
mx?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
806
|
+
marginX?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginLeft<string | number> | undefined>;
|
807
|
+
my?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
808
|
+
marginY?: import("theme-ui").StylePropertyValue<import("csstype").Property.MarginTop<string | number> | undefined>;
|
809
|
+
p?: import("theme-ui").StylePropertyValue<import("csstype").Property.Padding<string | number> | undefined>;
|
810
|
+
pt?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
811
|
+
pr?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingRight<string | number> | undefined>;
|
812
|
+
pb?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingBottom<string | number> | undefined>;
|
813
|
+
pl?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
814
|
+
px?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
815
|
+
paddingX?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingLeft<string | number> | undefined>;
|
816
|
+
py?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
817
|
+
paddingY?: import("theme-ui").StylePropertyValue<import("csstype").Property.PaddingTop<string | number> | undefined>;
|
818
|
+
scrollMarginX?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>;
|
819
|
+
scrollMarginY?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollMarginTop<string | number> | undefined>;
|
820
|
+
scrollPaddingX?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>;
|
821
|
+
scrollPaddingY?: import("theme-ui").StylePropertyValue<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>;
|
822
|
+
size?: import("theme-ui").StylePropertyValue<import("csstype").Property.Width<string | number> | undefined>;
|
823
|
+
boxShadow?: import("theme-ui").StylePropertyValue<number | import("csstype").Property.BoxShadow | undefined>;
|
824
|
+
fontWeight?: import("theme-ui").StylePropertyValue<string | (string & {}) | (number & {}) | undefined>;
|
825
|
+
borderTopStyle?: import("theme-ui").StylePropertyValue<string | undefined>;
|
826
|
+
borderBottomStyle?: import("theme-ui").StylePropertyValue<string | undefined>;
|
827
|
+
borderRightStyle?: import("theme-ui").StylePropertyValue<string | undefined>;
|
828
|
+
borderLeftStyle?: import("theme-ui").StylePropertyValue<string | undefined>;
|
829
|
+
borderRadius?: import("theme-ui").StylePropertyValue<import("csstype").Property.BorderRadius<string | number> | undefined>;
|
830
|
+
zIndex?: import("theme-ui").StylePropertyValue<string | (string & {}) | (number & {}) | undefined>;
|
831
|
+
sx?: import("theme-ui").ThemeUIStyleObject | undefined;
|
832
|
+
role?: import("../../types").AriaRole | undefined;
|
833
|
+
className: string;
|
834
|
+
'aria-activedescendant'?: string | undefined;
|
835
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
836
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
837
|
+
'aria-braillelabel'?: string | undefined;
|
838
|
+
'aria-brailleroledescription'?: string | undefined;
|
839
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
840
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
841
|
+
'aria-colcount'?: number | undefined;
|
842
|
+
'aria-colindex'?: number | undefined;
|
843
|
+
'aria-colindextext'?: string | undefined;
|
844
|
+
'aria-colspan'?: number | undefined;
|
845
|
+
'aria-controls'?: string | undefined;
|
846
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
847
|
+
'aria-describedby'?: string | undefined;
|
848
|
+
'aria-description'?: string | undefined;
|
849
|
+
'aria-details'?: string | undefined;
|
850
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
851
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup" | undefined;
|
852
|
+
'aria-errormessage'?: string | undefined;
|
853
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
854
|
+
'aria-flowto'?: string | undefined;
|
855
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
856
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "false" | "true" | undefined;
|
857
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
858
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
859
|
+
'aria-keyshortcuts'?: string | undefined;
|
860
|
+
'aria-label'?: string | undefined;
|
861
|
+
'aria-labelledby'?: string | undefined;
|
862
|
+
'aria-level'?: number | undefined;
|
863
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
864
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
865
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
866
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
867
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
868
|
+
'aria-owns'?: string | undefined;
|
869
|
+
'aria-placeholder'?: string | undefined;
|
870
|
+
'aria-posinset'?: number | undefined;
|
871
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
872
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
873
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
874
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
875
|
+
'aria-roledescription'?: string | undefined;
|
876
|
+
'aria-rowcount'?: number | undefined;
|
877
|
+
'aria-rowindex'?: number | undefined;
|
878
|
+
'aria-rowindextext'?: string | undefined;
|
879
|
+
'aria-rowspan'?: number | undefined;
|
880
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
881
|
+
'aria-setsize'?: number | undefined;
|
882
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
883
|
+
'aria-valuemax'?: number | undefined;
|
884
|
+
'aria-valuemin'?: number | undefined;
|
885
|
+
'aria-valuenow'?: number | undefined;
|
886
|
+
'aria-valuetext'?: string | undefined;
|
887
|
+
children?: import("react").ReactNode;
|
888
|
+
dangerouslySetInnerHTML?: {
|
889
|
+
__html: string | TrustedHTML;
|
890
|
+
} | undefined;
|
891
|
+
onCopy?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
892
|
+
onCopyCapture?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
893
|
+
onCut?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
894
|
+
onCutCapture?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
895
|
+
onPaste?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
896
|
+
onPasteCapture?: import("react").ClipboardEventHandler<import("../../types").FocusableElement> | undefined;
|
897
|
+
onCompositionEnd?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
898
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
899
|
+
onCompositionStart?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
900
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
901
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
902
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("../../types").FocusableElement> | undefined;
|
903
|
+
onFocus?: import("react").FocusEventHandler<import("../../types").FocusableElement> | undefined;
|
904
|
+
onFocusCapture?: import("react").FocusEventHandler<import("../../types").FocusableElement> | undefined;
|
905
|
+
onBlur?: import("react").FocusEventHandler<import("../../types").FocusableElement> | undefined;
|
906
|
+
onBlurCapture?: import("react").FocusEventHandler<import("../../types").FocusableElement> | undefined;
|
907
|
+
onChange?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
908
|
+
onChangeCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
909
|
+
onBeforeInput?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
910
|
+
onBeforeInputCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
911
|
+
onInput?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
912
|
+
onInputCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
913
|
+
onReset?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
914
|
+
onResetCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
915
|
+
onSubmit?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
916
|
+
onSubmitCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
917
|
+
onInvalid?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
918
|
+
onInvalidCapture?: import("react").FormEventHandler<import("../../types").FocusableElement> | undefined;
|
919
|
+
onLoad?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
920
|
+
onLoadCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
921
|
+
onError?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
922
|
+
onErrorCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
923
|
+
onKeyDown?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
924
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
925
|
+
onKeyPress?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
926
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
927
|
+
onKeyUp?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
928
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<import("../../types").FocusableElement> | undefined;
|
929
|
+
onAbort?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
930
|
+
onAbortCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
931
|
+
onCanPlay?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
932
|
+
onCanPlayCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
933
|
+
onCanPlayThrough?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
934
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
935
|
+
onDurationChange?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
936
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
937
|
+
onEmptied?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
938
|
+
onEmptiedCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
939
|
+
onEncrypted?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
940
|
+
onEncryptedCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
941
|
+
onEnded?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
942
|
+
onEndedCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
943
|
+
onLoadedData?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
944
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
945
|
+
onLoadedMetadata?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
946
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
947
|
+
onLoadStart?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
948
|
+
onLoadStartCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
949
|
+
onPause?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
950
|
+
onPauseCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
951
|
+
onPlay?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
952
|
+
onPlayCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
953
|
+
onPlaying?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
954
|
+
onPlayingCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
955
|
+
onProgress?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
956
|
+
onProgressCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
957
|
+
onRateChange?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
958
|
+
onRateChangeCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
959
|
+
onResize?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
960
|
+
onResizeCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
961
|
+
onSeeked?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
962
|
+
onSeekedCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
963
|
+
onSeeking?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
964
|
+
onSeekingCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
965
|
+
onStalled?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
966
|
+
onStalledCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
967
|
+
onSuspend?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
968
|
+
onSuspendCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
969
|
+
onTimeUpdate?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
970
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
971
|
+
onVolumeChange?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
972
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
973
|
+
onWaiting?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
974
|
+
onWaitingCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
975
|
+
onAuxClick?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
976
|
+
onAuxClickCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
977
|
+
onClick?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
978
|
+
onClickCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
979
|
+
onContextMenu?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
980
|
+
onContextMenuCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
981
|
+
onDoubleClick?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
982
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
983
|
+
onDrag?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
984
|
+
onDragCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
985
|
+
onDragEnd?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
986
|
+
onDragEndCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
987
|
+
onDragEnter?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
988
|
+
onDragEnterCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
989
|
+
onDragExit?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
990
|
+
onDragExitCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
991
|
+
onDragLeave?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
992
|
+
onDragLeaveCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
993
|
+
onDragOver?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
994
|
+
onDragOverCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
995
|
+
onDragStart?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
996
|
+
onDragStartCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
997
|
+
onDrop?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
998
|
+
onDropCapture?: import("react").DragEventHandler<import("../../types").FocusableElement> | undefined;
|
999
|
+
onMouseDown?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1000
|
+
onMouseDownCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1001
|
+
onMouseEnter?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1002
|
+
onMouseLeave?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1003
|
+
onMouseMove?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1004
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1005
|
+
onMouseOut?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1006
|
+
onMouseOutCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1007
|
+
onMouseOver?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1008
|
+
onMouseOverCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1009
|
+
onMouseUp?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1010
|
+
onMouseUpCapture?: import("react").MouseEventHandler<import("../../types").FocusableElement> | undefined;
|
1011
|
+
onSelect?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
1012
|
+
onSelectCapture?: import("react").ReactEventHandler<import("../../types").FocusableElement> | undefined;
|
1013
|
+
onTouchCancel?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1014
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1015
|
+
onTouchEnd?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1016
|
+
onTouchEndCapture?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1017
|
+
onTouchMove?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1018
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1019
|
+
onTouchStart?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1020
|
+
onTouchStartCapture?: import("react").TouchEventHandler<import("../../types").FocusableElement> | undefined;
|
1021
|
+
onPointerDown?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1022
|
+
onPointerDownCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1023
|
+
onPointerMove?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1024
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1025
|
+
onPointerUp?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1026
|
+
onPointerUpCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1027
|
+
onPointerCancel?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1028
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1029
|
+
onPointerEnter?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1030
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1031
|
+
onPointerLeave?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1032
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1033
|
+
onPointerOver?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1034
|
+
onPointerOverCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1035
|
+
onPointerOut?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1036
|
+
onPointerOutCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1037
|
+
onGotPointerCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1038
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1039
|
+
onLostPointerCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1040
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("../../types").FocusableElement> | undefined;
|
1041
|
+
onScroll?: import("react").UIEventHandler<import("../../types").FocusableElement> | undefined;
|
1042
|
+
onScrollCapture?: import("react").UIEventHandler<import("../../types").FocusableElement> | undefined;
|
1043
|
+
onWheel?: import("react").WheelEventHandler<import("../../types").FocusableElement> | undefined;
|
1044
|
+
onWheelCapture?: import("react").WheelEventHandler<import("../../types").FocusableElement> | undefined;
|
1045
|
+
onAnimationStart?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1046
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1047
|
+
onAnimationEnd?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1048
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1049
|
+
onAnimationIteration?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1050
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<import("../../types").FocusableElement> | undefined;
|
1051
|
+
onTransitionEnd?: import("react").TransitionEventHandler<import("../../types").FocusableElement> | undefined;
|
1052
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<import("../../types").FocusableElement> | undefined;
|
1053
|
+
};
|
1054
|
+
fieldLabelProps: {
|
1055
|
+
labelMode?: "float" | "left" | "default" | undefined;
|
1056
|
+
statusClasses?: {
|
1057
|
+
[className: string]: boolean;
|
1058
|
+
} | undefined;
|
1059
|
+
form?: string | undefined;
|
1060
|
+
slot?: string | undefined;
|
1061
|
+
style?: import("react").CSSProperties | undefined;
|
1062
|
+
title?: string | undefined;
|
1063
|
+
role?: import("react").AriaRole | undefined;
|
1064
|
+
className: string;
|
1065
|
+
'aria-activedescendant'?: string | undefined;
|
1066
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
1067
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
1068
|
+
'aria-braillelabel'?: string | undefined;
|
1069
|
+
'aria-brailleroledescription'?: string | undefined;
|
1070
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
1071
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
1072
|
+
'aria-colcount'?: number | undefined;
|
1073
|
+
'aria-colindex'?: number | undefined;
|
1074
|
+
'aria-colindextext'?: string | undefined;
|
1075
|
+
'aria-colspan'?: number | undefined;
|
1076
|
+
'aria-controls'?: string | undefined;
|
1077
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
1078
|
+
'aria-describedby'?: string | undefined;
|
1079
|
+
'aria-description'?: string | undefined;
|
1080
|
+
'aria-details'?: string | undefined;
|
1081
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
1082
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup" | undefined;
|
1083
|
+
'aria-errormessage'?: string | undefined;
|
1084
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
1085
|
+
'aria-flowto'?: string | undefined;
|
1086
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
1087
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "false" | "true" | undefined;
|
1088
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
1089
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
1090
|
+
'aria-keyshortcuts'?: string | undefined;
|
1091
|
+
'aria-label'?: string | undefined;
|
1092
|
+
'aria-labelledby'?: string | undefined;
|
1093
|
+
'aria-level'?: number | undefined;
|
1094
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
1095
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
1096
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
1097
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
1098
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
1099
|
+
'aria-owns'?: string | undefined;
|
1100
|
+
'aria-placeholder'?: string | undefined;
|
1101
|
+
'aria-posinset'?: number | undefined;
|
1102
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
1103
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
1104
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
1105
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
1106
|
+
'aria-roledescription'?: string | undefined;
|
1107
|
+
'aria-rowcount'?: number | undefined;
|
1108
|
+
'aria-rowindex'?: number | undefined;
|
1109
|
+
'aria-rowindextext'?: string | undefined;
|
1110
|
+
'aria-rowspan'?: number | undefined;
|
1111
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
1112
|
+
'aria-setsize'?: number | undefined;
|
1113
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
1114
|
+
'aria-valuemax'?: number | undefined;
|
1115
|
+
'aria-valuemin'?: number | undefined;
|
1116
|
+
'aria-valuenow'?: number | undefined;
|
1117
|
+
'aria-valuetext'?: string | undefined;
|
1118
|
+
color?: string | undefined;
|
1119
|
+
content?: string | undefined;
|
1120
|
+
translate?: "yes" | "no" | undefined;
|
1121
|
+
key?: import("react").Key | null | undefined;
|
1122
|
+
defaultChecked?: boolean | undefined;
|
1123
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
1124
|
+
suppressContentEditableWarning?: boolean | undefined;
|
1125
|
+
suppressHydrationWarning?: boolean | undefined;
|
1126
|
+
accessKey?: string | undefined;
|
1127
|
+
autoFocus?: boolean | undefined;
|
1128
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
1129
|
+
contextMenu?: string | undefined;
|
1130
|
+
dir?: string | undefined;
|
1131
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
1132
|
+
hidden?: boolean | undefined;
|
1133
|
+
id?: string | undefined;
|
1134
|
+
lang?: string | undefined;
|
1135
|
+
nonce?: string | undefined;
|
1136
|
+
placeholder?: string | undefined;
|
1137
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
1138
|
+
tabIndex?: number | undefined;
|
1139
|
+
radioGroup?: string | undefined;
|
1140
|
+
about?: string | undefined;
|
1141
|
+
datatype?: string | undefined;
|
1142
|
+
inlist?: any;
|
1143
|
+
prefix?: string | undefined;
|
1144
|
+
property?: string | undefined;
|
1145
|
+
rel?: string | undefined;
|
1146
|
+
resource?: string | undefined;
|
1147
|
+
rev?: string | undefined;
|
1148
|
+
typeof?: string | undefined;
|
1149
|
+
vocab?: string | undefined;
|
1150
|
+
autoCapitalize?: string | undefined;
|
1151
|
+
autoCorrect?: string | undefined;
|
1152
|
+
autoSave?: string | undefined;
|
1153
|
+
itemProp?: string | undefined;
|
1154
|
+
itemScope?: boolean | undefined;
|
1155
|
+
itemType?: string | undefined;
|
1156
|
+
itemID?: string | undefined;
|
1157
|
+
itemRef?: string | undefined;
|
1158
|
+
results?: number | undefined;
|
1159
|
+
security?: string | undefined;
|
1160
|
+
unselectable?: "off" | "on" | undefined;
|
1161
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1162
|
+
is?: string | undefined;
|
1163
|
+
children: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined;
|
1164
|
+
dangerouslySetInnerHTML?: {
|
1165
|
+
__html: string | TrustedHTML;
|
1166
|
+
} | undefined;
|
1167
|
+
onCopy?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1168
|
+
onCopyCapture?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1169
|
+
onCut?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1170
|
+
onCutCapture?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1171
|
+
onPaste?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1172
|
+
onPasteCapture?: import("react").ClipboardEventHandler<HTMLLabelElement> | undefined;
|
1173
|
+
onCompositionEnd?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1174
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1175
|
+
onCompositionStart?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1176
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1177
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1178
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLLabelElement> | undefined;
|
1179
|
+
onFocus?: import("react").FocusEventHandler<HTMLLabelElement> | undefined;
|
1180
|
+
onFocusCapture?: import("react").FocusEventHandler<HTMLLabelElement> | undefined;
|
1181
|
+
onBlur?: import("react").FocusEventHandler<HTMLLabelElement> | undefined;
|
1182
|
+
onBlurCapture?: import("react").FocusEventHandler<HTMLLabelElement> | undefined;
|
1183
|
+
onChange?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1184
|
+
onChangeCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1185
|
+
onBeforeInput?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1186
|
+
onBeforeInputCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1187
|
+
onInput?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1188
|
+
onInputCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1189
|
+
onReset?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1190
|
+
onResetCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1191
|
+
onSubmit?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1192
|
+
onSubmitCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1193
|
+
onInvalid?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1194
|
+
onInvalidCapture?: import("react").FormEventHandler<HTMLLabelElement> | undefined;
|
1195
|
+
onLoad?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1196
|
+
onLoadCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1197
|
+
onError?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1198
|
+
onErrorCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1199
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1200
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1201
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1202
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1203
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1204
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLLabelElement> | undefined;
|
1205
|
+
onAbort?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1206
|
+
onAbortCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1207
|
+
onCanPlay?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1208
|
+
onCanPlayCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1209
|
+
onCanPlayThrough?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1210
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1211
|
+
onDurationChange?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1212
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1213
|
+
onEmptied?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1214
|
+
onEmptiedCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1215
|
+
onEncrypted?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1216
|
+
onEncryptedCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1217
|
+
onEnded?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1218
|
+
onEndedCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1219
|
+
onLoadedData?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1220
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1221
|
+
onLoadedMetadata?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1222
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1223
|
+
onLoadStart?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1224
|
+
onLoadStartCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1225
|
+
onPause?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1226
|
+
onPauseCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1227
|
+
onPlay?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1228
|
+
onPlayCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1229
|
+
onPlaying?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1230
|
+
onPlayingCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1231
|
+
onProgress?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1232
|
+
onProgressCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1233
|
+
onRateChange?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1234
|
+
onRateChangeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1235
|
+
onResize?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1236
|
+
onResizeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1237
|
+
onSeeked?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1238
|
+
onSeekedCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1239
|
+
onSeeking?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1240
|
+
onSeekingCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1241
|
+
onStalled?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1242
|
+
onStalledCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1243
|
+
onSuspend?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1244
|
+
onSuspendCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1245
|
+
onTimeUpdate?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1246
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1247
|
+
onVolumeChange?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1248
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1249
|
+
onWaiting?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1250
|
+
onWaitingCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1251
|
+
onAuxClick?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1252
|
+
onAuxClickCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1253
|
+
onClick?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1254
|
+
onClickCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1255
|
+
onContextMenu?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1256
|
+
onContextMenuCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1257
|
+
onDoubleClick?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1258
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1259
|
+
onDrag?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1260
|
+
onDragCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1261
|
+
onDragEnd?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1262
|
+
onDragEndCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1263
|
+
onDragEnter?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1264
|
+
onDragEnterCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1265
|
+
onDragExit?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1266
|
+
onDragExitCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1267
|
+
onDragLeave?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1268
|
+
onDragLeaveCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1269
|
+
onDragOver?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1270
|
+
onDragOverCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1271
|
+
onDragStart?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1272
|
+
onDragStartCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1273
|
+
onDrop?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1274
|
+
onDropCapture?: import("react").DragEventHandler<HTMLLabelElement> | undefined;
|
1275
|
+
onMouseDown?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1276
|
+
onMouseDownCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1277
|
+
onMouseEnter?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1278
|
+
onMouseLeave?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1279
|
+
onMouseMove?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1280
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1281
|
+
onMouseOut?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1282
|
+
onMouseOutCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1283
|
+
onMouseOver?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1284
|
+
onMouseOverCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1285
|
+
onMouseUp?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1286
|
+
onMouseUpCapture?: import("react").MouseEventHandler<HTMLLabelElement> | undefined;
|
1287
|
+
onSelect?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1288
|
+
onSelectCapture?: import("react").ReactEventHandler<HTMLLabelElement> | undefined;
|
1289
|
+
onTouchCancel?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1290
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1291
|
+
onTouchEnd?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1292
|
+
onTouchEndCapture?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1293
|
+
onTouchMove?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1294
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1295
|
+
onTouchStart?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1296
|
+
onTouchStartCapture?: import("react").TouchEventHandler<HTMLLabelElement> | undefined;
|
1297
|
+
onPointerDown?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1298
|
+
onPointerDownCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1299
|
+
onPointerMove?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1300
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1301
|
+
onPointerUp?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1302
|
+
onPointerUpCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1303
|
+
onPointerCancel?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1304
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1305
|
+
onPointerEnter?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1306
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1307
|
+
onPointerLeave?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1308
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1309
|
+
onPointerOver?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1310
|
+
onPointerOverCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1311
|
+
onPointerOut?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1312
|
+
onPointerOutCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1313
|
+
onGotPointerCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1314
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1315
|
+
onLostPointerCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1316
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLLabelElement> | undefined;
|
1317
|
+
onScroll?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
1318
|
+
onScrollCapture?: import("react").UIEventHandler<HTMLLabelElement> | undefined;
|
1319
|
+
onWheel?: import("react").WheelEventHandler<HTMLLabelElement> | undefined;
|
1320
|
+
onWheelCapture?: import("react").WheelEventHandler<HTMLLabelElement> | undefined;
|
1321
|
+
onAnimationStart?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1322
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1323
|
+
onAnimationEnd?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1324
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1325
|
+
onAnimationIteration?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1326
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLLabelElement> | undefined;
|
1327
|
+
onTransitionEnd?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
1328
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLLabelElement> | undefined;
|
1329
|
+
htmlFor?: string | undefined;
|
1330
|
+
ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
|
1331
|
+
as?: import("react").ElementType<any> | undefined;
|
1332
|
+
variant?: string | undefined;
|
1333
|
+
css?: import("@emotion/serialize").Interpolation<any>;
|
1334
|
+
sx?: import("theme-ui").ThemeUIStyleObject | undefined;
|
1335
|
+
m?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1336
|
+
margin?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1337
|
+
mt?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1338
|
+
marginTop?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1339
|
+
mr?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1340
|
+
marginRight?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1341
|
+
mb?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1342
|
+
marginBottom?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1343
|
+
ml?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1344
|
+
marginLeft?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1345
|
+
mx?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1346
|
+
marginX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1347
|
+
my?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1348
|
+
marginY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1349
|
+
p?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1350
|
+
padding?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1351
|
+
pt?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1352
|
+
paddingTop?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1353
|
+
pr?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1354
|
+
paddingRight?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1355
|
+
pb?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1356
|
+
paddingBottom?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1357
|
+
pl?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1358
|
+
paddingLeft?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1359
|
+
px?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1360
|
+
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1361
|
+
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1362
|
+
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1363
|
+
bg?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1364
|
+
backgroundColor?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1365
|
+
opacity?: import("styled-system").ResponsiveValue<import("csstype").Property.Opacity, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1366
|
+
hintText: string | undefined;
|
1367
|
+
isRequired: boolean | undefined;
|
1368
|
+
mode: string | undefined;
|
1369
|
+
} | {
|
1370
|
+
labelMode?: "float" | "left" | "default" | undefined;
|
1371
|
+
statusClasses?: {
|
1372
|
+
[className: string]: boolean;
|
1373
|
+
} | undefined;
|
1374
|
+
form?: string | undefined;
|
1375
|
+
slot?: string | undefined;
|
1376
|
+
style?: import("react").CSSProperties | undefined;
|
1377
|
+
title?: string | undefined;
|
1378
|
+
role?: import("react").AriaRole | undefined;
|
1379
|
+
className: string;
|
1380
|
+
'aria-activedescendant'?: string | undefined;
|
1381
|
+
'aria-atomic'?: (boolean | "false" | "true") | undefined;
|
1382
|
+
'aria-autocomplete'?: "list" | "none" | "both" | "inline" | undefined;
|
1383
|
+
'aria-braillelabel'?: string | undefined;
|
1384
|
+
'aria-brailleroledescription'?: string | undefined;
|
1385
|
+
'aria-busy'?: (boolean | "false" | "true") | undefined;
|
1386
|
+
'aria-checked'?: boolean | "mixed" | "false" | "true" | undefined;
|
1387
|
+
'aria-colcount'?: number | undefined;
|
1388
|
+
'aria-colindex'?: number | undefined;
|
1389
|
+
'aria-colindextext'?: string | undefined;
|
1390
|
+
'aria-colspan'?: number | undefined;
|
1391
|
+
'aria-controls'?: string | undefined;
|
1392
|
+
'aria-current'?: boolean | "time" | "page" | "false" | "true" | "step" | "location" | "date" | undefined;
|
1393
|
+
'aria-describedby'?: string | undefined;
|
1394
|
+
'aria-description'?: string | undefined;
|
1395
|
+
'aria-details'?: string | undefined;
|
1396
|
+
'aria-disabled'?: (boolean | "false" | "true") | undefined;
|
1397
|
+
'aria-dropeffect'?: "link" | "copy" | "none" | "move" | "execute" | "popup" | undefined;
|
1398
|
+
'aria-errormessage'?: string | undefined;
|
1399
|
+
'aria-expanded'?: (boolean | "false" | "true") | undefined;
|
1400
|
+
'aria-flowto'?: string | undefined;
|
1401
|
+
'aria-grabbed'?: (boolean | "false" | "true") | undefined;
|
1402
|
+
'aria-haspopup'?: boolean | "dialog" | "menu" | "grid" | "listbox" | "tree" | "false" | "true" | undefined;
|
1403
|
+
'aria-hidden'?: (boolean | "false" | "true") | undefined;
|
1404
|
+
'aria-invalid'?: boolean | "false" | "true" | "grammar" | "spelling" | undefined;
|
1405
|
+
'aria-keyshortcuts'?: string | undefined;
|
1406
|
+
'aria-label'?: string | undefined;
|
1407
|
+
'aria-labelledby'?: string | undefined;
|
1408
|
+
'aria-level'?: number | undefined;
|
1409
|
+
'aria-live'?: "off" | "assertive" | "polite" | undefined;
|
1410
|
+
'aria-modal'?: (boolean | "false" | "true") | undefined;
|
1411
|
+
'aria-multiline'?: (boolean | "false" | "true") | undefined;
|
1412
|
+
'aria-multiselectable'?: (boolean | "false" | "true") | undefined;
|
1413
|
+
'aria-orientation'?: "horizontal" | "vertical" | undefined;
|
1414
|
+
'aria-owns'?: string | undefined;
|
1415
|
+
'aria-placeholder'?: string | undefined;
|
1416
|
+
'aria-posinset'?: number | undefined;
|
1417
|
+
'aria-pressed'?: boolean | "mixed" | "false" | "true" | undefined;
|
1418
|
+
'aria-readonly'?: (boolean | "false" | "true") | undefined;
|
1419
|
+
'aria-relevant'?: "all" | "text" | "additions" | "additions removals" | "additions text" | "removals" | "removals additions" | "removals text" | "text additions" | "text removals" | undefined;
|
1420
|
+
'aria-required'?: (boolean | "false" | "true") | undefined;
|
1421
|
+
'aria-roledescription'?: string | undefined;
|
1422
|
+
'aria-rowcount'?: number | undefined;
|
1423
|
+
'aria-rowindex'?: number | undefined;
|
1424
|
+
'aria-rowindextext'?: string | undefined;
|
1425
|
+
'aria-rowspan'?: number | undefined;
|
1426
|
+
'aria-selected'?: (boolean | "false" | "true") | undefined;
|
1427
|
+
'aria-setsize'?: number | undefined;
|
1428
|
+
'aria-sort'?: "none" | "ascending" | "descending" | "other" | undefined;
|
1429
|
+
'aria-valuemax'?: number | undefined;
|
1430
|
+
'aria-valuemin'?: number | undefined;
|
1431
|
+
'aria-valuenow'?: number | undefined;
|
1432
|
+
'aria-valuetext'?: string | undefined;
|
1433
|
+
color?: string | undefined;
|
1434
|
+
content?: string | undefined;
|
1435
|
+
translate?: "yes" | "no" | undefined;
|
1436
|
+
key?: import("react").Key | null | undefined;
|
1437
|
+
defaultChecked?: boolean | undefined;
|
1438
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
1439
|
+
suppressContentEditableWarning?: boolean | undefined;
|
1440
|
+
suppressHydrationWarning?: boolean | undefined;
|
1441
|
+
accessKey?: string | undefined;
|
1442
|
+
autoFocus?: boolean | undefined;
|
1443
|
+
contentEditable?: "inherit" | (boolean | "false" | "true") | undefined;
|
1444
|
+
contextMenu?: string | undefined;
|
1445
|
+
dir?: string | undefined;
|
1446
|
+
draggable?: (boolean | "false" | "true") | undefined;
|
1447
|
+
hidden?: boolean | undefined;
|
1448
|
+
id?: string | undefined;
|
1449
|
+
lang?: string | undefined;
|
1450
|
+
nonce?: string | undefined;
|
1451
|
+
placeholder?: string | undefined;
|
1452
|
+
spellCheck?: (boolean | "false" | "true") | undefined;
|
1453
|
+
tabIndex?: number | undefined;
|
1454
|
+
radioGroup?: string | undefined;
|
1455
|
+
about?: string | undefined;
|
1456
|
+
datatype?: string | undefined;
|
1457
|
+
inlist?: any;
|
1458
|
+
prefix?: string | undefined;
|
1459
|
+
property?: string | undefined;
|
1460
|
+
rel?: string | undefined;
|
1461
|
+
resource?: string | undefined;
|
1462
|
+
rev?: string | undefined;
|
1463
|
+
typeof?: string | undefined;
|
1464
|
+
vocab?: string | undefined;
|
1465
|
+
autoCapitalize?: string | undefined;
|
1466
|
+
autoCorrect?: string | undefined;
|
1467
|
+
autoSave?: string | undefined;
|
1468
|
+
itemProp?: string | undefined;
|
1469
|
+
itemScope?: boolean | undefined;
|
1470
|
+
itemType?: string | undefined;
|
1471
|
+
itemID?: string | undefined;
|
1472
|
+
itemRef?: string | undefined;
|
1473
|
+
results?: number | undefined;
|
1474
|
+
security?: string | undefined;
|
1475
|
+
unselectable?: "off" | "on" | undefined;
|
1476
|
+
inputMode?: "none" | "search" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | undefined;
|
1477
|
+
is?: string | undefined;
|
1478
|
+
children: string | number | boolean | import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>> | Iterable<import("react").ReactNode> | null | undefined;
|
1479
|
+
dangerouslySetInnerHTML?: {
|
1480
|
+
__html: string | TrustedHTML;
|
1481
|
+
} | undefined;
|
1482
|
+
onCopy?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1483
|
+
onCopyCapture?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1484
|
+
onCut?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1485
|
+
onCutCapture?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1486
|
+
onPaste?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1487
|
+
onPasteCapture?: import("react").ClipboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1488
|
+
onCompositionEnd?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1489
|
+
onCompositionEndCapture?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1490
|
+
onCompositionStart?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1491
|
+
onCompositionStartCapture?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1492
|
+
onCompositionUpdate?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1493
|
+
onCompositionUpdateCapture?: import("react").CompositionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1494
|
+
onFocus?: import("react").FocusEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1495
|
+
onFocusCapture?: import("react").FocusEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1496
|
+
onBlur?: import("react").FocusEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1497
|
+
onBlurCapture?: import("react").FocusEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1498
|
+
onChange?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1499
|
+
onChangeCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1500
|
+
onBeforeInput?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1501
|
+
onBeforeInputCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1502
|
+
onInput?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1503
|
+
onInputCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1504
|
+
onReset?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1505
|
+
onResetCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1506
|
+
onSubmit?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1507
|
+
onSubmitCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1508
|
+
onInvalid?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1509
|
+
onInvalidCapture?: import("react").FormEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1510
|
+
onLoad?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1511
|
+
onLoadCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1512
|
+
onError?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1513
|
+
onErrorCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1514
|
+
onKeyDown?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1515
|
+
onKeyDownCapture?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1516
|
+
onKeyPress?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1517
|
+
onKeyPressCapture?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1518
|
+
onKeyUp?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1519
|
+
onKeyUpCapture?: import("react").KeyboardEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1520
|
+
onAbort?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1521
|
+
onAbortCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1522
|
+
onCanPlay?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1523
|
+
onCanPlayCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1524
|
+
onCanPlayThrough?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1525
|
+
onCanPlayThroughCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1526
|
+
onDurationChange?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1527
|
+
onDurationChangeCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1528
|
+
onEmptied?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1529
|
+
onEmptiedCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1530
|
+
onEncrypted?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1531
|
+
onEncryptedCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1532
|
+
onEnded?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1533
|
+
onEndedCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1534
|
+
onLoadedData?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1535
|
+
onLoadedDataCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1536
|
+
onLoadedMetadata?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1537
|
+
onLoadedMetadataCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1538
|
+
onLoadStart?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1539
|
+
onLoadStartCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1540
|
+
onPause?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1541
|
+
onPauseCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1542
|
+
onPlay?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1543
|
+
onPlayCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1544
|
+
onPlaying?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1545
|
+
onPlayingCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1546
|
+
onProgress?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1547
|
+
onProgressCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1548
|
+
onRateChange?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1549
|
+
onRateChangeCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1550
|
+
onResize?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1551
|
+
onResizeCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1552
|
+
onSeeked?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1553
|
+
onSeekedCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1554
|
+
onSeeking?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1555
|
+
onSeekingCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1556
|
+
onStalled?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1557
|
+
onStalledCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1558
|
+
onSuspend?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1559
|
+
onSuspendCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1560
|
+
onTimeUpdate?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1561
|
+
onTimeUpdateCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1562
|
+
onVolumeChange?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1563
|
+
onVolumeChangeCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1564
|
+
onWaiting?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1565
|
+
onWaitingCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1566
|
+
onAuxClick?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1567
|
+
onAuxClickCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1568
|
+
onClick?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1569
|
+
onClickCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1570
|
+
onContextMenu?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1571
|
+
onContextMenuCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1572
|
+
onDoubleClick?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1573
|
+
onDoubleClickCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1574
|
+
onDrag?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1575
|
+
onDragCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1576
|
+
onDragEnd?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1577
|
+
onDragEndCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1578
|
+
onDragEnter?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1579
|
+
onDragEnterCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1580
|
+
onDragExit?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1581
|
+
onDragExitCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1582
|
+
onDragLeave?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1583
|
+
onDragLeaveCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1584
|
+
onDragOver?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1585
|
+
onDragOverCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1586
|
+
onDragStart?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1587
|
+
onDragStartCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1588
|
+
onDrop?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1589
|
+
onDropCapture?: import("react").DragEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1590
|
+
onMouseDown?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1591
|
+
onMouseDownCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1592
|
+
onMouseEnter?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1593
|
+
onMouseLeave?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1594
|
+
onMouseMove?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1595
|
+
onMouseMoveCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1596
|
+
onMouseOut?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1597
|
+
onMouseOutCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1598
|
+
onMouseOver?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1599
|
+
onMouseOverCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1600
|
+
onMouseUp?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1601
|
+
onMouseUpCapture?: import("react").MouseEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1602
|
+
onSelect?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1603
|
+
onSelectCapture?: import("react").ReactEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1604
|
+
onTouchCancel?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1605
|
+
onTouchCancelCapture?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1606
|
+
onTouchEnd?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1607
|
+
onTouchEndCapture?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1608
|
+
onTouchMove?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1609
|
+
onTouchMoveCapture?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1610
|
+
onTouchStart?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1611
|
+
onTouchStartCapture?: import("react").TouchEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1612
|
+
onPointerDown?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1613
|
+
onPointerDownCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1614
|
+
onPointerMove?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1615
|
+
onPointerMoveCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1616
|
+
onPointerUp?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1617
|
+
onPointerUpCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1618
|
+
onPointerCancel?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1619
|
+
onPointerCancelCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1620
|
+
onPointerEnter?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1621
|
+
onPointerEnterCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1622
|
+
onPointerLeave?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1623
|
+
onPointerLeaveCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1624
|
+
onPointerOver?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1625
|
+
onPointerOverCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1626
|
+
onPointerOut?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1627
|
+
onPointerOutCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1628
|
+
onGotPointerCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1629
|
+
onGotPointerCaptureCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1630
|
+
onLostPointerCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1631
|
+
onLostPointerCaptureCapture?: import("react").PointerEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1632
|
+
onScroll?: import("react").UIEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1633
|
+
onScrollCapture?: import("react").UIEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1634
|
+
onWheel?: import("react").WheelEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1635
|
+
onWheelCapture?: import("react").WheelEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1636
|
+
onAnimationStart?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1637
|
+
onAnimationStartCapture?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1638
|
+
onAnimationEnd?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1639
|
+
onAnimationEndCapture?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1640
|
+
onAnimationIteration?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1641
|
+
onAnimationIterationCapture?: import("react").AnimationEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1642
|
+
onTransitionEnd?: import("react").TransitionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1643
|
+
onTransitionEndCapture?: import("react").TransitionEventHandler<import("@react-types/shared").FocusableElement> | undefined;
|
1644
|
+
htmlFor?: string | undefined;
|
1645
|
+
ref?: ((instance: HTMLLabelElement | null) => void) | import("react").RefObject<HTMLLabelElement> | null | undefined;
|
1646
|
+
as?: import("react").ElementType<any> | undefined;
|
1647
|
+
variant?: string | undefined;
|
1648
|
+
css?: import("@emotion/serialize").Interpolation<any>;
|
1649
|
+
sx?: import("theme-ui").ThemeUIStyleObject | undefined;
|
1650
|
+
m?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1651
|
+
margin?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1652
|
+
mt?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1653
|
+
marginTop?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1654
|
+
mr?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1655
|
+
marginRight?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1656
|
+
mb?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1657
|
+
marginBottom?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1658
|
+
ml?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1659
|
+
marginLeft?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1660
|
+
mx?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1661
|
+
marginX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1662
|
+
my?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1663
|
+
marginY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1664
|
+
p?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1665
|
+
padding?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1666
|
+
pt?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1667
|
+
paddingTop?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1668
|
+
pr?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1669
|
+
paddingRight?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1670
|
+
pb?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1671
|
+
paddingBottom?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1672
|
+
pl?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1673
|
+
paddingLeft?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1674
|
+
px?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1675
|
+
paddingX?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1676
|
+
py?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1677
|
+
paddingY?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1678
|
+
bg?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1679
|
+
backgroundColor?: import("styled-system").ResponsiveValue<string | number | symbol, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1680
|
+
opacity?: import("styled-system").ResponsiveValue<import("csstype").Property.Opacity, Required<import("styled-system").Theme<import("styled-system").TLengthStyledSystem>>> | undefined;
|
1681
|
+
hintText: string | undefined;
|
1682
|
+
isRequired: boolean | undefined;
|
1683
|
+
mode: string | undefined;
|
1684
|
+
};
|
1685
|
+
};
|
1686
|
+
export default useField;
|