@spark-web/text-input 1.1.1 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -1
- package/dist/declarations/src/InputContainer.d.ts +10 -0
- package/dist/declarations/src/TextInput.d.ts +1869 -912
- package/dist/declarations/src/index.d.ts +4 -2
- package/dist/spark-web-text-input.cjs.dev.js +100 -53
- package/dist/spark-web-text-input.cjs.prod.js +100 -53
- package/dist/spark-web-text-input.esm.js +100 -54
- package/package.json +10 -9
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type {
|
|
1
|
+
import type { FieldState } from '@spark-web/field';
|
|
2
2
|
import type { DataAttributeMap } from '@spark-web/utils/internal';
|
|
3
|
-
import type {
|
|
3
|
+
import type { InputHTMLAttributes } from 'react';
|
|
4
4
|
import type { AdornmentsAsChildren } from './childrenToAdornments';
|
|
5
5
|
declare type ValidTypes = 'text' | 'password' | 'email' | 'search' | 'number' | 'tel' | 'url';
|
|
6
6
|
declare type ValidModes = 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search';
|
|
7
|
-
declare type NativeInputProps = Pick<
|
|
7
|
+
declare type NativeInputProps = Pick<InputHTMLAttributes<HTMLInputElement>, 'name' | 'onBlur' | 'onChange' | 'onFocus' | 'placeholder' | 'value' | 'required'>;
|
|
8
8
|
export declare type TextInputProps = {
|
|
9
9
|
/** Map of data attributes. */
|
|
10
10
|
data?: DataAttributeMap;
|
|
@@ -40,13 +40,41 @@ export declare const TextInput: import("react").ForwardRefExoticComponent<{
|
|
|
40
40
|
*/
|
|
41
41
|
children?: AdornmentsAsChildren;
|
|
42
42
|
} & NativeInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
43
|
-
export declare type
|
|
44
|
-
|
|
43
|
+
export declare type UseInputStylesProps = FieldState & {
|
|
44
|
+
startAdornment?: boolean;
|
|
45
|
+
endAdornment?: boolean;
|
|
45
46
|
};
|
|
46
|
-
|
|
47
|
+
/**
|
|
48
|
+
* Returns a tuple where the first item is an object of props to spread onto the
|
|
49
|
+
* underlying Box component that our inputs are created with, and the second
|
|
50
|
+
* item is a CSS object to be passed to Emotion's `css` function
|
|
51
|
+
**/
|
|
52
|
+
export declare const useInputStyles: ({ disabled, startAdornment, endAdornment, }: UseInputStylesProps) => readonly [{
|
|
53
|
+
readonly flex: 1;
|
|
54
|
+
readonly position: "relative";
|
|
55
|
+
readonly height: "medium";
|
|
56
|
+
readonly paddingLeft: "none" | "medium";
|
|
57
|
+
readonly paddingRight: "none" | "medium";
|
|
58
|
+
readonly shadow: "small";
|
|
59
|
+
readonly width: "full";
|
|
60
|
+
}, {
|
|
61
|
+
readonly ':enabled': {
|
|
62
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
63
|
+
readonly boxShadow: string;
|
|
64
|
+
readonly outline: string;
|
|
65
|
+
readonly outlineOffset: string;
|
|
66
|
+
readonly borderColor: string;
|
|
67
|
+
} | {
|
|
68
|
+
readonly outline: string;
|
|
69
|
+
readonly outlineOffset: string;
|
|
70
|
+
readonly borderColor: string;
|
|
71
|
+
};
|
|
72
|
+
};
|
|
47
73
|
readonly ':focus': {
|
|
48
|
-
outline:
|
|
49
|
-
|
|
74
|
+
readonly outline: "none";
|
|
75
|
+
};
|
|
76
|
+
readonly ':invalid': {
|
|
77
|
+
readonly color: string;
|
|
50
78
|
};
|
|
51
79
|
readonly accentColor?: import("csstype").Property.AccentColor | import("csstype").Property.AccentColor[] | undefined;
|
|
52
80
|
readonly alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
@@ -57,7 +85,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
57
85
|
readonly animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
58
86
|
readonly animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
59
87
|
readonly animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
60
|
-
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
88
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
61
89
|
readonly animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
62
90
|
readonly animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
63
91
|
readonly animationTimeline?: import("csstype").Property.AnimationTimeline | import("csstype").Property.AnimationTimeline[] | undefined;
|
|
@@ -72,58 +100,58 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
72
100
|
readonly backgroundColor?: import("csstype").Property.BackgroundColor | import("csstype").Property.BackgroundColor[] | undefined;
|
|
73
101
|
readonly backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[] | undefined;
|
|
74
102
|
readonly backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
75
|
-
readonly backgroundPositionX?:
|
|
76
|
-
readonly backgroundPositionY?:
|
|
103
|
+
readonly backgroundPositionX?: string | number | import("csstype").Property.BackgroundPositionX<string | number>[] | undefined;
|
|
104
|
+
readonly backgroundPositionY?: string | number | import("csstype").Property.BackgroundPositionY<string | number>[] | undefined;
|
|
77
105
|
readonly backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
78
|
-
readonly backgroundSize?:
|
|
106
|
+
readonly backgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
79
107
|
readonly blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[] | undefined;
|
|
80
|
-
readonly blockSize?:
|
|
108
|
+
readonly blockSize?: string | number | import("csstype").Property.BlockSize<string | number>[] | undefined;
|
|
81
109
|
readonly borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[] | undefined;
|
|
82
110
|
readonly borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
83
111
|
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
84
|
-
readonly borderBlockEndWidth?:
|
|
112
|
+
readonly borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[] | undefined;
|
|
85
113
|
readonly borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
86
114
|
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
87
|
-
readonly borderBlockStartWidth?:
|
|
115
|
+
readonly borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[] | undefined;
|
|
88
116
|
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
89
|
-
readonly borderBlockWidth?:
|
|
117
|
+
readonly borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[] | undefined;
|
|
90
118
|
readonly borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[] | undefined;
|
|
91
|
-
readonly borderBottomLeftRadius?:
|
|
92
|
-
readonly borderBottomRightRadius?:
|
|
119
|
+
readonly borderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
120
|
+
readonly borderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
93
121
|
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
94
|
-
readonly borderBottomWidth?:
|
|
122
|
+
readonly borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[] | undefined;
|
|
95
123
|
readonly borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[] | undefined;
|
|
96
|
-
readonly borderEndEndRadius?:
|
|
97
|
-
readonly borderEndStartRadius?:
|
|
98
|
-
readonly borderImageOutset?:
|
|
124
|
+
readonly borderEndEndRadius?: string | number | import("csstype").Property.BorderEndEndRadius<string | number>[] | undefined;
|
|
125
|
+
readonly borderEndStartRadius?: string | number | import("csstype").Property.BorderEndStartRadius<string | number>[] | undefined;
|
|
126
|
+
readonly borderImageOutset?: string | number | import("csstype").Property.BorderImageOutset<string | number>[] | undefined;
|
|
99
127
|
readonly borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
100
|
-
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] |
|
|
128
|
+
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
101
129
|
readonly borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[] | undefined;
|
|
102
|
-
readonly borderImageWidth?:
|
|
130
|
+
readonly borderImageWidth?: string | number | import("csstype").Property.BorderImageWidth<string | number>[] | undefined;
|
|
103
131
|
readonly borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[] | undefined;
|
|
104
132
|
readonly borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
105
133
|
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
106
|
-
readonly borderInlineEndWidth?:
|
|
134
|
+
readonly borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
107
135
|
readonly borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
108
136
|
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
109
|
-
readonly borderInlineStartWidth?:
|
|
137
|
+
readonly borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[] | undefined;
|
|
110
138
|
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
111
|
-
readonly borderInlineWidth?:
|
|
139
|
+
readonly borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[] | undefined;
|
|
112
140
|
readonly borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[] | undefined;
|
|
113
141
|
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
114
|
-
readonly borderLeftWidth?:
|
|
142
|
+
readonly borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[] | undefined;
|
|
115
143
|
readonly borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[] | undefined;
|
|
116
144
|
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[] | undefined;
|
|
117
|
-
readonly borderRightWidth?:
|
|
118
|
-
readonly borderSpacing?:
|
|
119
|
-
readonly borderStartEndRadius?:
|
|
120
|
-
readonly borderStartStartRadius?:
|
|
145
|
+
readonly borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[] | undefined;
|
|
146
|
+
readonly borderSpacing?: string | number | import("csstype").Property.BorderSpacing<string | number>[] | undefined;
|
|
147
|
+
readonly borderStartEndRadius?: string | number | import("csstype").Property.BorderStartEndRadius<string | number>[] | undefined;
|
|
148
|
+
readonly borderStartStartRadius?: string | number | import("csstype").Property.BorderStartStartRadius<string | number>[] | undefined;
|
|
121
149
|
readonly borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[] | undefined;
|
|
122
|
-
readonly borderTopLeftRadius?:
|
|
123
|
-
readonly borderTopRightRadius?:
|
|
150
|
+
readonly borderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
151
|
+
readonly borderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
124
152
|
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[] | undefined;
|
|
125
|
-
readonly borderTopWidth?:
|
|
126
|
-
readonly bottom?:
|
|
153
|
+
readonly borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[] | undefined;
|
|
154
|
+
readonly bottom?: string | number | import("csstype").Property.Bottom<string | number>[] | undefined;
|
|
127
155
|
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
128
156
|
readonly boxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
129
157
|
readonly boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
@@ -137,14 +165,14 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
137
165
|
readonly color?: import("csstype").Property.Color | import("csstype").Property.Color[] | undefined;
|
|
138
166
|
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
139
167
|
readonly colorScheme?: import("csstype").Property.ColorScheme | import("csstype").Property.ColorScheme[] | undefined;
|
|
140
|
-
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
168
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
141
169
|
readonly columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
142
|
-
readonly columnGap?:
|
|
170
|
+
readonly columnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
143
171
|
readonly columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
144
172
|
readonly columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
145
|
-
readonly columnRuleWidth?:
|
|
173
|
+
readonly columnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
146
174
|
readonly columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
147
|
-
readonly columnWidth?:
|
|
175
|
+
readonly columnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
148
176
|
readonly contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[] | undefined;
|
|
149
177
|
readonly content?: import("csstype").Property.Content | import("csstype").Property.Content[] | undefined;
|
|
150
178
|
readonly contentVisibility?: import("csstype").Property.ContentVisibility | import("csstype").Property.ContentVisibility[] | undefined;
|
|
@@ -156,10 +184,10 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
156
184
|
readonly display?: import("csstype").Property.Display | import("csstype").Property.Display[] | undefined;
|
|
157
185
|
readonly emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[] | undefined;
|
|
158
186
|
readonly filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
159
|
-
readonly flexBasis?:
|
|
187
|
+
readonly flexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
160
188
|
readonly flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
161
|
-
readonly flexGrow?:
|
|
162
|
-
readonly flexShrink?:
|
|
189
|
+
readonly flexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
190
|
+
readonly flexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
163
191
|
readonly flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
164
192
|
readonly float?: import("csstype").Property.Float | import("csstype").Property.Float[] | undefined;
|
|
165
193
|
readonly fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[] | undefined;
|
|
@@ -167,9 +195,9 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
167
195
|
readonly fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
168
196
|
readonly fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
169
197
|
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
170
|
-
readonly fontSize?:
|
|
171
|
-
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] |
|
|
172
|
-
readonly fontSmooth?:
|
|
198
|
+
readonly fontSize?: string | number | import("csstype").Property.FontSize<string | number>[] | undefined;
|
|
199
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | undefined;
|
|
200
|
+
readonly fontSmooth?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
173
201
|
readonly fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[] | undefined;
|
|
174
202
|
readonly fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[] | undefined;
|
|
175
203
|
readonly fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[] | undefined;
|
|
@@ -181,105 +209,105 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
181
209
|
readonly fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
182
210
|
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[] | undefined;
|
|
183
211
|
readonly fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[] | undefined;
|
|
184
|
-
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] |
|
|
212
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | undefined;
|
|
185
213
|
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
186
|
-
readonly gridAutoColumns?:
|
|
214
|
+
readonly gridAutoColumns?: string | number | import("csstype").Property.GridAutoColumns<string | number>[] | undefined;
|
|
187
215
|
readonly gridAutoFlow?: import("csstype").Property.GridAutoFlow | import("csstype").Property.GridAutoFlow[] | undefined;
|
|
188
|
-
readonly gridAutoRows?:
|
|
189
|
-
readonly gridColumnEnd?:
|
|
190
|
-
readonly gridColumnStart?:
|
|
191
|
-
readonly gridRowEnd?:
|
|
192
|
-
readonly gridRowStart?:
|
|
216
|
+
readonly gridAutoRows?: string | number | import("csstype").Property.GridAutoRows<string | number>[] | undefined;
|
|
217
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | undefined;
|
|
218
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[] | undefined;
|
|
219
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[] | undefined;
|
|
220
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[] | undefined;
|
|
193
221
|
readonly gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
194
|
-
readonly gridTemplateColumns?:
|
|
195
|
-
readonly gridTemplateRows?:
|
|
222
|
+
readonly gridTemplateColumns?: string | number | import("csstype").Property.GridTemplateColumns<string | number>[] | undefined;
|
|
223
|
+
readonly gridTemplateRows?: string | number | import("csstype").Property.GridTemplateRows<string | number>[] | undefined;
|
|
196
224
|
readonly hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[] | undefined;
|
|
197
|
-
readonly height?:
|
|
225
|
+
readonly height?: string | number | import("csstype").Property.Height<string | number>[] | undefined;
|
|
198
226
|
readonly hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
199
227
|
readonly hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
200
228
|
readonly imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[] | undefined;
|
|
201
229
|
readonly imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[] | undefined;
|
|
202
230
|
readonly imageResolution?: import("csstype").Property.ImageResolution | import("csstype").Property.ImageResolution[] | undefined;
|
|
203
|
-
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] |
|
|
204
|
-
readonly inlineSize?:
|
|
231
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
232
|
+
readonly inlineSize?: string | number | import("csstype").Property.InlineSize<string | number>[] | undefined;
|
|
205
233
|
readonly inputSecurity?: import("csstype").Property.InputSecurity | import("csstype").Property.InputSecurity[] | undefined;
|
|
206
|
-
readonly inset?:
|
|
207
|
-
readonly insetBlock?:
|
|
208
|
-
readonly insetBlockEnd?:
|
|
209
|
-
readonly insetBlockStart?:
|
|
210
|
-
readonly insetInline?:
|
|
211
|
-
readonly insetInlineEnd?:
|
|
212
|
-
readonly insetInlineStart?:
|
|
234
|
+
readonly inset?: string | number | import("csstype").Property.Inset<string | number>[] | undefined;
|
|
235
|
+
readonly insetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
236
|
+
readonly insetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
237
|
+
readonly insetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
238
|
+
readonly insetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
239
|
+
readonly insetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
240
|
+
readonly insetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
213
241
|
readonly isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[] | undefined;
|
|
214
242
|
readonly justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
215
243
|
readonly justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[] | undefined;
|
|
216
244
|
readonly justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
217
245
|
readonly justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[] | undefined;
|
|
218
|
-
readonly left?:
|
|
219
|
-
readonly letterSpacing?:
|
|
246
|
+
readonly left?: string | number | import("csstype").Property.Left<string | number>[] | undefined;
|
|
247
|
+
readonly letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[] | undefined;
|
|
220
248
|
readonly lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
221
|
-
readonly lineHeight?:
|
|
222
|
-
readonly lineHeightStep?:
|
|
249
|
+
readonly lineHeight?: string | number | import("csstype").Property.LineHeight<string | number>[] | undefined;
|
|
250
|
+
readonly lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[] | undefined;
|
|
223
251
|
readonly listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[] | undefined;
|
|
224
252
|
readonly listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[] | undefined;
|
|
225
253
|
readonly listStyleType?: import("csstype").Property.ListStyleType | import("csstype").Property.ListStyleType[] | undefined;
|
|
226
|
-
readonly marginBlock?:
|
|
227
|
-
readonly marginBlockEnd?:
|
|
228
|
-
readonly marginBlockStart?:
|
|
229
|
-
readonly marginBottom?:
|
|
230
|
-
readonly marginInline?:
|
|
231
|
-
readonly marginInlineEnd?:
|
|
232
|
-
readonly marginInlineStart?:
|
|
233
|
-
readonly marginLeft?:
|
|
234
|
-
readonly marginRight?:
|
|
235
|
-
readonly marginTop?:
|
|
254
|
+
readonly marginBlock?: string | number | import("csstype").Property.MarginBlock<string | number>[] | undefined;
|
|
255
|
+
readonly marginBlockEnd?: string | number | import("csstype").Property.MarginBlockEnd<string | number>[] | undefined;
|
|
256
|
+
readonly marginBlockStart?: string | number | import("csstype").Property.MarginBlockStart<string | number>[] | undefined;
|
|
257
|
+
readonly marginBottom?: string | number | import("csstype").Property.MarginBottom<string | number>[] | undefined;
|
|
258
|
+
readonly marginInline?: string | number | import("csstype").Property.MarginInline<string | number>[] | undefined;
|
|
259
|
+
readonly marginInlineEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
260
|
+
readonly marginInlineStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
261
|
+
readonly marginLeft?: string | number | import("csstype").Property.MarginLeft<string | number>[] | undefined;
|
|
262
|
+
readonly marginRight?: string | number | import("csstype").Property.MarginRight<string | number>[] | undefined;
|
|
263
|
+
readonly marginTop?: string | number | import("csstype").Property.MarginTop<string | number>[] | undefined;
|
|
236
264
|
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[] | undefined;
|
|
237
|
-
readonly maskBorderOutset?:
|
|
265
|
+
readonly maskBorderOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
238
266
|
readonly maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
239
|
-
readonly maskBorderSlice?:
|
|
267
|
+
readonly maskBorderSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
240
268
|
readonly maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
241
|
-
readonly maskBorderWidth?:
|
|
269
|
+
readonly maskBorderWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
242
270
|
readonly maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[] | undefined;
|
|
243
271
|
readonly maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[] | undefined;
|
|
244
272
|
readonly maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[] | undefined;
|
|
245
273
|
readonly maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[] | undefined;
|
|
246
274
|
readonly maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[] | undefined;
|
|
247
|
-
readonly maskPosition?:
|
|
275
|
+
readonly maskPosition?: string | number | import("csstype").Property.MaskPosition<string | number>[] | undefined;
|
|
248
276
|
readonly maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[] | undefined;
|
|
249
|
-
readonly maskSize?:
|
|
277
|
+
readonly maskSize?: string | number | import("csstype").Property.MaskSize<string | number>[] | undefined;
|
|
250
278
|
readonly maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[] | undefined;
|
|
251
279
|
readonly mathStyle?: import("csstype").Property.MathStyle | import("csstype").Property.MathStyle[] | undefined;
|
|
252
|
-
readonly maxBlockSize?:
|
|
253
|
-
readonly maxHeight?:
|
|
254
|
-
readonly maxInlineSize?:
|
|
255
|
-
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] |
|
|
256
|
-
readonly maxWidth?:
|
|
257
|
-
readonly minBlockSize?:
|
|
258
|
-
readonly minHeight?:
|
|
259
|
-
readonly minInlineSize?:
|
|
260
|
-
readonly minWidth?:
|
|
280
|
+
readonly maxBlockSize?: string | number | import("csstype").Property.MaxBlockSize<string | number>[] | undefined;
|
|
281
|
+
readonly maxHeight?: string | number | import("csstype").Property.MaxHeight<string | number>[] | undefined;
|
|
282
|
+
readonly maxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
283
|
+
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] | undefined;
|
|
284
|
+
readonly maxWidth?: string | number | import("csstype").Property.MaxWidth<string | number>[] | undefined;
|
|
285
|
+
readonly minBlockSize?: string | number | import("csstype").Property.MinBlockSize<string | number>[] | undefined;
|
|
286
|
+
readonly minHeight?: string | number | import("csstype").Property.MinHeight<string | number>[] | undefined;
|
|
287
|
+
readonly minInlineSize?: string | number | import("csstype").Property.MinInlineSize<string | number>[] | undefined;
|
|
288
|
+
readonly minWidth?: string | number | import("csstype").Property.MinWidth<string | number>[] | undefined;
|
|
261
289
|
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[] | undefined;
|
|
262
|
-
readonly motionDistance?:
|
|
290
|
+
readonly motionDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
263
291
|
readonly motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
264
292
|
readonly motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
265
293
|
readonly objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
266
|
-
readonly objectPosition?:
|
|
267
|
-
readonly offsetAnchor?:
|
|
268
|
-
readonly offsetDistance?:
|
|
294
|
+
readonly objectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
295
|
+
readonly offsetAnchor?: string | number | import("csstype").Property.OffsetAnchor<string | number>[] | undefined;
|
|
296
|
+
readonly offsetDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
269
297
|
readonly offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
270
298
|
readonly offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
271
299
|
readonly offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
272
|
-
readonly opacity?:
|
|
273
|
-
readonly order?:
|
|
274
|
-
readonly orphans?:
|
|
300
|
+
readonly opacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
301
|
+
readonly order?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
302
|
+
readonly orphans?: import("csstype").Property.Orphans | import("csstype").Property.Orphans[] | undefined;
|
|
275
303
|
readonly outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
276
|
-
readonly outlineOffset?:
|
|
304
|
+
readonly outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[] | undefined;
|
|
277
305
|
readonly outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
278
|
-
readonly outlineWidth?:
|
|
306
|
+
readonly outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
279
307
|
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[] | undefined;
|
|
280
308
|
readonly overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[] | undefined;
|
|
281
309
|
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[] | undefined;
|
|
282
|
-
readonly overflowClipMargin?:
|
|
310
|
+
readonly overflowClipMargin?: string | number | import("csstype").Property.OverflowClipMargin<string | number>[] | undefined;
|
|
283
311
|
readonly overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[] | undefined;
|
|
284
312
|
readonly overflowWrap?: import("csstype").Property.OverflowWrap | import("csstype").Property.OverflowWrap[] | undefined;
|
|
285
313
|
readonly overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
@@ -288,73 +316,73 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
288
316
|
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
289
317
|
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
290
318
|
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
291
|
-
readonly paddingBlock?:
|
|
292
|
-
readonly paddingBlockEnd?:
|
|
293
|
-
readonly paddingBlockStart?:
|
|
294
|
-
readonly paddingBottom?:
|
|
295
|
-
readonly paddingInline?:
|
|
296
|
-
readonly paddingInlineEnd?:
|
|
297
|
-
readonly paddingInlineStart?:
|
|
298
|
-
readonly paddingLeft?:
|
|
299
|
-
readonly paddingRight?:
|
|
300
|
-
readonly paddingTop?:
|
|
319
|
+
readonly paddingBlock?: string | number | import("csstype").Property.PaddingBlock<string | number>[] | undefined;
|
|
320
|
+
readonly paddingBlockEnd?: string | number | import("csstype").Property.PaddingBlockEnd<string | number>[] | undefined;
|
|
321
|
+
readonly paddingBlockStart?: string | number | import("csstype").Property.PaddingBlockStart<string | number>[] | undefined;
|
|
322
|
+
readonly paddingBottom?: string | number | import("csstype").Property.PaddingBottom<string | number>[] | undefined;
|
|
323
|
+
readonly paddingInline?: string | number | import("csstype").Property.PaddingInline<string | number>[] | undefined;
|
|
324
|
+
readonly paddingInlineEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
325
|
+
readonly paddingInlineStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
326
|
+
readonly paddingLeft?: string | number | import("csstype").Property.PaddingLeft<string | number>[] | undefined;
|
|
327
|
+
readonly paddingRight?: string | number | import("csstype").Property.PaddingRight<string | number>[] | undefined;
|
|
328
|
+
readonly paddingTop?: string | number | import("csstype").Property.PaddingTop<string | number>[] | undefined;
|
|
301
329
|
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[] | undefined;
|
|
302
330
|
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[] | undefined;
|
|
303
331
|
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[] | undefined;
|
|
304
332
|
readonly paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[] | undefined;
|
|
305
|
-
readonly perspective?:
|
|
306
|
-
readonly perspectiveOrigin?:
|
|
333
|
+
readonly perspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
334
|
+
readonly perspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
307
335
|
readonly placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[] | undefined;
|
|
308
336
|
readonly pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[] | undefined;
|
|
309
337
|
readonly position?: import("csstype").Property.Position | import("csstype").Property.Position[] | undefined;
|
|
310
338
|
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
311
339
|
readonly quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[] | undefined;
|
|
312
340
|
readonly resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[] | undefined;
|
|
313
|
-
readonly right?:
|
|
341
|
+
readonly right?: string | number | import("csstype").Property.Right<string | number>[] | undefined;
|
|
314
342
|
readonly rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[] | undefined;
|
|
315
|
-
readonly rowGap?:
|
|
343
|
+
readonly rowGap?: string | number | import("csstype").Property.RowGap<string | number>[] | undefined;
|
|
316
344
|
readonly rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[] | undefined;
|
|
317
345
|
readonly rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[] | undefined;
|
|
318
346
|
readonly rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
319
|
-
readonly scale?:
|
|
347
|
+
readonly scale?: import("csstype").Property.Scale | import("csstype").Property.Scale[] | undefined;
|
|
320
348
|
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | import("csstype").Property.ScrollBehavior[] | undefined;
|
|
321
|
-
readonly scrollMargin?:
|
|
322
|
-
readonly scrollMarginBlock?:
|
|
323
|
-
readonly scrollMarginBlockEnd?:
|
|
324
|
-
readonly scrollMarginBlockStart?:
|
|
325
|
-
readonly scrollMarginBottom?:
|
|
326
|
-
readonly scrollMarginInline?:
|
|
327
|
-
readonly scrollMarginInlineEnd?:
|
|
328
|
-
readonly scrollMarginInlineStart?:
|
|
329
|
-
readonly scrollMarginLeft?:
|
|
330
|
-
readonly scrollMarginRight?:
|
|
331
|
-
readonly scrollMarginTop?:
|
|
332
|
-
readonly scrollPadding?:
|
|
333
|
-
readonly scrollPaddingBlock?:
|
|
334
|
-
readonly scrollPaddingBlockEnd?:
|
|
335
|
-
readonly scrollPaddingBlockStart?:
|
|
336
|
-
readonly scrollPaddingBottom?:
|
|
337
|
-
readonly scrollPaddingInline?:
|
|
338
|
-
readonly scrollPaddingInlineEnd?:
|
|
339
|
-
readonly scrollPaddingInlineStart?:
|
|
340
|
-
readonly scrollPaddingLeft?:
|
|
341
|
-
readonly scrollPaddingRight?:
|
|
342
|
-
readonly scrollPaddingTop?:
|
|
349
|
+
readonly scrollMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
350
|
+
readonly scrollMarginBlock?: string | number | import("csstype").Property.ScrollMarginBlock<string | number>[] | undefined;
|
|
351
|
+
readonly scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[] | undefined;
|
|
352
|
+
readonly scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[] | undefined;
|
|
353
|
+
readonly scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
354
|
+
readonly scrollMarginInline?: string | number | import("csstype").Property.ScrollMarginInline<string | number>[] | undefined;
|
|
355
|
+
readonly scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[] | undefined;
|
|
356
|
+
readonly scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[] | undefined;
|
|
357
|
+
readonly scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
358
|
+
readonly scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
359
|
+
readonly scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
360
|
+
readonly scrollPadding?: string | number | import("csstype").Property.ScrollPadding<string | number>[] | undefined;
|
|
361
|
+
readonly scrollPaddingBlock?: string | number | import("csstype").Property.ScrollPaddingBlock<string | number>[] | undefined;
|
|
362
|
+
readonly scrollPaddingBlockEnd?: string | number | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[] | undefined;
|
|
363
|
+
readonly scrollPaddingBlockStart?: string | number | import("csstype").Property.ScrollPaddingBlockStart<string | number>[] | undefined;
|
|
364
|
+
readonly scrollPaddingBottom?: string | number | import("csstype").Property.ScrollPaddingBottom<string | number>[] | undefined;
|
|
365
|
+
readonly scrollPaddingInline?: string | number | import("csstype").Property.ScrollPaddingInline<string | number>[] | undefined;
|
|
366
|
+
readonly scrollPaddingInlineEnd?: string | number | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[] | undefined;
|
|
367
|
+
readonly scrollPaddingInlineStart?: string | number | import("csstype").Property.ScrollPaddingInlineStart<string | number>[] | undefined;
|
|
368
|
+
readonly scrollPaddingLeft?: string | number | import("csstype").Property.ScrollPaddingLeft<string | number>[] | undefined;
|
|
369
|
+
readonly scrollPaddingRight?: string | number | import("csstype").Property.ScrollPaddingRight<string | number>[] | undefined;
|
|
370
|
+
readonly scrollPaddingTop?: string | number | import("csstype").Property.ScrollPaddingTop<string | number>[] | undefined;
|
|
343
371
|
readonly scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
344
|
-
readonly scrollSnapMargin?:
|
|
345
|
-
readonly scrollSnapMarginBottom?:
|
|
346
|
-
readonly scrollSnapMarginLeft?:
|
|
347
|
-
readonly scrollSnapMarginRight?:
|
|
348
|
-
readonly scrollSnapMarginTop?:
|
|
372
|
+
readonly scrollSnapMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
373
|
+
readonly scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
374
|
+
readonly scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
375
|
+
readonly scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
376
|
+
readonly scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
349
377
|
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
350
378
|
readonly scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
351
379
|
readonly scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[] | undefined;
|
|
352
380
|
readonly scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
353
381
|
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
354
|
-
readonly shapeImageThreshold?:
|
|
355
|
-
readonly shapeMargin?:
|
|
382
|
+
readonly shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[] | undefined;
|
|
383
|
+
readonly shapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
356
384
|
readonly shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[] | undefined;
|
|
357
|
-
readonly tabSize?:
|
|
385
|
+
readonly tabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
358
386
|
readonly tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[] | undefined;
|
|
359
387
|
readonly textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[] | undefined;
|
|
360
388
|
readonly textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
@@ -364,12 +392,12 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
364
392
|
readonly textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
365
393
|
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
366
394
|
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
367
|
-
readonly textDecorationThickness?:
|
|
368
|
-
readonly textDecorationWidth?:
|
|
395
|
+
readonly textDecorationThickness?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
396
|
+
readonly textDecorationWidth?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
369
397
|
readonly textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
370
398
|
readonly textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
371
399
|
readonly textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
372
|
-
readonly textIndent?:
|
|
400
|
+
readonly textIndent?: string | number | import("csstype").Property.TextIndent<string | number>[] | undefined;
|
|
373
401
|
readonly textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[] | undefined;
|
|
374
402
|
readonly textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
375
403
|
readonly textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
@@ -377,85 +405,85 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
377
405
|
readonly textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[] | undefined;
|
|
378
406
|
readonly textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
379
407
|
readonly textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[] | undefined;
|
|
380
|
-
readonly textUnderlineOffset?:
|
|
408
|
+
readonly textUnderlineOffset?: string | number | import("csstype").Property.TextUnderlineOffset<string | number>[] | undefined;
|
|
381
409
|
readonly textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
382
|
-
readonly top?:
|
|
410
|
+
readonly top?: string | number | import("csstype").Property.Top<string | number>[] | undefined;
|
|
383
411
|
readonly touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
384
412
|
readonly transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
385
413
|
readonly transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[] | undefined;
|
|
386
|
-
readonly transformOrigin?:
|
|
414
|
+
readonly transformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
387
415
|
readonly transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
388
416
|
readonly transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
389
417
|
readonly transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
390
418
|
readonly transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
391
419
|
readonly transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
392
|
-
readonly translate?:
|
|
420
|
+
readonly translate?: string | number | import("csstype").Property.Translate<string | number>[] | undefined;
|
|
393
421
|
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[] | undefined;
|
|
394
422
|
readonly userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
395
|
-
readonly verticalAlign?:
|
|
423
|
+
readonly verticalAlign?: string | number | import("csstype").Property.VerticalAlign<string | number>[] | undefined;
|
|
396
424
|
readonly visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[] | undefined;
|
|
397
425
|
readonly whiteSpace?: import("csstype").Property.WhiteSpace | import("csstype").Property.WhiteSpace[] | undefined;
|
|
398
|
-
readonly widows?:
|
|
399
|
-
readonly width?:
|
|
426
|
+
readonly widows?: import("csstype").Property.Widows | import("csstype").Property.Widows[] | undefined;
|
|
427
|
+
readonly width?: string | number | import("csstype").Property.Width<string | number>[] | undefined;
|
|
400
428
|
readonly willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[] | undefined;
|
|
401
429
|
readonly wordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
402
|
-
readonly wordSpacing?:
|
|
430
|
+
readonly wordSpacing?: import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[] | undefined;
|
|
403
431
|
readonly wordWrap?: import("csstype").Property.WordWrap | import("csstype").Property.WordWrap[] | undefined;
|
|
404
432
|
readonly writingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
405
|
-
readonly zIndex?:
|
|
406
|
-
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] |
|
|
433
|
+
readonly zIndex?: import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[] | undefined;
|
|
434
|
+
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | undefined;
|
|
407
435
|
readonly all?: import("csstype").Globals | import("csstype").Globals[] | undefined;
|
|
408
|
-
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
409
|
-
readonly background?:
|
|
410
|
-
readonly backgroundPosition?:
|
|
411
|
-
readonly border?:
|
|
412
|
-
readonly borderBlock?:
|
|
413
|
-
readonly borderBlockEnd?:
|
|
414
|
-
readonly borderBlockStart?:
|
|
415
|
-
readonly borderBottom?:
|
|
436
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
437
|
+
readonly background?: string | number | import("csstype").Property.Background<string | number>[] | undefined;
|
|
438
|
+
readonly backgroundPosition?: string | number | import("csstype").Property.BackgroundPosition<string | number>[] | undefined;
|
|
439
|
+
readonly border?: string | number | import("csstype").Property.Border<string | number>[] | undefined;
|
|
440
|
+
readonly borderBlock?: string | number | import("csstype").Property.BorderBlock<string | number>[] | undefined;
|
|
441
|
+
readonly borderBlockEnd?: string | number | import("csstype").Property.BorderBlockEnd<string | number>[] | undefined;
|
|
442
|
+
readonly borderBlockStart?: string | number | import("csstype").Property.BorderBlockStart<string | number>[] | undefined;
|
|
443
|
+
readonly borderBottom?: string | number | import("csstype").Property.BorderBottom<string | number>[] | undefined;
|
|
416
444
|
readonly borderColor?: import("csstype").Property.BorderColor | import("csstype").Property.BorderColor[] | undefined;
|
|
417
|
-
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
418
|
-
readonly borderInline?:
|
|
419
|
-
readonly borderInlineEnd?:
|
|
420
|
-
readonly borderInlineStart?:
|
|
421
|
-
readonly borderLeft?:
|
|
422
|
-
readonly borderRadius?:
|
|
423
|
-
readonly borderRight?:
|
|
445
|
+
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
446
|
+
readonly borderInline?: string | number | import("csstype").Property.BorderInline<string | number>[] | undefined;
|
|
447
|
+
readonly borderInlineEnd?: string | number | import("csstype").Property.BorderInlineEnd<string | number>[] | undefined;
|
|
448
|
+
readonly borderInlineStart?: string | number | import("csstype").Property.BorderInlineStart<string | number>[] | undefined;
|
|
449
|
+
readonly borderLeft?: string | number | import("csstype").Property.BorderLeft<string | number>[] | undefined;
|
|
450
|
+
readonly borderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
451
|
+
readonly borderRight?: string | number | import("csstype").Property.BorderRight<string | number>[] | undefined;
|
|
424
452
|
readonly borderStyle?: import("csstype").Property.BorderStyle | import("csstype").Property.BorderStyle[] | undefined;
|
|
425
|
-
readonly borderTop?:
|
|
426
|
-
readonly borderWidth?:
|
|
427
|
-
readonly columnRule?:
|
|
428
|
-
readonly columns?:
|
|
429
|
-
readonly flex?:
|
|
453
|
+
readonly borderTop?: string | number | import("csstype").Property.BorderTop<string | number>[] | undefined;
|
|
454
|
+
readonly borderWidth?: string | number | import("csstype").Property.BorderWidth<string | number>[] | undefined;
|
|
455
|
+
readonly columnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
456
|
+
readonly columns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
457
|
+
readonly flex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
430
458
|
readonly flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
431
459
|
readonly font?: import("csstype").Property.Font | import("csstype").Property.Font[] | undefined;
|
|
432
|
-
readonly gap?:
|
|
460
|
+
readonly gap?: string | number | import("csstype").Property.Gap<string | number>[] | undefined;
|
|
433
461
|
readonly grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[] | undefined;
|
|
434
|
-
readonly gridArea?:
|
|
435
|
-
readonly gridColumn?:
|
|
436
|
-
readonly gridRow?:
|
|
462
|
+
readonly gridArea?: import("csstype").Property.GridArea | import("csstype").Property.GridArea[] | undefined;
|
|
463
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[] | undefined;
|
|
464
|
+
readonly gridRow?: import("csstype").Property.GridRow | import("csstype").Property.GridRow[] | undefined;
|
|
437
465
|
readonly gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[] | undefined;
|
|
438
|
-
readonly lineClamp?:
|
|
466
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[] | undefined;
|
|
439
467
|
readonly listStyle?: import("csstype").Property.ListStyle | import("csstype").Property.ListStyle[] | undefined;
|
|
440
|
-
readonly margin?:
|
|
441
|
-
readonly mask?:
|
|
442
|
-
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] |
|
|
443
|
-
readonly motion?:
|
|
444
|
-
readonly offset?:
|
|
445
|
-
readonly outline?:
|
|
468
|
+
readonly margin?: string | number | import("csstype").Property.Margin<string | number>[] | undefined;
|
|
469
|
+
readonly mask?: string | number | import("csstype").Property.Mask<string | number>[] | undefined;
|
|
470
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
471
|
+
readonly motion?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
472
|
+
readonly offset?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
473
|
+
readonly outline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
446
474
|
readonly overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[] | undefined;
|
|
447
475
|
readonly overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
448
|
-
readonly padding?:
|
|
476
|
+
readonly padding?: string | number | import("csstype").Property.Padding<string | number>[] | undefined;
|
|
449
477
|
readonly placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[] | undefined;
|
|
450
478
|
readonly placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[] | undefined;
|
|
451
|
-
readonly textDecoration?:
|
|
479
|
+
readonly textDecoration?: string | number | import("csstype").Property.TextDecoration<string | number>[] | undefined;
|
|
452
480
|
readonly textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
453
481
|
readonly transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
454
482
|
readonly MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
455
483
|
readonly MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
456
484
|
readonly MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
457
485
|
readonly MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
458
|
-
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
486
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
459
487
|
readonly MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
460
488
|
readonly MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
461
489
|
readonly MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -464,38 +492,38 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
464
492
|
readonly MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
465
493
|
readonly MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
466
494
|
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
467
|
-
readonly MozBorderEndWidth?:
|
|
495
|
+
readonly MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
468
496
|
readonly MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
469
497
|
readonly MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
470
498
|
readonly MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
471
499
|
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
472
500
|
readonly MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
473
501
|
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
474
|
-
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
502
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
475
503
|
readonly MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
476
|
-
readonly MozColumnGap?:
|
|
504
|
+
readonly MozColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
477
505
|
readonly MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
478
506
|
readonly MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
479
|
-
readonly MozColumnRuleWidth?:
|
|
480
|
-
readonly MozColumnWidth?:
|
|
507
|
+
readonly MozColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
508
|
+
readonly MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
481
509
|
readonly MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[] | undefined;
|
|
482
510
|
readonly MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
483
511
|
readonly MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
484
512
|
readonly MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
485
513
|
readonly MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[] | undefined;
|
|
486
|
-
readonly MozMarginEnd?:
|
|
487
|
-
readonly MozMarginStart?:
|
|
514
|
+
readonly MozMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
515
|
+
readonly MozMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
488
516
|
readonly MozOrient?: import("csstype").Property.MozOrient | import("csstype").Property.MozOrient[] | undefined;
|
|
489
|
-
readonly MozOsxFontSmoothing?:
|
|
490
|
-
readonly MozPaddingEnd?:
|
|
491
|
-
readonly MozPaddingStart?:
|
|
492
|
-
readonly MozPerspective?:
|
|
493
|
-
readonly MozPerspectiveOrigin?:
|
|
517
|
+
readonly MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
518
|
+
readonly MozPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
519
|
+
readonly MozPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
520
|
+
readonly MozPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
521
|
+
readonly MozPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
494
522
|
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[] | undefined;
|
|
495
|
-
readonly MozTabSize?:
|
|
523
|
+
readonly MozTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
496
524
|
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[] | undefined;
|
|
497
525
|
readonly MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
498
|
-
readonly MozTransformOrigin?:
|
|
526
|
+
readonly MozTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
499
527
|
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
500
528
|
readonly MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
501
529
|
readonly MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -517,28 +545,28 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
517
545
|
readonly msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[] | undefined;
|
|
518
546
|
readonly msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[] | undefined;
|
|
519
547
|
readonly msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
520
|
-
readonly msFlexPositive?:
|
|
548
|
+
readonly msFlexPositive?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
521
549
|
readonly msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[] | undefined;
|
|
522
550
|
readonly msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[] | undefined;
|
|
523
|
-
readonly msGridColumns?:
|
|
524
|
-
readonly msGridRows?:
|
|
551
|
+
readonly msGridColumns?: string | number | import("csstype").Property.MsGridColumns<string | number>[] | undefined;
|
|
552
|
+
readonly msGridRows?: string | number | import("csstype").Property.MsGridRows<string | number>[] | undefined;
|
|
525
553
|
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
526
|
-
readonly msHyphenateLimitChars?:
|
|
527
|
-
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] |
|
|
528
|
-
readonly msHyphenateLimitZone?:
|
|
554
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[] | undefined;
|
|
555
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | undefined;
|
|
556
|
+
readonly msHyphenateLimitZone?: string | number | import("csstype").Property.MsHyphenateLimitZone<string | number>[] | undefined;
|
|
529
557
|
readonly msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
530
558
|
readonly msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[] | undefined;
|
|
531
559
|
readonly msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
532
560
|
readonly msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
533
|
-
readonly msOrder?:
|
|
561
|
+
readonly msOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
534
562
|
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
535
563
|
readonly msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
536
564
|
readonly msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
537
565
|
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[] | undefined;
|
|
538
|
-
readonly msScrollLimitXMax?:
|
|
539
|
-
readonly msScrollLimitXMin?:
|
|
540
|
-
readonly msScrollLimitYMax?:
|
|
541
|
-
readonly msScrollLimitYMin?:
|
|
566
|
+
readonly msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[] | undefined;
|
|
567
|
+
readonly msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[] | undefined;
|
|
568
|
+
readonly msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[] | undefined;
|
|
569
|
+
readonly msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[] | undefined;
|
|
542
570
|
readonly msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[] | undefined;
|
|
543
571
|
readonly msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
544
572
|
readonly msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
@@ -557,7 +585,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
557
585
|
readonly msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
558
586
|
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[] | undefined;
|
|
559
587
|
readonly msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
560
|
-
readonly msTransformOrigin?:
|
|
588
|
+
readonly msTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
561
589
|
readonly msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
562
590
|
readonly msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
563
591
|
readonly msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
@@ -565,7 +593,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
565
593
|
readonly msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[] | undefined;
|
|
566
594
|
readonly msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
567
595
|
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[] | undefined;
|
|
568
|
-
readonly msWrapMargin?:
|
|
596
|
+
readonly msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[] | undefined;
|
|
569
597
|
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[] | undefined;
|
|
570
598
|
readonly msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
571
599
|
readonly WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
@@ -575,7 +603,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
575
603
|
readonly WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
576
604
|
readonly WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
577
605
|
readonly WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
578
|
-
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
606
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
579
607
|
readonly WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
580
608
|
readonly WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
581
609
|
readonly WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -584,74 +612,74 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
584
612
|
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
585
613
|
readonly WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
586
614
|
readonly WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
587
|
-
readonly WebkitBackgroundSize?:
|
|
615
|
+
readonly WebkitBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
588
616
|
readonly WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
589
617
|
readonly WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
590
|
-
readonly WebkitBorderBeforeWidth?:
|
|
591
|
-
readonly WebkitBorderBottomLeftRadius?:
|
|
592
|
-
readonly WebkitBorderBottomRightRadius?:
|
|
593
|
-
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] |
|
|
594
|
-
readonly WebkitBorderTopLeftRadius?:
|
|
595
|
-
readonly WebkitBorderTopRightRadius?:
|
|
618
|
+
readonly WebkitBorderBeforeWidth?: string | number | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[] | undefined;
|
|
619
|
+
readonly WebkitBorderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
620
|
+
readonly WebkitBorderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
621
|
+
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
622
|
+
readonly WebkitBorderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
623
|
+
readonly WebkitBorderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
596
624
|
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
597
|
-
readonly WebkitBoxReflect?:
|
|
625
|
+
readonly WebkitBoxReflect?: string | number | import("csstype").Property.WebkitBoxReflect<string | number>[] | undefined;
|
|
598
626
|
readonly WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
599
627
|
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
600
628
|
readonly WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
601
|
-
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
629
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
602
630
|
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
603
|
-
readonly WebkitColumnGap?:
|
|
631
|
+
readonly WebkitColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
604
632
|
readonly WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
605
633
|
readonly WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
606
|
-
readonly WebkitColumnRuleWidth?:
|
|
634
|
+
readonly WebkitColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
607
635
|
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
608
|
-
readonly WebkitColumnWidth?:
|
|
636
|
+
readonly WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
609
637
|
readonly WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
610
|
-
readonly WebkitFlexBasis?:
|
|
638
|
+
readonly WebkitFlexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
611
639
|
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
612
|
-
readonly WebkitFlexGrow?:
|
|
613
|
-
readonly WebkitFlexShrink?:
|
|
640
|
+
readonly WebkitFlexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
641
|
+
readonly WebkitFlexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
614
642
|
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
615
643
|
readonly WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
616
644
|
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
617
|
-
readonly WebkitFontSmoothing?:
|
|
645
|
+
readonly WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
618
646
|
readonly WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
619
647
|
readonly WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
620
648
|
readonly WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
621
|
-
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] |
|
|
649
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
622
650
|
readonly WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
623
651
|
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
624
|
-
readonly WebkitLineClamp?:
|
|
625
|
-
readonly WebkitMarginEnd?:
|
|
626
|
-
readonly WebkitMarginStart?:
|
|
652
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[] | undefined;
|
|
653
|
+
readonly WebkitMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
654
|
+
readonly WebkitMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
627
655
|
readonly WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
628
|
-
readonly WebkitMaskBoxImageOutset?:
|
|
656
|
+
readonly WebkitMaskBoxImageOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
629
657
|
readonly WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
630
|
-
readonly WebkitMaskBoxImageSlice?:
|
|
658
|
+
readonly WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
631
659
|
readonly WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
632
|
-
readonly WebkitMaskBoxImageWidth?:
|
|
660
|
+
readonly WebkitMaskBoxImageWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
633
661
|
readonly WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
634
662
|
readonly WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
635
663
|
readonly WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
636
664
|
readonly WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
637
|
-
readonly WebkitMaskPosition?:
|
|
638
|
-
readonly WebkitMaskPositionX?:
|
|
639
|
-
readonly WebkitMaskPositionY?:
|
|
665
|
+
readonly WebkitMaskPosition?: string | number | import("csstype").Property.WebkitMaskPosition<string | number>[] | undefined;
|
|
666
|
+
readonly WebkitMaskPositionX?: string | number | import("csstype").Property.WebkitMaskPositionX<string | number>[] | undefined;
|
|
667
|
+
readonly WebkitMaskPositionY?: string | number | import("csstype").Property.WebkitMaskPositionY<string | number>[] | undefined;
|
|
640
668
|
readonly WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
641
669
|
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
642
670
|
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
643
|
-
readonly WebkitMaskSize?:
|
|
644
|
-
readonly WebkitMaxInlineSize?:
|
|
645
|
-
readonly WebkitOrder?:
|
|
671
|
+
readonly WebkitMaskSize?: string | number | import("csstype").Property.WebkitMaskSize<string | number>[] | undefined;
|
|
672
|
+
readonly WebkitMaxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
673
|
+
readonly WebkitOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
646
674
|
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
647
|
-
readonly WebkitPaddingEnd?:
|
|
648
|
-
readonly WebkitPaddingStart?:
|
|
649
|
-
readonly WebkitPerspective?:
|
|
650
|
-
readonly WebkitPerspectiveOrigin?:
|
|
675
|
+
readonly WebkitPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
676
|
+
readonly WebkitPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
677
|
+
readonly WebkitPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
678
|
+
readonly WebkitPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
651
679
|
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
652
680
|
readonly WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
653
681
|
readonly WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
654
|
-
readonly WebkitShapeMargin?:
|
|
682
|
+
readonly WebkitShapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
655
683
|
readonly WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
656
684
|
readonly WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
657
685
|
readonly WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
@@ -665,11 +693,11 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
665
693
|
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
666
694
|
readonly WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
667
695
|
readonly WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
668
|
-
readonly WebkitTextStrokeWidth?:
|
|
696
|
+
readonly WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[] | undefined;
|
|
669
697
|
readonly WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
670
698
|
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
671
699
|
readonly WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
672
|
-
readonly WebkitTransformOrigin?:
|
|
700
|
+
readonly WebkitTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
673
701
|
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
674
702
|
readonly WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
675
703
|
readonly WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -678,53 +706,53 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
678
706
|
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[] | undefined;
|
|
679
707
|
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
680
708
|
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
681
|
-
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
682
|
-
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
683
|
-
readonly MozColumnRule?:
|
|
684
|
-
readonly MozColumns?:
|
|
709
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
710
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
711
|
+
readonly MozColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
712
|
+
readonly MozColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
685
713
|
readonly MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
686
714
|
readonly msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
687
715
|
readonly msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
688
|
-
readonly msFlex?:
|
|
716
|
+
readonly msFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
689
717
|
readonly msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[] | undefined;
|
|
690
718
|
readonly msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
691
719
|
readonly msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
692
720
|
readonly msTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
693
|
-
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
694
|
-
readonly WebkitBorderBefore?:
|
|
695
|
-
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
696
|
-
readonly WebkitBorderRadius?:
|
|
697
|
-
readonly WebkitColumnRule?:
|
|
698
|
-
readonly WebkitColumns?:
|
|
699
|
-
readonly WebkitFlex?:
|
|
721
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
722
|
+
readonly WebkitBorderBefore?: string | number | import("csstype").Property.WebkitBorderBefore<string | number>[] | undefined;
|
|
723
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
724
|
+
readonly WebkitBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
725
|
+
readonly WebkitColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
726
|
+
readonly WebkitColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
727
|
+
readonly WebkitFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
700
728
|
readonly WebkitFlexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
701
|
-
readonly WebkitMask?:
|
|
702
|
-
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] |
|
|
729
|
+
readonly WebkitMask?: string | number | import("csstype").Property.WebkitMask<string | number>[] | undefined;
|
|
730
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
703
731
|
readonly WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
704
|
-
readonly WebkitTextStroke?:
|
|
732
|
+
readonly WebkitTextStroke?: string | number | import("csstype").Property.WebkitTextStroke<string | number>[] | undefined;
|
|
705
733
|
readonly WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
706
734
|
readonly azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[] | undefined;
|
|
707
735
|
readonly boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
708
736
|
readonly boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
709
|
-
readonly boxFlex?:
|
|
710
|
-
readonly boxFlexGroup?:
|
|
737
|
+
readonly boxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
738
|
+
readonly boxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
711
739
|
readonly boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
712
|
-
readonly boxOrdinalGroup?:
|
|
740
|
+
readonly boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
713
741
|
readonly boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
714
742
|
readonly boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
715
743
|
readonly clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[] | undefined;
|
|
716
|
-
readonly gridColumnGap?:
|
|
717
|
-
readonly gridGap?:
|
|
718
|
-
readonly gridRowGap?:
|
|
744
|
+
readonly gridColumnGap?: string | number | import("csstype").Property.GridColumnGap<string | number>[] | undefined;
|
|
745
|
+
readonly gridGap?: string | number | import("csstype").Property.GridGap<string | number>[] | undefined;
|
|
746
|
+
readonly gridRowGap?: string | number | import("csstype").Property.GridRowGap<string | number>[] | undefined;
|
|
719
747
|
readonly imeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
720
|
-
readonly offsetBlock?:
|
|
721
|
-
readonly offsetBlockEnd?:
|
|
722
|
-
readonly offsetBlockStart?:
|
|
723
|
-
readonly offsetInline?:
|
|
724
|
-
readonly offsetInlineEnd?:
|
|
725
|
-
readonly offsetInlineStart?:
|
|
726
|
-
readonly scrollSnapCoordinate?:
|
|
727
|
-
readonly scrollSnapDestination?:
|
|
748
|
+
readonly offsetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
749
|
+
readonly offsetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
750
|
+
readonly offsetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
751
|
+
readonly offsetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
752
|
+
readonly offsetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
753
|
+
readonly offsetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
754
|
+
readonly scrollSnapCoordinate?: string | number | import("csstype").Property.ScrollSnapCoordinate<string | number>[] | undefined;
|
|
755
|
+
readonly scrollSnapDestination?: string | number | import("csstype").Property.ScrollSnapDestination<string | number>[] | undefined;
|
|
728
756
|
readonly scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
729
757
|
readonly scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
730
758
|
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
@@ -732,44 +760,44 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
732
760
|
readonly scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
733
761
|
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
734
762
|
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
735
|
-
readonly KhtmlBoxFlex?:
|
|
736
|
-
readonly KhtmlBoxFlexGroup?:
|
|
763
|
+
readonly KhtmlBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
764
|
+
readonly KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
737
765
|
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
738
|
-
readonly KhtmlBoxOrdinalGroup?:
|
|
766
|
+
readonly KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
739
767
|
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
740
768
|
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
741
769
|
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
742
|
-
readonly KhtmlOpacity?:
|
|
770
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
743
771
|
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
744
772
|
readonly MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
745
773
|
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
746
774
|
readonly MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
747
|
-
readonly MozBackgroundSize?:
|
|
775
|
+
readonly MozBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
748
776
|
readonly MozBinding?: import("csstype").Property.MozBinding | import("csstype").Property.MozBinding[] | undefined;
|
|
749
|
-
readonly MozBorderRadius?:
|
|
750
|
-
readonly MozBorderRadiusBottomleft?:
|
|
751
|
-
readonly MozBorderRadiusBottomright?:
|
|
752
|
-
readonly MozBorderRadiusTopleft?:
|
|
753
|
-
readonly MozBorderRadiusTopright?:
|
|
777
|
+
readonly MozBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
778
|
+
readonly MozBorderRadiusBottomleft?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
779
|
+
readonly MozBorderRadiusBottomright?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
780
|
+
readonly MozBorderRadiusTopleft?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
781
|
+
readonly MozBorderRadiusTopright?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
754
782
|
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
755
783
|
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
756
|
-
readonly MozBoxFlex?:
|
|
757
|
-
readonly MozBoxOrdinalGroup?:
|
|
784
|
+
readonly MozBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
785
|
+
readonly MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
758
786
|
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
759
787
|
readonly MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
760
788
|
readonly MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
761
789
|
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[] | undefined;
|
|
762
|
-
readonly MozForceBrokenImageIcon?:
|
|
763
|
-
readonly MozOpacity?:
|
|
764
|
-
readonly MozOutline?:
|
|
790
|
+
readonly MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[] | undefined;
|
|
791
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
792
|
+
readonly MozOutline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
765
793
|
readonly MozOutlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
766
|
-
readonly MozOutlineRadius?:
|
|
767
|
-
readonly MozOutlineRadiusBottomleft?:
|
|
768
|
-
readonly MozOutlineRadiusBottomright?:
|
|
769
|
-
readonly MozOutlineRadiusTopleft?:
|
|
770
|
-
readonly MozOutlineRadiusTopright?:
|
|
794
|
+
readonly MozOutlineRadius?: string | number | import("csstype").Property.MozOutlineRadius<string | number>[] | undefined;
|
|
795
|
+
readonly MozOutlineRadiusBottomleft?: string | number | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[] | undefined;
|
|
796
|
+
readonly MozOutlineRadiusBottomright?: string | number | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[] | undefined;
|
|
797
|
+
readonly MozOutlineRadiusTopleft?: string | number | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[] | undefined;
|
|
798
|
+
readonly MozOutlineRadiusTopright?: string | number | import("csstype").Property.MozOutlineRadiusTopright<string | number>[] | undefined;
|
|
771
799
|
readonly MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
772
|
-
readonly MozOutlineWidth?:
|
|
800
|
+
readonly MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
773
801
|
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
774
802
|
readonly MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
775
803
|
readonly MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
@@ -777,23 +805,23 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
777
805
|
readonly MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[] | undefined;
|
|
778
806
|
readonly msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
779
807
|
readonly msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
780
|
-
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
808
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
781
809
|
readonly OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
782
810
|
readonly OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
783
811
|
readonly OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
784
812
|
readonly OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
785
|
-
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
813
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
786
814
|
readonly OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
787
815
|
readonly OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
788
816
|
readonly OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
789
|
-
readonly OBackgroundSize?:
|
|
790
|
-
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
817
|
+
readonly OBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
818
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
791
819
|
readonly OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
792
|
-
readonly OObjectPosition?:
|
|
793
|
-
readonly OTabSize?:
|
|
820
|
+
readonly OObjectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
821
|
+
readonly OTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
794
822
|
readonly OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
795
823
|
readonly OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
796
|
-
readonly OTransformOrigin?:
|
|
824
|
+
readonly OTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
797
825
|
readonly OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
798
826
|
readonly OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
799
827
|
readonly OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -801,26 +829,26 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
801
829
|
readonly OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
802
830
|
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
803
831
|
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
804
|
-
readonly WebkitBoxFlex?:
|
|
805
|
-
readonly WebkitBoxFlexGroup?:
|
|
832
|
+
readonly WebkitBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
833
|
+
readonly WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
806
834
|
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
807
|
-
readonly WebkitBoxOrdinalGroup?:
|
|
835
|
+
readonly WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
808
836
|
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
809
837
|
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
810
838
|
readonly WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
811
839
|
readonly WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
812
840
|
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
813
|
-
readonly baselineShift?:
|
|
841
|
+
readonly baselineShift?: string | number | import("csstype").Property.BaselineShift<string | number>[] | undefined;
|
|
814
842
|
readonly clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[] | undefined;
|
|
815
843
|
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[] | undefined;
|
|
816
844
|
readonly colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[] | undefined;
|
|
817
845
|
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[] | undefined;
|
|
818
846
|
readonly fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[] | undefined;
|
|
819
|
-
readonly fillOpacity?:
|
|
847
|
+
readonly fillOpacity?: import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[] | undefined;
|
|
820
848
|
readonly fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[] | undefined;
|
|
821
849
|
readonly floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[] | undefined;
|
|
822
|
-
readonly floodOpacity?:
|
|
823
|
-
readonly glyphOrientationVertical?:
|
|
850
|
+
readonly floodOpacity?: import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[] | undefined;
|
|
851
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[] | undefined;
|
|
824
852
|
readonly lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[] | undefined;
|
|
825
853
|
readonly marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[] | undefined;
|
|
826
854
|
readonly markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[] | undefined;
|
|
@@ -828,160 +856,159 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
828
856
|
readonly markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[] | undefined;
|
|
829
857
|
readonly shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[] | undefined;
|
|
830
858
|
readonly stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[] | undefined;
|
|
831
|
-
readonly stopOpacity?:
|
|
859
|
+
readonly stopOpacity?: import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[] | undefined;
|
|
832
860
|
readonly stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[] | undefined;
|
|
833
|
-
readonly strokeDasharray?:
|
|
834
|
-
readonly strokeDashoffset?:
|
|
861
|
+
readonly strokeDasharray?: string | number | import("csstype").Property.StrokeDasharray<string | number>[] | undefined;
|
|
862
|
+
readonly strokeDashoffset?: string | number | import("csstype").Property.StrokeDashoffset<string | number>[] | undefined;
|
|
835
863
|
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[] | undefined;
|
|
836
864
|
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
837
|
-
readonly strokeMiterlimit?:
|
|
838
|
-
readonly strokeOpacity?:
|
|
839
|
-
readonly strokeWidth?:
|
|
865
|
+
readonly strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[] | undefined;
|
|
866
|
+
readonly strokeOpacity?: import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[] | undefined;
|
|
867
|
+
readonly strokeWidth?: string | number | import("csstype").Property.StrokeWidth<string | number>[] | undefined;
|
|
840
868
|
readonly textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[] | undefined;
|
|
841
869
|
readonly vectorEffect?: import("csstype").Property.VectorEffect | import("csstype").Property.VectorEffect[] | undefined;
|
|
842
|
-
readonly ":-moz-any()"?: import("@emotion/
|
|
843
|
-
readonly ":-moz-dir"?: import("@emotion/
|
|
844
|
-
readonly ":-webkit-any()"?: import("@emotion/
|
|
845
|
-
readonly "::cue"?: import("@emotion/
|
|
846
|
-
readonly "::cue-region"?: import("@emotion/
|
|
847
|
-
readonly "::part"?: import("@emotion/
|
|
848
|
-
readonly "::slotted"?: import("@emotion/
|
|
849
|
-
readonly ":dir"?: import("@emotion/
|
|
850
|
-
readonly ":has"?: import("@emotion/
|
|
851
|
-
readonly ":host"?: import("@emotion/
|
|
852
|
-
readonly ":host-context"?: import("@emotion/
|
|
853
|
-
readonly ":is"?: import("@emotion/
|
|
854
|
-
readonly ":lang"?: import("@emotion/
|
|
855
|
-
readonly ":matches()"?: import("@emotion/
|
|
856
|
-
readonly ":not"?: import("@emotion/
|
|
857
|
-
readonly ":nth-child"?: import("@emotion/
|
|
858
|
-
readonly ":nth-last-child"?: import("@emotion/
|
|
859
|
-
readonly ":nth-last-of-type"?: import("@emotion/
|
|
860
|
-
readonly ":nth-of-type"?: import("@emotion/
|
|
861
|
-
readonly ":where"?: import("@emotion/
|
|
862
|
-
readonly ":-khtml-any-link"?: import("@emotion/
|
|
863
|
-
readonly ":-moz-any-link"?: import("@emotion/
|
|
864
|
-
readonly ":-moz-focusring"?: import("@emotion/
|
|
865
|
-
readonly ":-moz-full-screen"?: import("@emotion/
|
|
866
|
-
readonly ":-moz-placeholder"?: import("@emotion/
|
|
867
|
-
readonly ":-moz-read-only"?: import("@emotion/
|
|
868
|
-
readonly ":-moz-read-write"?: import("@emotion/
|
|
869
|
-
readonly ":-moz-ui-invalid"?: import("@emotion/
|
|
870
|
-
readonly ":-moz-ui-valid"?: import("@emotion/
|
|
871
|
-
readonly ":-ms-fullscreen"?: import("@emotion/
|
|
872
|
-
readonly ":-ms-input-placeholder"?: import("@emotion/
|
|
873
|
-
readonly ":-webkit-any-link"?: import("@emotion/
|
|
874
|
-
readonly ":-webkit-full-screen"?: import("@emotion/
|
|
875
|
-
readonly "::-moz-placeholder"?: import("@emotion/
|
|
876
|
-
readonly "::-moz-progress-bar"?: import("@emotion/
|
|
877
|
-
readonly "::-moz-range-progress"?: import("@emotion/
|
|
878
|
-
readonly "::-moz-range-thumb"?: import("@emotion/
|
|
879
|
-
readonly "::-moz-range-track"?: import("@emotion/
|
|
880
|
-
readonly "::-moz-selection"?: import("@emotion/
|
|
881
|
-
readonly "::-ms-backdrop"?: import("@emotion/
|
|
882
|
-
readonly "::-ms-browse"?: import("@emotion/
|
|
883
|
-
readonly "::-ms-check"?: import("@emotion/
|
|
884
|
-
readonly "::-ms-clear"?: import("@emotion/
|
|
885
|
-
readonly "::-ms-fill"?: import("@emotion/
|
|
886
|
-
readonly "::-ms-fill-lower"?: import("@emotion/
|
|
887
|
-
readonly "::-ms-fill-upper"?: import("@emotion/
|
|
888
|
-
readonly "::-ms-input-placeholder"?: import("@emotion/
|
|
889
|
-
readonly "::-ms-reveal"?: import("@emotion/
|
|
890
|
-
readonly "::-ms-thumb"?: import("@emotion/
|
|
891
|
-
readonly "::-ms-ticks-after"?: import("@emotion/
|
|
892
|
-
readonly "::-ms-ticks-before"?: import("@emotion/
|
|
893
|
-
readonly "::-ms-tooltip"?: import("@emotion/
|
|
894
|
-
readonly "::-ms-track"?: import("@emotion/
|
|
895
|
-
readonly "::-ms-value"?: import("@emotion/
|
|
896
|
-
readonly "::-webkit-backdrop"?: import("@emotion/
|
|
897
|
-
readonly "::-webkit-input-placeholder"?: import("@emotion/
|
|
898
|
-
readonly "::-webkit-progress-bar"?: import("@emotion/
|
|
899
|
-
readonly "::-webkit-progress-inner-value"?: import("@emotion/
|
|
900
|
-
readonly "::-webkit-progress-value"?: import("@emotion/
|
|
901
|
-
readonly "::-webkit-slider-runnable-track"?: import("@emotion/
|
|
902
|
-
readonly "::-webkit-slider-thumb"?: import("@emotion/
|
|
903
|
-
readonly "::after"?: import("@emotion/
|
|
904
|
-
readonly "::backdrop"?: import("@emotion/
|
|
905
|
-
readonly "::before"?: import("@emotion/
|
|
906
|
-
readonly "::first-letter"?: import("@emotion/
|
|
907
|
-
readonly "::first-line"?: import("@emotion/
|
|
908
|
-
readonly "::grammar-error"?: import("@emotion/
|
|
909
|
-
readonly "::marker"?: import("@emotion/
|
|
910
|
-
readonly "::placeholder"?: import("@emotion/
|
|
911
|
-
readonly "::selection"?: import("@emotion/
|
|
912
|
-
readonly "::spelling-error"?: import("@emotion/
|
|
913
|
-
readonly "::target-text"?: import("@emotion/
|
|
914
|
-
readonly ":active"?: import("@emotion/
|
|
915
|
-
readonly ":after"?: import("@emotion/
|
|
916
|
-
readonly ":any-link"?: import("@emotion/
|
|
917
|
-
readonly ":before"?: import("@emotion/
|
|
918
|
-
readonly ":blank"?: import("@emotion/
|
|
919
|
-
readonly ":checked"?: import("@emotion/
|
|
920
|
-
readonly ":current"?: import("@emotion/
|
|
921
|
-
readonly ":default"?: import("@emotion/
|
|
922
|
-
readonly ":defined"?: import("@emotion/
|
|
923
|
-
readonly ":disabled"?: import("@emotion/
|
|
924
|
-
readonly ":empty"?: import("@emotion/
|
|
925
|
-
readonly ":
|
|
926
|
-
readonly ":first"?: import("@emotion/
|
|
927
|
-
readonly ":first-
|
|
928
|
-
readonly ":first-
|
|
929
|
-
readonly ":first-
|
|
930
|
-
readonly ":
|
|
931
|
-
readonly ":focus-
|
|
932
|
-
readonly ":
|
|
933
|
-
readonly ":
|
|
934
|
-
readonly ":
|
|
935
|
-
readonly ":
|
|
936
|
-
readonly ":
|
|
937
|
-
readonly ":
|
|
938
|
-
readonly ":
|
|
939
|
-
readonly ":
|
|
940
|
-
readonly ":
|
|
941
|
-
readonly ":
|
|
942
|
-
readonly ":
|
|
943
|
-
readonly ":
|
|
944
|
-
readonly ":
|
|
945
|
-
readonly ":
|
|
946
|
-
readonly ":
|
|
947
|
-
readonly ":
|
|
948
|
-
readonly ":
|
|
949
|
-
readonly ":
|
|
950
|
-
readonly ":
|
|
951
|
-
readonly ":
|
|
952
|
-
readonly ":
|
|
953
|
-
readonly ":
|
|
954
|
-
readonly ":
|
|
955
|
-
readonly ":
|
|
956
|
-
readonly ":
|
|
957
|
-
readonly ":
|
|
958
|
-
readonly ":
|
|
959
|
-
readonly ":
|
|
960
|
-
readonly ":
|
|
961
|
-
readonly ":
|
|
962
|
-
readonly ":
|
|
963
|
-
readonly ":
|
|
964
|
-
readonly ":valid"?: import("@emotion/css").CSSObject | undefined;
|
|
965
|
-
readonly ":visited"?: import("@emotion/css").CSSObject | undefined;
|
|
870
|
+
readonly ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
871
|
+
readonly ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
872
|
+
readonly ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
873
|
+
readonly "::cue"?: import("@emotion/serialize").CSSObject | undefined;
|
|
874
|
+
readonly "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
|
|
875
|
+
readonly "::part"?: import("@emotion/serialize").CSSObject | undefined;
|
|
876
|
+
readonly "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
|
|
877
|
+
readonly ":dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
878
|
+
readonly ":has"?: import("@emotion/serialize").CSSObject | undefined;
|
|
879
|
+
readonly ":host"?: import("@emotion/serialize").CSSObject | undefined;
|
|
880
|
+
readonly ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
|
|
881
|
+
readonly ":is"?: import("@emotion/serialize").CSSObject | undefined;
|
|
882
|
+
readonly ":lang"?: import("@emotion/serialize").CSSObject | undefined;
|
|
883
|
+
readonly ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
884
|
+
readonly ":not"?: import("@emotion/serialize").CSSObject | undefined;
|
|
885
|
+
readonly ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
886
|
+
readonly ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
887
|
+
readonly ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
888
|
+
readonly ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
889
|
+
readonly ":where"?: import("@emotion/serialize").CSSObject | undefined;
|
|
890
|
+
readonly ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
891
|
+
readonly ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
892
|
+
readonly ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
|
|
893
|
+
readonly ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
894
|
+
readonly ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
895
|
+
readonly ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
896
|
+
readonly ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
897
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
898
|
+
readonly ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
899
|
+
readonly ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
900
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
901
|
+
readonly ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
902
|
+
readonly ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
903
|
+
readonly "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
904
|
+
readonly "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
905
|
+
readonly "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
|
|
906
|
+
readonly "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
907
|
+
readonly "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
908
|
+
readonly "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
909
|
+
readonly "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
910
|
+
readonly "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
|
|
911
|
+
readonly "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
|
|
912
|
+
readonly "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
|
|
913
|
+
readonly "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
|
|
914
|
+
readonly "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
|
|
915
|
+
readonly "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
|
|
916
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
917
|
+
readonly "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
|
|
918
|
+
readonly "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
919
|
+
readonly "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
920
|
+
readonly "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
921
|
+
readonly "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
|
|
922
|
+
readonly "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
923
|
+
readonly "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
924
|
+
readonly "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
925
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
926
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
927
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
928
|
+
readonly "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
929
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
930
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
931
|
+
readonly "::after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
932
|
+
readonly "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
933
|
+
readonly "::before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
934
|
+
readonly "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
935
|
+
readonly "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
936
|
+
readonly "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
937
|
+
readonly "::marker"?: import("@emotion/serialize").CSSObject | undefined;
|
|
938
|
+
readonly "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
939
|
+
readonly "::selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
940
|
+
readonly "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
941
|
+
readonly "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
|
|
942
|
+
readonly ":active"?: import("@emotion/serialize").CSSObject | undefined;
|
|
943
|
+
readonly ":after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
944
|
+
readonly ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
945
|
+
readonly ":before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
946
|
+
readonly ":blank"?: import("@emotion/serialize").CSSObject | undefined;
|
|
947
|
+
readonly ":checked"?: import("@emotion/serialize").CSSObject | undefined;
|
|
948
|
+
readonly ":current"?: import("@emotion/serialize").CSSObject | undefined;
|
|
949
|
+
readonly ":default"?: import("@emotion/serialize").CSSObject | undefined;
|
|
950
|
+
readonly ":defined"?: import("@emotion/serialize").CSSObject | undefined;
|
|
951
|
+
readonly ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
|
|
952
|
+
readonly ":empty"?: import("@emotion/serialize").CSSObject | undefined;
|
|
953
|
+
readonly ":first"?: import("@emotion/serialize").CSSObject | undefined;
|
|
954
|
+
readonly ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
955
|
+
readonly ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
956
|
+
readonly ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
957
|
+
readonly ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
958
|
+
readonly ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
|
|
959
|
+
readonly ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
960
|
+
readonly ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
961
|
+
readonly ":future"?: import("@emotion/serialize").CSSObject | undefined;
|
|
962
|
+
readonly ":hover"?: import("@emotion/serialize").CSSObject | undefined;
|
|
963
|
+
readonly ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
964
|
+
readonly ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
|
|
965
|
+
readonly ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
966
|
+
readonly ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
967
|
+
readonly ":left"?: import("@emotion/serialize").CSSObject | undefined;
|
|
968
|
+
readonly ":link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
969
|
+
readonly ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
970
|
+
readonly ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
971
|
+
readonly ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
972
|
+
readonly ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
973
|
+
readonly ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
974
|
+
readonly ":optional"?: import("@emotion/serialize").CSSObject | undefined;
|
|
975
|
+
readonly ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
976
|
+
readonly ":past"?: import("@emotion/serialize").CSSObject | undefined;
|
|
977
|
+
readonly ":paused"?: import("@emotion/serialize").CSSObject | undefined;
|
|
978
|
+
readonly ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
|
|
979
|
+
readonly ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
|
|
980
|
+
readonly ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
981
|
+
readonly ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
982
|
+
readonly ":required"?: import("@emotion/serialize").CSSObject | undefined;
|
|
983
|
+
readonly ":right"?: import("@emotion/serialize").CSSObject | undefined;
|
|
984
|
+
readonly ":root"?: import("@emotion/serialize").CSSObject | undefined;
|
|
985
|
+
readonly ":scope"?: import("@emotion/serialize").CSSObject | undefined;
|
|
986
|
+
readonly ":target"?: import("@emotion/serialize").CSSObject | undefined;
|
|
987
|
+
readonly ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
988
|
+
readonly ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
989
|
+
readonly ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
990
|
+
readonly ":valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
991
|
+
readonly ":visited"?: import("@emotion/serialize").CSSObject | undefined;
|
|
966
992
|
} | {
|
|
967
993
|
readonly ':enabled': {
|
|
968
|
-
'
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
994
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
995
|
+
readonly boxShadow: string;
|
|
996
|
+
readonly outline: string;
|
|
997
|
+
readonly outlineOffset: string;
|
|
998
|
+
readonly borderColor: string;
|
|
972
999
|
} | {
|
|
973
|
-
|
|
974
|
-
|
|
1000
|
+
readonly outline: string;
|
|
1001
|
+
readonly outlineOffset: string;
|
|
1002
|
+
readonly borderColor: string;
|
|
975
1003
|
};
|
|
976
1004
|
};
|
|
977
|
-
readonly ':focus
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
borderColor: string;
|
|
983
|
-
outline: number;
|
|
1005
|
+
readonly ':focus': {
|
|
1006
|
+
readonly outline: "none";
|
|
1007
|
+
};
|
|
1008
|
+
readonly ':invalid': {
|
|
1009
|
+
readonly color: string;
|
|
984
1010
|
};
|
|
1011
|
+
readonly whiteSpace: "nowrap";
|
|
985
1012
|
readonly accentColor?: import("csstype").Property.AccentColor | import("csstype").Property.AccentColor[] | undefined;
|
|
986
1013
|
readonly alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
987
1014
|
readonly alignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
@@ -991,7 +1018,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
991
1018
|
readonly animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
992
1019
|
readonly animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
993
1020
|
readonly animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
994
|
-
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
1021
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
995
1022
|
readonly animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
996
1023
|
readonly animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
997
1024
|
readonly animationTimeline?: import("csstype").Property.AnimationTimeline | import("csstype").Property.AnimationTimeline[] | undefined;
|
|
@@ -1006,58 +1033,58 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1006
1033
|
readonly backgroundColor?: import("csstype").Property.BackgroundColor | import("csstype").Property.BackgroundColor[] | undefined;
|
|
1007
1034
|
readonly backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[] | undefined;
|
|
1008
1035
|
readonly backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1009
|
-
readonly backgroundPositionX?:
|
|
1010
|
-
readonly backgroundPositionY?:
|
|
1036
|
+
readonly backgroundPositionX?: string | number | import("csstype").Property.BackgroundPositionX<string | number>[] | undefined;
|
|
1037
|
+
readonly backgroundPositionY?: string | number | import("csstype").Property.BackgroundPositionY<string | number>[] | undefined;
|
|
1011
1038
|
readonly backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
1012
|
-
readonly backgroundSize?:
|
|
1039
|
+
readonly backgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1013
1040
|
readonly blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[] | undefined;
|
|
1014
|
-
readonly blockSize?:
|
|
1041
|
+
readonly blockSize?: string | number | import("csstype").Property.BlockSize<string | number>[] | undefined;
|
|
1015
1042
|
readonly borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[] | undefined;
|
|
1016
1043
|
readonly borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
1017
1044
|
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
1018
|
-
readonly borderBlockEndWidth?:
|
|
1045
|
+
readonly borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[] | undefined;
|
|
1019
1046
|
readonly borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
1020
1047
|
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
1021
|
-
readonly borderBlockStartWidth?:
|
|
1048
|
+
readonly borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[] | undefined;
|
|
1022
1049
|
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
1023
|
-
readonly borderBlockWidth?:
|
|
1050
|
+
readonly borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[] | undefined;
|
|
1024
1051
|
readonly borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[] | undefined;
|
|
1025
|
-
readonly borderBottomLeftRadius?:
|
|
1026
|
-
readonly borderBottomRightRadius?:
|
|
1052
|
+
readonly borderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
1053
|
+
readonly borderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
1027
1054
|
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
1028
|
-
readonly borderBottomWidth?:
|
|
1055
|
+
readonly borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[] | undefined;
|
|
1029
1056
|
readonly borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[] | undefined;
|
|
1030
|
-
readonly borderEndEndRadius?:
|
|
1031
|
-
readonly borderEndStartRadius?:
|
|
1032
|
-
readonly borderImageOutset?:
|
|
1057
|
+
readonly borderEndEndRadius?: string | number | import("csstype").Property.BorderEndEndRadius<string | number>[] | undefined;
|
|
1058
|
+
readonly borderEndStartRadius?: string | number | import("csstype").Property.BorderEndStartRadius<string | number>[] | undefined;
|
|
1059
|
+
readonly borderImageOutset?: string | number | import("csstype").Property.BorderImageOutset<string | number>[] | undefined;
|
|
1033
1060
|
readonly borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
1034
|
-
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] |
|
|
1061
|
+
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
1035
1062
|
readonly borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[] | undefined;
|
|
1036
|
-
readonly borderImageWidth?:
|
|
1063
|
+
readonly borderImageWidth?: string | number | import("csstype").Property.BorderImageWidth<string | number>[] | undefined;
|
|
1037
1064
|
readonly borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[] | undefined;
|
|
1038
1065
|
readonly borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1039
1066
|
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1040
|
-
readonly borderInlineEndWidth?:
|
|
1067
|
+
readonly borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
1041
1068
|
readonly borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1042
1069
|
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1043
|
-
readonly borderInlineStartWidth?:
|
|
1070
|
+
readonly borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[] | undefined;
|
|
1044
1071
|
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
1045
|
-
readonly borderInlineWidth?:
|
|
1072
|
+
readonly borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[] | undefined;
|
|
1046
1073
|
readonly borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[] | undefined;
|
|
1047
1074
|
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
1048
|
-
readonly borderLeftWidth?:
|
|
1075
|
+
readonly borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[] | undefined;
|
|
1049
1076
|
readonly borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[] | undefined;
|
|
1050
1077
|
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[] | undefined;
|
|
1051
|
-
readonly borderRightWidth?:
|
|
1052
|
-
readonly borderSpacing?:
|
|
1053
|
-
readonly borderStartEndRadius?:
|
|
1054
|
-
readonly borderStartStartRadius?:
|
|
1078
|
+
readonly borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[] | undefined;
|
|
1079
|
+
readonly borderSpacing?: string | number | import("csstype").Property.BorderSpacing<string | number>[] | undefined;
|
|
1080
|
+
readonly borderStartEndRadius?: string | number | import("csstype").Property.BorderStartEndRadius<string | number>[] | undefined;
|
|
1081
|
+
readonly borderStartStartRadius?: string | number | import("csstype").Property.BorderStartStartRadius<string | number>[] | undefined;
|
|
1055
1082
|
readonly borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[] | undefined;
|
|
1056
|
-
readonly borderTopLeftRadius?:
|
|
1057
|
-
readonly borderTopRightRadius?:
|
|
1083
|
+
readonly borderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
1084
|
+
readonly borderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1058
1085
|
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[] | undefined;
|
|
1059
|
-
readonly borderTopWidth?:
|
|
1060
|
-
readonly bottom?:
|
|
1086
|
+
readonly borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[] | undefined;
|
|
1087
|
+
readonly bottom?: string | number | import("csstype").Property.Bottom<string | number>[] | undefined;
|
|
1061
1088
|
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1062
1089
|
readonly boxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1063
1090
|
readonly boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
@@ -1071,14 +1098,14 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1071
1098
|
readonly color?: import("csstype").Property.Color | import("csstype").Property.Color[] | undefined;
|
|
1072
1099
|
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1073
1100
|
readonly colorScheme?: import("csstype").Property.ColorScheme | import("csstype").Property.ColorScheme[] | undefined;
|
|
1074
|
-
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
1101
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1075
1102
|
readonly columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1076
|
-
readonly columnGap?:
|
|
1103
|
+
readonly columnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1077
1104
|
readonly columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1078
1105
|
readonly columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1079
|
-
readonly columnRuleWidth?:
|
|
1106
|
+
readonly columnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
1080
1107
|
readonly columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
1081
|
-
readonly columnWidth?:
|
|
1108
|
+
readonly columnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1082
1109
|
readonly contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[] | undefined;
|
|
1083
1110
|
readonly content?: import("csstype").Property.Content | import("csstype").Property.Content[] | undefined;
|
|
1084
1111
|
readonly contentVisibility?: import("csstype").Property.ContentVisibility | import("csstype").Property.ContentVisibility[] | undefined;
|
|
@@ -1090,10 +1117,10 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1090
1117
|
readonly display?: import("csstype").Property.Display | import("csstype").Property.Display[] | undefined;
|
|
1091
1118
|
readonly emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[] | undefined;
|
|
1092
1119
|
readonly filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
1093
|
-
readonly flexBasis?:
|
|
1120
|
+
readonly flexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
1094
1121
|
readonly flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1095
|
-
readonly flexGrow?:
|
|
1096
|
-
readonly flexShrink?:
|
|
1122
|
+
readonly flexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
1123
|
+
readonly flexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
1097
1124
|
readonly flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
1098
1125
|
readonly float?: import("csstype").Property.Float | import("csstype").Property.Float[] | undefined;
|
|
1099
1126
|
readonly fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[] | undefined;
|
|
@@ -1101,9 +1128,9 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1101
1128
|
readonly fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
1102
1129
|
readonly fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1103
1130
|
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
1104
|
-
readonly fontSize?:
|
|
1105
|
-
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] |
|
|
1106
|
-
readonly fontSmooth?:
|
|
1131
|
+
readonly fontSize?: string | number | import("csstype").Property.FontSize<string | number>[] | undefined;
|
|
1132
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | undefined;
|
|
1133
|
+
readonly fontSmooth?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
1107
1134
|
readonly fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[] | undefined;
|
|
1108
1135
|
readonly fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[] | undefined;
|
|
1109
1136
|
readonly fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[] | undefined;
|
|
@@ -1115,105 +1142,105 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1115
1142
|
readonly fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
1116
1143
|
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[] | undefined;
|
|
1117
1144
|
readonly fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[] | undefined;
|
|
1118
|
-
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] |
|
|
1145
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | undefined;
|
|
1119
1146
|
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
1120
|
-
readonly gridAutoColumns?:
|
|
1147
|
+
readonly gridAutoColumns?: string | number | import("csstype").Property.GridAutoColumns<string | number>[] | undefined;
|
|
1121
1148
|
readonly gridAutoFlow?: import("csstype").Property.GridAutoFlow | import("csstype").Property.GridAutoFlow[] | undefined;
|
|
1122
|
-
readonly gridAutoRows?:
|
|
1123
|
-
readonly gridColumnEnd?:
|
|
1124
|
-
readonly gridColumnStart?:
|
|
1125
|
-
readonly gridRowEnd?:
|
|
1126
|
-
readonly gridRowStart?:
|
|
1149
|
+
readonly gridAutoRows?: string | number | import("csstype").Property.GridAutoRows<string | number>[] | undefined;
|
|
1150
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | undefined;
|
|
1151
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[] | undefined;
|
|
1152
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[] | undefined;
|
|
1153
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[] | undefined;
|
|
1127
1154
|
readonly gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
1128
|
-
readonly gridTemplateColumns?:
|
|
1129
|
-
readonly gridTemplateRows?:
|
|
1155
|
+
readonly gridTemplateColumns?: string | number | import("csstype").Property.GridTemplateColumns<string | number>[] | undefined;
|
|
1156
|
+
readonly gridTemplateRows?: string | number | import("csstype").Property.GridTemplateRows<string | number>[] | undefined;
|
|
1130
1157
|
readonly hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[] | undefined;
|
|
1131
|
-
readonly height?:
|
|
1158
|
+
readonly height?: string | number | import("csstype").Property.Height<string | number>[] | undefined;
|
|
1132
1159
|
readonly hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1133
1160
|
readonly hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1134
1161
|
readonly imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[] | undefined;
|
|
1135
1162
|
readonly imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[] | undefined;
|
|
1136
1163
|
readonly imageResolution?: import("csstype").Property.ImageResolution | import("csstype").Property.ImageResolution[] | undefined;
|
|
1137
|
-
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] |
|
|
1138
|
-
readonly inlineSize?:
|
|
1164
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
1165
|
+
readonly inlineSize?: string | number | import("csstype").Property.InlineSize<string | number>[] | undefined;
|
|
1139
1166
|
readonly inputSecurity?: import("csstype").Property.InputSecurity | import("csstype").Property.InputSecurity[] | undefined;
|
|
1140
|
-
readonly inset?:
|
|
1141
|
-
readonly insetBlock?:
|
|
1142
|
-
readonly insetBlockEnd?:
|
|
1143
|
-
readonly insetBlockStart?:
|
|
1144
|
-
readonly insetInline?:
|
|
1145
|
-
readonly insetInlineEnd?:
|
|
1146
|
-
readonly insetInlineStart?:
|
|
1167
|
+
readonly inset?: string | number | import("csstype").Property.Inset<string | number>[] | undefined;
|
|
1168
|
+
readonly insetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
1169
|
+
readonly insetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
1170
|
+
readonly insetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
1171
|
+
readonly insetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
1172
|
+
readonly insetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
1173
|
+
readonly insetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
1147
1174
|
readonly isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[] | undefined;
|
|
1148
1175
|
readonly justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
1149
1176
|
readonly justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[] | undefined;
|
|
1150
1177
|
readonly justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
1151
1178
|
readonly justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[] | undefined;
|
|
1152
|
-
readonly left?:
|
|
1153
|
-
readonly letterSpacing?:
|
|
1179
|
+
readonly left?: string | number | import("csstype").Property.Left<string | number>[] | undefined;
|
|
1180
|
+
readonly letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[] | undefined;
|
|
1154
1181
|
readonly lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1155
|
-
readonly lineHeight?:
|
|
1156
|
-
readonly lineHeightStep?:
|
|
1182
|
+
readonly lineHeight?: string | number | import("csstype").Property.LineHeight<string | number>[] | undefined;
|
|
1183
|
+
readonly lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[] | undefined;
|
|
1157
1184
|
readonly listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[] | undefined;
|
|
1158
1185
|
readonly listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[] | undefined;
|
|
1159
1186
|
readonly listStyleType?: import("csstype").Property.ListStyleType | import("csstype").Property.ListStyleType[] | undefined;
|
|
1160
|
-
readonly marginBlock?:
|
|
1161
|
-
readonly marginBlockEnd?:
|
|
1162
|
-
readonly marginBlockStart?:
|
|
1163
|
-
readonly marginBottom?:
|
|
1164
|
-
readonly marginInline?:
|
|
1165
|
-
readonly marginInlineEnd?:
|
|
1166
|
-
readonly marginInlineStart?:
|
|
1167
|
-
readonly marginLeft?:
|
|
1168
|
-
readonly marginRight?:
|
|
1169
|
-
readonly marginTop?:
|
|
1187
|
+
readonly marginBlock?: string | number | import("csstype").Property.MarginBlock<string | number>[] | undefined;
|
|
1188
|
+
readonly marginBlockEnd?: string | number | import("csstype").Property.MarginBlockEnd<string | number>[] | undefined;
|
|
1189
|
+
readonly marginBlockStart?: string | number | import("csstype").Property.MarginBlockStart<string | number>[] | undefined;
|
|
1190
|
+
readonly marginBottom?: string | number | import("csstype").Property.MarginBottom<string | number>[] | undefined;
|
|
1191
|
+
readonly marginInline?: string | number | import("csstype").Property.MarginInline<string | number>[] | undefined;
|
|
1192
|
+
readonly marginInlineEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
1193
|
+
readonly marginInlineStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
1194
|
+
readonly marginLeft?: string | number | import("csstype").Property.MarginLeft<string | number>[] | undefined;
|
|
1195
|
+
readonly marginRight?: string | number | import("csstype").Property.MarginRight<string | number>[] | undefined;
|
|
1196
|
+
readonly marginTop?: string | number | import("csstype").Property.MarginTop<string | number>[] | undefined;
|
|
1170
1197
|
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[] | undefined;
|
|
1171
|
-
readonly maskBorderOutset?:
|
|
1198
|
+
readonly maskBorderOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
1172
1199
|
readonly maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1173
|
-
readonly maskBorderSlice?:
|
|
1200
|
+
readonly maskBorderSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
1174
1201
|
readonly maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1175
|
-
readonly maskBorderWidth?:
|
|
1202
|
+
readonly maskBorderWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
1176
1203
|
readonly maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[] | undefined;
|
|
1177
1204
|
readonly maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[] | undefined;
|
|
1178
1205
|
readonly maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[] | undefined;
|
|
1179
1206
|
readonly maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[] | undefined;
|
|
1180
1207
|
readonly maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[] | undefined;
|
|
1181
|
-
readonly maskPosition?:
|
|
1208
|
+
readonly maskPosition?: string | number | import("csstype").Property.MaskPosition<string | number>[] | undefined;
|
|
1182
1209
|
readonly maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[] | undefined;
|
|
1183
|
-
readonly maskSize?:
|
|
1210
|
+
readonly maskSize?: string | number | import("csstype").Property.MaskSize<string | number>[] | undefined;
|
|
1184
1211
|
readonly maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[] | undefined;
|
|
1185
1212
|
readonly mathStyle?: import("csstype").Property.MathStyle | import("csstype").Property.MathStyle[] | undefined;
|
|
1186
|
-
readonly maxBlockSize?:
|
|
1187
|
-
readonly maxHeight?:
|
|
1188
|
-
readonly maxInlineSize?:
|
|
1189
|
-
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] |
|
|
1190
|
-
readonly maxWidth?:
|
|
1191
|
-
readonly minBlockSize?:
|
|
1192
|
-
readonly minHeight?:
|
|
1193
|
-
readonly minInlineSize?:
|
|
1194
|
-
readonly minWidth?:
|
|
1213
|
+
readonly maxBlockSize?: string | number | import("csstype").Property.MaxBlockSize<string | number>[] | undefined;
|
|
1214
|
+
readonly maxHeight?: string | number | import("csstype").Property.MaxHeight<string | number>[] | undefined;
|
|
1215
|
+
readonly maxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
1216
|
+
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] | undefined;
|
|
1217
|
+
readonly maxWidth?: string | number | import("csstype").Property.MaxWidth<string | number>[] | undefined;
|
|
1218
|
+
readonly minBlockSize?: string | number | import("csstype").Property.MinBlockSize<string | number>[] | undefined;
|
|
1219
|
+
readonly minHeight?: string | number | import("csstype").Property.MinHeight<string | number>[] | undefined;
|
|
1220
|
+
readonly minInlineSize?: string | number | import("csstype").Property.MinInlineSize<string | number>[] | undefined;
|
|
1221
|
+
readonly minWidth?: string | number | import("csstype").Property.MinWidth<string | number>[] | undefined;
|
|
1195
1222
|
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[] | undefined;
|
|
1196
|
-
readonly motionDistance?:
|
|
1223
|
+
readonly motionDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
1197
1224
|
readonly motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
1198
1225
|
readonly motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1199
1226
|
readonly objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
1200
|
-
readonly objectPosition?:
|
|
1201
|
-
readonly offsetAnchor?:
|
|
1202
|
-
readonly offsetDistance?:
|
|
1227
|
+
readonly objectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
1228
|
+
readonly offsetAnchor?: string | number | import("csstype").Property.OffsetAnchor<string | number>[] | undefined;
|
|
1229
|
+
readonly offsetDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
1203
1230
|
readonly offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
1204
1231
|
readonly offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1205
1232
|
readonly offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1206
|
-
readonly opacity?:
|
|
1207
|
-
readonly order?:
|
|
1208
|
-
readonly orphans?:
|
|
1233
|
+
readonly opacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
1234
|
+
readonly order?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
1235
|
+
readonly orphans?: import("csstype").Property.Orphans | import("csstype").Property.Orphans[] | undefined;
|
|
1209
1236
|
readonly outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
1210
|
-
readonly outlineOffset?:
|
|
1237
|
+
readonly outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[] | undefined;
|
|
1211
1238
|
readonly outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
1212
|
-
readonly outlineWidth?:
|
|
1239
|
+
readonly outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
1213
1240
|
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[] | undefined;
|
|
1214
1241
|
readonly overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[] | undefined;
|
|
1215
1242
|
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[] | undefined;
|
|
1216
|
-
readonly overflowClipMargin?:
|
|
1243
|
+
readonly overflowClipMargin?: string | number | import("csstype").Property.OverflowClipMargin<string | number>[] | undefined;
|
|
1217
1244
|
readonly overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[] | undefined;
|
|
1218
1245
|
readonly overflowWrap?: import("csstype").Property.OverflowWrap | import("csstype").Property.OverflowWrap[] | undefined;
|
|
1219
1246
|
readonly overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
@@ -1222,73 +1249,73 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1222
1249
|
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
1223
1250
|
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
1224
1251
|
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
1225
|
-
readonly paddingBlock?:
|
|
1226
|
-
readonly paddingBlockEnd?:
|
|
1227
|
-
readonly paddingBlockStart?:
|
|
1228
|
-
readonly paddingBottom?:
|
|
1229
|
-
readonly paddingInline?:
|
|
1230
|
-
readonly paddingInlineEnd?:
|
|
1231
|
-
readonly paddingInlineStart?:
|
|
1232
|
-
readonly paddingLeft?:
|
|
1233
|
-
readonly paddingRight?:
|
|
1234
|
-
readonly paddingTop?:
|
|
1252
|
+
readonly paddingBlock?: string | number | import("csstype").Property.PaddingBlock<string | number>[] | undefined;
|
|
1253
|
+
readonly paddingBlockEnd?: string | number | import("csstype").Property.PaddingBlockEnd<string | number>[] | undefined;
|
|
1254
|
+
readonly paddingBlockStart?: string | number | import("csstype").Property.PaddingBlockStart<string | number>[] | undefined;
|
|
1255
|
+
readonly paddingBottom?: string | number | import("csstype").Property.PaddingBottom<string | number>[] | undefined;
|
|
1256
|
+
readonly paddingInline?: string | number | import("csstype").Property.PaddingInline<string | number>[] | undefined;
|
|
1257
|
+
readonly paddingInlineEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
1258
|
+
readonly paddingInlineStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
1259
|
+
readonly paddingLeft?: string | number | import("csstype").Property.PaddingLeft<string | number>[] | undefined;
|
|
1260
|
+
readonly paddingRight?: string | number | import("csstype").Property.PaddingRight<string | number>[] | undefined;
|
|
1261
|
+
readonly paddingTop?: string | number | import("csstype").Property.PaddingTop<string | number>[] | undefined;
|
|
1235
1262
|
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[] | undefined;
|
|
1236
1263
|
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[] | undefined;
|
|
1237
1264
|
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[] | undefined;
|
|
1238
1265
|
readonly paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[] | undefined;
|
|
1239
|
-
readonly perspective?:
|
|
1240
|
-
readonly perspectiveOrigin?:
|
|
1266
|
+
readonly perspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
1267
|
+
readonly perspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1241
1268
|
readonly placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[] | undefined;
|
|
1242
1269
|
readonly pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[] | undefined;
|
|
1243
1270
|
readonly position?: import("csstype").Property.Position | import("csstype").Property.Position[] | undefined;
|
|
1244
1271
|
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1245
1272
|
readonly quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[] | undefined;
|
|
1246
1273
|
readonly resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[] | undefined;
|
|
1247
|
-
readonly right?:
|
|
1274
|
+
readonly right?: string | number | import("csstype").Property.Right<string | number>[] | undefined;
|
|
1248
1275
|
readonly rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[] | undefined;
|
|
1249
|
-
readonly rowGap?:
|
|
1276
|
+
readonly rowGap?: string | number | import("csstype").Property.RowGap<string | number>[] | undefined;
|
|
1250
1277
|
readonly rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[] | undefined;
|
|
1251
1278
|
readonly rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[] | undefined;
|
|
1252
1279
|
readonly rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
1253
|
-
readonly scale?:
|
|
1280
|
+
readonly scale?: import("csstype").Property.Scale | import("csstype").Property.Scale[] | undefined;
|
|
1254
1281
|
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | import("csstype").Property.ScrollBehavior[] | undefined;
|
|
1255
|
-
readonly scrollMargin?:
|
|
1256
|
-
readonly scrollMarginBlock?:
|
|
1257
|
-
readonly scrollMarginBlockEnd?:
|
|
1258
|
-
readonly scrollMarginBlockStart?:
|
|
1259
|
-
readonly scrollMarginBottom?:
|
|
1260
|
-
readonly scrollMarginInline?:
|
|
1261
|
-
readonly scrollMarginInlineEnd?:
|
|
1262
|
-
readonly scrollMarginInlineStart?:
|
|
1263
|
-
readonly scrollMarginLeft?:
|
|
1264
|
-
readonly scrollMarginRight?:
|
|
1265
|
-
readonly scrollMarginTop?:
|
|
1266
|
-
readonly scrollPadding?:
|
|
1267
|
-
readonly scrollPaddingBlock?:
|
|
1268
|
-
readonly scrollPaddingBlockEnd?:
|
|
1269
|
-
readonly scrollPaddingBlockStart?:
|
|
1270
|
-
readonly scrollPaddingBottom?:
|
|
1271
|
-
readonly scrollPaddingInline?:
|
|
1272
|
-
readonly scrollPaddingInlineEnd?:
|
|
1273
|
-
readonly scrollPaddingInlineStart?:
|
|
1274
|
-
readonly scrollPaddingLeft?:
|
|
1275
|
-
readonly scrollPaddingRight?:
|
|
1276
|
-
readonly scrollPaddingTop?:
|
|
1282
|
+
readonly scrollMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
1283
|
+
readonly scrollMarginBlock?: string | number | import("csstype").Property.ScrollMarginBlock<string | number>[] | undefined;
|
|
1284
|
+
readonly scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[] | undefined;
|
|
1285
|
+
readonly scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[] | undefined;
|
|
1286
|
+
readonly scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
1287
|
+
readonly scrollMarginInline?: string | number | import("csstype").Property.ScrollMarginInline<string | number>[] | undefined;
|
|
1288
|
+
readonly scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[] | undefined;
|
|
1289
|
+
readonly scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[] | undefined;
|
|
1290
|
+
readonly scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
1291
|
+
readonly scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
1292
|
+
readonly scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
1293
|
+
readonly scrollPadding?: string | number | import("csstype").Property.ScrollPadding<string | number>[] | undefined;
|
|
1294
|
+
readonly scrollPaddingBlock?: string | number | import("csstype").Property.ScrollPaddingBlock<string | number>[] | undefined;
|
|
1295
|
+
readonly scrollPaddingBlockEnd?: string | number | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[] | undefined;
|
|
1296
|
+
readonly scrollPaddingBlockStart?: string | number | import("csstype").Property.ScrollPaddingBlockStart<string | number>[] | undefined;
|
|
1297
|
+
readonly scrollPaddingBottom?: string | number | import("csstype").Property.ScrollPaddingBottom<string | number>[] | undefined;
|
|
1298
|
+
readonly scrollPaddingInline?: string | number | import("csstype").Property.ScrollPaddingInline<string | number>[] | undefined;
|
|
1299
|
+
readonly scrollPaddingInlineEnd?: string | number | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[] | undefined;
|
|
1300
|
+
readonly scrollPaddingInlineStart?: string | number | import("csstype").Property.ScrollPaddingInlineStart<string | number>[] | undefined;
|
|
1301
|
+
readonly scrollPaddingLeft?: string | number | import("csstype").Property.ScrollPaddingLeft<string | number>[] | undefined;
|
|
1302
|
+
readonly scrollPaddingRight?: string | number | import("csstype").Property.ScrollPaddingRight<string | number>[] | undefined;
|
|
1303
|
+
readonly scrollPaddingTop?: string | number | import("csstype").Property.ScrollPaddingTop<string | number>[] | undefined;
|
|
1277
1304
|
readonly scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
1278
|
-
readonly scrollSnapMargin?:
|
|
1279
|
-
readonly scrollSnapMarginBottom?:
|
|
1280
|
-
readonly scrollSnapMarginLeft?:
|
|
1281
|
-
readonly scrollSnapMarginRight?:
|
|
1282
|
-
readonly scrollSnapMarginTop?:
|
|
1305
|
+
readonly scrollSnapMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
1306
|
+
readonly scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
1307
|
+
readonly scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
1308
|
+
readonly scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
1309
|
+
readonly scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
1283
1310
|
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
1284
1311
|
readonly scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1285
1312
|
readonly scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[] | undefined;
|
|
1286
1313
|
readonly scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
1287
1314
|
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
1288
|
-
readonly shapeImageThreshold?:
|
|
1289
|
-
readonly shapeMargin?:
|
|
1315
|
+
readonly shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[] | undefined;
|
|
1316
|
+
readonly shapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
1290
1317
|
readonly shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[] | undefined;
|
|
1291
|
-
readonly tabSize?:
|
|
1318
|
+
readonly tabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1292
1319
|
readonly tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[] | undefined;
|
|
1293
1320
|
readonly textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[] | undefined;
|
|
1294
1321
|
readonly textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
@@ -1298,12 +1325,12 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1298
1325
|
readonly textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
1299
1326
|
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
1300
1327
|
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
1301
|
-
readonly textDecorationThickness?:
|
|
1302
|
-
readonly textDecorationWidth?:
|
|
1328
|
+
readonly textDecorationThickness?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
1329
|
+
readonly textDecorationWidth?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
1303
1330
|
readonly textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
1304
1331
|
readonly textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
1305
1332
|
readonly textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
1306
|
-
readonly textIndent?:
|
|
1333
|
+
readonly textIndent?: string | number | import("csstype").Property.TextIndent<string | number>[] | undefined;
|
|
1307
1334
|
readonly textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[] | undefined;
|
|
1308
1335
|
readonly textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
1309
1336
|
readonly textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
@@ -1311,85 +1338,84 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1311
1338
|
readonly textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[] | undefined;
|
|
1312
1339
|
readonly textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1313
1340
|
readonly textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[] | undefined;
|
|
1314
|
-
readonly textUnderlineOffset?:
|
|
1341
|
+
readonly textUnderlineOffset?: string | number | import("csstype").Property.TextUnderlineOffset<string | number>[] | undefined;
|
|
1315
1342
|
readonly textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1316
|
-
readonly top?:
|
|
1343
|
+
readonly top?: string | number | import("csstype").Property.Top<string | number>[] | undefined;
|
|
1317
1344
|
readonly touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
1318
1345
|
readonly transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1319
1346
|
readonly transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[] | undefined;
|
|
1320
|
-
readonly transformOrigin?:
|
|
1347
|
+
readonly transformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1321
1348
|
readonly transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1322
1349
|
readonly transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1323
1350
|
readonly transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1324
1351
|
readonly transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
1325
1352
|
readonly transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1326
|
-
readonly translate?:
|
|
1353
|
+
readonly translate?: string | number | import("csstype").Property.Translate<string | number>[] | undefined;
|
|
1327
1354
|
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[] | undefined;
|
|
1328
1355
|
readonly userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1329
|
-
readonly verticalAlign?:
|
|
1356
|
+
readonly verticalAlign?: string | number | import("csstype").Property.VerticalAlign<string | number>[] | undefined;
|
|
1330
1357
|
readonly visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[] | undefined;
|
|
1331
|
-
readonly
|
|
1332
|
-
readonly
|
|
1333
|
-
readonly width?: (string | (string & {}))[] | import("csstype").Property.Width<string | number> | import("csstype").Property.Width<string | number>[] | undefined;
|
|
1358
|
+
readonly widows?: import("csstype").Property.Widows | import("csstype").Property.Widows[] | undefined;
|
|
1359
|
+
readonly width?: string | number | import("csstype").Property.Width<string | number>[] | undefined;
|
|
1334
1360
|
readonly willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[] | undefined;
|
|
1335
1361
|
readonly wordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
1336
|
-
readonly wordSpacing?:
|
|
1362
|
+
readonly wordSpacing?: import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[] | undefined;
|
|
1337
1363
|
readonly wordWrap?: import("csstype").Property.WordWrap | import("csstype").Property.WordWrap[] | undefined;
|
|
1338
1364
|
readonly writingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
1339
|
-
readonly zIndex?:
|
|
1340
|
-
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] |
|
|
1365
|
+
readonly zIndex?: import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[] | undefined;
|
|
1366
|
+
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | undefined;
|
|
1341
1367
|
readonly all?: import("csstype").Globals | import("csstype").Globals[] | undefined;
|
|
1342
|
-
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
1343
|
-
readonly background?:
|
|
1344
|
-
readonly backgroundPosition?:
|
|
1345
|
-
readonly border?:
|
|
1346
|
-
readonly borderBlock?:
|
|
1347
|
-
readonly borderBlockEnd?:
|
|
1348
|
-
readonly borderBlockStart?:
|
|
1349
|
-
readonly borderBottom?:
|
|
1368
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
1369
|
+
readonly background?: string | number | import("csstype").Property.Background<string | number>[] | undefined;
|
|
1370
|
+
readonly backgroundPosition?: string | number | import("csstype").Property.BackgroundPosition<string | number>[] | undefined;
|
|
1371
|
+
readonly border?: string | number | import("csstype").Property.Border<string | number>[] | undefined;
|
|
1372
|
+
readonly borderBlock?: string | number | import("csstype").Property.BorderBlock<string | number>[] | undefined;
|
|
1373
|
+
readonly borderBlockEnd?: string | number | import("csstype").Property.BorderBlockEnd<string | number>[] | undefined;
|
|
1374
|
+
readonly borderBlockStart?: string | number | import("csstype").Property.BorderBlockStart<string | number>[] | undefined;
|
|
1375
|
+
readonly borderBottom?: string | number | import("csstype").Property.BorderBottom<string | number>[] | undefined;
|
|
1350
1376
|
readonly borderColor?: import("csstype").Property.BorderColor | import("csstype").Property.BorderColor[] | undefined;
|
|
1351
|
-
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
1352
|
-
readonly borderInline?:
|
|
1353
|
-
readonly borderInlineEnd?:
|
|
1354
|
-
readonly borderInlineStart?:
|
|
1355
|
-
readonly borderLeft?:
|
|
1356
|
-
readonly borderRadius?:
|
|
1357
|
-
readonly borderRight?:
|
|
1377
|
+
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
1378
|
+
readonly borderInline?: string | number | import("csstype").Property.BorderInline<string | number>[] | undefined;
|
|
1379
|
+
readonly borderInlineEnd?: string | number | import("csstype").Property.BorderInlineEnd<string | number>[] | undefined;
|
|
1380
|
+
readonly borderInlineStart?: string | number | import("csstype").Property.BorderInlineStart<string | number>[] | undefined;
|
|
1381
|
+
readonly borderLeft?: string | number | import("csstype").Property.BorderLeft<string | number>[] | undefined;
|
|
1382
|
+
readonly borderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
1383
|
+
readonly borderRight?: string | number | import("csstype").Property.BorderRight<string | number>[] | undefined;
|
|
1358
1384
|
readonly borderStyle?: import("csstype").Property.BorderStyle | import("csstype").Property.BorderStyle[] | undefined;
|
|
1359
|
-
readonly borderTop?:
|
|
1360
|
-
readonly borderWidth?:
|
|
1361
|
-
readonly columnRule?:
|
|
1362
|
-
readonly columns?:
|
|
1363
|
-
readonly flex?:
|
|
1385
|
+
readonly borderTop?: string | number | import("csstype").Property.BorderTop<string | number>[] | undefined;
|
|
1386
|
+
readonly borderWidth?: string | number | import("csstype").Property.BorderWidth<string | number>[] | undefined;
|
|
1387
|
+
readonly columnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
1388
|
+
readonly columns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
1389
|
+
readonly flex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1364
1390
|
readonly flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
1365
1391
|
readonly font?: import("csstype").Property.Font | import("csstype").Property.Font[] | undefined;
|
|
1366
|
-
readonly gap?:
|
|
1392
|
+
readonly gap?: string | number | import("csstype").Property.Gap<string | number>[] | undefined;
|
|
1367
1393
|
readonly grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[] | undefined;
|
|
1368
|
-
readonly gridArea?:
|
|
1369
|
-
readonly gridColumn?:
|
|
1370
|
-
readonly gridRow?:
|
|
1394
|
+
readonly gridArea?: import("csstype").Property.GridArea | import("csstype").Property.GridArea[] | undefined;
|
|
1395
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[] | undefined;
|
|
1396
|
+
readonly gridRow?: import("csstype").Property.GridRow | import("csstype").Property.GridRow[] | undefined;
|
|
1371
1397
|
readonly gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[] | undefined;
|
|
1372
|
-
readonly lineClamp?:
|
|
1398
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[] | undefined;
|
|
1373
1399
|
readonly listStyle?: import("csstype").Property.ListStyle | import("csstype").Property.ListStyle[] | undefined;
|
|
1374
|
-
readonly margin?:
|
|
1375
|
-
readonly mask?:
|
|
1376
|
-
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] |
|
|
1377
|
-
readonly motion?:
|
|
1378
|
-
readonly offset?:
|
|
1379
|
-
readonly outline?:
|
|
1400
|
+
readonly margin?: string | number | import("csstype").Property.Margin<string | number>[] | undefined;
|
|
1401
|
+
readonly mask?: string | number | import("csstype").Property.Mask<string | number>[] | undefined;
|
|
1402
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
1403
|
+
readonly motion?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
1404
|
+
readonly offset?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
1405
|
+
readonly outline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
1380
1406
|
readonly overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[] | undefined;
|
|
1381
1407
|
readonly overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
1382
|
-
readonly padding?:
|
|
1408
|
+
readonly padding?: string | number | import("csstype").Property.Padding<string | number>[] | undefined;
|
|
1383
1409
|
readonly placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[] | undefined;
|
|
1384
1410
|
readonly placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[] | undefined;
|
|
1385
|
-
readonly textDecoration?:
|
|
1411
|
+
readonly textDecoration?: string | number | import("csstype").Property.TextDecoration<string | number>[] | undefined;
|
|
1386
1412
|
readonly textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
1387
1413
|
readonly transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1388
1414
|
readonly MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1389
1415
|
readonly MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1390
1416
|
readonly MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1391
1417
|
readonly MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1392
|
-
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
1418
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1393
1419
|
readonly MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1394
1420
|
readonly MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1395
1421
|
readonly MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -1398,38 +1424,38 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1398
1424
|
readonly MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
1399
1425
|
readonly MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1400
1426
|
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1401
|
-
readonly MozBorderEndWidth?:
|
|
1427
|
+
readonly MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
1402
1428
|
readonly MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
1403
1429
|
readonly MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
1404
1430
|
readonly MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1405
1431
|
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1406
1432
|
readonly MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
1407
1433
|
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
1408
|
-
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
1434
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1409
1435
|
readonly MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1410
|
-
readonly MozColumnGap?:
|
|
1436
|
+
readonly MozColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1411
1437
|
readonly MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1412
1438
|
readonly MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1413
|
-
readonly MozColumnRuleWidth?:
|
|
1414
|
-
readonly MozColumnWidth?:
|
|
1439
|
+
readonly MozColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
1440
|
+
readonly MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1415
1441
|
readonly MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[] | undefined;
|
|
1416
1442
|
readonly MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1417
1443
|
readonly MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1418
1444
|
readonly MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1419
1445
|
readonly MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[] | undefined;
|
|
1420
|
-
readonly MozMarginEnd?:
|
|
1421
|
-
readonly MozMarginStart?:
|
|
1446
|
+
readonly MozMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
1447
|
+
readonly MozMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
1422
1448
|
readonly MozOrient?: import("csstype").Property.MozOrient | import("csstype").Property.MozOrient[] | undefined;
|
|
1423
|
-
readonly MozOsxFontSmoothing?:
|
|
1424
|
-
readonly MozPaddingEnd?:
|
|
1425
|
-
readonly MozPaddingStart?:
|
|
1426
|
-
readonly MozPerspective?:
|
|
1427
|
-
readonly MozPerspectiveOrigin?:
|
|
1449
|
+
readonly MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
1450
|
+
readonly MozPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
1451
|
+
readonly MozPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
1452
|
+
readonly MozPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
1453
|
+
readonly MozPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1428
1454
|
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[] | undefined;
|
|
1429
|
-
readonly MozTabSize?:
|
|
1455
|
+
readonly MozTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1430
1456
|
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[] | undefined;
|
|
1431
1457
|
readonly MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1432
|
-
readonly MozTransformOrigin?:
|
|
1458
|
+
readonly MozTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1433
1459
|
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1434
1460
|
readonly MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1435
1461
|
readonly MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1451,28 +1477,28 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1451
1477
|
readonly msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[] | undefined;
|
|
1452
1478
|
readonly msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[] | undefined;
|
|
1453
1479
|
readonly msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1454
|
-
readonly msFlexPositive?:
|
|
1480
|
+
readonly msFlexPositive?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
1455
1481
|
readonly msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[] | undefined;
|
|
1456
1482
|
readonly msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[] | undefined;
|
|
1457
|
-
readonly msGridColumns?:
|
|
1458
|
-
readonly msGridRows?:
|
|
1483
|
+
readonly msGridColumns?: string | number | import("csstype").Property.MsGridColumns<string | number>[] | undefined;
|
|
1484
|
+
readonly msGridRows?: string | number | import("csstype").Property.MsGridRows<string | number>[] | undefined;
|
|
1459
1485
|
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
1460
|
-
readonly msHyphenateLimitChars?:
|
|
1461
|
-
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] |
|
|
1462
|
-
readonly msHyphenateLimitZone?:
|
|
1486
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[] | undefined;
|
|
1487
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | undefined;
|
|
1488
|
+
readonly msHyphenateLimitZone?: string | number | import("csstype").Property.MsHyphenateLimitZone<string | number>[] | undefined;
|
|
1463
1489
|
readonly msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1464
1490
|
readonly msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[] | undefined;
|
|
1465
1491
|
readonly msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
1466
1492
|
readonly msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1467
|
-
readonly msOrder?:
|
|
1493
|
+
readonly msOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
1468
1494
|
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
1469
1495
|
readonly msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
1470
1496
|
readonly msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
1471
1497
|
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[] | undefined;
|
|
1472
|
-
readonly msScrollLimitXMax?:
|
|
1473
|
-
readonly msScrollLimitXMin?:
|
|
1474
|
-
readonly msScrollLimitYMax?:
|
|
1475
|
-
readonly msScrollLimitYMin?:
|
|
1498
|
+
readonly msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[] | undefined;
|
|
1499
|
+
readonly msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[] | undefined;
|
|
1500
|
+
readonly msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[] | undefined;
|
|
1501
|
+
readonly msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[] | undefined;
|
|
1476
1502
|
readonly msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[] | undefined;
|
|
1477
1503
|
readonly msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
1478
1504
|
readonly msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
@@ -1491,7 +1517,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1491
1517
|
readonly msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
1492
1518
|
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[] | undefined;
|
|
1493
1519
|
readonly msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1494
|
-
readonly msTransformOrigin?:
|
|
1520
|
+
readonly msTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1495
1521
|
readonly msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1496
1522
|
readonly msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1497
1523
|
readonly msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
@@ -1499,7 +1525,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1499
1525
|
readonly msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[] | undefined;
|
|
1500
1526
|
readonly msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
1501
1527
|
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[] | undefined;
|
|
1502
|
-
readonly msWrapMargin?:
|
|
1528
|
+
readonly msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[] | undefined;
|
|
1503
1529
|
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[] | undefined;
|
|
1504
1530
|
readonly msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
1505
1531
|
readonly WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
@@ -1509,7 +1535,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1509
1535
|
readonly WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1510
1536
|
readonly WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1511
1537
|
readonly WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1512
|
-
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
1538
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1513
1539
|
readonly WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1514
1540
|
readonly WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1515
1541
|
readonly WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -1518,74 +1544,74 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1518
1544
|
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1519
1545
|
readonly WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
1520
1546
|
readonly WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1521
|
-
readonly WebkitBackgroundSize?:
|
|
1547
|
+
readonly WebkitBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1522
1548
|
readonly WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
1523
1549
|
readonly WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
1524
|
-
readonly WebkitBorderBeforeWidth?:
|
|
1525
|
-
readonly WebkitBorderBottomLeftRadius?:
|
|
1526
|
-
readonly WebkitBorderBottomRightRadius?:
|
|
1527
|
-
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] |
|
|
1528
|
-
readonly WebkitBorderTopLeftRadius?:
|
|
1529
|
-
readonly WebkitBorderTopRightRadius?:
|
|
1550
|
+
readonly WebkitBorderBeforeWidth?: string | number | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[] | undefined;
|
|
1551
|
+
readonly WebkitBorderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
1552
|
+
readonly WebkitBorderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
1553
|
+
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
1554
|
+
readonly WebkitBorderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
1555
|
+
readonly WebkitBorderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1530
1556
|
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1531
|
-
readonly WebkitBoxReflect?:
|
|
1557
|
+
readonly WebkitBoxReflect?: string | number | import("csstype").Property.WebkitBoxReflect<string | number>[] | undefined;
|
|
1532
1558
|
readonly WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1533
1559
|
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
1534
1560
|
readonly WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
1535
|
-
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
1561
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1536
1562
|
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1537
|
-
readonly WebkitColumnGap?:
|
|
1563
|
+
readonly WebkitColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1538
1564
|
readonly WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1539
1565
|
readonly WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1540
|
-
readonly WebkitColumnRuleWidth?:
|
|
1566
|
+
readonly WebkitColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
1541
1567
|
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
1542
|
-
readonly WebkitColumnWidth?:
|
|
1568
|
+
readonly WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1543
1569
|
readonly WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
1544
|
-
readonly WebkitFlexBasis?:
|
|
1570
|
+
readonly WebkitFlexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
1545
1571
|
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1546
|
-
readonly WebkitFlexGrow?:
|
|
1547
|
-
readonly WebkitFlexShrink?:
|
|
1572
|
+
readonly WebkitFlexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
1573
|
+
readonly WebkitFlexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
1548
1574
|
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
1549
1575
|
readonly WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1550
1576
|
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
1551
|
-
readonly WebkitFontSmoothing?:
|
|
1577
|
+
readonly WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
1552
1578
|
readonly WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
1553
1579
|
readonly WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1554
1580
|
readonly WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1555
|
-
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] |
|
|
1581
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
1556
1582
|
readonly WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
1557
1583
|
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1558
|
-
readonly WebkitLineClamp?:
|
|
1559
|
-
readonly WebkitMarginEnd?:
|
|
1560
|
-
readonly WebkitMarginStart?:
|
|
1584
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[] | undefined;
|
|
1585
|
+
readonly WebkitMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
1586
|
+
readonly WebkitMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
1561
1587
|
readonly WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
1562
|
-
readonly WebkitMaskBoxImageOutset?:
|
|
1588
|
+
readonly WebkitMaskBoxImageOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
1563
1589
|
readonly WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1564
|
-
readonly WebkitMaskBoxImageSlice?:
|
|
1590
|
+
readonly WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
1565
1591
|
readonly WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1566
|
-
readonly WebkitMaskBoxImageWidth?:
|
|
1592
|
+
readonly WebkitMaskBoxImageWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
1567
1593
|
readonly WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
1568
1594
|
readonly WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
1569
1595
|
readonly WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
1570
1596
|
readonly WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
1571
|
-
readonly WebkitMaskPosition?:
|
|
1572
|
-
readonly WebkitMaskPositionX?:
|
|
1573
|
-
readonly WebkitMaskPositionY?:
|
|
1597
|
+
readonly WebkitMaskPosition?: string | number | import("csstype").Property.WebkitMaskPosition<string | number>[] | undefined;
|
|
1598
|
+
readonly WebkitMaskPositionX?: string | number | import("csstype").Property.WebkitMaskPositionX<string | number>[] | undefined;
|
|
1599
|
+
readonly WebkitMaskPositionY?: string | number | import("csstype").Property.WebkitMaskPositionY<string | number>[] | undefined;
|
|
1574
1600
|
readonly WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
1575
1601
|
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
1576
1602
|
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
1577
|
-
readonly WebkitMaskSize?:
|
|
1578
|
-
readonly WebkitMaxInlineSize?:
|
|
1579
|
-
readonly WebkitOrder?:
|
|
1603
|
+
readonly WebkitMaskSize?: string | number | import("csstype").Property.WebkitMaskSize<string | number>[] | undefined;
|
|
1604
|
+
readonly WebkitMaxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
1605
|
+
readonly WebkitOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
1580
1606
|
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
1581
|
-
readonly WebkitPaddingEnd?:
|
|
1582
|
-
readonly WebkitPaddingStart?:
|
|
1583
|
-
readonly WebkitPerspective?:
|
|
1584
|
-
readonly WebkitPerspectiveOrigin?:
|
|
1607
|
+
readonly WebkitPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
1608
|
+
readonly WebkitPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
1609
|
+
readonly WebkitPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
1610
|
+
readonly WebkitPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1585
1611
|
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1586
1612
|
readonly WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
1587
1613
|
readonly WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1588
|
-
readonly WebkitShapeMargin?:
|
|
1614
|
+
readonly WebkitShapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
1589
1615
|
readonly WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
1590
1616
|
readonly WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
1591
1617
|
readonly WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
@@ -1599,11 +1625,11 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1599
1625
|
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
1600
1626
|
readonly WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1601
1627
|
readonly WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
1602
|
-
readonly WebkitTextStrokeWidth?:
|
|
1628
|
+
readonly WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[] | undefined;
|
|
1603
1629
|
readonly WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1604
1630
|
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
1605
1631
|
readonly WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1606
|
-
readonly WebkitTransformOrigin?:
|
|
1632
|
+
readonly WebkitTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1607
1633
|
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1608
1634
|
readonly WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1609
1635
|
readonly WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1612,53 +1638,53 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1612
1638
|
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[] | undefined;
|
|
1613
1639
|
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1614
1640
|
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
1615
|
-
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
1616
|
-
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
1617
|
-
readonly MozColumnRule?:
|
|
1618
|
-
readonly MozColumns?:
|
|
1641
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
1642
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
1643
|
+
readonly MozColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
1644
|
+
readonly MozColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
1619
1645
|
readonly MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1620
1646
|
readonly msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
1621
1647
|
readonly msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
1622
|
-
readonly msFlex?:
|
|
1648
|
+
readonly msFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1623
1649
|
readonly msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[] | undefined;
|
|
1624
1650
|
readonly msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
1625
1651
|
readonly msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
1626
1652
|
readonly msTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1627
|
-
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
1628
|
-
readonly WebkitBorderBefore?:
|
|
1629
|
-
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
1630
|
-
readonly WebkitBorderRadius?:
|
|
1631
|
-
readonly WebkitColumnRule?:
|
|
1632
|
-
readonly WebkitColumns?:
|
|
1633
|
-
readonly WebkitFlex?:
|
|
1653
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
1654
|
+
readonly WebkitBorderBefore?: string | number | import("csstype").Property.WebkitBorderBefore<string | number>[] | undefined;
|
|
1655
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
1656
|
+
readonly WebkitBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
1657
|
+
readonly WebkitColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
1658
|
+
readonly WebkitColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
1659
|
+
readonly WebkitFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1634
1660
|
readonly WebkitFlexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
1635
|
-
readonly WebkitMask?:
|
|
1636
|
-
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] |
|
|
1661
|
+
readonly WebkitMask?: string | number | import("csstype").Property.WebkitMask<string | number>[] | undefined;
|
|
1662
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
1637
1663
|
readonly WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
1638
|
-
readonly WebkitTextStroke?:
|
|
1664
|
+
readonly WebkitTextStroke?: string | number | import("csstype").Property.WebkitTextStroke<string | number>[] | undefined;
|
|
1639
1665
|
readonly WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1640
1666
|
readonly azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[] | undefined;
|
|
1641
1667
|
readonly boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1642
1668
|
readonly boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1643
|
-
readonly boxFlex?:
|
|
1644
|
-
readonly boxFlexGroup?:
|
|
1669
|
+
readonly boxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
1670
|
+
readonly boxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1645
1671
|
readonly boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1646
|
-
readonly boxOrdinalGroup?:
|
|
1672
|
+
readonly boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1647
1673
|
readonly boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1648
1674
|
readonly boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1649
1675
|
readonly clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[] | undefined;
|
|
1650
|
-
readonly gridColumnGap?:
|
|
1651
|
-
readonly gridGap?:
|
|
1652
|
-
readonly gridRowGap?:
|
|
1676
|
+
readonly gridColumnGap?: string | number | import("csstype").Property.GridColumnGap<string | number>[] | undefined;
|
|
1677
|
+
readonly gridGap?: string | number | import("csstype").Property.GridGap<string | number>[] | undefined;
|
|
1678
|
+
readonly gridRowGap?: string | number | import("csstype").Property.GridRowGap<string | number>[] | undefined;
|
|
1653
1679
|
readonly imeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
1654
|
-
readonly offsetBlock?:
|
|
1655
|
-
readonly offsetBlockEnd?:
|
|
1656
|
-
readonly offsetBlockStart?:
|
|
1657
|
-
readonly offsetInline?:
|
|
1658
|
-
readonly offsetInlineEnd?:
|
|
1659
|
-
readonly offsetInlineStart?:
|
|
1660
|
-
readonly scrollSnapCoordinate?:
|
|
1661
|
-
readonly scrollSnapDestination?:
|
|
1680
|
+
readonly offsetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
1681
|
+
readonly offsetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
1682
|
+
readonly offsetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
1683
|
+
readonly offsetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
1684
|
+
readonly offsetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
1685
|
+
readonly offsetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
1686
|
+
readonly scrollSnapCoordinate?: string | number | import("csstype").Property.ScrollSnapCoordinate<string | number>[] | undefined;
|
|
1687
|
+
readonly scrollSnapDestination?: string | number | import("csstype").Property.ScrollSnapDestination<string | number>[] | undefined;
|
|
1662
1688
|
readonly scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
1663
1689
|
readonly scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
1664
1690
|
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
@@ -1666,44 +1692,44 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1666
1692
|
readonly scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
1667
1693
|
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1668
1694
|
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1669
|
-
readonly KhtmlBoxFlex?:
|
|
1670
|
-
readonly KhtmlBoxFlexGroup?:
|
|
1695
|
+
readonly KhtmlBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
1696
|
+
readonly KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1671
1697
|
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1672
|
-
readonly KhtmlBoxOrdinalGroup?:
|
|
1698
|
+
readonly KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1673
1699
|
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1674
1700
|
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1675
1701
|
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1676
|
-
readonly KhtmlOpacity?:
|
|
1702
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
1677
1703
|
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1678
1704
|
readonly MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
1679
1705
|
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1680
1706
|
readonly MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1681
|
-
readonly MozBackgroundSize?:
|
|
1707
|
+
readonly MozBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1682
1708
|
readonly MozBinding?: import("csstype").Property.MozBinding | import("csstype").Property.MozBinding[] | undefined;
|
|
1683
|
-
readonly MozBorderRadius?:
|
|
1684
|
-
readonly MozBorderRadiusBottomleft?:
|
|
1685
|
-
readonly MozBorderRadiusBottomright?:
|
|
1686
|
-
readonly MozBorderRadiusTopleft?:
|
|
1687
|
-
readonly MozBorderRadiusTopright?:
|
|
1709
|
+
readonly MozBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
1710
|
+
readonly MozBorderRadiusBottomleft?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
1711
|
+
readonly MozBorderRadiusBottomright?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
1712
|
+
readonly MozBorderRadiusTopleft?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
1713
|
+
readonly MozBorderRadiusTopright?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1688
1714
|
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1689
1715
|
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1690
|
-
readonly MozBoxFlex?:
|
|
1691
|
-
readonly MozBoxOrdinalGroup?:
|
|
1716
|
+
readonly MozBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
1717
|
+
readonly MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1692
1718
|
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1693
1719
|
readonly MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1694
1720
|
readonly MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1695
1721
|
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[] | undefined;
|
|
1696
|
-
readonly MozForceBrokenImageIcon?:
|
|
1697
|
-
readonly MozOpacity?:
|
|
1698
|
-
readonly MozOutline?:
|
|
1722
|
+
readonly MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[] | undefined;
|
|
1723
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
1724
|
+
readonly MozOutline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
1699
1725
|
readonly MozOutlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
1700
|
-
readonly MozOutlineRadius?:
|
|
1701
|
-
readonly MozOutlineRadiusBottomleft?:
|
|
1702
|
-
readonly MozOutlineRadiusBottomright?:
|
|
1703
|
-
readonly MozOutlineRadiusTopleft?:
|
|
1704
|
-
readonly MozOutlineRadiusTopright?:
|
|
1726
|
+
readonly MozOutlineRadius?: string | number | import("csstype").Property.MozOutlineRadius<string | number>[] | undefined;
|
|
1727
|
+
readonly MozOutlineRadiusBottomleft?: string | number | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[] | undefined;
|
|
1728
|
+
readonly MozOutlineRadiusBottomright?: string | number | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[] | undefined;
|
|
1729
|
+
readonly MozOutlineRadiusTopleft?: string | number | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[] | undefined;
|
|
1730
|
+
readonly MozOutlineRadiusTopright?: string | number | import("csstype").Property.MozOutlineRadiusTopright<string | number>[] | undefined;
|
|
1705
1731
|
readonly MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
1706
|
-
readonly MozOutlineWidth?:
|
|
1732
|
+
readonly MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
1707
1733
|
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
1708
1734
|
readonly MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
1709
1735
|
readonly MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
@@ -1711,23 +1737,23 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1711
1737
|
readonly MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[] | undefined;
|
|
1712
1738
|
readonly msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
1713
1739
|
readonly msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
1714
|
-
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
1740
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
1715
1741
|
readonly OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1716
1742
|
readonly OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1717
1743
|
readonly OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1718
1744
|
readonly OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1719
|
-
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
1745
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1720
1746
|
readonly OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1721
1747
|
readonly OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1722
1748
|
readonly OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1723
|
-
readonly OBackgroundSize?:
|
|
1724
|
-
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] |
|
|
1749
|
+
readonly OBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1750
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
1725
1751
|
readonly OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
1726
|
-
readonly OObjectPosition?:
|
|
1727
|
-
readonly OTabSize?:
|
|
1752
|
+
readonly OObjectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
1753
|
+
readonly OTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1728
1754
|
readonly OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
1729
1755
|
readonly OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1730
|
-
readonly OTransformOrigin?:
|
|
1756
|
+
readonly OTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1731
1757
|
readonly OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1732
1758
|
readonly OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1733
1759
|
readonly OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1735,26 +1761,26 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1735
1761
|
readonly OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1736
1762
|
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1737
1763
|
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1738
|
-
readonly WebkitBoxFlex?:
|
|
1739
|
-
readonly WebkitBoxFlexGroup?:
|
|
1764
|
+
readonly WebkitBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
1765
|
+
readonly WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1740
1766
|
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1741
|
-
readonly WebkitBoxOrdinalGroup?:
|
|
1767
|
+
readonly WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1742
1768
|
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1743
1769
|
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1744
1770
|
readonly WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
1745
1771
|
readonly WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
1746
1772
|
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
1747
|
-
readonly baselineShift?:
|
|
1773
|
+
readonly baselineShift?: string | number | import("csstype").Property.BaselineShift<string | number>[] | undefined;
|
|
1748
1774
|
readonly clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[] | undefined;
|
|
1749
1775
|
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[] | undefined;
|
|
1750
1776
|
readonly colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[] | undefined;
|
|
1751
1777
|
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[] | undefined;
|
|
1752
1778
|
readonly fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[] | undefined;
|
|
1753
|
-
readonly fillOpacity?:
|
|
1779
|
+
readonly fillOpacity?: import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[] | undefined;
|
|
1754
1780
|
readonly fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[] | undefined;
|
|
1755
1781
|
readonly floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[] | undefined;
|
|
1756
|
-
readonly floodOpacity?:
|
|
1757
|
-
readonly glyphOrientationVertical?:
|
|
1782
|
+
readonly floodOpacity?: import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[] | undefined;
|
|
1783
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[] | undefined;
|
|
1758
1784
|
readonly lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[] | undefined;
|
|
1759
1785
|
readonly marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[] | undefined;
|
|
1760
1786
|
readonly markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[] | undefined;
|
|
@@ -1762,139 +1788,1070 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1762
1788
|
readonly markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[] | undefined;
|
|
1763
1789
|
readonly shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[] | undefined;
|
|
1764
1790
|
readonly stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[] | undefined;
|
|
1765
|
-
readonly stopOpacity?:
|
|
1791
|
+
readonly stopOpacity?: import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[] | undefined;
|
|
1766
1792
|
readonly stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[] | undefined;
|
|
1767
|
-
readonly strokeDasharray?:
|
|
1768
|
-
readonly strokeDashoffset?:
|
|
1793
|
+
readonly strokeDasharray?: string | number | import("csstype").Property.StrokeDasharray<string | number>[] | undefined;
|
|
1794
|
+
readonly strokeDashoffset?: string | number | import("csstype").Property.StrokeDashoffset<string | number>[] | undefined;
|
|
1769
1795
|
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[] | undefined;
|
|
1770
1796
|
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
1771
|
-
readonly strokeMiterlimit?:
|
|
1772
|
-
readonly strokeOpacity?:
|
|
1773
|
-
readonly strokeWidth?:
|
|
1797
|
+
readonly strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[] | undefined;
|
|
1798
|
+
readonly strokeOpacity?: import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[] | undefined;
|
|
1799
|
+
readonly strokeWidth?: string | number | import("csstype").Property.StrokeWidth<string | number>[] | undefined;
|
|
1774
1800
|
readonly textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[] | undefined;
|
|
1775
1801
|
readonly vectorEffect?: import("csstype").Property.VectorEffect | import("csstype").Property.VectorEffect[] | undefined;
|
|
1776
|
-
readonly ":-moz-any()"?: import("@emotion/
|
|
1777
|
-
readonly ":-moz-dir"?: import("@emotion/
|
|
1778
|
-
readonly ":-webkit-any()"?: import("@emotion/
|
|
1779
|
-
readonly "::cue"?: import("@emotion/
|
|
1780
|
-
readonly "::cue-region"?: import("@emotion/
|
|
1781
|
-
readonly "::part"?: import("@emotion/
|
|
1782
|
-
readonly "::slotted"?: import("@emotion/
|
|
1783
|
-
readonly ":dir"?: import("@emotion/
|
|
1784
|
-
readonly ":has"?: import("@emotion/
|
|
1785
|
-
readonly ":host"?: import("@emotion/
|
|
1786
|
-
readonly ":host-context"?: import("@emotion/
|
|
1787
|
-
readonly ":is"?: import("@emotion/
|
|
1788
|
-
readonly ":lang"?: import("@emotion/
|
|
1789
|
-
readonly ":matches()"?: import("@emotion/
|
|
1790
|
-
readonly ":not"?: import("@emotion/
|
|
1791
|
-
readonly ":nth-child"?: import("@emotion/
|
|
1792
|
-
readonly ":nth-last-child"?: import("@emotion/
|
|
1793
|
-
readonly ":nth-last-of-type"?: import("@emotion/
|
|
1794
|
-
readonly ":nth-of-type"?: import("@emotion/
|
|
1795
|
-
readonly ":where"?: import("@emotion/
|
|
1796
|
-
readonly ":-khtml-any-link"?: import("@emotion/
|
|
1797
|
-
readonly ":-moz-any-link"?: import("@emotion/
|
|
1798
|
-
readonly ":-moz-focusring"?: import("@emotion/
|
|
1799
|
-
readonly ":-moz-full-screen"?: import("@emotion/
|
|
1800
|
-
readonly ":-moz-placeholder"?: import("@emotion/
|
|
1801
|
-
readonly ":-moz-read-only"?: import("@emotion/
|
|
1802
|
-
readonly ":-moz-read-write"?: import("@emotion/
|
|
1803
|
-
readonly ":-moz-ui-invalid"?: import("@emotion/
|
|
1804
|
-
readonly ":-moz-ui-valid"?: import("@emotion/
|
|
1805
|
-
readonly ":-ms-fullscreen"?: import("@emotion/
|
|
1806
|
-
readonly ":-ms-input-placeholder"?: import("@emotion/
|
|
1807
|
-
readonly ":-webkit-any-link"?: import("@emotion/
|
|
1808
|
-
readonly ":-webkit-full-screen"?: import("@emotion/
|
|
1809
|
-
readonly "::-moz-placeholder"?: import("@emotion/
|
|
1810
|
-
readonly "::-moz-progress-bar"?: import("@emotion/
|
|
1811
|
-
readonly "::-moz-range-progress"?: import("@emotion/
|
|
1812
|
-
readonly "::-moz-range-thumb"?: import("@emotion/
|
|
1813
|
-
readonly "::-moz-range-track"?: import("@emotion/
|
|
1814
|
-
readonly "::-moz-selection"?: import("@emotion/
|
|
1815
|
-
readonly "::-ms-backdrop"?: import("@emotion/
|
|
1816
|
-
readonly "::-ms-browse"?: import("@emotion/
|
|
1817
|
-
readonly "::-ms-check"?: import("@emotion/
|
|
1818
|
-
readonly "::-ms-clear"?: import("@emotion/
|
|
1819
|
-
readonly "::-ms-fill"?: import("@emotion/
|
|
1820
|
-
readonly "::-ms-fill-lower"?: import("@emotion/
|
|
1821
|
-
readonly "::-ms-fill-upper"?: import("@emotion/
|
|
1822
|
-
readonly "::-ms-input-placeholder"?: import("@emotion/
|
|
1823
|
-
readonly "::-ms-reveal"?: import("@emotion/
|
|
1824
|
-
readonly "::-ms-thumb"?: import("@emotion/
|
|
1825
|
-
readonly "::-ms-ticks-after"?: import("@emotion/
|
|
1826
|
-
readonly "::-ms-ticks-before"?: import("@emotion/
|
|
1827
|
-
readonly "::-ms-tooltip"?: import("@emotion/
|
|
1828
|
-
readonly "::-ms-track"?: import("@emotion/
|
|
1829
|
-
readonly "::-ms-value"?: import("@emotion/
|
|
1830
|
-
readonly "::-webkit-backdrop"?: import("@emotion/
|
|
1831
|
-
readonly "::-webkit-input-placeholder"?: import("@emotion/
|
|
1832
|
-
readonly "::-webkit-progress-bar"?: import("@emotion/
|
|
1833
|
-
readonly "::-webkit-progress-inner-value"?: import("@emotion/
|
|
1834
|
-
readonly "::-webkit-progress-value"?: import("@emotion/
|
|
1835
|
-
readonly "::-webkit-slider-runnable-track"?: import("@emotion/
|
|
1836
|
-
readonly "::-webkit-slider-thumb"?: import("@emotion/
|
|
1837
|
-
readonly "::after"?: import("@emotion/
|
|
1838
|
-
readonly "::backdrop"?: import("@emotion/
|
|
1839
|
-
readonly "::before"?: import("@emotion/
|
|
1840
|
-
readonly "::first-letter"?: import("@emotion/
|
|
1841
|
-
readonly "::first-line"?: import("@emotion/
|
|
1842
|
-
readonly "::grammar-error"?: import("@emotion/
|
|
1843
|
-
readonly "::marker"?: import("@emotion/
|
|
1844
|
-
readonly "::placeholder"?: import("@emotion/
|
|
1845
|
-
readonly "::selection"?: import("@emotion/
|
|
1846
|
-
readonly "::spelling-error"?: import("@emotion/
|
|
1847
|
-
readonly "::target-text"?: import("@emotion/
|
|
1848
|
-
readonly ":active"?: import("@emotion/
|
|
1849
|
-
readonly ":after"?: import("@emotion/
|
|
1850
|
-
readonly ":any-link"?: import("@emotion/
|
|
1851
|
-
readonly ":before"?: import("@emotion/
|
|
1852
|
-
readonly ":blank"?: import("@emotion/
|
|
1853
|
-
readonly ":checked"?: import("@emotion/
|
|
1854
|
-
readonly ":current"?: import("@emotion/
|
|
1855
|
-
readonly ":default"?: import("@emotion/
|
|
1856
|
-
readonly ":defined"?: import("@emotion/
|
|
1857
|
-
readonly ":disabled"?: import("@emotion/
|
|
1858
|
-
readonly ":empty"?: import("@emotion/
|
|
1859
|
-
readonly ":first"?: import("@emotion/
|
|
1860
|
-
readonly ":first-child"?: import("@emotion/
|
|
1861
|
-
readonly ":first-letter"?: import("@emotion/
|
|
1862
|
-
readonly ":first-line"?: import("@emotion/
|
|
1863
|
-
readonly ":first-of-type"?: import("@emotion/
|
|
1864
|
-
readonly ":focus"?: import("@emotion/
|
|
1865
|
-
readonly ":focus-
|
|
1866
|
-
readonly ":fullscreen"?: import("@emotion/
|
|
1867
|
-
readonly ":future"?: import("@emotion/
|
|
1868
|
-
readonly ":hover"?: import("@emotion/
|
|
1869
|
-
readonly ":in-range"?: import("@emotion/
|
|
1870
|
-
readonly ":indeterminate"?: import("@emotion/
|
|
1871
|
-
readonly ":
|
|
1872
|
-
readonly ":last-
|
|
1873
|
-
readonly ":
|
|
1874
|
-
readonly ":
|
|
1875
|
-
readonly ":link"?: import("@emotion/
|
|
1876
|
-
readonly ":
|
|
1877
|
-
readonly ":nth-col"?: import("@emotion/
|
|
1878
|
-
readonly ":
|
|
1879
|
-
readonly ":only-
|
|
1880
|
-
readonly ":
|
|
1881
|
-
readonly ":
|
|
1882
|
-
readonly ":
|
|
1883
|
-
readonly ":
|
|
1884
|
-
readonly ":
|
|
1885
|
-
readonly ":
|
|
1886
|
-
readonly ":
|
|
1887
|
-
readonly ":read-
|
|
1888
|
-
readonly ":
|
|
1889
|
-
readonly ":
|
|
1890
|
-
readonly ":
|
|
1891
|
-
readonly ":
|
|
1892
|
-
readonly ":
|
|
1893
|
-
readonly ":target"?: import("@emotion/
|
|
1894
|
-
readonly ":
|
|
1895
|
-
readonly ":user-
|
|
1896
|
-
readonly ":
|
|
1897
|
-
readonly ":
|
|
1898
|
-
|
|
1899
|
-
|
|
1802
|
+
readonly ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1803
|
+
readonly ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1804
|
+
readonly ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1805
|
+
readonly "::cue"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1806
|
+
readonly "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1807
|
+
readonly "::part"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1808
|
+
readonly "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1809
|
+
readonly ":dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1810
|
+
readonly ":has"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1811
|
+
readonly ":host"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1812
|
+
readonly ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1813
|
+
readonly ":is"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1814
|
+
readonly ":lang"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1815
|
+
readonly ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1816
|
+
readonly ":not"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1817
|
+
readonly ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1818
|
+
readonly ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1819
|
+
readonly ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1820
|
+
readonly ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1821
|
+
readonly ":where"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1822
|
+
readonly ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1823
|
+
readonly ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1824
|
+
readonly ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1825
|
+
readonly ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1826
|
+
readonly ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1827
|
+
readonly ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1828
|
+
readonly ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1829
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1830
|
+
readonly ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1831
|
+
readonly ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1832
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1833
|
+
readonly ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1834
|
+
readonly ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1835
|
+
readonly "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1836
|
+
readonly "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1837
|
+
readonly "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1838
|
+
readonly "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1839
|
+
readonly "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1840
|
+
readonly "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1841
|
+
readonly "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1842
|
+
readonly "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1843
|
+
readonly "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1844
|
+
readonly "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1845
|
+
readonly "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1846
|
+
readonly "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1847
|
+
readonly "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1848
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1849
|
+
readonly "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1850
|
+
readonly "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1851
|
+
readonly "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1852
|
+
readonly "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1853
|
+
readonly "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1854
|
+
readonly "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1855
|
+
readonly "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1856
|
+
readonly "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1857
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1858
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1859
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1860
|
+
readonly "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1861
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1862
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1863
|
+
readonly "::after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1864
|
+
readonly "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1865
|
+
readonly "::before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1866
|
+
readonly "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1867
|
+
readonly "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1868
|
+
readonly "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1869
|
+
readonly "::marker"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1870
|
+
readonly "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1871
|
+
readonly "::selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1872
|
+
readonly "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1873
|
+
readonly "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1874
|
+
readonly ":active"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1875
|
+
readonly ":after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1876
|
+
readonly ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1877
|
+
readonly ":before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1878
|
+
readonly ":blank"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1879
|
+
readonly ":checked"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1880
|
+
readonly ":current"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1881
|
+
readonly ":default"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1882
|
+
readonly ":defined"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1883
|
+
readonly ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1884
|
+
readonly ":empty"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1885
|
+
readonly ":first"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1886
|
+
readonly ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1887
|
+
readonly ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1888
|
+
readonly ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1889
|
+
readonly ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1890
|
+
readonly ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1891
|
+
readonly ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1892
|
+
readonly ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1893
|
+
readonly ":future"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1894
|
+
readonly ":hover"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1895
|
+
readonly ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1896
|
+
readonly ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1897
|
+
readonly ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1898
|
+
readonly ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1899
|
+
readonly ":left"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1900
|
+
readonly ":link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1901
|
+
readonly ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1902
|
+
readonly ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1903
|
+
readonly ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1904
|
+
readonly ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1905
|
+
readonly ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1906
|
+
readonly ":optional"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1907
|
+
readonly ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1908
|
+
readonly ":past"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1909
|
+
readonly ":paused"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1910
|
+
readonly ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1911
|
+
readonly ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1912
|
+
readonly ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1913
|
+
readonly ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1914
|
+
readonly ":required"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1915
|
+
readonly ":right"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1916
|
+
readonly ":root"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1917
|
+
readonly ":scope"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1918
|
+
readonly ":target"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1919
|
+
readonly ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1920
|
+
readonly ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1921
|
+
readonly ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1922
|
+
readonly ":valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1923
|
+
readonly ":visited"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1924
|
+
} | {
|
|
1925
|
+
readonly ':enabled': {
|
|
1926
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
1927
|
+
readonly boxShadow: string;
|
|
1928
|
+
readonly outline: string;
|
|
1929
|
+
readonly outlineOffset: string;
|
|
1930
|
+
readonly borderColor: string;
|
|
1931
|
+
} | {
|
|
1932
|
+
readonly outline: string;
|
|
1933
|
+
readonly outlineOffset: string;
|
|
1934
|
+
readonly borderColor: string;
|
|
1935
|
+
};
|
|
1936
|
+
};
|
|
1937
|
+
readonly ':focus': {
|
|
1938
|
+
readonly outline: "none";
|
|
1939
|
+
};
|
|
1940
|
+
readonly ':invalid': {
|
|
1941
|
+
readonly color: string;
|
|
1942
|
+
};
|
|
1943
|
+
readonly display: "block";
|
|
1944
|
+
readonly overflowWrap: "break-word";
|
|
1945
|
+
readonly wordBreak: "break-word";
|
|
1946
|
+
readonly wordWrap: "break-word";
|
|
1947
|
+
readonly accentColor?: import("csstype").Property.AccentColor | import("csstype").Property.AccentColor[] | undefined;
|
|
1948
|
+
readonly alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
1949
|
+
readonly alignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
1950
|
+
readonly alignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
1951
|
+
readonly alignTracks?: import("csstype").Property.AlignTracks | import("csstype").Property.AlignTracks[] | undefined;
|
|
1952
|
+
readonly animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1953
|
+
readonly animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1954
|
+
readonly animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1955
|
+
readonly animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1956
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1957
|
+
readonly animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1958
|
+
readonly animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1959
|
+
readonly animationTimeline?: import("csstype").Property.AnimationTimeline | import("csstype").Property.AnimationTimeline[] | undefined;
|
|
1960
|
+
readonly animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
1961
|
+
readonly appearance?: import("csstype").Property.Appearance | import("csstype").Property.Appearance[] | undefined;
|
|
1962
|
+
readonly aspectRatio?: import("csstype").Property.AspectRatio | import("csstype").Property.AspectRatio[] | undefined;
|
|
1963
|
+
readonly backdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[] | undefined;
|
|
1964
|
+
readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1965
|
+
readonly backgroundAttachment?: import("csstype").Property.BackgroundAttachment | import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
1966
|
+
readonly backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
1967
|
+
readonly backgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
1968
|
+
readonly backgroundColor?: import("csstype").Property.BackgroundColor | import("csstype").Property.BackgroundColor[] | undefined;
|
|
1969
|
+
readonly backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[] | undefined;
|
|
1970
|
+
readonly backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1971
|
+
readonly backgroundPositionX?: string | number | import("csstype").Property.BackgroundPositionX<string | number>[] | undefined;
|
|
1972
|
+
readonly backgroundPositionY?: string | number | import("csstype").Property.BackgroundPositionY<string | number>[] | undefined;
|
|
1973
|
+
readonly backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
1974
|
+
readonly backgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1975
|
+
readonly blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[] | undefined;
|
|
1976
|
+
readonly blockSize?: string | number | import("csstype").Property.BlockSize<string | number>[] | undefined;
|
|
1977
|
+
readonly borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[] | undefined;
|
|
1978
|
+
readonly borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
1979
|
+
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
1980
|
+
readonly borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[] | undefined;
|
|
1981
|
+
readonly borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
1982
|
+
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
1983
|
+
readonly borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[] | undefined;
|
|
1984
|
+
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
1985
|
+
readonly borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[] | undefined;
|
|
1986
|
+
readonly borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[] | undefined;
|
|
1987
|
+
readonly borderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
1988
|
+
readonly borderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
1989
|
+
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
1990
|
+
readonly borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[] | undefined;
|
|
1991
|
+
readonly borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[] | undefined;
|
|
1992
|
+
readonly borderEndEndRadius?: string | number | import("csstype").Property.BorderEndEndRadius<string | number>[] | undefined;
|
|
1993
|
+
readonly borderEndStartRadius?: string | number | import("csstype").Property.BorderEndStartRadius<string | number>[] | undefined;
|
|
1994
|
+
readonly borderImageOutset?: string | number | import("csstype").Property.BorderImageOutset<string | number>[] | undefined;
|
|
1995
|
+
readonly borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
1996
|
+
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
1997
|
+
readonly borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[] | undefined;
|
|
1998
|
+
readonly borderImageWidth?: string | number | import("csstype").Property.BorderImageWidth<string | number>[] | undefined;
|
|
1999
|
+
readonly borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[] | undefined;
|
|
2000
|
+
readonly borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
2001
|
+
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
2002
|
+
readonly borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
2003
|
+
readonly borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
2004
|
+
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
2005
|
+
readonly borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[] | undefined;
|
|
2006
|
+
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
2007
|
+
readonly borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[] | undefined;
|
|
2008
|
+
readonly borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[] | undefined;
|
|
2009
|
+
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
2010
|
+
readonly borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[] | undefined;
|
|
2011
|
+
readonly borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[] | undefined;
|
|
2012
|
+
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[] | undefined;
|
|
2013
|
+
readonly borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[] | undefined;
|
|
2014
|
+
readonly borderSpacing?: string | number | import("csstype").Property.BorderSpacing<string | number>[] | undefined;
|
|
2015
|
+
readonly borderStartEndRadius?: string | number | import("csstype").Property.BorderStartEndRadius<string | number>[] | undefined;
|
|
2016
|
+
readonly borderStartStartRadius?: string | number | import("csstype").Property.BorderStartStartRadius<string | number>[] | undefined;
|
|
2017
|
+
readonly borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[] | undefined;
|
|
2018
|
+
readonly borderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
2019
|
+
readonly borderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
2020
|
+
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[] | undefined;
|
|
2021
|
+
readonly borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[] | undefined;
|
|
2022
|
+
readonly bottom?: string | number | import("csstype").Property.Bottom<string | number>[] | undefined;
|
|
2023
|
+
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2024
|
+
readonly boxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
2025
|
+
readonly boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
2026
|
+
readonly breakAfter?: import("csstype").Property.BreakAfter | import("csstype").Property.BreakAfter[] | undefined;
|
|
2027
|
+
readonly breakBefore?: import("csstype").Property.BreakBefore | import("csstype").Property.BreakBefore[] | undefined;
|
|
2028
|
+
readonly breakInside?: import("csstype").Property.BreakInside | import("csstype").Property.BreakInside[] | undefined;
|
|
2029
|
+
readonly captionSide?: import("csstype").Property.CaptionSide | import("csstype").Property.CaptionSide[] | undefined;
|
|
2030
|
+
readonly caretColor?: import("csstype").Property.CaretColor | import("csstype").Property.CaretColor[] | undefined;
|
|
2031
|
+
readonly clear?: import("csstype").Property.Clear | import("csstype").Property.Clear[] | undefined;
|
|
2032
|
+
readonly clipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
2033
|
+
readonly color?: import("csstype").Property.Color | import("csstype").Property.Color[] | undefined;
|
|
2034
|
+
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2035
|
+
readonly colorScheme?: import("csstype").Property.ColorScheme | import("csstype").Property.ColorScheme[] | undefined;
|
|
2036
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
2037
|
+
readonly columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
2038
|
+
readonly columnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
2039
|
+
readonly columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2040
|
+
readonly columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2041
|
+
readonly columnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
2042
|
+
readonly columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
2043
|
+
readonly columnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
2044
|
+
readonly contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[] | undefined;
|
|
2045
|
+
readonly content?: import("csstype").Property.Content | import("csstype").Property.Content[] | undefined;
|
|
2046
|
+
readonly contentVisibility?: import("csstype").Property.ContentVisibility | import("csstype").Property.ContentVisibility[] | undefined;
|
|
2047
|
+
readonly counterIncrement?: import("csstype").Property.CounterIncrement | import("csstype").Property.CounterIncrement[] | undefined;
|
|
2048
|
+
readonly counterReset?: import("csstype").Property.CounterReset | import("csstype").Property.CounterReset[] | undefined;
|
|
2049
|
+
readonly counterSet?: import("csstype").Property.CounterSet | import("csstype").Property.CounterSet[] | undefined;
|
|
2050
|
+
readonly cursor?: import("csstype").Property.Cursor | import("csstype").Property.Cursor[] | undefined;
|
|
2051
|
+
readonly direction?: import("csstype").Property.Direction | import("csstype").Property.Direction[] | undefined;
|
|
2052
|
+
readonly emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[] | undefined;
|
|
2053
|
+
readonly filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
2054
|
+
readonly flexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
2055
|
+
readonly flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
2056
|
+
readonly flexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
2057
|
+
readonly flexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
2058
|
+
readonly flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
2059
|
+
readonly float?: import("csstype").Property.Float | import("csstype").Property.Float[] | undefined;
|
|
2060
|
+
readonly fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[] | undefined;
|
|
2061
|
+
readonly fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2062
|
+
readonly fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
2063
|
+
readonly fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
2064
|
+
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
2065
|
+
readonly fontSize?: string | number | import("csstype").Property.FontSize<string | number>[] | undefined;
|
|
2066
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | undefined;
|
|
2067
|
+
readonly fontSmooth?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
2068
|
+
readonly fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[] | undefined;
|
|
2069
|
+
readonly fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[] | undefined;
|
|
2070
|
+
readonly fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[] | undefined;
|
|
2071
|
+
readonly fontVariant?: import("csstype").Property.FontVariant | import("csstype").Property.FontVariant[] | undefined;
|
|
2072
|
+
readonly fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
2073
|
+
readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | import("csstype").Property.FontVariantCaps[] | undefined;
|
|
2074
|
+
readonly fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
2075
|
+
readonly fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
2076
|
+
readonly fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
2077
|
+
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[] | undefined;
|
|
2078
|
+
readonly fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[] | undefined;
|
|
2079
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | undefined;
|
|
2080
|
+
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
2081
|
+
readonly gridAutoColumns?: string | number | import("csstype").Property.GridAutoColumns<string | number>[] | undefined;
|
|
2082
|
+
readonly gridAutoFlow?: import("csstype").Property.GridAutoFlow | import("csstype").Property.GridAutoFlow[] | undefined;
|
|
2083
|
+
readonly gridAutoRows?: string | number | import("csstype").Property.GridAutoRows<string | number>[] | undefined;
|
|
2084
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | undefined;
|
|
2085
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[] | undefined;
|
|
2086
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[] | undefined;
|
|
2087
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[] | undefined;
|
|
2088
|
+
readonly gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
2089
|
+
readonly gridTemplateColumns?: string | number | import("csstype").Property.GridTemplateColumns<string | number>[] | undefined;
|
|
2090
|
+
readonly gridTemplateRows?: string | number | import("csstype").Property.GridTemplateRows<string | number>[] | undefined;
|
|
2091
|
+
readonly hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[] | undefined;
|
|
2092
|
+
readonly height?: string | number | import("csstype").Property.Height<string | number>[] | undefined;
|
|
2093
|
+
readonly hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
2094
|
+
readonly hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
2095
|
+
readonly imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[] | undefined;
|
|
2096
|
+
readonly imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[] | undefined;
|
|
2097
|
+
readonly imageResolution?: import("csstype").Property.ImageResolution | import("csstype").Property.ImageResolution[] | undefined;
|
|
2098
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
2099
|
+
readonly inlineSize?: string | number | import("csstype").Property.InlineSize<string | number>[] | undefined;
|
|
2100
|
+
readonly inputSecurity?: import("csstype").Property.InputSecurity | import("csstype").Property.InputSecurity[] | undefined;
|
|
2101
|
+
readonly inset?: string | number | import("csstype").Property.Inset<string | number>[] | undefined;
|
|
2102
|
+
readonly insetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
2103
|
+
readonly insetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
2104
|
+
readonly insetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
2105
|
+
readonly insetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
2106
|
+
readonly insetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
2107
|
+
readonly insetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
2108
|
+
readonly isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[] | undefined;
|
|
2109
|
+
readonly justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
2110
|
+
readonly justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[] | undefined;
|
|
2111
|
+
readonly justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
2112
|
+
readonly justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[] | undefined;
|
|
2113
|
+
readonly left?: string | number | import("csstype").Property.Left<string | number>[] | undefined;
|
|
2114
|
+
readonly letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[] | undefined;
|
|
2115
|
+
readonly lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
2116
|
+
readonly lineHeight?: string | number | import("csstype").Property.LineHeight<string | number>[] | undefined;
|
|
2117
|
+
readonly lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[] | undefined;
|
|
2118
|
+
readonly listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[] | undefined;
|
|
2119
|
+
readonly listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[] | undefined;
|
|
2120
|
+
readonly listStyleType?: import("csstype").Property.ListStyleType | import("csstype").Property.ListStyleType[] | undefined;
|
|
2121
|
+
readonly marginBlock?: string | number | import("csstype").Property.MarginBlock<string | number>[] | undefined;
|
|
2122
|
+
readonly marginBlockEnd?: string | number | import("csstype").Property.MarginBlockEnd<string | number>[] | undefined;
|
|
2123
|
+
readonly marginBlockStart?: string | number | import("csstype").Property.MarginBlockStart<string | number>[] | undefined;
|
|
2124
|
+
readonly marginBottom?: string | number | import("csstype").Property.MarginBottom<string | number>[] | undefined;
|
|
2125
|
+
readonly marginInline?: string | number | import("csstype").Property.MarginInline<string | number>[] | undefined;
|
|
2126
|
+
readonly marginInlineEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
2127
|
+
readonly marginInlineStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
2128
|
+
readonly marginLeft?: string | number | import("csstype").Property.MarginLeft<string | number>[] | undefined;
|
|
2129
|
+
readonly marginRight?: string | number | import("csstype").Property.MarginRight<string | number>[] | undefined;
|
|
2130
|
+
readonly marginTop?: string | number | import("csstype").Property.MarginTop<string | number>[] | undefined;
|
|
2131
|
+
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[] | undefined;
|
|
2132
|
+
readonly maskBorderOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
2133
|
+
readonly maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
2134
|
+
readonly maskBorderSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
2135
|
+
readonly maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
2136
|
+
readonly maskBorderWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
2137
|
+
readonly maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[] | undefined;
|
|
2138
|
+
readonly maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[] | undefined;
|
|
2139
|
+
readonly maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[] | undefined;
|
|
2140
|
+
readonly maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[] | undefined;
|
|
2141
|
+
readonly maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[] | undefined;
|
|
2142
|
+
readonly maskPosition?: string | number | import("csstype").Property.MaskPosition<string | number>[] | undefined;
|
|
2143
|
+
readonly maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[] | undefined;
|
|
2144
|
+
readonly maskSize?: string | number | import("csstype").Property.MaskSize<string | number>[] | undefined;
|
|
2145
|
+
readonly maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[] | undefined;
|
|
2146
|
+
readonly mathStyle?: import("csstype").Property.MathStyle | import("csstype").Property.MathStyle[] | undefined;
|
|
2147
|
+
readonly maxBlockSize?: string | number | import("csstype").Property.MaxBlockSize<string | number>[] | undefined;
|
|
2148
|
+
readonly maxHeight?: string | number | import("csstype").Property.MaxHeight<string | number>[] | undefined;
|
|
2149
|
+
readonly maxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
2150
|
+
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] | undefined;
|
|
2151
|
+
readonly maxWidth?: string | number | import("csstype").Property.MaxWidth<string | number>[] | undefined;
|
|
2152
|
+
readonly minBlockSize?: string | number | import("csstype").Property.MinBlockSize<string | number>[] | undefined;
|
|
2153
|
+
readonly minHeight?: string | number | import("csstype").Property.MinHeight<string | number>[] | undefined;
|
|
2154
|
+
readonly minInlineSize?: string | number | import("csstype").Property.MinInlineSize<string | number>[] | undefined;
|
|
2155
|
+
readonly minWidth?: string | number | import("csstype").Property.MinWidth<string | number>[] | undefined;
|
|
2156
|
+
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[] | undefined;
|
|
2157
|
+
readonly motionDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
2158
|
+
readonly motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
2159
|
+
readonly motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
2160
|
+
readonly objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
2161
|
+
readonly objectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
2162
|
+
readonly offsetAnchor?: string | number | import("csstype").Property.OffsetAnchor<string | number>[] | undefined;
|
|
2163
|
+
readonly offsetDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
2164
|
+
readonly offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
2165
|
+
readonly offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
2166
|
+
readonly offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
2167
|
+
readonly opacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
2168
|
+
readonly order?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
2169
|
+
readonly orphans?: import("csstype").Property.Orphans | import("csstype").Property.Orphans[] | undefined;
|
|
2170
|
+
readonly outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
2171
|
+
readonly outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[] | undefined;
|
|
2172
|
+
readonly outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
2173
|
+
readonly outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
2174
|
+
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[] | undefined;
|
|
2175
|
+
readonly overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[] | undefined;
|
|
2176
|
+
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[] | undefined;
|
|
2177
|
+
readonly overflowClipMargin?: string | number | import("csstype").Property.OverflowClipMargin<string | number>[] | undefined;
|
|
2178
|
+
readonly overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[] | undefined;
|
|
2179
|
+
readonly overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
2180
|
+
readonly overflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
2181
|
+
readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
|
|
2182
|
+
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
2183
|
+
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
2184
|
+
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
2185
|
+
readonly paddingBlock?: string | number | import("csstype").Property.PaddingBlock<string | number>[] | undefined;
|
|
2186
|
+
readonly paddingBlockEnd?: string | number | import("csstype").Property.PaddingBlockEnd<string | number>[] | undefined;
|
|
2187
|
+
readonly paddingBlockStart?: string | number | import("csstype").Property.PaddingBlockStart<string | number>[] | undefined;
|
|
2188
|
+
readonly paddingBottom?: string | number | import("csstype").Property.PaddingBottom<string | number>[] | undefined;
|
|
2189
|
+
readonly paddingInline?: string | number | import("csstype").Property.PaddingInline<string | number>[] | undefined;
|
|
2190
|
+
readonly paddingInlineEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
2191
|
+
readonly paddingInlineStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
2192
|
+
readonly paddingLeft?: string | number | import("csstype").Property.PaddingLeft<string | number>[] | undefined;
|
|
2193
|
+
readonly paddingRight?: string | number | import("csstype").Property.PaddingRight<string | number>[] | undefined;
|
|
2194
|
+
readonly paddingTop?: string | number | import("csstype").Property.PaddingTop<string | number>[] | undefined;
|
|
2195
|
+
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[] | undefined;
|
|
2196
|
+
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[] | undefined;
|
|
2197
|
+
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[] | undefined;
|
|
2198
|
+
readonly paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[] | undefined;
|
|
2199
|
+
readonly perspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
2200
|
+
readonly perspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
2201
|
+
readonly placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[] | undefined;
|
|
2202
|
+
readonly pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[] | undefined;
|
|
2203
|
+
readonly position?: import("csstype").Property.Position | import("csstype").Property.Position[] | undefined;
|
|
2204
|
+
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2205
|
+
readonly quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[] | undefined;
|
|
2206
|
+
readonly resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[] | undefined;
|
|
2207
|
+
readonly right?: string | number | import("csstype").Property.Right<string | number>[] | undefined;
|
|
2208
|
+
readonly rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[] | undefined;
|
|
2209
|
+
readonly rowGap?: string | number | import("csstype").Property.RowGap<string | number>[] | undefined;
|
|
2210
|
+
readonly rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[] | undefined;
|
|
2211
|
+
readonly rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[] | undefined;
|
|
2212
|
+
readonly rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
2213
|
+
readonly scale?: import("csstype").Property.Scale | import("csstype").Property.Scale[] | undefined;
|
|
2214
|
+
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | import("csstype").Property.ScrollBehavior[] | undefined;
|
|
2215
|
+
readonly scrollMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
2216
|
+
readonly scrollMarginBlock?: string | number | import("csstype").Property.ScrollMarginBlock<string | number>[] | undefined;
|
|
2217
|
+
readonly scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[] | undefined;
|
|
2218
|
+
readonly scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[] | undefined;
|
|
2219
|
+
readonly scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
2220
|
+
readonly scrollMarginInline?: string | number | import("csstype").Property.ScrollMarginInline<string | number>[] | undefined;
|
|
2221
|
+
readonly scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[] | undefined;
|
|
2222
|
+
readonly scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[] | undefined;
|
|
2223
|
+
readonly scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
2224
|
+
readonly scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
2225
|
+
readonly scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
2226
|
+
readonly scrollPadding?: string | number | import("csstype").Property.ScrollPadding<string | number>[] | undefined;
|
|
2227
|
+
readonly scrollPaddingBlock?: string | number | import("csstype").Property.ScrollPaddingBlock<string | number>[] | undefined;
|
|
2228
|
+
readonly scrollPaddingBlockEnd?: string | number | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[] | undefined;
|
|
2229
|
+
readonly scrollPaddingBlockStart?: string | number | import("csstype").Property.ScrollPaddingBlockStart<string | number>[] | undefined;
|
|
2230
|
+
readonly scrollPaddingBottom?: string | number | import("csstype").Property.ScrollPaddingBottom<string | number>[] | undefined;
|
|
2231
|
+
readonly scrollPaddingInline?: string | number | import("csstype").Property.ScrollPaddingInline<string | number>[] | undefined;
|
|
2232
|
+
readonly scrollPaddingInlineEnd?: string | number | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[] | undefined;
|
|
2233
|
+
readonly scrollPaddingInlineStart?: string | number | import("csstype").Property.ScrollPaddingInlineStart<string | number>[] | undefined;
|
|
2234
|
+
readonly scrollPaddingLeft?: string | number | import("csstype").Property.ScrollPaddingLeft<string | number>[] | undefined;
|
|
2235
|
+
readonly scrollPaddingRight?: string | number | import("csstype").Property.ScrollPaddingRight<string | number>[] | undefined;
|
|
2236
|
+
readonly scrollPaddingTop?: string | number | import("csstype").Property.ScrollPaddingTop<string | number>[] | undefined;
|
|
2237
|
+
readonly scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
2238
|
+
readonly scrollSnapMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
2239
|
+
readonly scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
2240
|
+
readonly scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
2241
|
+
readonly scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
2242
|
+
readonly scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
2243
|
+
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
2244
|
+
readonly scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
2245
|
+
readonly scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[] | undefined;
|
|
2246
|
+
readonly scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
2247
|
+
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
2248
|
+
readonly shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[] | undefined;
|
|
2249
|
+
readonly shapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
2250
|
+
readonly shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[] | undefined;
|
|
2251
|
+
readonly tabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
2252
|
+
readonly tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[] | undefined;
|
|
2253
|
+
readonly textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[] | undefined;
|
|
2254
|
+
readonly textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
2255
|
+
readonly textCombineUpright?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2256
|
+
readonly textDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2257
|
+
readonly textDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2258
|
+
readonly textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
2259
|
+
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
2260
|
+
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2261
|
+
readonly textDecorationThickness?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
2262
|
+
readonly textDecorationWidth?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
2263
|
+
readonly textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
2264
|
+
readonly textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
2265
|
+
readonly textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
2266
|
+
readonly textIndent?: string | number | import("csstype").Property.TextIndent<string | number>[] | undefined;
|
|
2267
|
+
readonly textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[] | undefined;
|
|
2268
|
+
readonly textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
2269
|
+
readonly textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
2270
|
+
readonly textRendering?: import("csstype").Property.TextRendering | import("csstype").Property.TextRendering[] | undefined;
|
|
2271
|
+
readonly textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[] | undefined;
|
|
2272
|
+
readonly textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2273
|
+
readonly textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[] | undefined;
|
|
2274
|
+
readonly textUnderlineOffset?: string | number | import("csstype").Property.TextUnderlineOffset<string | number>[] | undefined;
|
|
2275
|
+
readonly textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
2276
|
+
readonly top?: string | number | import("csstype").Property.Top<string | number>[] | undefined;
|
|
2277
|
+
readonly touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
2278
|
+
readonly transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
2279
|
+
readonly transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[] | undefined;
|
|
2280
|
+
readonly transformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
2281
|
+
readonly transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
2282
|
+
readonly transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2283
|
+
readonly transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2284
|
+
readonly transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
2285
|
+
readonly transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2286
|
+
readonly translate?: string | number | import("csstype").Property.Translate<string | number>[] | undefined;
|
|
2287
|
+
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[] | undefined;
|
|
2288
|
+
readonly userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
2289
|
+
readonly verticalAlign?: string | number | import("csstype").Property.VerticalAlign<string | number>[] | undefined;
|
|
2290
|
+
readonly visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[] | undefined;
|
|
2291
|
+
readonly whiteSpace?: import("csstype").Property.WhiteSpace | import("csstype").Property.WhiteSpace[] | undefined;
|
|
2292
|
+
readonly widows?: import("csstype").Property.Widows | import("csstype").Property.Widows[] | undefined;
|
|
2293
|
+
readonly width?: string | number | import("csstype").Property.Width<string | number>[] | undefined;
|
|
2294
|
+
readonly willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[] | undefined;
|
|
2295
|
+
readonly wordSpacing?: import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[] | undefined;
|
|
2296
|
+
readonly writingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
2297
|
+
readonly zIndex?: import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[] | undefined;
|
|
2298
|
+
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | undefined;
|
|
2299
|
+
readonly all?: import("csstype").Globals | import("csstype").Globals[] | undefined;
|
|
2300
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
2301
|
+
readonly background?: string | number | import("csstype").Property.Background<string | number>[] | undefined;
|
|
2302
|
+
readonly backgroundPosition?: string | number | import("csstype").Property.BackgroundPosition<string | number>[] | undefined;
|
|
2303
|
+
readonly border?: string | number | import("csstype").Property.Border<string | number>[] | undefined;
|
|
2304
|
+
readonly borderBlock?: string | number | import("csstype").Property.BorderBlock<string | number>[] | undefined;
|
|
2305
|
+
readonly borderBlockEnd?: string | number | import("csstype").Property.BorderBlockEnd<string | number>[] | undefined;
|
|
2306
|
+
readonly borderBlockStart?: string | number | import("csstype").Property.BorderBlockStart<string | number>[] | undefined;
|
|
2307
|
+
readonly borderBottom?: string | number | import("csstype").Property.BorderBottom<string | number>[] | undefined;
|
|
2308
|
+
readonly borderColor?: import("csstype").Property.BorderColor | import("csstype").Property.BorderColor[] | undefined;
|
|
2309
|
+
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
2310
|
+
readonly borderInline?: string | number | import("csstype").Property.BorderInline<string | number>[] | undefined;
|
|
2311
|
+
readonly borderInlineEnd?: string | number | import("csstype").Property.BorderInlineEnd<string | number>[] | undefined;
|
|
2312
|
+
readonly borderInlineStart?: string | number | import("csstype").Property.BorderInlineStart<string | number>[] | undefined;
|
|
2313
|
+
readonly borderLeft?: string | number | import("csstype").Property.BorderLeft<string | number>[] | undefined;
|
|
2314
|
+
readonly borderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
2315
|
+
readonly borderRight?: string | number | import("csstype").Property.BorderRight<string | number>[] | undefined;
|
|
2316
|
+
readonly borderStyle?: import("csstype").Property.BorderStyle | import("csstype").Property.BorderStyle[] | undefined;
|
|
2317
|
+
readonly borderTop?: string | number | import("csstype").Property.BorderTop<string | number>[] | undefined;
|
|
2318
|
+
readonly borderWidth?: string | number | import("csstype").Property.BorderWidth<string | number>[] | undefined;
|
|
2319
|
+
readonly columnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
2320
|
+
readonly columns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
2321
|
+
readonly flex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
2322
|
+
readonly flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
2323
|
+
readonly font?: import("csstype").Property.Font | import("csstype").Property.Font[] | undefined;
|
|
2324
|
+
readonly gap?: string | number | import("csstype").Property.Gap<string | number>[] | undefined;
|
|
2325
|
+
readonly grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[] | undefined;
|
|
2326
|
+
readonly gridArea?: import("csstype").Property.GridArea | import("csstype").Property.GridArea[] | undefined;
|
|
2327
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[] | undefined;
|
|
2328
|
+
readonly gridRow?: import("csstype").Property.GridRow | import("csstype").Property.GridRow[] | undefined;
|
|
2329
|
+
readonly gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[] | undefined;
|
|
2330
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[] | undefined;
|
|
2331
|
+
readonly listStyle?: import("csstype").Property.ListStyle | import("csstype").Property.ListStyle[] | undefined;
|
|
2332
|
+
readonly margin?: string | number | import("csstype").Property.Margin<string | number>[] | undefined;
|
|
2333
|
+
readonly mask?: string | number | import("csstype").Property.Mask<string | number>[] | undefined;
|
|
2334
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
2335
|
+
readonly motion?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
2336
|
+
readonly offset?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
2337
|
+
readonly outline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
2338
|
+
readonly overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[] | undefined;
|
|
2339
|
+
readonly overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
2340
|
+
readonly padding?: string | number | import("csstype").Property.Padding<string | number>[] | undefined;
|
|
2341
|
+
readonly placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[] | undefined;
|
|
2342
|
+
readonly placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[] | undefined;
|
|
2343
|
+
readonly textDecoration?: string | number | import("csstype").Property.TextDecoration<string | number>[] | undefined;
|
|
2344
|
+
readonly textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
2345
|
+
readonly transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2346
|
+
readonly MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2347
|
+
readonly MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
2348
|
+
readonly MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2349
|
+
readonly MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2350
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
2351
|
+
readonly MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
2352
|
+
readonly MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2353
|
+
readonly MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2354
|
+
readonly MozAppearance?: import("csstype").Property.MozAppearance | import("csstype").Property.MozAppearance[] | undefined;
|
|
2355
|
+
readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
2356
|
+
readonly MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
2357
|
+
readonly MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
2358
|
+
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
2359
|
+
readonly MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
2360
|
+
readonly MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
2361
|
+
readonly MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
2362
|
+
readonly MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
2363
|
+
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
2364
|
+
readonly MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
2365
|
+
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
2366
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
2367
|
+
readonly MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
2368
|
+
readonly MozColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
2369
|
+
readonly MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2370
|
+
readonly MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2371
|
+
readonly MozColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
2372
|
+
readonly MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
2373
|
+
readonly MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[] | undefined;
|
|
2374
|
+
readonly MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2375
|
+
readonly MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
2376
|
+
readonly MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
2377
|
+
readonly MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[] | undefined;
|
|
2378
|
+
readonly MozMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
2379
|
+
readonly MozMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
2380
|
+
readonly MozOrient?: import("csstype").Property.MozOrient | import("csstype").Property.MozOrient[] | undefined;
|
|
2381
|
+
readonly MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
2382
|
+
readonly MozPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
2383
|
+
readonly MozPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
2384
|
+
readonly MozPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
2385
|
+
readonly MozPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
2386
|
+
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[] | undefined;
|
|
2387
|
+
readonly MozTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
2388
|
+
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[] | undefined;
|
|
2389
|
+
readonly MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2390
|
+
readonly MozTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
2391
|
+
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
2392
|
+
readonly MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2393
|
+
readonly MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2394
|
+
readonly MozTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
2395
|
+
readonly MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2396
|
+
readonly MozUserFocus?: import("csstype").Property.MozUserFocus | import("csstype").Property.MozUserFocus[] | undefined;
|
|
2397
|
+
readonly MozUserModify?: import("csstype").Property.MozUserModify | import("csstype").Property.MozUserModify[] | undefined;
|
|
2398
|
+
readonly MozUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
2399
|
+
readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | import("csstype").Property.MozWindowDragging[] | undefined;
|
|
2400
|
+
readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | import("csstype").Property.MozWindowShadow[] | undefined;
|
|
2401
|
+
readonly msAccelerator?: import("csstype").Property.MsAccelerator | import("csstype").Property.MsAccelerator[] | undefined;
|
|
2402
|
+
readonly msAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
2403
|
+
readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | import("csstype").Property.MsBlockProgression[] | undefined;
|
|
2404
|
+
readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
2405
|
+
readonly msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
2406
|
+
readonly msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
2407
|
+
readonly msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
2408
|
+
readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
2409
|
+
readonly msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[] | undefined;
|
|
2410
|
+
readonly msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[] | undefined;
|
|
2411
|
+
readonly msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
2412
|
+
readonly msFlexPositive?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
2413
|
+
readonly msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[] | undefined;
|
|
2414
|
+
readonly msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[] | undefined;
|
|
2415
|
+
readonly msGridColumns?: string | number | import("csstype").Property.MsGridColumns<string | number>[] | undefined;
|
|
2416
|
+
readonly msGridRows?: string | number | import("csstype").Property.MsGridRows<string | number>[] | undefined;
|
|
2417
|
+
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
2418
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[] | undefined;
|
|
2419
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | undefined;
|
|
2420
|
+
readonly msHyphenateLimitZone?: string | number | import("csstype").Property.MsHyphenateLimitZone<string | number>[] | undefined;
|
|
2421
|
+
readonly msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
2422
|
+
readonly msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[] | undefined;
|
|
2423
|
+
readonly msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
2424
|
+
readonly msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
2425
|
+
readonly msOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
2426
|
+
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
2427
|
+
readonly msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
2428
|
+
readonly msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
2429
|
+
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[] | undefined;
|
|
2430
|
+
readonly msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[] | undefined;
|
|
2431
|
+
readonly msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[] | undefined;
|
|
2432
|
+
readonly msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[] | undefined;
|
|
2433
|
+
readonly msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[] | undefined;
|
|
2434
|
+
readonly msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[] | undefined;
|
|
2435
|
+
readonly msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
2436
|
+
readonly msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
2437
|
+
readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
2438
|
+
readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
2439
|
+
readonly msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
2440
|
+
readonly msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
2441
|
+
readonly msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
2442
|
+
readonly msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
2443
|
+
readonly msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
2444
|
+
readonly msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
2445
|
+
readonly msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
2446
|
+
readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | import("csstype").Property.MsTextAutospace[] | undefined;
|
|
2447
|
+
readonly msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2448
|
+
readonly msTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
2449
|
+
readonly msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
2450
|
+
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[] | undefined;
|
|
2451
|
+
readonly msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
2452
|
+
readonly msTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
2453
|
+
readonly msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2454
|
+
readonly msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2455
|
+
readonly msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
2456
|
+
readonly msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2457
|
+
readonly msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[] | undefined;
|
|
2458
|
+
readonly msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
2459
|
+
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[] | undefined;
|
|
2460
|
+
readonly msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[] | undefined;
|
|
2461
|
+
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[] | undefined;
|
|
2462
|
+
readonly msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
2463
|
+
readonly WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
2464
|
+
readonly WebkitAlignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
2465
|
+
readonly WebkitAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
2466
|
+
readonly WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2467
|
+
readonly WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
2468
|
+
readonly WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2469
|
+
readonly WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2470
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
2471
|
+
readonly WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
2472
|
+
readonly WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2473
|
+
readonly WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2474
|
+
readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | import("csstype").Property.WebkitAppearance[] | undefined;
|
|
2475
|
+
readonly WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[] | undefined;
|
|
2476
|
+
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
2477
|
+
readonly WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
2478
|
+
readonly WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
2479
|
+
readonly WebkitBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
2480
|
+
readonly WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
2481
|
+
readonly WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
2482
|
+
readonly WebkitBorderBeforeWidth?: string | number | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[] | undefined;
|
|
2483
|
+
readonly WebkitBorderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
2484
|
+
readonly WebkitBorderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
2485
|
+
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
2486
|
+
readonly WebkitBorderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
2487
|
+
readonly WebkitBorderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
2488
|
+
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2489
|
+
readonly WebkitBoxReflect?: string | number | import("csstype").Property.WebkitBoxReflect<string | number>[] | undefined;
|
|
2490
|
+
readonly WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
2491
|
+
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
2492
|
+
readonly WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
2493
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
2494
|
+
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
2495
|
+
readonly WebkitColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
2496
|
+
readonly WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
2497
|
+
readonly WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
2498
|
+
readonly WebkitColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
2499
|
+
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
2500
|
+
readonly WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
2501
|
+
readonly WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
2502
|
+
readonly WebkitFlexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
2503
|
+
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
2504
|
+
readonly WebkitFlexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
2505
|
+
readonly WebkitFlexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
2506
|
+
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
2507
|
+
readonly WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
2508
|
+
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
2509
|
+
readonly WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
2510
|
+
readonly WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
2511
|
+
readonly WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
2512
|
+
readonly WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
2513
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
2514
|
+
readonly WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
2515
|
+
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
2516
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[] | undefined;
|
|
2517
|
+
readonly WebkitMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
2518
|
+
readonly WebkitMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
2519
|
+
readonly WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
2520
|
+
readonly WebkitMaskBoxImageOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
2521
|
+
readonly WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
2522
|
+
readonly WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
2523
|
+
readonly WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
2524
|
+
readonly WebkitMaskBoxImageWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
2525
|
+
readonly WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
2526
|
+
readonly WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
2527
|
+
readonly WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
2528
|
+
readonly WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
2529
|
+
readonly WebkitMaskPosition?: string | number | import("csstype").Property.WebkitMaskPosition<string | number>[] | undefined;
|
|
2530
|
+
readonly WebkitMaskPositionX?: string | number | import("csstype").Property.WebkitMaskPositionX<string | number>[] | undefined;
|
|
2531
|
+
readonly WebkitMaskPositionY?: string | number | import("csstype").Property.WebkitMaskPositionY<string | number>[] | undefined;
|
|
2532
|
+
readonly WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
2533
|
+
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
2534
|
+
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
2535
|
+
readonly WebkitMaskSize?: string | number | import("csstype").Property.WebkitMaskSize<string | number>[] | undefined;
|
|
2536
|
+
readonly WebkitMaxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
2537
|
+
readonly WebkitOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
2538
|
+
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
2539
|
+
readonly WebkitPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
2540
|
+
readonly WebkitPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
2541
|
+
readonly WebkitPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
2542
|
+
readonly WebkitPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
2543
|
+
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
2544
|
+
readonly WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
2545
|
+
readonly WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
2546
|
+
readonly WebkitShapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
2547
|
+
readonly WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
2548
|
+
readonly WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
2549
|
+
readonly WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2550
|
+
readonly WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2551
|
+
readonly WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
2552
|
+
readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2553
|
+
readonly WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
2554
|
+
readonly WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
2555
|
+
readonly WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
2556
|
+
readonly WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
2557
|
+
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
2558
|
+
readonly WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
2559
|
+
readonly WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
2560
|
+
readonly WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[] | undefined;
|
|
2561
|
+
readonly WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
2562
|
+
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
2563
|
+
readonly WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
2564
|
+
readonly WebkitTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
2565
|
+
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
2566
|
+
readonly WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2567
|
+
readonly WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2568
|
+
readonly WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
2569
|
+
readonly WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2570
|
+
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[] | undefined;
|
|
2571
|
+
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
2572
|
+
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
2573
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
2574
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
2575
|
+
readonly MozColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
2576
|
+
readonly MozColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
2577
|
+
readonly MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2578
|
+
readonly msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
2579
|
+
readonly msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
2580
|
+
readonly msFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
2581
|
+
readonly msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[] | undefined;
|
|
2582
|
+
readonly msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
2583
|
+
readonly msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
2584
|
+
readonly msTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2585
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
2586
|
+
readonly WebkitBorderBefore?: string | number | import("csstype").Property.WebkitBorderBefore<string | number>[] | undefined;
|
|
2587
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
2588
|
+
readonly WebkitBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
2589
|
+
readonly WebkitColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
2590
|
+
readonly WebkitColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
2591
|
+
readonly WebkitFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
2592
|
+
readonly WebkitFlexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
2593
|
+
readonly WebkitMask?: string | number | import("csstype").Property.WebkitMask<string | number>[] | undefined;
|
|
2594
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
2595
|
+
readonly WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
2596
|
+
readonly WebkitTextStroke?: string | number | import("csstype").Property.WebkitTextStroke<string | number>[] | undefined;
|
|
2597
|
+
readonly WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2598
|
+
readonly azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[] | undefined;
|
|
2599
|
+
readonly boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
2600
|
+
readonly boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
2601
|
+
readonly boxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
2602
|
+
readonly boxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
2603
|
+
readonly boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
2604
|
+
readonly boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
2605
|
+
readonly boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
2606
|
+
readonly boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
2607
|
+
readonly clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[] | undefined;
|
|
2608
|
+
readonly gridColumnGap?: string | number | import("csstype").Property.GridColumnGap<string | number>[] | undefined;
|
|
2609
|
+
readonly gridGap?: string | number | import("csstype").Property.GridGap<string | number>[] | undefined;
|
|
2610
|
+
readonly gridRowGap?: string | number | import("csstype").Property.GridRowGap<string | number>[] | undefined;
|
|
2611
|
+
readonly imeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
2612
|
+
readonly offsetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
2613
|
+
readonly offsetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
2614
|
+
readonly offsetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
2615
|
+
readonly offsetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
2616
|
+
readonly offsetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
2617
|
+
readonly offsetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
2618
|
+
readonly scrollSnapCoordinate?: string | number | import("csstype").Property.ScrollSnapCoordinate<string | number>[] | undefined;
|
|
2619
|
+
readonly scrollSnapDestination?: string | number | import("csstype").Property.ScrollSnapDestination<string | number>[] | undefined;
|
|
2620
|
+
readonly scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
2621
|
+
readonly scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
2622
|
+
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
2623
|
+
readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
2624
|
+
readonly scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
2625
|
+
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
2626
|
+
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
2627
|
+
readonly KhtmlBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
2628
|
+
readonly KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
2629
|
+
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
2630
|
+
readonly KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
2631
|
+
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
2632
|
+
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
2633
|
+
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
2634
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
2635
|
+
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
2636
|
+
readonly MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
2637
|
+
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
2638
|
+
readonly MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
2639
|
+
readonly MozBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
2640
|
+
readonly MozBinding?: import("csstype").Property.MozBinding | import("csstype").Property.MozBinding[] | undefined;
|
|
2641
|
+
readonly MozBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
2642
|
+
readonly MozBorderRadiusBottomleft?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
2643
|
+
readonly MozBorderRadiusBottomright?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
2644
|
+
readonly MozBorderRadiusTopleft?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
2645
|
+
readonly MozBorderRadiusTopright?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
2646
|
+
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
2647
|
+
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
2648
|
+
readonly MozBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
2649
|
+
readonly MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
2650
|
+
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
2651
|
+
readonly MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
2652
|
+
readonly MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
2653
|
+
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[] | undefined;
|
|
2654
|
+
readonly MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[] | undefined;
|
|
2655
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
2656
|
+
readonly MozOutline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
2657
|
+
readonly MozOutlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
2658
|
+
readonly MozOutlineRadius?: string | number | import("csstype").Property.MozOutlineRadius<string | number>[] | undefined;
|
|
2659
|
+
readonly MozOutlineRadiusBottomleft?: string | number | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[] | undefined;
|
|
2660
|
+
readonly MozOutlineRadiusBottomright?: string | number | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[] | undefined;
|
|
2661
|
+
readonly MozOutlineRadiusTopleft?: string | number | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[] | undefined;
|
|
2662
|
+
readonly MozOutlineRadiusTopright?: string | number | import("csstype").Property.MozOutlineRadiusTopright<string | number>[] | undefined;
|
|
2663
|
+
readonly MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
2664
|
+
readonly MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
2665
|
+
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
2666
|
+
readonly MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
2667
|
+
readonly MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
2668
|
+
readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
2669
|
+
readonly MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[] | undefined;
|
|
2670
|
+
readonly msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
2671
|
+
readonly msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
2672
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
2673
|
+
readonly OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
2674
|
+
readonly OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
2675
|
+
readonly OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
2676
|
+
readonly OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
2677
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
2678
|
+
readonly OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
2679
|
+
readonly OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
2680
|
+
readonly OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
2681
|
+
readonly OBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
2682
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
2683
|
+
readonly OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
2684
|
+
readonly OObjectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
2685
|
+
readonly OTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
2686
|
+
readonly OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
2687
|
+
readonly OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
2688
|
+
readonly OTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
2689
|
+
readonly OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
2690
|
+
readonly OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
2691
|
+
readonly OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
2692
|
+
readonly OTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
2693
|
+
readonly OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
2694
|
+
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
2695
|
+
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
2696
|
+
readonly WebkitBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
2697
|
+
readonly WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
2698
|
+
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
2699
|
+
readonly WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
2700
|
+
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
2701
|
+
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
2702
|
+
readonly WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
2703
|
+
readonly WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
2704
|
+
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
2705
|
+
readonly baselineShift?: string | number | import("csstype").Property.BaselineShift<string | number>[] | undefined;
|
|
2706
|
+
readonly clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[] | undefined;
|
|
2707
|
+
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[] | undefined;
|
|
2708
|
+
readonly colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[] | undefined;
|
|
2709
|
+
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[] | undefined;
|
|
2710
|
+
readonly fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[] | undefined;
|
|
2711
|
+
readonly fillOpacity?: import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[] | undefined;
|
|
2712
|
+
readonly fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[] | undefined;
|
|
2713
|
+
readonly floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[] | undefined;
|
|
2714
|
+
readonly floodOpacity?: import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[] | undefined;
|
|
2715
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[] | undefined;
|
|
2716
|
+
readonly lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[] | undefined;
|
|
2717
|
+
readonly marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[] | undefined;
|
|
2718
|
+
readonly markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[] | undefined;
|
|
2719
|
+
readonly markerMid?: import("csstype").Property.MarkerMid | import("csstype").Property.MarkerMid[] | undefined;
|
|
2720
|
+
readonly markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[] | undefined;
|
|
2721
|
+
readonly shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[] | undefined;
|
|
2722
|
+
readonly stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[] | undefined;
|
|
2723
|
+
readonly stopOpacity?: import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[] | undefined;
|
|
2724
|
+
readonly stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[] | undefined;
|
|
2725
|
+
readonly strokeDasharray?: string | number | import("csstype").Property.StrokeDasharray<string | number>[] | undefined;
|
|
2726
|
+
readonly strokeDashoffset?: string | number | import("csstype").Property.StrokeDashoffset<string | number>[] | undefined;
|
|
2727
|
+
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[] | undefined;
|
|
2728
|
+
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
2729
|
+
readonly strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[] | undefined;
|
|
2730
|
+
readonly strokeOpacity?: import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[] | undefined;
|
|
2731
|
+
readonly strokeWidth?: string | number | import("csstype").Property.StrokeWidth<string | number>[] | undefined;
|
|
2732
|
+
readonly textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[] | undefined;
|
|
2733
|
+
readonly vectorEffect?: import("csstype").Property.VectorEffect | import("csstype").Property.VectorEffect[] | undefined;
|
|
2734
|
+
readonly ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2735
|
+
readonly ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2736
|
+
readonly ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2737
|
+
readonly "::cue"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2738
|
+
readonly "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2739
|
+
readonly "::part"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2740
|
+
readonly "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2741
|
+
readonly ":dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2742
|
+
readonly ":has"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2743
|
+
readonly ":host"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2744
|
+
readonly ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2745
|
+
readonly ":is"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2746
|
+
readonly ":lang"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2747
|
+
readonly ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2748
|
+
readonly ":not"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2749
|
+
readonly ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2750
|
+
readonly ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2751
|
+
readonly ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2752
|
+
readonly ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2753
|
+
readonly ":where"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2754
|
+
readonly ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2755
|
+
readonly ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2756
|
+
readonly ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2757
|
+
readonly ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2758
|
+
readonly ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2759
|
+
readonly ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2760
|
+
readonly ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2761
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2762
|
+
readonly ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2763
|
+
readonly ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2764
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2765
|
+
readonly ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2766
|
+
readonly ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2767
|
+
readonly "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2768
|
+
readonly "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2769
|
+
readonly "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2770
|
+
readonly "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2771
|
+
readonly "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2772
|
+
readonly "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2773
|
+
readonly "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2774
|
+
readonly "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2775
|
+
readonly "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2776
|
+
readonly "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2777
|
+
readonly "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2778
|
+
readonly "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2779
|
+
readonly "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2780
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2781
|
+
readonly "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2782
|
+
readonly "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2783
|
+
readonly "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2784
|
+
readonly "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2785
|
+
readonly "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2786
|
+
readonly "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2787
|
+
readonly "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2788
|
+
readonly "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2789
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2790
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2791
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2792
|
+
readonly "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2793
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2794
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2795
|
+
readonly "::after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2796
|
+
readonly "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2797
|
+
readonly "::before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2798
|
+
readonly "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2799
|
+
readonly "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2800
|
+
readonly "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2801
|
+
readonly "::marker"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2802
|
+
readonly "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2803
|
+
readonly "::selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2804
|
+
readonly "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2805
|
+
readonly "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2806
|
+
readonly ":active"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2807
|
+
readonly ":after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2808
|
+
readonly ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2809
|
+
readonly ":before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2810
|
+
readonly ":blank"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2811
|
+
readonly ":checked"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2812
|
+
readonly ":current"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2813
|
+
readonly ":default"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2814
|
+
readonly ":defined"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2815
|
+
readonly ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2816
|
+
readonly ":empty"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2817
|
+
readonly ":first"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2818
|
+
readonly ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2819
|
+
readonly ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2820
|
+
readonly ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2821
|
+
readonly ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2822
|
+
readonly ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2823
|
+
readonly ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2824
|
+
readonly ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2825
|
+
readonly ":future"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2826
|
+
readonly ":hover"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2827
|
+
readonly ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2828
|
+
readonly ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2829
|
+
readonly ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2830
|
+
readonly ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2831
|
+
readonly ":left"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2832
|
+
readonly ":link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2833
|
+
readonly ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2834
|
+
readonly ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2835
|
+
readonly ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2836
|
+
readonly ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2837
|
+
readonly ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2838
|
+
readonly ":optional"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2839
|
+
readonly ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2840
|
+
readonly ":past"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2841
|
+
readonly ":paused"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2842
|
+
readonly ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2843
|
+
readonly ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2844
|
+
readonly ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2845
|
+
readonly ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2846
|
+
readonly ":required"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2847
|
+
readonly ":right"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2848
|
+
readonly ":root"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2849
|
+
readonly ":scope"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2850
|
+
readonly ":target"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2851
|
+
readonly ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2852
|
+
readonly ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2853
|
+
readonly ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2854
|
+
readonly ":valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2855
|
+
readonly ":visited"?: import("@emotion/serialize").CSSObject | undefined;
|
|
2856
|
+
}];
|
|
1900
2857
|
export {};
|