@spark-web/text-input 1.1.1 → 1.2.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 +458 -1383
- package/dist/declarations/src/index.d.ts +2 -0
- package/dist/spark-web-text-input.cjs.dev.js +69 -42
- package/dist/spark-web-text-input.cjs.prod.js +69 -42
- package/dist/spark-web-text-input.esm.js +69 -43
- package/package.json +9 -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,948 +40,23 @@ export declare const TextInput: import("react").ForwardRefExoticComponent<{
|
|
|
40
40
|
*/
|
|
41
41
|
children?: AdornmentsAsChildren;
|
|
42
42
|
} & NativeInputProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
43
|
-
export declare type UseInputProps =
|
|
44
|
-
|
|
45
|
-
};
|
|
46
|
-
export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
43
|
+
export declare type UseInputProps = FieldState;
|
|
44
|
+
export declare const useInput: ({ disabled }: UseInputProps) => {
|
|
47
45
|
readonly ':focus': {
|
|
48
|
-
outline:
|
|
49
|
-
outlineOffset: string;
|
|
46
|
+
readonly outline: "none";
|
|
50
47
|
};
|
|
51
|
-
readonly accentColor?: import("csstype").Property.AccentColor | import("csstype").Property.AccentColor[] | undefined;
|
|
52
|
-
readonly alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
53
|
-
readonly alignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
54
|
-
readonly alignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
55
|
-
readonly alignTracks?: import("csstype").Property.AlignTracks | import("csstype").Property.AlignTracks[] | undefined;
|
|
56
|
-
readonly animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
57
|
-
readonly animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
58
|
-
readonly animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
59
|
-
readonly animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
60
|
-
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
61
|
-
readonly animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
62
|
-
readonly animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
63
|
-
readonly animationTimeline?: import("csstype").Property.AnimationTimeline | import("csstype").Property.AnimationTimeline[] | undefined;
|
|
64
|
-
readonly animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
65
|
-
readonly appearance?: import("csstype").Property.Appearance | import("csstype").Property.Appearance[] | undefined;
|
|
66
|
-
readonly aspectRatio?: import("csstype").Property.AspectRatio | import("csstype").Property.AspectRatio[] | undefined;
|
|
67
|
-
readonly backdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[] | undefined;
|
|
68
|
-
readonly backfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
69
|
-
readonly backgroundAttachment?: import("csstype").Property.BackgroundAttachment | import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
70
|
-
readonly backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
71
|
-
readonly backgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
72
|
-
readonly backgroundColor?: import("csstype").Property.BackgroundColor | import("csstype").Property.BackgroundColor[] | undefined;
|
|
73
|
-
readonly backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[] | undefined;
|
|
74
|
-
readonly backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
75
|
-
readonly backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | import("csstype").Property.BackgroundPositionX<string | number>[] | (string | (string & {}))[] | undefined;
|
|
76
|
-
readonly backgroundPositionY?: (string | (string & {}))[] | import("csstype").Property.BackgroundPositionY<string | number> | import("csstype").Property.BackgroundPositionY<string | number>[] | undefined;
|
|
77
|
-
readonly backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
78
|
-
readonly backgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
79
|
-
readonly blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[] | undefined;
|
|
80
|
-
readonly blockSize?: (string | (string & {}))[] | import("csstype").Property.BlockSize<string | number> | import("csstype").Property.BlockSize<string | number>[] | undefined;
|
|
81
|
-
readonly borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[] | undefined;
|
|
82
|
-
readonly borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
83
|
-
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
84
|
-
readonly borderBlockEndWidth?: string[] | import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[] | undefined;
|
|
85
|
-
readonly borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
86
|
-
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
87
|
-
readonly borderBlockStartWidth?: string[] | import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[] | undefined;
|
|
88
|
-
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
89
|
-
readonly borderBlockWidth?: string[] | import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[] | undefined;
|
|
90
|
-
readonly borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[] | undefined;
|
|
91
|
-
readonly borderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
92
|
-
readonly borderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
93
|
-
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
94
|
-
readonly borderBottomWidth?: string[] | import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[] | undefined;
|
|
95
|
-
readonly borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[] | undefined;
|
|
96
|
-
readonly borderEndEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndEndRadius<string | number> | import("csstype").Property.BorderEndEndRadius<string | number>[] | undefined;
|
|
97
|
-
readonly borderEndStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderEndStartRadius<string | number> | import("csstype").Property.BorderEndStartRadius<string | number>[] | undefined;
|
|
98
|
-
readonly borderImageOutset?: (string | (string & {}))[] | import("csstype").Property.BorderImageOutset<string | number> | import("csstype").Property.BorderImageOutset<string | number>[] | undefined;
|
|
99
|
-
readonly borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
100
|
-
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
101
|
-
readonly borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[] | undefined;
|
|
102
|
-
readonly borderImageWidth?: (string | (string & {}))[] | import("csstype").Property.BorderImageWidth<string | number> | import("csstype").Property.BorderImageWidth<string | number>[] | undefined;
|
|
103
|
-
readonly borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[] | undefined;
|
|
104
|
-
readonly borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
105
|
-
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
106
|
-
readonly borderInlineEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
107
|
-
readonly borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
108
|
-
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
109
|
-
readonly borderInlineStartWidth?: string[] | import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[] | undefined;
|
|
110
|
-
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
111
|
-
readonly borderInlineWidth?: string[] | import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[] | undefined;
|
|
112
|
-
readonly borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[] | undefined;
|
|
113
|
-
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
114
|
-
readonly borderLeftWidth?: string[] | import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[] | undefined;
|
|
115
|
-
readonly borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[] | undefined;
|
|
116
|
-
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[] | undefined;
|
|
117
|
-
readonly borderRightWidth?: string[] | import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[] | undefined;
|
|
118
|
-
readonly borderSpacing?: (string | (string & {}))[] | import("csstype").Property.BorderSpacing<string | number> | import("csstype").Property.BorderSpacing<string | number>[] | undefined;
|
|
119
|
-
readonly borderStartEndRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartEndRadius<string | number> | import("csstype").Property.BorderStartEndRadius<string | number>[] | undefined;
|
|
120
|
-
readonly borderStartStartRadius?: (string | (string & {}))[] | import("csstype").Property.BorderStartStartRadius<string | number> | import("csstype").Property.BorderStartStartRadius<string | number>[] | undefined;
|
|
121
|
-
readonly borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[] | undefined;
|
|
122
|
-
readonly borderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
123
|
-
readonly borderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
124
|
-
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[] | undefined;
|
|
125
|
-
readonly borderTopWidth?: string[] | import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[] | undefined;
|
|
126
|
-
readonly bottom?: (string | (string & {}))[] | import("csstype").Property.Bottom<string | number> | import("csstype").Property.Bottom<string | number>[] | undefined;
|
|
127
|
-
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
128
|
-
readonly boxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
129
|
-
readonly boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
130
|
-
readonly breakAfter?: import("csstype").Property.BreakAfter | import("csstype").Property.BreakAfter[] | undefined;
|
|
131
|
-
readonly breakBefore?: import("csstype").Property.BreakBefore | import("csstype").Property.BreakBefore[] | undefined;
|
|
132
|
-
readonly breakInside?: import("csstype").Property.BreakInside | import("csstype").Property.BreakInside[] | undefined;
|
|
133
|
-
readonly captionSide?: import("csstype").Property.CaptionSide | import("csstype").Property.CaptionSide[] | undefined;
|
|
134
|
-
readonly caretColor?: import("csstype").Property.CaretColor | import("csstype").Property.CaretColor[] | undefined;
|
|
135
|
-
readonly clear?: import("csstype").Property.Clear | import("csstype").Property.Clear[] | undefined;
|
|
136
|
-
readonly clipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
137
|
-
readonly color?: import("csstype").Property.Color | import("csstype").Property.Color[] | undefined;
|
|
138
|
-
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
139
|
-
readonly colorScheme?: import("csstype").Property.ColorScheme | import("csstype").Property.ColorScheme[] | undefined;
|
|
140
|
-
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
141
|
-
readonly columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
142
|
-
readonly columnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
143
|
-
readonly columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
144
|
-
readonly columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
145
|
-
readonly columnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
146
|
-
readonly columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
147
|
-
readonly columnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
148
|
-
readonly contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[] | undefined;
|
|
149
|
-
readonly content?: import("csstype").Property.Content | import("csstype").Property.Content[] | undefined;
|
|
150
|
-
readonly contentVisibility?: import("csstype").Property.ContentVisibility | import("csstype").Property.ContentVisibility[] | undefined;
|
|
151
|
-
readonly counterIncrement?: import("csstype").Property.CounterIncrement | import("csstype").Property.CounterIncrement[] | undefined;
|
|
152
|
-
readonly counterReset?: import("csstype").Property.CounterReset | import("csstype").Property.CounterReset[] | undefined;
|
|
153
|
-
readonly counterSet?: import("csstype").Property.CounterSet | import("csstype").Property.CounterSet[] | undefined;
|
|
154
|
-
readonly cursor?: import("csstype").Property.Cursor | import("csstype").Property.Cursor[] | undefined;
|
|
155
|
-
readonly direction?: import("csstype").Property.Direction | import("csstype").Property.Direction[] | undefined;
|
|
156
|
-
readonly display?: import("csstype").Property.Display | import("csstype").Property.Display[] | undefined;
|
|
157
|
-
readonly emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[] | undefined;
|
|
158
|
-
readonly filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
159
|
-
readonly flexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
160
|
-
readonly flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
161
|
-
readonly flexGrow?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
162
|
-
readonly flexShrink?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
163
|
-
readonly flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
164
|
-
readonly float?: import("csstype").Property.Float | import("csstype").Property.Float[] | undefined;
|
|
165
|
-
readonly fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[] | undefined;
|
|
166
|
-
readonly fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
167
|
-
readonly fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
168
|
-
readonly fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
169
|
-
readonly fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
170
|
-
readonly fontSize?: (string | (string & {}))[] | import("csstype").Property.FontSize<string | number> | import("csstype").Property.FontSize<string | number>[] | undefined;
|
|
171
|
-
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | ("none" | (string & {}) | import("csstype").Globals | "from-font")[] | undefined;
|
|
172
|
-
readonly fontSmooth?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
173
|
-
readonly fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[] | undefined;
|
|
174
|
-
readonly fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[] | undefined;
|
|
175
|
-
readonly fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[] | undefined;
|
|
176
|
-
readonly fontVariant?: import("csstype").Property.FontVariant | import("csstype").Property.FontVariant[] | undefined;
|
|
177
|
-
readonly fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
178
|
-
readonly fontVariantCaps?: import("csstype").Property.FontVariantCaps | import("csstype").Property.FontVariantCaps[] | undefined;
|
|
179
|
-
readonly fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
180
|
-
readonly fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
181
|
-
readonly fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
182
|
-
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[] | undefined;
|
|
183
|
-
readonly fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[] | undefined;
|
|
184
|
-
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | ("bold" | (string & {}) | import("csstype").Globals | "normal" | "bolder" | "lighter")[] | undefined;
|
|
185
|
-
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
186
|
-
readonly gridAutoColumns?: (string | (string & {}))[] | import("csstype").Property.GridAutoColumns<string | number> | import("csstype").Property.GridAutoColumns<string | number>[] | undefined;
|
|
187
|
-
readonly gridAutoFlow?: import("csstype").Property.GridAutoFlow | import("csstype").Property.GridAutoFlow[] | undefined;
|
|
188
|
-
readonly gridAutoRows?: (string | (string & {}))[] | import("csstype").Property.GridAutoRows<string | number> | import("csstype").Property.GridAutoRows<string | number>[] | undefined;
|
|
189
|
-
readonly gridColumnEnd?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | undefined;
|
|
190
|
-
readonly gridColumnStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[] | undefined;
|
|
191
|
-
readonly gridRowEnd?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[] | undefined;
|
|
192
|
-
readonly gridRowStart?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[] | undefined;
|
|
193
|
-
readonly gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
194
|
-
readonly gridTemplateColumns?: (string | (string & {}))[] | import("csstype").Property.GridTemplateColumns<string | number> | import("csstype").Property.GridTemplateColumns<string | number>[] | undefined;
|
|
195
|
-
readonly gridTemplateRows?: (string | (string & {}))[] | import("csstype").Property.GridTemplateRows<string | number> | import("csstype").Property.GridTemplateRows<string | number>[] | undefined;
|
|
196
|
-
readonly hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[] | undefined;
|
|
197
|
-
readonly height?: (string | (string & {}))[] | import("csstype").Property.Height<string | number> | import("csstype").Property.Height<string | number>[] | undefined;
|
|
198
|
-
readonly hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
199
|
-
readonly hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
200
|
-
readonly imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[] | undefined;
|
|
201
|
-
readonly imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[] | undefined;
|
|
202
|
-
readonly imageResolution?: import("csstype").Property.ImageResolution | import("csstype").Property.ImageResolution[] | undefined;
|
|
203
|
-
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
204
|
-
readonly inlineSize?: (string | (string & {}))[] | import("csstype").Property.InlineSize<string | number> | import("csstype").Property.InlineSize<string | number>[] | undefined;
|
|
205
|
-
readonly inputSecurity?: import("csstype").Property.InputSecurity | import("csstype").Property.InputSecurity[] | undefined;
|
|
206
|
-
readonly inset?: (string | (string & {}))[] | import("csstype").Property.Inset<string | number> | import("csstype").Property.Inset<string | number>[] | undefined;
|
|
207
|
-
readonly insetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
208
|
-
readonly insetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
209
|
-
readonly insetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
210
|
-
readonly insetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
211
|
-
readonly insetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
212
|
-
readonly insetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
213
|
-
readonly isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[] | undefined;
|
|
214
|
-
readonly justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
215
|
-
readonly justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[] | undefined;
|
|
216
|
-
readonly justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
217
|
-
readonly justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[] | undefined;
|
|
218
|
-
readonly left?: (string | (string & {}))[] | import("csstype").Property.Left<string | number> | import("csstype").Property.Left<string | number>[] | undefined;
|
|
219
|
-
readonly letterSpacing?: string[] | import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[] | undefined;
|
|
220
|
-
readonly lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
221
|
-
readonly lineHeight?: (string | (string & {}))[] | import("csstype").Property.LineHeight<string | number> | import("csstype").Property.LineHeight<string | number>[] | undefined;
|
|
222
|
-
readonly lineHeightStep?: string[] | import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[] | undefined;
|
|
223
|
-
readonly listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[] | undefined;
|
|
224
|
-
readonly listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[] | undefined;
|
|
225
|
-
readonly listStyleType?: import("csstype").Property.ListStyleType | import("csstype").Property.ListStyleType[] | undefined;
|
|
226
|
-
readonly marginBlock?: (string | (string & {}))[] | import("csstype").Property.MarginBlock<string | number> | import("csstype").Property.MarginBlock<string | number>[] | undefined;
|
|
227
|
-
readonly marginBlockEnd?: (string | (string & {}))[] | import("csstype").Property.MarginBlockEnd<string | number> | import("csstype").Property.MarginBlockEnd<string | number>[] | undefined;
|
|
228
|
-
readonly marginBlockStart?: (string | (string & {}))[] | import("csstype").Property.MarginBlockStart<string | number> | import("csstype").Property.MarginBlockStart<string | number>[] | undefined;
|
|
229
|
-
readonly marginBottom?: (string | (string & {}))[] | import("csstype").Property.MarginBottom<string | number> | import("csstype").Property.MarginBottom<string | number>[] | undefined;
|
|
230
|
-
readonly marginInline?: (string | (string & {}))[] | import("csstype").Property.MarginInline<string | number> | import("csstype").Property.MarginInline<string | number>[] | undefined;
|
|
231
|
-
readonly marginInlineEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
232
|
-
readonly marginInlineStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
233
|
-
readonly marginLeft?: (string | (string & {}))[] | import("csstype").Property.MarginLeft<string | number> | import("csstype").Property.MarginLeft<string | number>[] | undefined;
|
|
234
|
-
readonly marginRight?: (string | (string & {}))[] | import("csstype").Property.MarginRight<string | number> | import("csstype").Property.MarginRight<string | number>[] | undefined;
|
|
235
|
-
readonly marginTop?: (string | (string & {}))[] | import("csstype").Property.MarginTop<string | number> | import("csstype").Property.MarginTop<string | number>[] | undefined;
|
|
236
|
-
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[] | undefined;
|
|
237
|
-
readonly maskBorderOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
238
|
-
readonly maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
239
|
-
readonly maskBorderSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
240
|
-
readonly maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
241
|
-
readonly maskBorderWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
242
|
-
readonly maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[] | undefined;
|
|
243
|
-
readonly maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[] | undefined;
|
|
244
|
-
readonly maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[] | undefined;
|
|
245
|
-
readonly maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[] | undefined;
|
|
246
|
-
readonly maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[] | undefined;
|
|
247
|
-
readonly maskPosition?: (string | (string & {}))[] | import("csstype").Property.MaskPosition<string | number> | import("csstype").Property.MaskPosition<string | number>[] | undefined;
|
|
248
|
-
readonly maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[] | undefined;
|
|
249
|
-
readonly maskSize?: (string | (string & {}))[] | import("csstype").Property.MaskSize<string | number> | import("csstype").Property.MaskSize<string | number>[] | undefined;
|
|
250
|
-
readonly maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[] | undefined;
|
|
251
|
-
readonly mathStyle?: import("csstype").Property.MathStyle | import("csstype").Property.MathStyle[] | undefined;
|
|
252
|
-
readonly maxBlockSize?: (string | (string & {}))[] | import("csstype").Property.MaxBlockSize<string | number> | import("csstype").Property.MaxBlockSize<string | number>[] | undefined;
|
|
253
|
-
readonly maxHeight?: (string | (string & {}))[] | import("csstype").Property.MaxHeight<string | number> | import("csstype").Property.MaxHeight<string | number>[] | undefined;
|
|
254
|
-
readonly maxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
255
|
-
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] | ("none" | (string & {}) | import("csstype").Globals)[] | undefined;
|
|
256
|
-
readonly maxWidth?: (string | (string & {}))[] | import("csstype").Property.MaxWidth<string | number> | import("csstype").Property.MaxWidth<string | number>[] | undefined;
|
|
257
|
-
readonly minBlockSize?: (string | (string & {}))[] | import("csstype").Property.MinBlockSize<string | number> | import("csstype").Property.MinBlockSize<string | number>[] | undefined;
|
|
258
|
-
readonly minHeight?: (string | (string & {}))[] | import("csstype").Property.MinHeight<string | number> | import("csstype").Property.MinHeight<string | number>[] | undefined;
|
|
259
|
-
readonly minInlineSize?: (string | (string & {}))[] | import("csstype").Property.MinInlineSize<string | number> | import("csstype").Property.MinInlineSize<string | number>[] | undefined;
|
|
260
|
-
readonly minWidth?: (string | (string & {}))[] | import("csstype").Property.MinWidth<string | number> | import("csstype").Property.MinWidth<string | number>[] | undefined;
|
|
261
|
-
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[] | undefined;
|
|
262
|
-
readonly motionDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
263
|
-
readonly motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
264
|
-
readonly motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
265
|
-
readonly objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
266
|
-
readonly objectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
267
|
-
readonly offsetAnchor?: (string | (string & {}))[] | import("csstype").Property.OffsetAnchor<string | number> | import("csstype").Property.OffsetAnchor<string | number>[] | undefined;
|
|
268
|
-
readonly offsetDistance?: (string | (string & {}))[] | import("csstype").Property.OffsetDistance<string | number> | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
269
|
-
readonly offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
270
|
-
readonly offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
271
|
-
readonly offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
272
|
-
readonly opacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
273
|
-
readonly order?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
274
|
-
readonly orphans?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Orphans | import("csstype").Property.Orphans[] | undefined;
|
|
275
|
-
readonly outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
276
|
-
readonly outlineOffset?: string[] | import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[] | undefined;
|
|
277
|
-
readonly outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
278
|
-
readonly outlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
279
|
-
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[] | undefined;
|
|
280
|
-
readonly overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[] | undefined;
|
|
281
|
-
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[] | undefined;
|
|
282
|
-
readonly overflowClipMargin?: (string | (string & {}))[] | import("csstype").Property.OverflowClipMargin<string | number> | import("csstype").Property.OverflowClipMargin<string | number>[] | undefined;
|
|
283
|
-
readonly overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[] | undefined;
|
|
284
|
-
readonly overflowWrap?: import("csstype").Property.OverflowWrap | import("csstype").Property.OverflowWrap[] | undefined;
|
|
285
|
-
readonly overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
286
|
-
readonly overflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
287
|
-
readonly overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock | import("csstype").Property.OverscrollBehaviorBlock[] | undefined;
|
|
288
|
-
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
289
|
-
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
290
|
-
readonly overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
291
|
-
readonly paddingBlock?: (string | (string & {}))[] | import("csstype").Property.PaddingBlock<string | number> | import("csstype").Property.PaddingBlock<string | number>[] | undefined;
|
|
292
|
-
readonly paddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockEnd<string | number> | import("csstype").Property.PaddingBlockEnd<string | number>[] | undefined;
|
|
293
|
-
readonly paddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.PaddingBlockStart<string | number> | import("csstype").Property.PaddingBlockStart<string | number>[] | undefined;
|
|
294
|
-
readonly paddingBottom?: (string | (string & {}))[] | import("csstype").Property.PaddingBottom<string | number> | import("csstype").Property.PaddingBottom<string | number>[] | undefined;
|
|
295
|
-
readonly paddingInline?: (string | (string & {}))[] | import("csstype").Property.PaddingInline<string | number> | import("csstype").Property.PaddingInline<string | number>[] | undefined;
|
|
296
|
-
readonly paddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
297
|
-
readonly paddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
298
|
-
readonly paddingLeft?: (string | (string & {}))[] | import("csstype").Property.PaddingLeft<string | number> | import("csstype").Property.PaddingLeft<string | number>[] | undefined;
|
|
299
|
-
readonly paddingRight?: (string | (string & {}))[] | import("csstype").Property.PaddingRight<string | number> | import("csstype").Property.PaddingRight<string | number>[] | undefined;
|
|
300
|
-
readonly paddingTop?: (string | (string & {}))[] | import("csstype").Property.PaddingTop<string | number> | import("csstype").Property.PaddingTop<string | number>[] | undefined;
|
|
301
|
-
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[] | undefined;
|
|
302
|
-
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[] | undefined;
|
|
303
|
-
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[] | undefined;
|
|
304
|
-
readonly paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[] | undefined;
|
|
305
|
-
readonly perspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
306
|
-
readonly perspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
307
|
-
readonly placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[] | undefined;
|
|
308
|
-
readonly pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[] | undefined;
|
|
309
|
-
readonly position?: import("csstype").Property.Position | import("csstype").Property.Position[] | undefined;
|
|
310
|
-
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
311
|
-
readonly quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[] | undefined;
|
|
312
|
-
readonly resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[] | undefined;
|
|
313
|
-
readonly right?: (string | (string & {}))[] | import("csstype").Property.Right<string | number> | import("csstype").Property.Right<string | number>[] | undefined;
|
|
314
|
-
readonly rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[] | undefined;
|
|
315
|
-
readonly rowGap?: (string | (string & {}))[] | import("csstype").Property.RowGap<string | number> | import("csstype").Property.RowGap<string | number>[] | undefined;
|
|
316
|
-
readonly rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[] | undefined;
|
|
317
|
-
readonly rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[] | undefined;
|
|
318
|
-
readonly rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
319
|
-
readonly scale?: ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.Scale | import("csstype").Property.Scale[] | undefined;
|
|
320
|
-
readonly scrollBehavior?: import("csstype").Property.ScrollBehavior | import("csstype").Property.ScrollBehavior[] | undefined;
|
|
321
|
-
readonly scrollMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
322
|
-
readonly scrollMarginBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginBlock<string | number> | import("csstype").Property.ScrollMarginBlock<string | number>[] | undefined;
|
|
323
|
-
readonly scrollMarginBlockEnd?: string[] | import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[] | undefined;
|
|
324
|
-
readonly scrollMarginBlockStart?: string[] | import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[] | undefined;
|
|
325
|
-
readonly scrollMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
326
|
-
readonly scrollMarginInline?: (string | (string & {}))[] | import("csstype").Property.ScrollMarginInline<string | number> | import("csstype").Property.ScrollMarginInline<string | number>[] | undefined;
|
|
327
|
-
readonly scrollMarginInlineEnd?: string[] | import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[] | undefined;
|
|
328
|
-
readonly scrollMarginInlineStart?: string[] | import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[] | undefined;
|
|
329
|
-
readonly scrollMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
330
|
-
readonly scrollMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
331
|
-
readonly scrollMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
332
|
-
readonly scrollPadding?: (string | (string & {}))[] | import("csstype").Property.ScrollPadding<string | number> | import("csstype").Property.ScrollPadding<string | number>[] | undefined;
|
|
333
|
-
readonly scrollPaddingBlock?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlock<string | number> | import("csstype").Property.ScrollPaddingBlock<string | number>[] | undefined;
|
|
334
|
-
readonly scrollPaddingBlockEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockEnd<string | number> | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[] | undefined;
|
|
335
|
-
readonly scrollPaddingBlockStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBlockStart<string | number> | import("csstype").Property.ScrollPaddingBlockStart<string | number>[] | undefined;
|
|
336
|
-
readonly scrollPaddingBottom?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingBottom<string | number> | import("csstype").Property.ScrollPaddingBottom<string | number>[] | undefined;
|
|
337
|
-
readonly scrollPaddingInline?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInline<string | number> | import("csstype").Property.ScrollPaddingInline<string | number>[] | undefined;
|
|
338
|
-
readonly scrollPaddingInlineEnd?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineEnd<string | number> | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[] | undefined;
|
|
339
|
-
readonly scrollPaddingInlineStart?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingInlineStart<string | number> | import("csstype").Property.ScrollPaddingInlineStart<string | number>[] | undefined;
|
|
340
|
-
readonly scrollPaddingLeft?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingLeft<string | number> | import("csstype").Property.ScrollPaddingLeft<string | number>[] | undefined;
|
|
341
|
-
readonly scrollPaddingRight?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingRight<string | number> | import("csstype").Property.ScrollPaddingRight<string | number>[] | undefined;
|
|
342
|
-
readonly scrollPaddingTop?: (string | (string & {}))[] | import("csstype").Property.ScrollPaddingTop<string | number> | import("csstype").Property.ScrollPaddingTop<string | number>[] | undefined;
|
|
343
|
-
readonly scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
344
|
-
readonly scrollSnapMargin?: (string | (string & {}))[] | import("csstype").Property.ScrollMargin<string | number> | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
345
|
-
readonly scrollSnapMarginBottom?: string[] | import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
346
|
-
readonly scrollSnapMarginLeft?: string[] | import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
347
|
-
readonly scrollSnapMarginRight?: string[] | import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
348
|
-
readonly scrollSnapMarginTop?: string[] | import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
349
|
-
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
350
|
-
readonly scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
351
|
-
readonly scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[] | undefined;
|
|
352
|
-
readonly scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
353
|
-
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
354
|
-
readonly shapeImageThreshold?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[] | undefined;
|
|
355
|
-
readonly shapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
356
|
-
readonly shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[] | undefined;
|
|
357
|
-
readonly tabSize?: (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
358
|
-
readonly tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[] | undefined;
|
|
359
|
-
readonly textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[] | undefined;
|
|
360
|
-
readonly textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
361
|
-
readonly textCombineUpright?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
362
|
-
readonly textDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
363
|
-
readonly textDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
364
|
-
readonly textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
365
|
-
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
366
|
-
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
367
|
-
readonly textDecorationThickness?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
368
|
-
readonly textDecorationWidth?: (string | (string & {}))[] | import("csstype").Property.TextDecorationThickness<string | number> | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
369
|
-
readonly textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
370
|
-
readonly textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
371
|
-
readonly textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
372
|
-
readonly textIndent?: (string | (string & {}))[] | import("csstype").Property.TextIndent<string | number> | import("csstype").Property.TextIndent<string | number>[] | undefined;
|
|
373
|
-
readonly textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[] | undefined;
|
|
374
|
-
readonly textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
375
|
-
readonly textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
376
|
-
readonly textRendering?: import("csstype").Property.TextRendering | import("csstype").Property.TextRendering[] | undefined;
|
|
377
|
-
readonly textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[] | undefined;
|
|
378
|
-
readonly textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
379
|
-
readonly textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[] | undefined;
|
|
380
|
-
readonly textUnderlineOffset?: (string | (string & {}))[] | import("csstype").Property.TextUnderlineOffset<string | number> | import("csstype").Property.TextUnderlineOffset<string | number>[] | undefined;
|
|
381
|
-
readonly textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
382
|
-
readonly top?: (string | (string & {}))[] | import("csstype").Property.Top<string | number> | import("csstype").Property.Top<string | number>[] | undefined;
|
|
383
|
-
readonly touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
384
|
-
readonly transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
385
|
-
readonly transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[] | undefined;
|
|
386
|
-
readonly transformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
387
|
-
readonly transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
388
|
-
readonly transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
389
|
-
readonly transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
390
|
-
readonly transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
391
|
-
readonly transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
392
|
-
readonly translate?: (string | (string & {}))[] | import("csstype").Property.Translate<string | number> | import("csstype").Property.Translate<string | number>[] | undefined;
|
|
393
|
-
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[] | undefined;
|
|
394
|
-
readonly userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
395
|
-
readonly verticalAlign?: (string | (string & {}))[] | import("csstype").Property.VerticalAlign<string | number> | import("csstype").Property.VerticalAlign<string | number>[] | undefined;
|
|
396
|
-
readonly visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[] | undefined;
|
|
397
|
-
readonly whiteSpace?: import("csstype").Property.WhiteSpace | import("csstype").Property.WhiteSpace[] | undefined;
|
|
398
|
-
readonly widows?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Widows | import("csstype").Property.Widows[] | undefined;
|
|
399
|
-
readonly width?: (string | (string & {}))[] | import("csstype").Property.Width<string | number> | import("csstype").Property.Width<string | number>[] | undefined;
|
|
400
|
-
readonly willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[] | undefined;
|
|
401
|
-
readonly wordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
402
|
-
readonly wordSpacing?: string[] | import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[] | undefined;
|
|
403
|
-
readonly wordWrap?: import("csstype").Property.WordWrap | import("csstype").Property.WordWrap[] | undefined;
|
|
404
|
-
readonly writingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
405
|
-
readonly zIndex?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[] | undefined;
|
|
406
|
-
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | ((string & {}) | "reset" | import("csstype").Globals | "normal")[] | undefined;
|
|
407
|
-
readonly all?: import("csstype").Globals | import("csstype").Globals[] | undefined;
|
|
408
|
-
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
|
|
409
|
-
readonly background?: (string | (string & {}))[] | import("csstype").Property.Background<string | number> | import("csstype").Property.Background<string | number>[] | undefined;
|
|
410
|
-
readonly backgroundPosition?: (string | (string & {}))[] | import("csstype").Property.BackgroundPosition<string | number> | import("csstype").Property.BackgroundPosition<string | number>[] | undefined;
|
|
411
|
-
readonly border?: (string | (string & {}))[] | import("csstype").Property.Border<string | number> | import("csstype").Property.Border<string | number>[] | undefined;
|
|
412
|
-
readonly borderBlock?: (string | (string & {}))[] | import("csstype").Property.BorderBlock<string | number> | import("csstype").Property.BorderBlock<string | number>[] | undefined;
|
|
413
|
-
readonly borderBlockEnd?: (string | (string & {}))[] | import("csstype").Property.BorderBlockEnd<string | number> | import("csstype").Property.BorderBlockEnd<string | number>[] | undefined;
|
|
414
|
-
readonly borderBlockStart?: (string | (string & {}))[] | import("csstype").Property.BorderBlockStart<string | number> | import("csstype").Property.BorderBlockStart<string | number>[] | undefined;
|
|
415
|
-
readonly borderBottom?: (string | (string & {}))[] | import("csstype").Property.BorderBottom<string | number> | import("csstype").Property.BorderBottom<string | number>[] | undefined;
|
|
416
|
-
readonly borderColor?: import("csstype").Property.BorderColor | import("csstype").Property.BorderColor[] | undefined;
|
|
417
|
-
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
418
|
-
readonly borderInline?: (string | (string & {}))[] | import("csstype").Property.BorderInline<string | number> | import("csstype").Property.BorderInline<string | number>[] | undefined;
|
|
419
|
-
readonly borderInlineEnd?: (string | (string & {}))[] | import("csstype").Property.BorderInlineEnd<string | number> | import("csstype").Property.BorderInlineEnd<string | number>[] | undefined;
|
|
420
|
-
readonly borderInlineStart?: (string | (string & {}))[] | import("csstype").Property.BorderInlineStart<string | number> | import("csstype").Property.BorderInlineStart<string | number>[] | undefined;
|
|
421
|
-
readonly borderLeft?: (string | (string & {}))[] | import("csstype").Property.BorderLeft<string | number> | import("csstype").Property.BorderLeft<string | number>[] | undefined;
|
|
422
|
-
readonly borderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
423
|
-
readonly borderRight?: (string | (string & {}))[] | import("csstype").Property.BorderRight<string | number> | import("csstype").Property.BorderRight<string | number>[] | undefined;
|
|
424
|
-
readonly borderStyle?: import("csstype").Property.BorderStyle | import("csstype").Property.BorderStyle[] | undefined;
|
|
425
|
-
readonly borderTop?: (string | (string & {}))[] | import("csstype").Property.BorderTop<string | number> | import("csstype").Property.BorderTop<string | number>[] | undefined;
|
|
426
|
-
readonly borderWidth?: (string | (string & {}))[] | import("csstype").Property.BorderWidth<string | number> | import("csstype").Property.BorderWidth<string | number>[] | undefined;
|
|
427
|
-
readonly columnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
428
|
-
readonly columns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
429
|
-
readonly flex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
430
|
-
readonly flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
431
|
-
readonly font?: import("csstype").Property.Font | import("csstype").Property.Font[] | undefined;
|
|
432
|
-
readonly gap?: (string | (string & {}))[] | import("csstype").Property.Gap<string | number> | import("csstype").Property.Gap<string | number>[] | undefined;
|
|
433
|
-
readonly grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[] | undefined;
|
|
434
|
-
readonly gridArea?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridArea | import("csstype").Property.GridArea[] | undefined;
|
|
435
|
-
readonly gridColumn?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[] | undefined;
|
|
436
|
-
readonly gridRow?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GridRow | import("csstype").Property.GridRow[] | undefined;
|
|
437
|
-
readonly gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[] | undefined;
|
|
438
|
-
readonly lineClamp?: ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[] | undefined;
|
|
439
|
-
readonly listStyle?: import("csstype").Property.ListStyle | import("csstype").Property.ListStyle[] | undefined;
|
|
440
|
-
readonly margin?: (string | (string & {}))[] | import("csstype").Property.Margin<string | number> | import("csstype").Property.Margin<string | number>[] | undefined;
|
|
441
|
-
readonly mask?: (string | (string & {}))[] | import("csstype").Property.Mask<string | number> | import("csstype").Property.Mask<string | number>[] | undefined;
|
|
442
|
-
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
443
|
-
readonly motion?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
444
|
-
readonly offset?: (string | (string & {}))[] | import("csstype").Property.Offset<string | number> | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
445
|
-
readonly outline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
446
|
-
readonly overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[] | undefined;
|
|
447
|
-
readonly overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
448
|
-
readonly padding?: (string | (string & {}))[] | import("csstype").Property.Padding<string | number> | import("csstype").Property.Padding<string | number>[] | undefined;
|
|
449
|
-
readonly placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[] | undefined;
|
|
450
|
-
readonly placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[] | undefined;
|
|
451
|
-
readonly textDecoration?: (string | (string & {}))[] | import("csstype").Property.TextDecoration<string | number> | import("csstype").Property.TextDecoration<string | number>[] | undefined;
|
|
452
|
-
readonly textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
453
|
-
readonly transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
454
|
-
readonly MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
455
|
-
readonly MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
456
|
-
readonly MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
457
|
-
readonly MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
458
|
-
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
459
|
-
readonly MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
460
|
-
readonly MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
461
|
-
readonly MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
462
|
-
readonly MozAppearance?: import("csstype").Property.MozAppearance | import("csstype").Property.MozAppearance[] | undefined;
|
|
463
|
-
readonly MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
464
|
-
readonly MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
465
|
-
readonly MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
466
|
-
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
467
|
-
readonly MozBorderEndWidth?: string[] | import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
468
|
-
readonly MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
469
|
-
readonly MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
470
|
-
readonly MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
471
|
-
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
472
|
-
readonly MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
473
|
-
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
474
|
-
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
475
|
-
readonly MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
476
|
-
readonly MozColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
477
|
-
readonly MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
478
|
-
readonly MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
479
|
-
readonly MozColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
480
|
-
readonly MozColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
481
|
-
readonly MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[] | undefined;
|
|
482
|
-
readonly MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
483
|
-
readonly MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
484
|
-
readonly MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
485
|
-
readonly MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[] | undefined;
|
|
486
|
-
readonly MozMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
487
|
-
readonly MozMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
488
|
-
readonly MozOrient?: import("csstype").Property.MozOrient | import("csstype").Property.MozOrient[] | undefined;
|
|
489
|
-
readonly MozOsxFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
490
|
-
readonly MozPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
491
|
-
readonly MozPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
492
|
-
readonly MozPerspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
493
|
-
readonly MozPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
494
|
-
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[] | undefined;
|
|
495
|
-
readonly MozTabSize?: (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
496
|
-
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[] | undefined;
|
|
497
|
-
readonly MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
498
|
-
readonly MozTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
499
|
-
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
500
|
-
readonly MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
501
|
-
readonly MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
502
|
-
readonly MozTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
503
|
-
readonly MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
504
|
-
readonly MozUserFocus?: import("csstype").Property.MozUserFocus | import("csstype").Property.MozUserFocus[] | undefined;
|
|
505
|
-
readonly MozUserModify?: import("csstype").Property.MozUserModify | import("csstype").Property.MozUserModify[] | undefined;
|
|
506
|
-
readonly MozUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
507
|
-
readonly MozWindowDragging?: import("csstype").Property.MozWindowDragging | import("csstype").Property.MozWindowDragging[] | undefined;
|
|
508
|
-
readonly MozWindowShadow?: import("csstype").Property.MozWindowShadow | import("csstype").Property.MozWindowShadow[] | undefined;
|
|
509
|
-
readonly msAccelerator?: import("csstype").Property.MsAccelerator | import("csstype").Property.MsAccelerator[] | undefined;
|
|
510
|
-
readonly msAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
511
|
-
readonly msBlockProgression?: import("csstype").Property.MsBlockProgression | import("csstype").Property.MsBlockProgression[] | undefined;
|
|
512
|
-
readonly msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
513
|
-
readonly msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
514
|
-
readonly msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
515
|
-
readonly msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
516
|
-
readonly msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
517
|
-
readonly msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[] | undefined;
|
|
518
|
-
readonly msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[] | undefined;
|
|
519
|
-
readonly msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
520
|
-
readonly msFlexPositive?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
521
|
-
readonly msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[] | undefined;
|
|
522
|
-
readonly msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[] | undefined;
|
|
523
|
-
readonly msGridColumns?: (string | (string & {}))[] | import("csstype").Property.MsGridColumns<string | number> | import("csstype").Property.MsGridColumns<string | number>[] | undefined;
|
|
524
|
-
readonly msGridRows?: (string | (string & {}))[] | import("csstype").Property.MsGridRows<string | number> | import("csstype").Property.MsGridRows<string | number>[] | undefined;
|
|
525
|
-
readonly msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
526
|
-
readonly msHyphenateLimitChars?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[] | undefined;
|
|
527
|
-
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | ((string & {}) | import("csstype").Globals | "no-limit")[] | undefined;
|
|
528
|
-
readonly msHyphenateLimitZone?: (string | (string & {}))[] | import("csstype").Property.MsHyphenateLimitZone<string | number> | import("csstype").Property.MsHyphenateLimitZone<string | number>[] | undefined;
|
|
529
|
-
readonly msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
530
|
-
readonly msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[] | undefined;
|
|
531
|
-
readonly msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
532
|
-
readonly msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
533
|
-
readonly msOrder?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
534
|
-
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
535
|
-
readonly msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
536
|
-
readonly msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
537
|
-
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[] | undefined;
|
|
538
|
-
readonly msScrollLimitXMax?: string[] | import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[] | undefined;
|
|
539
|
-
readonly msScrollLimitXMin?: string[] | import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[] | undefined;
|
|
540
|
-
readonly msScrollLimitYMax?: string[] | import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[] | undefined;
|
|
541
|
-
readonly msScrollLimitYMin?: string[] | import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[] | undefined;
|
|
542
|
-
readonly msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[] | undefined;
|
|
543
|
-
readonly msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
544
|
-
readonly msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
545
|
-
readonly msScrollSnapType?: import("csstype").Property.MsScrollSnapType | import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
546
|
-
readonly msScrollTranslation?: import("csstype").Property.MsScrollTranslation | import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
547
|
-
readonly msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
548
|
-
readonly msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
549
|
-
readonly msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
550
|
-
readonly msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
551
|
-
readonly msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
552
|
-
readonly msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
553
|
-
readonly msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
554
|
-
readonly msTextAutospace?: import("csstype").Property.MsTextAutospace | import("csstype").Property.MsTextAutospace[] | undefined;
|
|
555
|
-
readonly msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
556
|
-
readonly msTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
557
|
-
readonly msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
558
|
-
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[] | undefined;
|
|
559
|
-
readonly msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
560
|
-
readonly msTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
561
|
-
readonly msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
562
|
-
readonly msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
563
|
-
readonly msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
564
|
-
readonly msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
565
|
-
readonly msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[] | undefined;
|
|
566
|
-
readonly msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
567
|
-
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[] | undefined;
|
|
568
|
-
readonly msWrapMargin?: string[] | import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[] | undefined;
|
|
569
|
-
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[] | undefined;
|
|
570
|
-
readonly msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
571
|
-
readonly WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
572
|
-
readonly WebkitAlignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
573
|
-
readonly WebkitAlignSelf?: import("csstype").Property.AlignSelf | import("csstype").Property.AlignSelf[] | undefined;
|
|
574
|
-
readonly WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
575
|
-
readonly WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
576
|
-
readonly WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
577
|
-
readonly WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
578
|
-
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
579
|
-
readonly WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
580
|
-
readonly WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
581
|
-
readonly WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
582
|
-
readonly WebkitAppearance?: import("csstype").Property.WebkitAppearance | import("csstype").Property.WebkitAppearance[] | undefined;
|
|
583
|
-
readonly WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | import("csstype").Property.BackdropFilter[] | undefined;
|
|
584
|
-
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
585
|
-
readonly WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
586
|
-
readonly WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
587
|
-
readonly WebkitBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
588
|
-
readonly WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
589
|
-
readonly WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
590
|
-
readonly WebkitBorderBeforeWidth?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBeforeWidth<string | number> | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[] | undefined;
|
|
591
|
-
readonly WebkitBorderBottomLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
592
|
-
readonly WebkitBorderBottomRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
593
|
-
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | ((string & {}) | import("csstype").Globals)[] | undefined;
|
|
594
|
-
readonly WebkitBorderTopLeftRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
595
|
-
readonly WebkitBorderTopRightRadius?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
596
|
-
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
597
|
-
readonly WebkitBoxReflect?: (string | (string & {}))[] | import("csstype").Property.WebkitBoxReflect<string | number> | import("csstype").Property.WebkitBoxReflect<string | number>[] | undefined;
|
|
598
|
-
readonly WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
599
|
-
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
600
|
-
readonly WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
601
|
-
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | ((string & {}) | "auto" | import("csstype").Globals)[] | undefined;
|
|
602
|
-
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
603
|
-
readonly WebkitColumnGap?: (string | (string & {}))[] | import("csstype").Property.ColumnGap<string | number> | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
604
|
-
readonly WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
605
|
-
readonly WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
606
|
-
readonly WebkitColumnRuleWidth?: (string | (string & {}))[] | import("csstype").Property.ColumnRuleWidth<string | number> | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
607
|
-
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
608
|
-
readonly WebkitColumnWidth?: string[] | import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
609
|
-
readonly WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
610
|
-
readonly WebkitFlexBasis?: (string | (string & {}))[] | import("csstype").Property.FlexBasis<string | number> | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
611
|
-
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
612
|
-
readonly WebkitFlexGrow?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
613
|
-
readonly WebkitFlexShrink?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
614
|
-
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
615
|
-
readonly WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
616
|
-
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
617
|
-
readonly WebkitFontSmoothing?: string[] | import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
618
|
-
readonly WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
619
|
-
readonly WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
620
|
-
readonly WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
621
|
-
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | ((string & {}) | import("csstype").Globals | "normal")[] | undefined;
|
|
622
|
-
readonly WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
623
|
-
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
624
|
-
readonly WebkitLineClamp?: ("none" | (string & {}) | import("csstype").Globals)[] | import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[] | undefined;
|
|
625
|
-
readonly WebkitMarginEnd?: (string | (string & {}))[] | import("csstype").Property.MarginInlineEnd<string | number> | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
626
|
-
readonly WebkitMarginStart?: (string | (string & {}))[] | import("csstype").Property.MarginInlineStart<string | number> | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
627
|
-
readonly WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
628
|
-
readonly WebkitMaskBoxImageOutset?: (string | (string & {}))[] | import("csstype").Property.MaskBorderOutset<string | number> | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
629
|
-
readonly WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
630
|
-
readonly WebkitMaskBoxImageSlice?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
631
|
-
readonly WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
632
|
-
readonly WebkitMaskBoxImageWidth?: (string | (string & {}))[] | import("csstype").Property.MaskBorderWidth<string | number> | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
633
|
-
readonly WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
634
|
-
readonly WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
635
|
-
readonly WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
636
|
-
readonly WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
637
|
-
readonly WebkitMaskPosition?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPosition<string | number> | import("csstype").Property.WebkitMaskPosition<string | number>[] | undefined;
|
|
638
|
-
readonly WebkitMaskPositionX?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionX<string | number> | import("csstype").Property.WebkitMaskPositionX<string | number>[] | undefined;
|
|
639
|
-
readonly WebkitMaskPositionY?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskPositionY<string | number> | import("csstype").Property.WebkitMaskPositionY<string | number>[] | undefined;
|
|
640
|
-
readonly WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
641
|
-
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
642
|
-
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
643
|
-
readonly WebkitMaskSize?: (string | (string & {}))[] | import("csstype").Property.WebkitMaskSize<string | number> | import("csstype").Property.WebkitMaskSize<string | number>[] | undefined;
|
|
644
|
-
readonly WebkitMaxInlineSize?: (string | (string & {}))[] | import("csstype").Property.MaxInlineSize<string | number> | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
645
|
-
readonly WebkitOrder?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
646
|
-
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
647
|
-
readonly WebkitPaddingEnd?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineEnd<string | number> | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
648
|
-
readonly WebkitPaddingStart?: (string | (string & {}))[] | import("csstype").Property.PaddingInlineStart<string | number> | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
649
|
-
readonly WebkitPerspective?: string[] | import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
650
|
-
readonly WebkitPerspectiveOrigin?: (string | (string & {}))[] | import("csstype").Property.PerspectiveOrigin<string | number> | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
651
|
-
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
652
|
-
readonly WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
653
|
-
readonly WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
654
|
-
readonly WebkitShapeMargin?: (string | (string & {}))[] | import("csstype").Property.ShapeMargin<string | number> | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
655
|
-
readonly WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
656
|
-
readonly WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
657
|
-
readonly WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
658
|
-
readonly WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
659
|
-
readonly WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
660
|
-
readonly WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
661
|
-
readonly WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
662
|
-
readonly WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
663
|
-
readonly WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
664
|
-
readonly WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
665
|
-
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
666
|
-
readonly WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
667
|
-
readonly WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
668
|
-
readonly WebkitTextStrokeWidth?: string[] | import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[] | undefined;
|
|
669
|
-
readonly WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
670
|
-
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
671
|
-
readonly WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
672
|
-
readonly WebkitTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
673
|
-
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
674
|
-
readonly WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
675
|
-
readonly WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
676
|
-
readonly WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
677
|
-
readonly WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
678
|
-
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[] | undefined;
|
|
679
|
-
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
680
|
-
readonly WebkitWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
681
|
-
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
|
|
682
|
-
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
683
|
-
readonly MozColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
684
|
-
readonly MozColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
685
|
-
readonly MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
686
|
-
readonly msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
687
|
-
readonly msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
688
|
-
readonly msFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
689
|
-
readonly msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[] | undefined;
|
|
690
|
-
readonly msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
691
|
-
readonly msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
692
|
-
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 & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
|
|
694
|
-
readonly WebkitBorderBefore?: (string | (string & {}))[] | import("csstype").Property.WebkitBorderBefore<string | number> | import("csstype").Property.WebkitBorderBefore<string | number>[] | undefined;
|
|
695
|
-
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
696
|
-
readonly WebkitBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
697
|
-
readonly WebkitColumnRule?: (string | (string & {}))[] | import("csstype").Property.ColumnRule<string | number> | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
698
|
-
readonly WebkitColumns?: (string | (string & {}))[] | import("csstype").Property.Columns<string | number> | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
699
|
-
readonly WebkitFlex?: (string | (string & {}))[] | import("csstype").Property.Flex<string | number> | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
700
|
-
readonly WebkitFlexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
701
|
-
readonly WebkitMask?: (string | (string & {}))[] | import("csstype").Property.WebkitMask<string | number> | import("csstype").Property.WebkitMask<string | number>[] | undefined;
|
|
702
|
-
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space" | "alpha" | "luminance")[] | undefined;
|
|
703
|
-
readonly WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
704
|
-
readonly WebkitTextStroke?: (string | (string & {}))[] | import("csstype").Property.WebkitTextStroke<string | number> | import("csstype").Property.WebkitTextStroke<string | number>[] | undefined;
|
|
705
|
-
readonly WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
706
|
-
readonly azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[] | undefined;
|
|
707
|
-
readonly boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
708
|
-
readonly boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
709
|
-
readonly boxFlex?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
710
|
-
readonly boxFlexGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
711
|
-
readonly boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
712
|
-
readonly boxOrdinalGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
713
|
-
readonly boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
714
|
-
readonly boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
715
|
-
readonly clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[] | undefined;
|
|
716
|
-
readonly gridColumnGap?: (string | (string & {}))[] | import("csstype").Property.GridColumnGap<string | number> | import("csstype").Property.GridColumnGap<string | number>[] | undefined;
|
|
717
|
-
readonly gridGap?: (string | (string & {}))[] | import("csstype").Property.GridGap<string | number> | import("csstype").Property.GridGap<string | number>[] | undefined;
|
|
718
|
-
readonly gridRowGap?: (string | (string & {}))[] | import("csstype").Property.GridRowGap<string | number> | import("csstype").Property.GridRowGap<string | number>[] | undefined;
|
|
719
|
-
readonly imeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
720
|
-
readonly offsetBlock?: (string | (string & {}))[] | import("csstype").Property.InsetBlock<string | number> | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
721
|
-
readonly offsetBlockEnd?: (string | (string & {}))[] | import("csstype").Property.InsetBlockEnd<string | number> | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
722
|
-
readonly offsetBlockStart?: (string | (string & {}))[] | import("csstype").Property.InsetBlockStart<string | number> | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
723
|
-
readonly offsetInline?: (string | (string & {}))[] | import("csstype").Property.InsetInline<string | number> | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
724
|
-
readonly offsetInlineEnd?: (string | (string & {}))[] | import("csstype").Property.InsetInlineEnd<string | number> | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
725
|
-
readonly offsetInlineStart?: (string | (string & {}))[] | import("csstype").Property.InsetInlineStart<string | number> | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
726
|
-
readonly scrollSnapCoordinate?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapCoordinate<string | number> | import("csstype").Property.ScrollSnapCoordinate<string | number>[] | undefined;
|
|
727
|
-
readonly scrollSnapDestination?: (string | (string & {}))[] | import("csstype").Property.ScrollSnapDestination<string | number> | import("csstype").Property.ScrollSnapDestination<string | number>[] | undefined;
|
|
728
|
-
readonly scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
729
|
-
readonly scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
730
|
-
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
731
|
-
readonly scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
732
|
-
readonly scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
733
|
-
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
734
|
-
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
735
|
-
readonly KhtmlBoxFlex?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
736
|
-
readonly KhtmlBoxFlexGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
737
|
-
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
738
|
-
readonly KhtmlBoxOrdinalGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
739
|
-
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
740
|
-
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
741
|
-
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
742
|
-
readonly KhtmlOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
743
|
-
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
744
|
-
readonly MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
745
|
-
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
746
|
-
readonly MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
747
|
-
readonly MozBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
748
|
-
readonly MozBinding?: import("csstype").Property.MozBinding | import("csstype").Property.MozBinding[] | undefined;
|
|
749
|
-
readonly MozBorderRadius?: (string | (string & {}))[] | import("csstype").Property.BorderRadius<string | number> | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
750
|
-
readonly MozBorderRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.BorderBottomLeftRadius<string | number> | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
751
|
-
readonly MozBorderRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.BorderBottomRightRadius<string | number> | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
752
|
-
readonly MozBorderRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.BorderTopLeftRadius<string | number> | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
753
|
-
readonly MozBorderRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.BorderTopRightRadius<string | number> | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
754
|
-
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
755
|
-
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
756
|
-
readonly MozBoxFlex?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
757
|
-
readonly MozBoxOrdinalGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
758
|
-
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
759
|
-
readonly MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
760
|
-
readonly MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
761
|
-
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[] | undefined;
|
|
762
|
-
readonly MozForceBrokenImageIcon?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[] | undefined;
|
|
763
|
-
readonly MozOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
764
|
-
readonly MozOutline?: (string | (string & {}))[] | import("csstype").Property.Outline<string | number> | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
765
|
-
readonly MozOutlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
766
|
-
readonly MozOutlineRadius?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadius<string | number> | import("csstype").Property.MozOutlineRadius<string | number>[] | undefined;
|
|
767
|
-
readonly MozOutlineRadiusBottomleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[] | undefined;
|
|
768
|
-
readonly MozOutlineRadiusBottomright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusBottomright<string | number> | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[] | undefined;
|
|
769
|
-
readonly MozOutlineRadiusTopleft?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopleft<string | number> | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[] | undefined;
|
|
770
|
-
readonly MozOutlineRadiusTopright?: (string | (string & {}))[] | import("csstype").Property.MozOutlineRadiusTopright<string | number> | import("csstype").Property.MozOutlineRadiusTopright<string | number>[] | undefined;
|
|
771
|
-
readonly MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
772
|
-
readonly MozOutlineWidth?: string[] | import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
773
|
-
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
774
|
-
readonly MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
775
|
-
readonly MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
776
|
-
readonly MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
777
|
-
readonly MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[] | undefined;
|
|
778
|
-
readonly msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
779
|
-
readonly msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
780
|
-
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | (import("csstype").Globals | ("normal" | "alternate" | "alternate-reverse" | "reverse") | ("none" | "backwards" | "both" | "forwards") | "infinite" | "paused" | "running" | ((string & {}) | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear"))[] | undefined;
|
|
781
|
-
readonly OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
782
|
-
readonly OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
783
|
-
readonly OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
784
|
-
readonly OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
785
|
-
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | ((string & {}) | import("csstype").Globals | "infinite")[] | undefined;
|
|
786
|
-
readonly OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
787
|
-
readonly OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
788
|
-
readonly OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
789
|
-
readonly OBackgroundSize?: (string | (string & {}))[] | import("csstype").Property.BackgroundSize<string | number> | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
790
|
-
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | ("repeat" | "none" | (string & {}) | "round" | import("csstype").Globals | "stretch" | "space")[] | undefined;
|
|
791
|
-
readonly OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
792
|
-
readonly OObjectPosition?: (string | (string & {}))[] | import("csstype").Property.ObjectPosition<string | number> | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
793
|
-
readonly OTabSize?: (string | (string & {}))[] | import("csstype").Property.TabSize<string | number> | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
794
|
-
readonly OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
795
|
-
readonly OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
796
|
-
readonly OTransformOrigin?: (string | (string & {}))[] | import("csstype").Property.TransformOrigin<string | number> | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
797
|
-
readonly OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
798
|
-
readonly OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
799
|
-
readonly OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
800
|
-
readonly OTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
801
|
-
readonly OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
802
|
-
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
803
|
-
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
804
|
-
readonly WebkitBoxFlex?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
805
|
-
readonly WebkitBoxFlexGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
806
|
-
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
807
|
-
readonly WebkitBoxOrdinalGroup?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
808
|
-
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
809
|
-
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
810
|
-
readonly WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
811
|
-
readonly WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
812
|
-
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
813
|
-
readonly baselineShift?: (string | (string & {}))[] | import("csstype").Property.BaselineShift<string | number> | import("csstype").Property.BaselineShift<string | number>[] | undefined;
|
|
814
|
-
readonly clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[] | undefined;
|
|
815
|
-
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[] | undefined;
|
|
816
|
-
readonly colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[] | undefined;
|
|
817
|
-
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[] | undefined;
|
|
818
|
-
readonly fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[] | undefined;
|
|
819
|
-
readonly fillOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[] | undefined;
|
|
820
|
-
readonly fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[] | undefined;
|
|
821
|
-
readonly floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[] | undefined;
|
|
822
|
-
readonly floodOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[] | undefined;
|
|
823
|
-
readonly glyphOrientationVertical?: ((string & {}) | "auto" | import("csstype").Globals)[] | import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[] | undefined;
|
|
824
|
-
readonly lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[] | undefined;
|
|
825
|
-
readonly marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[] | undefined;
|
|
826
|
-
readonly markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[] | undefined;
|
|
827
|
-
readonly markerMid?: import("csstype").Property.MarkerMid | import("csstype").Property.MarkerMid[] | undefined;
|
|
828
|
-
readonly markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[] | undefined;
|
|
829
|
-
readonly shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[] | undefined;
|
|
830
|
-
readonly stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[] | undefined;
|
|
831
|
-
readonly stopOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[] | undefined;
|
|
832
|
-
readonly stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[] | undefined;
|
|
833
|
-
readonly strokeDasharray?: (string | (string & {}))[] | import("csstype").Property.StrokeDasharray<string | number> | import("csstype").Property.StrokeDasharray<string | number>[] | undefined;
|
|
834
|
-
readonly strokeDashoffset?: (string | (string & {}))[] | import("csstype").Property.StrokeDashoffset<string | number> | import("csstype").Property.StrokeDashoffset<string | number>[] | undefined;
|
|
835
|
-
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[] | undefined;
|
|
836
|
-
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
837
|
-
readonly strokeMiterlimit?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[] | undefined;
|
|
838
|
-
readonly strokeOpacity?: ((string & {}) | import("csstype").Globals)[] | import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[] | undefined;
|
|
839
|
-
readonly strokeWidth?: (string | (string & {}))[] | import("csstype").Property.StrokeWidth<string | number> | import("csstype").Property.StrokeWidth<string | number>[] | undefined;
|
|
840
|
-
readonly textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[] | undefined;
|
|
841
|
-
readonly vectorEffect?: import("csstype").Property.VectorEffect | import("csstype").Property.VectorEffect[] | undefined;
|
|
842
|
-
readonly ":-moz-any()"?: import("@emotion/css").CSSObject | undefined;
|
|
843
|
-
readonly ":-moz-dir"?: import("@emotion/css").CSSObject | undefined;
|
|
844
|
-
readonly ":-webkit-any()"?: import("@emotion/css").CSSObject | undefined;
|
|
845
|
-
readonly "::cue"?: import("@emotion/css").CSSObject | undefined;
|
|
846
|
-
readonly "::cue-region"?: import("@emotion/css").CSSObject | undefined;
|
|
847
|
-
readonly "::part"?: import("@emotion/css").CSSObject | undefined;
|
|
848
|
-
readonly "::slotted"?: import("@emotion/css").CSSObject | undefined;
|
|
849
|
-
readonly ":dir"?: import("@emotion/css").CSSObject | undefined;
|
|
850
|
-
readonly ":has"?: import("@emotion/css").CSSObject | undefined;
|
|
851
|
-
readonly ":host"?: import("@emotion/css").CSSObject | undefined;
|
|
852
|
-
readonly ":host-context"?: import("@emotion/css").CSSObject | undefined;
|
|
853
|
-
readonly ":is"?: import("@emotion/css").CSSObject | undefined;
|
|
854
|
-
readonly ":lang"?: import("@emotion/css").CSSObject | undefined;
|
|
855
|
-
readonly ":matches()"?: import("@emotion/css").CSSObject | undefined;
|
|
856
|
-
readonly ":not"?: import("@emotion/css").CSSObject | undefined;
|
|
857
|
-
readonly ":nth-child"?: import("@emotion/css").CSSObject | undefined;
|
|
858
|
-
readonly ":nth-last-child"?: import("@emotion/css").CSSObject | undefined;
|
|
859
|
-
readonly ":nth-last-of-type"?: import("@emotion/css").CSSObject | undefined;
|
|
860
|
-
readonly ":nth-of-type"?: import("@emotion/css").CSSObject | undefined;
|
|
861
|
-
readonly ":where"?: import("@emotion/css").CSSObject | undefined;
|
|
862
|
-
readonly ":-khtml-any-link"?: import("@emotion/css").CSSObject | undefined;
|
|
863
|
-
readonly ":-moz-any-link"?: import("@emotion/css").CSSObject | undefined;
|
|
864
|
-
readonly ":-moz-focusring"?: import("@emotion/css").CSSObject | undefined;
|
|
865
|
-
readonly ":-moz-full-screen"?: import("@emotion/css").CSSObject | undefined;
|
|
866
|
-
readonly ":-moz-placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
867
|
-
readonly ":-moz-read-only"?: import("@emotion/css").CSSObject | undefined;
|
|
868
|
-
readonly ":-moz-read-write"?: import("@emotion/css").CSSObject | undefined;
|
|
869
|
-
readonly ":-moz-ui-invalid"?: import("@emotion/css").CSSObject | undefined;
|
|
870
|
-
readonly ":-moz-ui-valid"?: import("@emotion/css").CSSObject | undefined;
|
|
871
|
-
readonly ":-ms-fullscreen"?: import("@emotion/css").CSSObject | undefined;
|
|
872
|
-
readonly ":-ms-input-placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
873
|
-
readonly ":-webkit-any-link"?: import("@emotion/css").CSSObject | undefined;
|
|
874
|
-
readonly ":-webkit-full-screen"?: import("@emotion/css").CSSObject | undefined;
|
|
875
|
-
readonly "::-moz-placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
876
|
-
readonly "::-moz-progress-bar"?: import("@emotion/css").CSSObject | undefined;
|
|
877
|
-
readonly "::-moz-range-progress"?: import("@emotion/css").CSSObject | undefined;
|
|
878
|
-
readonly "::-moz-range-thumb"?: import("@emotion/css").CSSObject | undefined;
|
|
879
|
-
readonly "::-moz-range-track"?: import("@emotion/css").CSSObject | undefined;
|
|
880
|
-
readonly "::-moz-selection"?: import("@emotion/css").CSSObject | undefined;
|
|
881
|
-
readonly "::-ms-backdrop"?: import("@emotion/css").CSSObject | undefined;
|
|
882
|
-
readonly "::-ms-browse"?: import("@emotion/css").CSSObject | undefined;
|
|
883
|
-
readonly "::-ms-check"?: import("@emotion/css").CSSObject | undefined;
|
|
884
|
-
readonly "::-ms-clear"?: import("@emotion/css").CSSObject | undefined;
|
|
885
|
-
readonly "::-ms-fill"?: import("@emotion/css").CSSObject | undefined;
|
|
886
|
-
readonly "::-ms-fill-lower"?: import("@emotion/css").CSSObject | undefined;
|
|
887
|
-
readonly "::-ms-fill-upper"?: import("@emotion/css").CSSObject | undefined;
|
|
888
|
-
readonly "::-ms-input-placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
889
|
-
readonly "::-ms-reveal"?: import("@emotion/css").CSSObject | undefined;
|
|
890
|
-
readonly "::-ms-thumb"?: import("@emotion/css").CSSObject | undefined;
|
|
891
|
-
readonly "::-ms-ticks-after"?: import("@emotion/css").CSSObject | undefined;
|
|
892
|
-
readonly "::-ms-ticks-before"?: import("@emotion/css").CSSObject | undefined;
|
|
893
|
-
readonly "::-ms-tooltip"?: import("@emotion/css").CSSObject | undefined;
|
|
894
|
-
readonly "::-ms-track"?: import("@emotion/css").CSSObject | undefined;
|
|
895
|
-
readonly "::-ms-value"?: import("@emotion/css").CSSObject | undefined;
|
|
896
|
-
readonly "::-webkit-backdrop"?: import("@emotion/css").CSSObject | undefined;
|
|
897
|
-
readonly "::-webkit-input-placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
898
|
-
readonly "::-webkit-progress-bar"?: import("@emotion/css").CSSObject | undefined;
|
|
899
|
-
readonly "::-webkit-progress-inner-value"?: import("@emotion/css").CSSObject | undefined;
|
|
900
|
-
readonly "::-webkit-progress-value"?: import("@emotion/css").CSSObject | undefined;
|
|
901
|
-
readonly "::-webkit-slider-runnable-track"?: import("@emotion/css").CSSObject | undefined;
|
|
902
|
-
readonly "::-webkit-slider-thumb"?: import("@emotion/css").CSSObject | undefined;
|
|
903
|
-
readonly "::after"?: import("@emotion/css").CSSObject | undefined;
|
|
904
|
-
readonly "::backdrop"?: import("@emotion/css").CSSObject | undefined;
|
|
905
|
-
readonly "::before"?: import("@emotion/css").CSSObject | undefined;
|
|
906
|
-
readonly "::first-letter"?: import("@emotion/css").CSSObject | undefined;
|
|
907
|
-
readonly "::first-line"?: import("@emotion/css").CSSObject | undefined;
|
|
908
|
-
readonly "::grammar-error"?: import("@emotion/css").CSSObject | undefined;
|
|
909
|
-
readonly "::marker"?: import("@emotion/css").CSSObject | undefined;
|
|
910
|
-
readonly "::placeholder"?: import("@emotion/css").CSSObject | undefined;
|
|
911
|
-
readonly "::selection"?: import("@emotion/css").CSSObject | undefined;
|
|
912
|
-
readonly "::spelling-error"?: import("@emotion/css").CSSObject | undefined;
|
|
913
|
-
readonly "::target-text"?: import("@emotion/css").CSSObject | undefined;
|
|
914
|
-
readonly ":active"?: import("@emotion/css").CSSObject | undefined;
|
|
915
|
-
readonly ":after"?: import("@emotion/css").CSSObject | undefined;
|
|
916
|
-
readonly ":any-link"?: import("@emotion/css").CSSObject | undefined;
|
|
917
|
-
readonly ":before"?: import("@emotion/css").CSSObject | undefined;
|
|
918
|
-
readonly ":blank"?: import("@emotion/css").CSSObject | undefined;
|
|
919
|
-
readonly ":checked"?: import("@emotion/css").CSSObject | undefined;
|
|
920
|
-
readonly ":current"?: import("@emotion/css").CSSObject | undefined;
|
|
921
|
-
readonly ":default"?: import("@emotion/css").CSSObject | undefined;
|
|
922
|
-
readonly ":defined"?: import("@emotion/css").CSSObject | undefined;
|
|
923
|
-
readonly ":disabled"?: import("@emotion/css").CSSObject | undefined;
|
|
924
|
-
readonly ":empty"?: import("@emotion/css").CSSObject | undefined;
|
|
925
|
-
readonly ":enabled"?: import("@emotion/css").CSSObject | undefined;
|
|
926
|
-
readonly ":first"?: import("@emotion/css").CSSObject | undefined;
|
|
927
|
-
readonly ":first-child"?: import("@emotion/css").CSSObject | undefined;
|
|
928
|
-
readonly ":first-letter"?: import("@emotion/css").CSSObject | undefined;
|
|
929
|
-
readonly ":first-line"?: import("@emotion/css").CSSObject | undefined;
|
|
930
|
-
readonly ":first-of-type"?: import("@emotion/css").CSSObject | undefined;
|
|
931
|
-
readonly ":focus-visible"?: import("@emotion/css").CSSObject | undefined;
|
|
932
|
-
readonly ":focus-within"?: import("@emotion/css").CSSObject | undefined;
|
|
933
|
-
readonly ":fullscreen"?: import("@emotion/css").CSSObject | undefined;
|
|
934
|
-
readonly ":future"?: import("@emotion/css").CSSObject | undefined;
|
|
935
|
-
readonly ":hover"?: import("@emotion/css").CSSObject | undefined;
|
|
936
|
-
readonly ":in-range"?: import("@emotion/css").CSSObject | undefined;
|
|
937
|
-
readonly ":indeterminate"?: import("@emotion/css").CSSObject | undefined;
|
|
938
|
-
readonly ":invalid"?: import("@emotion/css").CSSObject | undefined;
|
|
939
|
-
readonly ":last-child"?: import("@emotion/css").CSSObject | undefined;
|
|
940
|
-
readonly ":last-of-type"?: import("@emotion/css").CSSObject | undefined;
|
|
941
|
-
readonly ":left"?: import("@emotion/css").CSSObject | undefined;
|
|
942
|
-
readonly ":link"?: import("@emotion/css").CSSObject | undefined;
|
|
943
|
-
readonly ":local-link"?: import("@emotion/css").CSSObject | undefined;
|
|
944
|
-
readonly ":nth-col"?: import("@emotion/css").CSSObject | undefined;
|
|
945
|
-
readonly ":nth-last-col"?: import("@emotion/css").CSSObject | undefined;
|
|
946
|
-
readonly ":only-child"?: import("@emotion/css").CSSObject | undefined;
|
|
947
|
-
readonly ":only-of-type"?: import("@emotion/css").CSSObject | undefined;
|
|
948
|
-
readonly ":optional"?: import("@emotion/css").CSSObject | undefined;
|
|
949
|
-
readonly ":out-of-range"?: import("@emotion/css").CSSObject | undefined;
|
|
950
|
-
readonly ":past"?: import("@emotion/css").CSSObject | undefined;
|
|
951
|
-
readonly ":paused"?: import("@emotion/css").CSSObject | undefined;
|
|
952
|
-
readonly ":picture-in-picture"?: import("@emotion/css").CSSObject | undefined;
|
|
953
|
-
readonly ":placeholder-shown"?: import("@emotion/css").CSSObject | undefined;
|
|
954
|
-
readonly ":read-only"?: import("@emotion/css").CSSObject | undefined;
|
|
955
|
-
readonly ":read-write"?: import("@emotion/css").CSSObject | undefined;
|
|
956
|
-
readonly ":required"?: import("@emotion/css").CSSObject | undefined;
|
|
957
|
-
readonly ":right"?: import("@emotion/css").CSSObject | undefined;
|
|
958
|
-
readonly ":root"?: import("@emotion/css").CSSObject | undefined;
|
|
959
|
-
readonly ":scope"?: import("@emotion/css").CSSObject | undefined;
|
|
960
|
-
readonly ":target"?: import("@emotion/css").CSSObject | undefined;
|
|
961
|
-
readonly ":target-within"?: import("@emotion/css").CSSObject | undefined;
|
|
962
|
-
readonly ":user-invalid"?: import("@emotion/css").CSSObject | undefined;
|
|
963
|
-
readonly ":user-valid"?: import("@emotion/css").CSSObject | undefined;
|
|
964
|
-
readonly ":valid"?: import("@emotion/css").CSSObject | undefined;
|
|
965
|
-
readonly ":visited"?: import("@emotion/css").CSSObject | undefined;
|
|
966
|
-
} | {
|
|
967
48
|
readonly ':enabled': {
|
|
968
|
-
'
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
49
|
+
readonly ':focus + [data-focus-indicator]': {
|
|
50
|
+
readonly boxShadow: string;
|
|
51
|
+
readonly outline: string;
|
|
52
|
+
readonly outlineOffset: string;
|
|
53
|
+
readonly borderColor: string;
|
|
972
54
|
} | {
|
|
973
|
-
|
|
974
|
-
|
|
55
|
+
readonly outline: string;
|
|
56
|
+
readonly outlineOffset: string;
|
|
57
|
+
readonly borderColor: string;
|
|
975
58
|
};
|
|
976
59
|
};
|
|
977
|
-
readonly ':focus-within': {
|
|
978
|
-
borderColor: string;
|
|
979
|
-
boxShadow: string;
|
|
980
|
-
outline: number;
|
|
981
|
-
} | {
|
|
982
|
-
borderColor: string;
|
|
983
|
-
outline: number;
|
|
984
|
-
};
|
|
985
60
|
readonly accentColor?: import("csstype").Property.AccentColor | import("csstype").Property.AccentColor[] | undefined;
|
|
986
61
|
readonly alignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
987
62
|
readonly alignItems?: import("csstype").Property.AlignItems | import("csstype").Property.AlignItems[] | undefined;
|
|
@@ -991,7 +66,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
991
66
|
readonly animationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
992
67
|
readonly animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
993
68
|
readonly animationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
994
|
-
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
69
|
+
readonly animationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
995
70
|
readonly animationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
996
71
|
readonly animationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
997
72
|
readonly animationTimeline?: import("csstype").Property.AnimationTimeline | import("csstype").Property.AnimationTimeline[] | undefined;
|
|
@@ -1006,58 +81,58 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1006
81
|
readonly backgroundColor?: import("csstype").Property.BackgroundColor | import("csstype").Property.BackgroundColor[] | undefined;
|
|
1007
82
|
readonly backgroundImage?: import("csstype").Property.BackgroundImage | import("csstype").Property.BackgroundImage[] | undefined;
|
|
1008
83
|
readonly backgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1009
|
-
readonly backgroundPositionX?:
|
|
1010
|
-
readonly backgroundPositionY?:
|
|
84
|
+
readonly backgroundPositionX?: string | number | import("csstype").Property.BackgroundPositionX<string | number>[] | undefined;
|
|
85
|
+
readonly backgroundPositionY?: string | number | import("csstype").Property.BackgroundPositionY<string | number>[] | undefined;
|
|
1011
86
|
readonly backgroundRepeat?: import("csstype").Property.BackgroundRepeat | import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
1012
|
-
readonly backgroundSize?:
|
|
87
|
+
readonly backgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1013
88
|
readonly blockOverflow?: import("csstype").Property.BlockOverflow | import("csstype").Property.BlockOverflow[] | undefined;
|
|
1014
|
-
readonly blockSize?:
|
|
89
|
+
readonly blockSize?: string | number | import("csstype").Property.BlockSize<string | number>[] | undefined;
|
|
1015
90
|
readonly borderBlockColor?: import("csstype").Property.BorderBlockColor | import("csstype").Property.BorderBlockColor[] | undefined;
|
|
1016
91
|
readonly borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
1017
92
|
readonly borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
1018
|
-
readonly borderBlockEndWidth?:
|
|
93
|
+
readonly borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | import("csstype").Property.BorderBlockEndWidth<string | number>[] | undefined;
|
|
1019
94
|
readonly borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
1020
95
|
readonly borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
1021
|
-
readonly borderBlockStartWidth?:
|
|
96
|
+
readonly borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | import("csstype").Property.BorderBlockStartWidth<string | number>[] | undefined;
|
|
1022
97
|
readonly borderBlockStyle?: import("csstype").Property.BorderBlockStyle | import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
1023
|
-
readonly borderBlockWidth?:
|
|
98
|
+
readonly borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | import("csstype").Property.BorderBlockWidth<string | number>[] | undefined;
|
|
1024
99
|
readonly borderBottomColor?: import("csstype").Property.BorderBottomColor | import("csstype").Property.BorderBottomColor[] | undefined;
|
|
1025
|
-
readonly borderBottomLeftRadius?:
|
|
1026
|
-
readonly borderBottomRightRadius?:
|
|
100
|
+
readonly borderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
101
|
+
readonly borderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
1027
102
|
readonly borderBottomStyle?: import("csstype").Property.BorderBottomStyle | import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
1028
|
-
readonly borderBottomWidth?:
|
|
103
|
+
readonly borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | import("csstype").Property.BorderBottomWidth<string | number>[] | undefined;
|
|
1029
104
|
readonly borderCollapse?: import("csstype").Property.BorderCollapse | import("csstype").Property.BorderCollapse[] | undefined;
|
|
1030
|
-
readonly borderEndEndRadius?:
|
|
1031
|
-
readonly borderEndStartRadius?:
|
|
1032
|
-
readonly borderImageOutset?:
|
|
105
|
+
readonly borderEndEndRadius?: string | number | import("csstype").Property.BorderEndEndRadius<string | number>[] | undefined;
|
|
106
|
+
readonly borderEndStartRadius?: string | number | import("csstype").Property.BorderEndStartRadius<string | number>[] | undefined;
|
|
107
|
+
readonly borderImageOutset?: string | number | import("csstype").Property.BorderImageOutset<string | number>[] | undefined;
|
|
1033
108
|
readonly borderImageRepeat?: import("csstype").Property.BorderImageRepeat | import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
1034
|
-
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] |
|
|
109
|
+
readonly borderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
1035
110
|
readonly borderImageSource?: import("csstype").Property.BorderImageSource | import("csstype").Property.BorderImageSource[] | undefined;
|
|
1036
|
-
readonly borderImageWidth?:
|
|
111
|
+
readonly borderImageWidth?: string | number | import("csstype").Property.BorderImageWidth<string | number>[] | undefined;
|
|
1037
112
|
readonly borderInlineColor?: import("csstype").Property.BorderInlineColor | import("csstype").Property.BorderInlineColor[] | undefined;
|
|
1038
113
|
readonly borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1039
114
|
readonly borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1040
|
-
readonly borderInlineEndWidth?:
|
|
115
|
+
readonly borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
1041
116
|
readonly borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1042
117
|
readonly borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1043
|
-
readonly borderInlineStartWidth?:
|
|
118
|
+
readonly borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | import("csstype").Property.BorderInlineStartWidth<string | number>[] | undefined;
|
|
1044
119
|
readonly borderInlineStyle?: import("csstype").Property.BorderInlineStyle | import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
1045
|
-
readonly borderInlineWidth?:
|
|
120
|
+
readonly borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | import("csstype").Property.BorderInlineWidth<string | number>[] | undefined;
|
|
1046
121
|
readonly borderLeftColor?: import("csstype").Property.BorderLeftColor | import("csstype").Property.BorderLeftColor[] | undefined;
|
|
1047
122
|
readonly borderLeftStyle?: import("csstype").Property.BorderLeftStyle | import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
1048
|
-
readonly borderLeftWidth?:
|
|
123
|
+
readonly borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | import("csstype").Property.BorderLeftWidth<string | number>[] | undefined;
|
|
1049
124
|
readonly borderRightColor?: import("csstype").Property.BorderRightColor | import("csstype").Property.BorderRightColor[] | undefined;
|
|
1050
125
|
readonly borderRightStyle?: import("csstype").Property.BorderRightStyle | import("csstype").Property.BorderRightStyle[] | undefined;
|
|
1051
|
-
readonly borderRightWidth?:
|
|
1052
|
-
readonly borderSpacing?:
|
|
1053
|
-
readonly borderStartEndRadius?:
|
|
1054
|
-
readonly borderStartStartRadius?:
|
|
126
|
+
readonly borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | import("csstype").Property.BorderRightWidth<string | number>[] | undefined;
|
|
127
|
+
readonly borderSpacing?: string | number | import("csstype").Property.BorderSpacing<string | number>[] | undefined;
|
|
128
|
+
readonly borderStartEndRadius?: string | number | import("csstype").Property.BorderStartEndRadius<string | number>[] | undefined;
|
|
129
|
+
readonly borderStartStartRadius?: string | number | import("csstype").Property.BorderStartStartRadius<string | number>[] | undefined;
|
|
1055
130
|
readonly borderTopColor?: import("csstype").Property.BorderTopColor | import("csstype").Property.BorderTopColor[] | undefined;
|
|
1056
|
-
readonly borderTopLeftRadius?:
|
|
1057
|
-
readonly borderTopRightRadius?:
|
|
131
|
+
readonly borderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
132
|
+
readonly borderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1058
133
|
readonly borderTopStyle?: import("csstype").Property.BorderTopStyle | import("csstype").Property.BorderTopStyle[] | undefined;
|
|
1059
|
-
readonly borderTopWidth?:
|
|
1060
|
-
readonly bottom?:
|
|
134
|
+
readonly borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | import("csstype").Property.BorderTopWidth<string | number>[] | undefined;
|
|
135
|
+
readonly bottom?: string | number | import("csstype").Property.Bottom<string | number>[] | undefined;
|
|
1061
136
|
readonly boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1062
137
|
readonly boxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1063
138
|
readonly boxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
@@ -1071,14 +146,14 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1071
146
|
readonly color?: import("csstype").Property.Color | import("csstype").Property.Color[] | undefined;
|
|
1072
147
|
readonly colorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1073
148
|
readonly colorScheme?: import("csstype").Property.ColorScheme | import("csstype").Property.ColorScheme[] | undefined;
|
|
1074
|
-
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
149
|
+
readonly columnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1075
150
|
readonly columnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1076
|
-
readonly columnGap?:
|
|
151
|
+
readonly columnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1077
152
|
readonly columnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1078
153
|
readonly columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1079
|
-
readonly columnRuleWidth?:
|
|
154
|
+
readonly columnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
1080
155
|
readonly columnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
1081
|
-
readonly columnWidth?:
|
|
156
|
+
readonly columnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1082
157
|
readonly contain?: import("csstype").Property.Contain | import("csstype").Property.Contain[] | undefined;
|
|
1083
158
|
readonly content?: import("csstype").Property.Content | import("csstype").Property.Content[] | undefined;
|
|
1084
159
|
readonly contentVisibility?: import("csstype").Property.ContentVisibility | import("csstype").Property.ContentVisibility[] | undefined;
|
|
@@ -1090,10 +165,10 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1090
165
|
readonly display?: import("csstype").Property.Display | import("csstype").Property.Display[] | undefined;
|
|
1091
166
|
readonly emptyCells?: import("csstype").Property.EmptyCells | import("csstype").Property.EmptyCells[] | undefined;
|
|
1092
167
|
readonly filter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
1093
|
-
readonly flexBasis?:
|
|
168
|
+
readonly flexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
1094
169
|
readonly flexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1095
|
-
readonly flexGrow?:
|
|
1096
|
-
readonly flexShrink?:
|
|
170
|
+
readonly flexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
171
|
+
readonly flexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
1097
172
|
readonly flexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
1098
173
|
readonly float?: import("csstype").Property.Float | import("csstype").Property.Float[] | undefined;
|
|
1099
174
|
readonly fontFamily?: import("csstype").Property.FontFamily | import("csstype").Property.FontFamily[] | undefined;
|
|
@@ -1101,9 +176,9 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1101
176
|
readonly fontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
1102
177
|
readonly fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1103
178
|
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?:
|
|
179
|
+
readonly fontSize?: string | number | import("csstype").Property.FontSize<string | number>[] | undefined;
|
|
180
|
+
readonly fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | import("csstype").Property.FontSizeAdjust[] | undefined;
|
|
181
|
+
readonly fontSmooth?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
1107
182
|
readonly fontStretch?: import("csstype").Property.FontStretch | import("csstype").Property.FontStretch[] | undefined;
|
|
1108
183
|
readonly fontStyle?: import("csstype").Property.FontStyle | import("csstype").Property.FontStyle[] | undefined;
|
|
1109
184
|
readonly fontSynthesis?: import("csstype").Property.FontSynthesis | import("csstype").Property.FontSynthesis[] | undefined;
|
|
@@ -1115,105 +190,105 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1115
190
|
readonly fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
1116
191
|
readonly fontVariantPosition?: import("csstype").Property.FontVariantPosition | import("csstype").Property.FontVariantPosition[] | undefined;
|
|
1117
192
|
readonly fontVariationSettings?: import("csstype").Property.FontVariationSettings | import("csstype").Property.FontVariationSettings[] | undefined;
|
|
1118
|
-
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] |
|
|
193
|
+
readonly fontWeight?: import("csstype").Property.FontWeight | import("csstype").Property.FontWeight[] | undefined;
|
|
1119
194
|
readonly forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
1120
|
-
readonly gridAutoColumns?:
|
|
195
|
+
readonly gridAutoColumns?: string | number | import("csstype").Property.GridAutoColumns<string | number>[] | undefined;
|
|
1121
196
|
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?:
|
|
197
|
+
readonly gridAutoRows?: string | number | import("csstype").Property.GridAutoRows<string | number>[] | undefined;
|
|
198
|
+
readonly gridColumnEnd?: import("csstype").Property.GridColumnEnd | import("csstype").Property.GridColumnEnd[] | undefined;
|
|
199
|
+
readonly gridColumnStart?: import("csstype").Property.GridColumnStart | import("csstype").Property.GridColumnStart[] | undefined;
|
|
200
|
+
readonly gridRowEnd?: import("csstype").Property.GridRowEnd | import("csstype").Property.GridRowEnd[] | undefined;
|
|
201
|
+
readonly gridRowStart?: import("csstype").Property.GridRowStart | import("csstype").Property.GridRowStart[] | undefined;
|
|
1127
202
|
readonly gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
1128
|
-
readonly gridTemplateColumns?:
|
|
1129
|
-
readonly gridTemplateRows?:
|
|
203
|
+
readonly gridTemplateColumns?: string | number | import("csstype").Property.GridTemplateColumns<string | number>[] | undefined;
|
|
204
|
+
readonly gridTemplateRows?: string | number | import("csstype").Property.GridTemplateRows<string | number>[] | undefined;
|
|
1130
205
|
readonly hangingPunctuation?: import("csstype").Property.HangingPunctuation | import("csstype").Property.HangingPunctuation[] | undefined;
|
|
1131
|
-
readonly height?:
|
|
206
|
+
readonly height?: string | number | import("csstype").Property.Height<string | number>[] | undefined;
|
|
1132
207
|
readonly hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1133
208
|
readonly hyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1134
209
|
readonly imageOrientation?: import("csstype").Property.ImageOrientation | import("csstype").Property.ImageOrientation[] | undefined;
|
|
1135
210
|
readonly imageRendering?: import("csstype").Property.ImageRendering | import("csstype").Property.ImageRendering[] | undefined;
|
|
1136
211
|
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?:
|
|
212
|
+
readonly initialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
213
|
+
readonly inlineSize?: string | number | import("csstype").Property.InlineSize<string | number>[] | undefined;
|
|
1139
214
|
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?:
|
|
215
|
+
readonly inset?: string | number | import("csstype").Property.Inset<string | number>[] | undefined;
|
|
216
|
+
readonly insetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
217
|
+
readonly insetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
218
|
+
readonly insetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
219
|
+
readonly insetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
220
|
+
readonly insetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
221
|
+
readonly insetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
1147
222
|
readonly isolation?: import("csstype").Property.Isolation | import("csstype").Property.Isolation[] | undefined;
|
|
1148
223
|
readonly justifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
1149
224
|
readonly justifyItems?: import("csstype").Property.JustifyItems | import("csstype").Property.JustifyItems[] | undefined;
|
|
1150
225
|
readonly justifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
1151
226
|
readonly justifyTracks?: import("csstype").Property.JustifyTracks | import("csstype").Property.JustifyTracks[] | undefined;
|
|
1152
|
-
readonly left?:
|
|
1153
|
-
readonly letterSpacing?:
|
|
227
|
+
readonly left?: string | number | import("csstype").Property.Left<string | number>[] | undefined;
|
|
228
|
+
readonly letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | import("csstype").Property.LetterSpacing<string | number>[] | undefined;
|
|
1154
229
|
readonly lineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1155
|
-
readonly lineHeight?:
|
|
1156
|
-
readonly lineHeightStep?:
|
|
230
|
+
readonly lineHeight?: string | number | import("csstype").Property.LineHeight<string | number>[] | undefined;
|
|
231
|
+
readonly lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | import("csstype").Property.LineHeightStep<string | number>[] | undefined;
|
|
1157
232
|
readonly listStyleImage?: import("csstype").Property.ListStyleImage | import("csstype").Property.ListStyleImage[] | undefined;
|
|
1158
233
|
readonly listStylePosition?: import("csstype").Property.ListStylePosition | import("csstype").Property.ListStylePosition[] | undefined;
|
|
1159
234
|
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?:
|
|
235
|
+
readonly marginBlock?: string | number | import("csstype").Property.MarginBlock<string | number>[] | undefined;
|
|
236
|
+
readonly marginBlockEnd?: string | number | import("csstype").Property.MarginBlockEnd<string | number>[] | undefined;
|
|
237
|
+
readonly marginBlockStart?: string | number | import("csstype").Property.MarginBlockStart<string | number>[] | undefined;
|
|
238
|
+
readonly marginBottom?: string | number | import("csstype").Property.MarginBottom<string | number>[] | undefined;
|
|
239
|
+
readonly marginInline?: string | number | import("csstype").Property.MarginInline<string | number>[] | undefined;
|
|
240
|
+
readonly marginInlineEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
241
|
+
readonly marginInlineStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
242
|
+
readonly marginLeft?: string | number | import("csstype").Property.MarginLeft<string | number>[] | undefined;
|
|
243
|
+
readonly marginRight?: string | number | import("csstype").Property.MarginRight<string | number>[] | undefined;
|
|
244
|
+
readonly marginTop?: string | number | import("csstype").Property.MarginTop<string | number>[] | undefined;
|
|
1170
245
|
readonly maskBorderMode?: import("csstype").Property.MaskBorderMode | import("csstype").Property.MaskBorderMode[] | undefined;
|
|
1171
|
-
readonly maskBorderOutset?:
|
|
246
|
+
readonly maskBorderOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
1172
247
|
readonly maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1173
|
-
readonly maskBorderSlice?:
|
|
248
|
+
readonly maskBorderSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
1174
249
|
readonly maskBorderSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1175
|
-
readonly maskBorderWidth?:
|
|
250
|
+
readonly maskBorderWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
1176
251
|
readonly maskClip?: import("csstype").Property.MaskClip | import("csstype").Property.MaskClip[] | undefined;
|
|
1177
252
|
readonly maskComposite?: import("csstype").Property.MaskComposite | import("csstype").Property.MaskComposite[] | undefined;
|
|
1178
253
|
readonly maskImage?: import("csstype").Property.MaskImage | import("csstype").Property.MaskImage[] | undefined;
|
|
1179
254
|
readonly maskMode?: import("csstype").Property.MaskMode | import("csstype").Property.MaskMode[] | undefined;
|
|
1180
255
|
readonly maskOrigin?: import("csstype").Property.MaskOrigin | import("csstype").Property.MaskOrigin[] | undefined;
|
|
1181
|
-
readonly maskPosition?:
|
|
256
|
+
readonly maskPosition?: string | number | import("csstype").Property.MaskPosition<string | number>[] | undefined;
|
|
1182
257
|
readonly maskRepeat?: import("csstype").Property.MaskRepeat | import("csstype").Property.MaskRepeat[] | undefined;
|
|
1183
|
-
readonly maskSize?:
|
|
258
|
+
readonly maskSize?: string | number | import("csstype").Property.MaskSize<string | number>[] | undefined;
|
|
1184
259
|
readonly maskType?: import("csstype").Property.MaskType | import("csstype").Property.MaskType[] | undefined;
|
|
1185
260
|
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?:
|
|
261
|
+
readonly maxBlockSize?: string | number | import("csstype").Property.MaxBlockSize<string | number>[] | undefined;
|
|
262
|
+
readonly maxHeight?: string | number | import("csstype").Property.MaxHeight<string | number>[] | undefined;
|
|
263
|
+
readonly maxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
264
|
+
readonly maxLines?: import("csstype").Property.MaxLines | import("csstype").Property.MaxLines[] | undefined;
|
|
265
|
+
readonly maxWidth?: string | number | import("csstype").Property.MaxWidth<string | number>[] | undefined;
|
|
266
|
+
readonly minBlockSize?: string | number | import("csstype").Property.MinBlockSize<string | number>[] | undefined;
|
|
267
|
+
readonly minHeight?: string | number | import("csstype").Property.MinHeight<string | number>[] | undefined;
|
|
268
|
+
readonly minInlineSize?: string | number | import("csstype").Property.MinInlineSize<string | number>[] | undefined;
|
|
269
|
+
readonly minWidth?: string | number | import("csstype").Property.MinWidth<string | number>[] | undefined;
|
|
1195
270
|
readonly mixBlendMode?: import("csstype").Property.MixBlendMode | import("csstype").Property.MixBlendMode[] | undefined;
|
|
1196
|
-
readonly motionDistance?:
|
|
271
|
+
readonly motionDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
1197
272
|
readonly motionPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
1198
273
|
readonly motionRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1199
274
|
readonly objectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
1200
|
-
readonly objectPosition?:
|
|
1201
|
-
readonly offsetAnchor?:
|
|
1202
|
-
readonly offsetDistance?:
|
|
275
|
+
readonly objectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
276
|
+
readonly offsetAnchor?: string | number | import("csstype").Property.OffsetAnchor<string | number>[] | undefined;
|
|
277
|
+
readonly offsetDistance?: string | number | import("csstype").Property.OffsetDistance<string | number>[] | undefined;
|
|
1203
278
|
readonly offsetPath?: import("csstype").Property.OffsetPath | import("csstype").Property.OffsetPath[] | undefined;
|
|
1204
279
|
readonly offsetRotate?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1205
280
|
readonly offsetRotation?: import("csstype").Property.OffsetRotate | import("csstype").Property.OffsetRotate[] | undefined;
|
|
1206
|
-
readonly opacity?:
|
|
1207
|
-
readonly order?:
|
|
1208
|
-
readonly orphans?:
|
|
281
|
+
readonly opacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
282
|
+
readonly order?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
283
|
+
readonly orphans?: import("csstype").Property.Orphans | import("csstype").Property.Orphans[] | undefined;
|
|
1209
284
|
readonly outlineColor?: import("csstype").Property.OutlineColor | import("csstype").Property.OutlineColor[] | undefined;
|
|
1210
|
-
readonly outlineOffset?:
|
|
285
|
+
readonly outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | import("csstype").Property.OutlineOffset<string | number>[] | undefined;
|
|
1211
286
|
readonly outlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
1212
|
-
readonly outlineWidth?:
|
|
287
|
+
readonly outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
1213
288
|
readonly overflowAnchor?: import("csstype").Property.OverflowAnchor | import("csstype").Property.OverflowAnchor[] | undefined;
|
|
1214
289
|
readonly overflowBlock?: import("csstype").Property.OverflowBlock | import("csstype").Property.OverflowBlock[] | undefined;
|
|
1215
290
|
readonly overflowClipBox?: import("csstype").Property.OverflowClipBox | import("csstype").Property.OverflowClipBox[] | undefined;
|
|
1216
|
-
readonly overflowClipMargin?:
|
|
291
|
+
readonly overflowClipMargin?: string | number | import("csstype").Property.OverflowClipMargin<string | number>[] | undefined;
|
|
1217
292
|
readonly overflowInline?: import("csstype").Property.OverflowInline | import("csstype").Property.OverflowInline[] | undefined;
|
|
1218
293
|
readonly overflowWrap?: import("csstype").Property.OverflowWrap | import("csstype").Property.OverflowWrap[] | undefined;
|
|
1219
294
|
readonly overflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
@@ -1222,73 +297,73 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1222
297
|
readonly overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
1223
298
|
readonly overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
1224
299
|
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?:
|
|
300
|
+
readonly paddingBlock?: string | number | import("csstype").Property.PaddingBlock<string | number>[] | undefined;
|
|
301
|
+
readonly paddingBlockEnd?: string | number | import("csstype").Property.PaddingBlockEnd<string | number>[] | undefined;
|
|
302
|
+
readonly paddingBlockStart?: string | number | import("csstype").Property.PaddingBlockStart<string | number>[] | undefined;
|
|
303
|
+
readonly paddingBottom?: string | number | import("csstype").Property.PaddingBottom<string | number>[] | undefined;
|
|
304
|
+
readonly paddingInline?: string | number | import("csstype").Property.PaddingInline<string | number>[] | undefined;
|
|
305
|
+
readonly paddingInlineEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
306
|
+
readonly paddingInlineStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
307
|
+
readonly paddingLeft?: string | number | import("csstype").Property.PaddingLeft<string | number>[] | undefined;
|
|
308
|
+
readonly paddingRight?: string | number | import("csstype").Property.PaddingRight<string | number>[] | undefined;
|
|
309
|
+
readonly paddingTop?: string | number | import("csstype").Property.PaddingTop<string | number>[] | undefined;
|
|
1235
310
|
readonly pageBreakAfter?: import("csstype").Property.PageBreakAfter | import("csstype").Property.PageBreakAfter[] | undefined;
|
|
1236
311
|
readonly pageBreakBefore?: import("csstype").Property.PageBreakBefore | import("csstype").Property.PageBreakBefore[] | undefined;
|
|
1237
312
|
readonly pageBreakInside?: import("csstype").Property.PageBreakInside | import("csstype").Property.PageBreakInside[] | undefined;
|
|
1238
313
|
readonly paintOrder?: import("csstype").Property.PaintOrder | import("csstype").Property.PaintOrder[] | undefined;
|
|
1239
|
-
readonly perspective?:
|
|
1240
|
-
readonly perspectiveOrigin?:
|
|
314
|
+
readonly perspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
315
|
+
readonly perspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1241
316
|
readonly placeContent?: import("csstype").Property.PlaceContent | import("csstype").Property.PlaceContent[] | undefined;
|
|
1242
317
|
readonly pointerEvents?: import("csstype").Property.PointerEvents | import("csstype").Property.PointerEvents[] | undefined;
|
|
1243
318
|
readonly position?: import("csstype").Property.Position | import("csstype").Property.Position[] | undefined;
|
|
1244
319
|
readonly printColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1245
320
|
readonly quotes?: import("csstype").Property.Quotes | import("csstype").Property.Quotes[] | undefined;
|
|
1246
321
|
readonly resize?: import("csstype").Property.Resize | import("csstype").Property.Resize[] | undefined;
|
|
1247
|
-
readonly right?:
|
|
322
|
+
readonly right?: string | number | import("csstype").Property.Right<string | number>[] | undefined;
|
|
1248
323
|
readonly rotate?: import("csstype").Property.Rotate | import("csstype").Property.Rotate[] | undefined;
|
|
1249
|
-
readonly rowGap?:
|
|
324
|
+
readonly rowGap?: string | number | import("csstype").Property.RowGap<string | number>[] | undefined;
|
|
1250
325
|
readonly rubyAlign?: import("csstype").Property.RubyAlign | import("csstype").Property.RubyAlign[] | undefined;
|
|
1251
326
|
readonly rubyMerge?: import("csstype").Property.RubyMerge | import("csstype").Property.RubyMerge[] | undefined;
|
|
1252
327
|
readonly rubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
1253
|
-
readonly scale?:
|
|
328
|
+
readonly scale?: import("csstype").Property.Scale | import("csstype").Property.Scale[] | undefined;
|
|
1254
329
|
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?:
|
|
330
|
+
readonly scrollMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
331
|
+
readonly scrollMarginBlock?: string | number | import("csstype").Property.ScrollMarginBlock<string | number>[] | undefined;
|
|
332
|
+
readonly scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | import("csstype").Property.ScrollMarginBlockEnd<string | number>[] | undefined;
|
|
333
|
+
readonly scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | import("csstype").Property.ScrollMarginBlockStart<string | number>[] | undefined;
|
|
334
|
+
readonly scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
335
|
+
readonly scrollMarginInline?: string | number | import("csstype").Property.ScrollMarginInline<string | number>[] | undefined;
|
|
336
|
+
readonly scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | import("csstype").Property.ScrollMarginInlineEnd<string | number>[] | undefined;
|
|
337
|
+
readonly scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | import("csstype").Property.ScrollMarginInlineStart<string | number>[] | undefined;
|
|
338
|
+
readonly scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
339
|
+
readonly scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
340
|
+
readonly scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
341
|
+
readonly scrollPadding?: string | number | import("csstype").Property.ScrollPadding<string | number>[] | undefined;
|
|
342
|
+
readonly scrollPaddingBlock?: string | number | import("csstype").Property.ScrollPaddingBlock<string | number>[] | undefined;
|
|
343
|
+
readonly scrollPaddingBlockEnd?: string | number | import("csstype").Property.ScrollPaddingBlockEnd<string | number>[] | undefined;
|
|
344
|
+
readonly scrollPaddingBlockStart?: string | number | import("csstype").Property.ScrollPaddingBlockStart<string | number>[] | undefined;
|
|
345
|
+
readonly scrollPaddingBottom?: string | number | import("csstype").Property.ScrollPaddingBottom<string | number>[] | undefined;
|
|
346
|
+
readonly scrollPaddingInline?: string | number | import("csstype").Property.ScrollPaddingInline<string | number>[] | undefined;
|
|
347
|
+
readonly scrollPaddingInlineEnd?: string | number | import("csstype").Property.ScrollPaddingInlineEnd<string | number>[] | undefined;
|
|
348
|
+
readonly scrollPaddingInlineStart?: string | number | import("csstype").Property.ScrollPaddingInlineStart<string | number>[] | undefined;
|
|
349
|
+
readonly scrollPaddingLeft?: string | number | import("csstype").Property.ScrollPaddingLeft<string | number>[] | undefined;
|
|
350
|
+
readonly scrollPaddingRight?: string | number | import("csstype").Property.ScrollPaddingRight<string | number>[] | undefined;
|
|
351
|
+
readonly scrollPaddingTop?: string | number | import("csstype").Property.ScrollPaddingTop<string | number>[] | undefined;
|
|
1277
352
|
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?:
|
|
353
|
+
readonly scrollSnapMargin?: string | number | import("csstype").Property.ScrollMargin<string | number>[] | undefined;
|
|
354
|
+
readonly scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | import("csstype").Property.ScrollMarginBottom<string | number>[] | undefined;
|
|
355
|
+
readonly scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | import("csstype").Property.ScrollMarginLeft<string | number>[] | undefined;
|
|
356
|
+
readonly scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | import("csstype").Property.ScrollMarginRight<string | number>[] | undefined;
|
|
357
|
+
readonly scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | import("csstype").Property.ScrollMarginTop<string | number>[] | undefined;
|
|
1283
358
|
readonly scrollSnapStop?: import("csstype").Property.ScrollSnapStop | import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
1284
359
|
readonly scrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1285
360
|
readonly scrollbarColor?: import("csstype").Property.ScrollbarColor | import("csstype").Property.ScrollbarColor[] | undefined;
|
|
1286
361
|
readonly scrollbarGutter?: import("csstype").Property.ScrollbarGutter | import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
1287
362
|
readonly scrollbarWidth?: import("csstype").Property.ScrollbarWidth | import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
1288
|
-
readonly shapeImageThreshold?:
|
|
1289
|
-
readonly shapeMargin?:
|
|
363
|
+
readonly shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | import("csstype").Property.ShapeImageThreshold[] | undefined;
|
|
364
|
+
readonly shapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
1290
365
|
readonly shapeOutside?: import("csstype").Property.ShapeOutside | import("csstype").Property.ShapeOutside[] | undefined;
|
|
1291
|
-
readonly tabSize?:
|
|
366
|
+
readonly tabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1292
367
|
readonly tableLayout?: import("csstype").Property.TableLayout | import("csstype").Property.TableLayout[] | undefined;
|
|
1293
368
|
readonly textAlign?: import("csstype").Property.TextAlign | import("csstype").Property.TextAlign[] | undefined;
|
|
1294
369
|
readonly textAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
@@ -1298,12 +373,12 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1298
373
|
readonly textDecorationSkip?: import("csstype").Property.TextDecorationSkip | import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
1299
374
|
readonly textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
1300
375
|
readonly textDecorationStyle?: import("csstype").Property.TextDecorationStyle | import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
1301
|
-
readonly textDecorationThickness?:
|
|
1302
|
-
readonly textDecorationWidth?:
|
|
376
|
+
readonly textDecorationThickness?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
377
|
+
readonly textDecorationWidth?: string | number | import("csstype").Property.TextDecorationThickness<string | number>[] | undefined;
|
|
1303
378
|
readonly textEmphasisColor?: import("csstype").Property.TextEmphasisColor | import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
1304
379
|
readonly textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
1305
380
|
readonly textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
1306
|
-
readonly textIndent?:
|
|
381
|
+
readonly textIndent?: string | number | import("csstype").Property.TextIndent<string | number>[] | undefined;
|
|
1307
382
|
readonly textJustify?: import("csstype").Property.TextJustify | import("csstype").Property.TextJustify[] | undefined;
|
|
1308
383
|
readonly textOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
1309
384
|
readonly textOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
@@ -1311,85 +386,85 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1311
386
|
readonly textShadow?: import("csstype").Property.TextShadow | import("csstype").Property.TextShadow[] | undefined;
|
|
1312
387
|
readonly textSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1313
388
|
readonly textTransform?: import("csstype").Property.TextTransform | import("csstype").Property.TextTransform[] | undefined;
|
|
1314
|
-
readonly textUnderlineOffset?:
|
|
389
|
+
readonly textUnderlineOffset?: string | number | import("csstype").Property.TextUnderlineOffset<string | number>[] | undefined;
|
|
1315
390
|
readonly textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1316
|
-
readonly top?:
|
|
391
|
+
readonly top?: string | number | import("csstype").Property.Top<string | number>[] | undefined;
|
|
1317
392
|
readonly touchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
1318
393
|
readonly transform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1319
394
|
readonly transformBox?: import("csstype").Property.TransformBox | import("csstype").Property.TransformBox[] | undefined;
|
|
1320
|
-
readonly transformOrigin?:
|
|
395
|
+
readonly transformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1321
396
|
readonly transformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1322
397
|
readonly transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1323
398
|
readonly transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1324
399
|
readonly transitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
1325
400
|
readonly transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1326
|
-
readonly translate?:
|
|
401
|
+
readonly translate?: string | number | import("csstype").Property.Translate<string | number>[] | undefined;
|
|
1327
402
|
readonly unicodeBidi?: import("csstype").Property.UnicodeBidi | import("csstype").Property.UnicodeBidi[] | undefined;
|
|
1328
403
|
readonly userSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1329
|
-
readonly verticalAlign?:
|
|
404
|
+
readonly verticalAlign?: string | number | import("csstype").Property.VerticalAlign<string | number>[] | undefined;
|
|
1330
405
|
readonly visibility?: import("csstype").Property.Visibility | import("csstype").Property.Visibility[] | undefined;
|
|
1331
406
|
readonly whiteSpace?: import("csstype").Property.WhiteSpace | import("csstype").Property.WhiteSpace[] | undefined;
|
|
1332
|
-
readonly widows?:
|
|
1333
|
-
readonly width?:
|
|
407
|
+
readonly widows?: import("csstype").Property.Widows | import("csstype").Property.Widows[] | undefined;
|
|
408
|
+
readonly width?: string | number | import("csstype").Property.Width<string | number>[] | undefined;
|
|
1334
409
|
readonly willChange?: import("csstype").Property.WillChange | import("csstype").Property.WillChange[] | undefined;
|
|
1335
410
|
readonly wordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
1336
|
-
readonly wordSpacing?:
|
|
411
|
+
readonly wordSpacing?: import("csstype").Property.WordSpacing<string | number> | import("csstype").Property.WordSpacing<string | number>[] | undefined;
|
|
1337
412
|
readonly wordWrap?: import("csstype").Property.WordWrap | import("csstype").Property.WordWrap[] | undefined;
|
|
1338
413
|
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[] |
|
|
414
|
+
readonly zIndex?: import("csstype").Property.ZIndex | import("csstype").Property.ZIndex[] | undefined;
|
|
415
|
+
readonly zoom?: import("csstype").Property.Zoom | import("csstype").Property.Zoom[] | undefined;
|
|
1341
416
|
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?:
|
|
417
|
+
readonly animation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
418
|
+
readonly background?: string | number | import("csstype").Property.Background<string | number>[] | undefined;
|
|
419
|
+
readonly backgroundPosition?: string | number | import("csstype").Property.BackgroundPosition<string | number>[] | undefined;
|
|
420
|
+
readonly border?: string | number | import("csstype").Property.Border<string | number>[] | undefined;
|
|
421
|
+
readonly borderBlock?: string | number | import("csstype").Property.BorderBlock<string | number>[] | undefined;
|
|
422
|
+
readonly borderBlockEnd?: string | number | import("csstype").Property.BorderBlockEnd<string | number>[] | undefined;
|
|
423
|
+
readonly borderBlockStart?: string | number | import("csstype").Property.BorderBlockStart<string | number>[] | undefined;
|
|
424
|
+
readonly borderBottom?: string | number | import("csstype").Property.BorderBottom<string | number>[] | undefined;
|
|
1350
425
|
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?:
|
|
426
|
+
readonly borderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
427
|
+
readonly borderInline?: string | number | import("csstype").Property.BorderInline<string | number>[] | undefined;
|
|
428
|
+
readonly borderInlineEnd?: string | number | import("csstype").Property.BorderInlineEnd<string | number>[] | undefined;
|
|
429
|
+
readonly borderInlineStart?: string | number | import("csstype").Property.BorderInlineStart<string | number>[] | undefined;
|
|
430
|
+
readonly borderLeft?: string | number | import("csstype").Property.BorderLeft<string | number>[] | undefined;
|
|
431
|
+
readonly borderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
432
|
+
readonly borderRight?: string | number | import("csstype").Property.BorderRight<string | number>[] | undefined;
|
|
1358
433
|
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?:
|
|
434
|
+
readonly borderTop?: string | number | import("csstype").Property.BorderTop<string | number>[] | undefined;
|
|
435
|
+
readonly borderWidth?: string | number | import("csstype").Property.BorderWidth<string | number>[] | undefined;
|
|
436
|
+
readonly columnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
437
|
+
readonly columns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
438
|
+
readonly flex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1364
439
|
readonly flexFlow?: import("csstype").Property.FlexFlow | import("csstype").Property.FlexFlow[] | undefined;
|
|
1365
440
|
readonly font?: import("csstype").Property.Font | import("csstype").Property.Font[] | undefined;
|
|
1366
|
-
readonly gap?:
|
|
441
|
+
readonly gap?: string | number | import("csstype").Property.Gap<string | number>[] | undefined;
|
|
1367
442
|
readonly grid?: import("csstype").Property.Grid | import("csstype").Property.Grid[] | undefined;
|
|
1368
|
-
readonly gridArea?:
|
|
1369
|
-
readonly gridColumn?:
|
|
1370
|
-
readonly gridRow?:
|
|
443
|
+
readonly gridArea?: import("csstype").Property.GridArea | import("csstype").Property.GridArea[] | undefined;
|
|
444
|
+
readonly gridColumn?: import("csstype").Property.GridColumn | import("csstype").Property.GridColumn[] | undefined;
|
|
445
|
+
readonly gridRow?: import("csstype").Property.GridRow | import("csstype").Property.GridRow[] | undefined;
|
|
1371
446
|
readonly gridTemplate?: import("csstype").Property.GridTemplate | import("csstype").Property.GridTemplate[] | undefined;
|
|
1372
|
-
readonly lineClamp?:
|
|
447
|
+
readonly lineClamp?: import("csstype").Property.LineClamp | import("csstype").Property.LineClamp[] | undefined;
|
|
1373
448
|
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?:
|
|
449
|
+
readonly margin?: string | number | import("csstype").Property.Margin<string | number>[] | undefined;
|
|
450
|
+
readonly mask?: string | number | import("csstype").Property.Mask<string | number>[] | undefined;
|
|
451
|
+
readonly maskBorder?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
452
|
+
readonly motion?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
453
|
+
readonly offset?: string | number | import("csstype").Property.Offset<string | number>[] | undefined;
|
|
454
|
+
readonly outline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
1380
455
|
readonly overflow?: import("csstype").Property.Overflow | import("csstype").Property.Overflow[] | undefined;
|
|
1381
456
|
readonly overscrollBehavior?: import("csstype").Property.OverscrollBehavior | import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
1382
|
-
readonly padding?:
|
|
457
|
+
readonly padding?: string | number | import("csstype").Property.Padding<string | number>[] | undefined;
|
|
1383
458
|
readonly placeItems?: import("csstype").Property.PlaceItems | import("csstype").Property.PlaceItems[] | undefined;
|
|
1384
459
|
readonly placeSelf?: import("csstype").Property.PlaceSelf | import("csstype").Property.PlaceSelf[] | undefined;
|
|
1385
|
-
readonly textDecoration?:
|
|
460
|
+
readonly textDecoration?: string | number | import("csstype").Property.TextDecoration<string | number>[] | undefined;
|
|
1386
461
|
readonly textEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
1387
462
|
readonly transition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1388
463
|
readonly MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1389
464
|
readonly MozAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1390
465
|
readonly MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1391
466
|
readonly MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1392
|
-
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
467
|
+
readonly MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1393
468
|
readonly MozAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1394
469
|
readonly MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1395
470
|
readonly MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -1398,38 +473,38 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1398
473
|
readonly MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
1399
474
|
readonly MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
1400
475
|
readonly MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
1401
|
-
readonly MozBorderEndWidth?:
|
|
476
|
+
readonly MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | import("csstype").Property.BorderInlineEndWidth<string | number>[] | undefined;
|
|
1402
477
|
readonly MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
1403
478
|
readonly MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
1404
479
|
readonly MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
1405
480
|
readonly MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
1406
481
|
readonly MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
1407
482
|
readonly MozBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
1408
|
-
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
483
|
+
readonly MozColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1409
484
|
readonly MozColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1410
|
-
readonly MozColumnGap?:
|
|
485
|
+
readonly MozColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1411
486
|
readonly MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1412
487
|
readonly MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1413
|
-
readonly MozColumnRuleWidth?:
|
|
1414
|
-
readonly MozColumnWidth?:
|
|
488
|
+
readonly MozColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
489
|
+
readonly MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1415
490
|
readonly MozContextProperties?: import("csstype").Property.MozContextProperties | import("csstype").Property.MozContextProperties[] | undefined;
|
|
1416
491
|
readonly MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1417
492
|
readonly MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
1418
493
|
readonly MozHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1419
494
|
readonly MozImageRegion?: import("csstype").Property.MozImageRegion | import("csstype").Property.MozImageRegion[] | undefined;
|
|
1420
|
-
readonly MozMarginEnd?:
|
|
1421
|
-
readonly MozMarginStart?:
|
|
495
|
+
readonly MozMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
496
|
+
readonly MozMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
1422
497
|
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?:
|
|
498
|
+
readonly MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
499
|
+
readonly MozPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
500
|
+
readonly MozPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
501
|
+
readonly MozPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
502
|
+
readonly MozPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1428
503
|
readonly MozStackSizing?: import("csstype").Property.MozStackSizing | import("csstype").Property.MozStackSizing[] | undefined;
|
|
1429
|
-
readonly MozTabSize?:
|
|
504
|
+
readonly MozTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1430
505
|
readonly MozTextBlink?: import("csstype").Property.MozTextBlink | import("csstype").Property.MozTextBlink[] | undefined;
|
|
1431
506
|
readonly MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1432
|
-
readonly MozTransformOrigin?:
|
|
507
|
+
readonly MozTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1433
508
|
readonly MozTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1434
509
|
readonly MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1435
510
|
readonly MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1451,28 +526,28 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1451
526
|
readonly msContentZooming?: import("csstype").Property.MsContentZooming | import("csstype").Property.MsContentZooming[] | undefined;
|
|
1452
527
|
readonly msFilter?: import("csstype").Property.MsFilter | import("csstype").Property.MsFilter[] | undefined;
|
|
1453
528
|
readonly msFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1454
|
-
readonly msFlexPositive?:
|
|
529
|
+
readonly msFlexPositive?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
1455
530
|
readonly msFlowFrom?: import("csstype").Property.MsFlowFrom | import("csstype").Property.MsFlowFrom[] | undefined;
|
|
1456
531
|
readonly msFlowInto?: import("csstype").Property.MsFlowInto | import("csstype").Property.MsFlowInto[] | undefined;
|
|
1457
|
-
readonly msGridColumns?:
|
|
1458
|
-
readonly msGridRows?:
|
|
532
|
+
readonly msGridColumns?: string | number | import("csstype").Property.MsGridColumns<string | number>[] | undefined;
|
|
533
|
+
readonly msGridRows?: string | number | import("csstype").Property.MsGridRows<string | number>[] | undefined;
|
|
1459
534
|
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?:
|
|
535
|
+
readonly msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | import("csstype").Property.MsHyphenateLimitChars[] | undefined;
|
|
536
|
+
readonly msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | import("csstype").Property.MsHyphenateLimitLines[] | undefined;
|
|
537
|
+
readonly msHyphenateLimitZone?: string | number | import("csstype").Property.MsHyphenateLimitZone<string | number>[] | undefined;
|
|
1463
538
|
readonly msHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1464
539
|
readonly msImeAlign?: import("csstype").Property.MsImeAlign | import("csstype").Property.MsImeAlign[] | undefined;
|
|
1465
540
|
readonly msJustifySelf?: import("csstype").Property.JustifySelf | import("csstype").Property.JustifySelf[] | undefined;
|
|
1466
541
|
readonly msLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1467
|
-
readonly msOrder?:
|
|
542
|
+
readonly msOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
1468
543
|
readonly msOverflowStyle?: import("csstype").Property.MsOverflowStyle | import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
1469
544
|
readonly msOverflowX?: import("csstype").Property.OverflowX | import("csstype").Property.OverflowX[] | undefined;
|
|
1470
545
|
readonly msOverflowY?: import("csstype").Property.OverflowY | import("csstype").Property.OverflowY[] | undefined;
|
|
1471
546
|
readonly msScrollChaining?: import("csstype").Property.MsScrollChaining | import("csstype").Property.MsScrollChaining[] | undefined;
|
|
1472
|
-
readonly msScrollLimitXMax?:
|
|
1473
|
-
readonly msScrollLimitXMin?:
|
|
1474
|
-
readonly msScrollLimitYMax?:
|
|
1475
|
-
readonly msScrollLimitYMin?:
|
|
547
|
+
readonly msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | import("csstype").Property.MsScrollLimitXMax<string | number>[] | undefined;
|
|
548
|
+
readonly msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | import("csstype").Property.MsScrollLimitXMin<string | number>[] | undefined;
|
|
549
|
+
readonly msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | import("csstype").Property.MsScrollLimitYMax<string | number>[] | undefined;
|
|
550
|
+
readonly msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | import("csstype").Property.MsScrollLimitYMin<string | number>[] | undefined;
|
|
1476
551
|
readonly msScrollRails?: import("csstype").Property.MsScrollRails | import("csstype").Property.MsScrollRails[] | undefined;
|
|
1477
552
|
readonly msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
1478
553
|
readonly msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
@@ -1491,7 +566,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1491
566
|
readonly msTouchAction?: import("csstype").Property.TouchAction | import("csstype").Property.TouchAction[] | undefined;
|
|
1492
567
|
readonly msTouchSelect?: import("csstype").Property.MsTouchSelect | import("csstype").Property.MsTouchSelect[] | undefined;
|
|
1493
568
|
readonly msTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1494
|
-
readonly msTransformOrigin?:
|
|
569
|
+
readonly msTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1495
570
|
readonly msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1496
571
|
readonly msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
1497
572
|
readonly msTransitionProperty?: import("csstype").Property.TransitionProperty | import("csstype").Property.TransitionProperty[] | undefined;
|
|
@@ -1499,7 +574,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1499
574
|
readonly msUserSelect?: import("csstype").Property.MsUserSelect | import("csstype").Property.MsUserSelect[] | undefined;
|
|
1500
575
|
readonly msWordBreak?: import("csstype").Property.WordBreak | import("csstype").Property.WordBreak[] | undefined;
|
|
1501
576
|
readonly msWrapFlow?: import("csstype").Property.MsWrapFlow | import("csstype").Property.MsWrapFlow[] | undefined;
|
|
1502
|
-
readonly msWrapMargin?:
|
|
577
|
+
readonly msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | import("csstype").Property.MsWrapMargin<string | number>[] | undefined;
|
|
1503
578
|
readonly msWrapThrough?: import("csstype").Property.MsWrapThrough | import("csstype").Property.MsWrapThrough[] | undefined;
|
|
1504
579
|
readonly msWritingMode?: import("csstype").Property.WritingMode | import("csstype").Property.WritingMode[] | undefined;
|
|
1505
580
|
readonly WebkitAlignContent?: import("csstype").Property.AlignContent | import("csstype").Property.AlignContent[] | undefined;
|
|
@@ -1509,7 +584,7 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1509
584
|
readonly WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1510
585
|
readonly WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1511
586
|
readonly WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1512
|
-
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
587
|
+
readonly WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1513
588
|
readonly WebkitAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1514
589
|
readonly WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1515
590
|
readonly WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
@@ -1518,74 +593,74 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1518
593
|
readonly WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
1519
594
|
readonly WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
1520
595
|
readonly WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1521
|
-
readonly WebkitBackgroundSize?:
|
|
596
|
+
readonly WebkitBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1522
597
|
readonly WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
1523
598
|
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?:
|
|
599
|
+
readonly WebkitBorderBeforeWidth?: string | number | import("csstype").Property.WebkitBorderBeforeWidth<string | number>[] | undefined;
|
|
600
|
+
readonly WebkitBorderBottomLeftRadius?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
601
|
+
readonly WebkitBorderBottomRightRadius?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
602
|
+
readonly WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | import("csstype").Property.BorderImageSlice[] | undefined;
|
|
603
|
+
readonly WebkitBorderTopLeftRadius?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
604
|
+
readonly WebkitBorderTopRightRadius?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1530
605
|
readonly WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1531
|
-
readonly WebkitBoxReflect?:
|
|
606
|
+
readonly WebkitBoxReflect?: string | number | import("csstype").Property.WebkitBoxReflect<string | number>[] | undefined;
|
|
1532
607
|
readonly WebkitBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1533
608
|
readonly WebkitBoxSizing?: import("csstype").Property.BoxSizing | import("csstype").Property.BoxSizing[] | undefined;
|
|
1534
609
|
readonly WebkitClipPath?: import("csstype").Property.ClipPath | import("csstype").Property.ClipPath[] | undefined;
|
|
1535
|
-
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] |
|
|
610
|
+
readonly WebkitColumnCount?: import("csstype").Property.ColumnCount | import("csstype").Property.ColumnCount[] | undefined;
|
|
1536
611
|
readonly WebkitColumnFill?: import("csstype").Property.ColumnFill | import("csstype").Property.ColumnFill[] | undefined;
|
|
1537
|
-
readonly WebkitColumnGap?:
|
|
612
|
+
readonly WebkitColumnGap?: string | number | import("csstype").Property.ColumnGap<string | number>[] | undefined;
|
|
1538
613
|
readonly WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
1539
614
|
readonly WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
1540
|
-
readonly WebkitColumnRuleWidth?:
|
|
615
|
+
readonly WebkitColumnRuleWidth?: string | number | import("csstype").Property.ColumnRuleWidth<string | number>[] | undefined;
|
|
1541
616
|
readonly WebkitColumnSpan?: import("csstype").Property.ColumnSpan | import("csstype").Property.ColumnSpan[] | undefined;
|
|
1542
|
-
readonly WebkitColumnWidth?:
|
|
617
|
+
readonly WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | import("csstype").Property.ColumnWidth<string | number>[] | undefined;
|
|
1543
618
|
readonly WebkitFilter?: import("csstype").Property.Filter | import("csstype").Property.Filter[] | undefined;
|
|
1544
|
-
readonly WebkitFlexBasis?:
|
|
619
|
+
readonly WebkitFlexBasis?: string | number | import("csstype").Property.FlexBasis<string | number>[] | undefined;
|
|
1545
620
|
readonly WebkitFlexDirection?: import("csstype").Property.FlexDirection | import("csstype").Property.FlexDirection[] | undefined;
|
|
1546
|
-
readonly WebkitFlexGrow?:
|
|
1547
|
-
readonly WebkitFlexShrink?:
|
|
621
|
+
readonly WebkitFlexGrow?: import("csstype").Property.FlexGrow | import("csstype").Property.FlexGrow[] | undefined;
|
|
622
|
+
readonly WebkitFlexShrink?: import("csstype").Property.FlexShrink | import("csstype").Property.FlexShrink[] | undefined;
|
|
1548
623
|
readonly WebkitFlexWrap?: import("csstype").Property.FlexWrap | import("csstype").Property.FlexWrap[] | undefined;
|
|
1549
624
|
readonly WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
1550
625
|
readonly WebkitFontKerning?: import("csstype").Property.FontKerning | import("csstype").Property.FontKerning[] | undefined;
|
|
1551
|
-
readonly WebkitFontSmoothing?:
|
|
626
|
+
readonly WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | import("csstype").Property.FontSmooth<string | number>[] | undefined;
|
|
1552
627
|
readonly WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
1553
628
|
readonly WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
1554
629
|
readonly WebkitHyphens?: import("csstype").Property.Hyphens | import("csstype").Property.Hyphens[] | undefined;
|
|
1555
|
-
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] |
|
|
630
|
+
readonly WebkitInitialLetter?: import("csstype").Property.InitialLetter | import("csstype").Property.InitialLetter[] | undefined;
|
|
1556
631
|
readonly WebkitJustifyContent?: import("csstype").Property.JustifyContent | import("csstype").Property.JustifyContent[] | undefined;
|
|
1557
632
|
readonly WebkitLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1558
|
-
readonly WebkitLineClamp?:
|
|
1559
|
-
readonly WebkitMarginEnd?:
|
|
1560
|
-
readonly WebkitMarginStart?:
|
|
633
|
+
readonly WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | import("csstype").Property.WebkitLineClamp[] | undefined;
|
|
634
|
+
readonly WebkitMarginEnd?: string | number | import("csstype").Property.MarginInlineEnd<string | number>[] | undefined;
|
|
635
|
+
readonly WebkitMarginStart?: string | number | import("csstype").Property.MarginInlineStart<string | number>[] | undefined;
|
|
1561
636
|
readonly WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
1562
|
-
readonly WebkitMaskBoxImageOutset?:
|
|
637
|
+
readonly WebkitMaskBoxImageOutset?: string | number | import("csstype").Property.MaskBorderOutset<string | number>[] | undefined;
|
|
1563
638
|
readonly WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
1564
|
-
readonly WebkitMaskBoxImageSlice?:
|
|
639
|
+
readonly WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | import("csstype").Property.MaskBorderSlice[] | undefined;
|
|
1565
640
|
readonly WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | import("csstype").Property.MaskBorderSource[] | undefined;
|
|
1566
|
-
readonly WebkitMaskBoxImageWidth?:
|
|
641
|
+
readonly WebkitMaskBoxImageWidth?: string | number | import("csstype").Property.MaskBorderWidth<string | number>[] | undefined;
|
|
1567
642
|
readonly WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
1568
643
|
readonly WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
1569
644
|
readonly WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
1570
645
|
readonly WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
1571
|
-
readonly WebkitMaskPosition?:
|
|
1572
|
-
readonly WebkitMaskPositionX?:
|
|
1573
|
-
readonly WebkitMaskPositionY?:
|
|
646
|
+
readonly WebkitMaskPosition?: string | number | import("csstype").Property.WebkitMaskPosition<string | number>[] | undefined;
|
|
647
|
+
readonly WebkitMaskPositionX?: string | number | import("csstype").Property.WebkitMaskPositionX<string | number>[] | undefined;
|
|
648
|
+
readonly WebkitMaskPositionY?: string | number | import("csstype").Property.WebkitMaskPositionY<string | number>[] | undefined;
|
|
1574
649
|
readonly WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
1575
650
|
readonly WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
1576
651
|
readonly WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
1577
|
-
readonly WebkitMaskSize?:
|
|
1578
|
-
readonly WebkitMaxInlineSize?:
|
|
1579
|
-
readonly WebkitOrder?:
|
|
652
|
+
readonly WebkitMaskSize?: string | number | import("csstype").Property.WebkitMaskSize<string | number>[] | undefined;
|
|
653
|
+
readonly WebkitMaxInlineSize?: string | number | import("csstype").Property.MaxInlineSize<string | number>[] | undefined;
|
|
654
|
+
readonly WebkitOrder?: import("csstype").Property.Order | import("csstype").Property.Order[] | undefined;
|
|
1580
655
|
readonly WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
1581
|
-
readonly WebkitPaddingEnd?:
|
|
1582
|
-
readonly WebkitPaddingStart?:
|
|
1583
|
-
readonly WebkitPerspective?:
|
|
1584
|
-
readonly WebkitPerspectiveOrigin?:
|
|
656
|
+
readonly WebkitPaddingEnd?: string | number | import("csstype").Property.PaddingInlineEnd<string | number>[] | undefined;
|
|
657
|
+
readonly WebkitPaddingStart?: string | number | import("csstype").Property.PaddingInlineStart<string | number>[] | undefined;
|
|
658
|
+
readonly WebkitPerspective?: import("csstype").Property.Perspective<string | number> | import("csstype").Property.Perspective<string | number>[] | undefined;
|
|
659
|
+
readonly WebkitPerspectiveOrigin?: string | number | import("csstype").Property.PerspectiveOrigin<string | number>[] | undefined;
|
|
1585
660
|
readonly WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
1586
661
|
readonly WebkitRubyPosition?: import("csstype").Property.RubyPosition | import("csstype").Property.RubyPosition[] | undefined;
|
|
1587
662
|
readonly WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | import("csstype").Property.ScrollSnapType[] | undefined;
|
|
1588
|
-
readonly WebkitShapeMargin?:
|
|
663
|
+
readonly WebkitShapeMargin?: string | number | import("csstype").Property.ShapeMargin<string | number>[] | undefined;
|
|
1589
664
|
readonly WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
1590
665
|
readonly WebkitTextCombine?: import("csstype").Property.TextCombineUpright | import("csstype").Property.TextCombineUpright[] | undefined;
|
|
1591
666
|
readonly WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
@@ -1599,11 +674,11 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1599
674
|
readonly WebkitTextOrientation?: import("csstype").Property.TextOrientation | import("csstype").Property.TextOrientation[] | undefined;
|
|
1600
675
|
readonly WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
1601
676
|
readonly WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
1602
|
-
readonly WebkitTextStrokeWidth?:
|
|
677
|
+
readonly WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | import("csstype").Property.WebkitTextStrokeWidth<string | number>[] | undefined;
|
|
1603
678
|
readonly WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
1604
679
|
readonly WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
1605
680
|
readonly WebkitTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1606
|
-
readonly WebkitTransformOrigin?:
|
|
681
|
+
readonly WebkitTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1607
682
|
readonly WebkitTransformStyle?: import("csstype").Property.TransformStyle | import("csstype").Property.TransformStyle[] | undefined;
|
|
1608
683
|
readonly WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1609
684
|
readonly WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1612,53 +687,53 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1612
687
|
readonly WebkitUserModify?: import("csstype").Property.WebkitUserModify | import("csstype").Property.WebkitUserModify[] | undefined;
|
|
1613
688
|
readonly WebkitUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1614
689
|
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?:
|
|
690
|
+
readonly MozAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
691
|
+
readonly MozBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
692
|
+
readonly MozColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
693
|
+
readonly MozColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
1619
694
|
readonly MozTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1620
695
|
readonly msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
1621
696
|
readonly msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
1622
|
-
readonly msFlex?:
|
|
697
|
+
readonly msFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1623
698
|
readonly msScrollLimit?: import("csstype").Property.MsScrollLimit | import("csstype").Property.MsScrollLimit[] | undefined;
|
|
1624
699
|
readonly msScrollSnapX?: import("csstype").Property.MsScrollSnapX | import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
1625
700
|
readonly msScrollSnapY?: import("csstype").Property.MsScrollSnapY | import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
1626
701
|
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?:
|
|
702
|
+
readonly WebkitAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
703
|
+
readonly WebkitBorderBefore?: string | number | import("csstype").Property.WebkitBorderBefore<string | number>[] | undefined;
|
|
704
|
+
readonly WebkitBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
705
|
+
readonly WebkitBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
706
|
+
readonly WebkitColumnRule?: string | number | import("csstype").Property.ColumnRule<string | number>[] | undefined;
|
|
707
|
+
readonly WebkitColumns?: string | number | import("csstype").Property.Columns<string | number>[] | undefined;
|
|
708
|
+
readonly WebkitFlex?: string | number | import("csstype").Property.Flex<string | number>[] | undefined;
|
|
1634
709
|
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[] |
|
|
710
|
+
readonly WebkitMask?: string | number | import("csstype").Property.WebkitMask<string | number>[] | undefined;
|
|
711
|
+
readonly WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | import("csstype").Property.MaskBorder[] | undefined;
|
|
1637
712
|
readonly WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | import("csstype").Property.TextEmphasis[] | undefined;
|
|
1638
|
-
readonly WebkitTextStroke?:
|
|
713
|
+
readonly WebkitTextStroke?: string | number | import("csstype").Property.WebkitTextStroke<string | number>[] | undefined;
|
|
1639
714
|
readonly WebkitTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1640
715
|
readonly azimuth?: import("csstype").Property.Azimuth | import("csstype").Property.Azimuth[] | undefined;
|
|
1641
716
|
readonly boxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1642
717
|
readonly boxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1643
|
-
readonly boxFlex?:
|
|
1644
|
-
readonly boxFlexGroup?:
|
|
718
|
+
readonly boxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
719
|
+
readonly boxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1645
720
|
readonly boxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1646
|
-
readonly boxOrdinalGroup?:
|
|
721
|
+
readonly boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1647
722
|
readonly boxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1648
723
|
readonly boxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1649
724
|
readonly clip?: import("csstype").Property.Clip | import("csstype").Property.Clip[] | undefined;
|
|
1650
|
-
readonly gridColumnGap?:
|
|
1651
|
-
readonly gridGap?:
|
|
1652
|
-
readonly gridRowGap?:
|
|
725
|
+
readonly gridColumnGap?: string | number | import("csstype").Property.GridColumnGap<string | number>[] | undefined;
|
|
726
|
+
readonly gridGap?: string | number | import("csstype").Property.GridGap<string | number>[] | undefined;
|
|
727
|
+
readonly gridRowGap?: string | number | import("csstype").Property.GridRowGap<string | number>[] | undefined;
|
|
1653
728
|
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?:
|
|
729
|
+
readonly offsetBlock?: string | number | import("csstype").Property.InsetBlock<string | number>[] | undefined;
|
|
730
|
+
readonly offsetBlockEnd?: string | number | import("csstype").Property.InsetBlockEnd<string | number>[] | undefined;
|
|
731
|
+
readonly offsetBlockStart?: string | number | import("csstype").Property.InsetBlockStart<string | number>[] | undefined;
|
|
732
|
+
readonly offsetInline?: string | number | import("csstype").Property.InsetInline<string | number>[] | undefined;
|
|
733
|
+
readonly offsetInlineEnd?: string | number | import("csstype").Property.InsetInlineEnd<string | number>[] | undefined;
|
|
734
|
+
readonly offsetInlineStart?: string | number | import("csstype").Property.InsetInlineStart<string | number>[] | undefined;
|
|
735
|
+
readonly scrollSnapCoordinate?: string | number | import("csstype").Property.ScrollSnapCoordinate<string | number>[] | undefined;
|
|
736
|
+
readonly scrollSnapDestination?: string | number | import("csstype").Property.ScrollSnapDestination<string | number>[] | undefined;
|
|
1662
737
|
readonly scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
1663
738
|
readonly scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
1664
739
|
readonly scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
@@ -1666,44 +741,44 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1666
741
|
readonly scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
1667
742
|
readonly KhtmlBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1668
743
|
readonly KhtmlBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1669
|
-
readonly KhtmlBoxFlex?:
|
|
1670
|
-
readonly KhtmlBoxFlexGroup?:
|
|
744
|
+
readonly KhtmlBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
745
|
+
readonly KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1671
746
|
readonly KhtmlBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1672
|
-
readonly KhtmlBoxOrdinalGroup?:
|
|
747
|
+
readonly KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1673
748
|
readonly KhtmlBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1674
749
|
readonly KhtmlBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1675
750
|
readonly KhtmlLineBreak?: import("csstype").Property.LineBreak | import("csstype").Property.LineBreak[] | undefined;
|
|
1676
|
-
readonly KhtmlOpacity?:
|
|
751
|
+
readonly KhtmlOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
1677
752
|
readonly KhtmlUserSelect?: import("csstype").Property.UserSelect | import("csstype").Property.UserSelect[] | undefined;
|
|
1678
753
|
readonly MozBackgroundClip?: import("csstype").Property.BackgroundClip | import("csstype").Property.BackgroundClip[] | undefined;
|
|
1679
754
|
readonly MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
1680
755
|
readonly MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
1681
|
-
readonly MozBackgroundSize?:
|
|
756
|
+
readonly MozBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
1682
757
|
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?:
|
|
758
|
+
readonly MozBorderRadius?: string | number | import("csstype").Property.BorderRadius<string | number>[] | undefined;
|
|
759
|
+
readonly MozBorderRadiusBottomleft?: string | number | import("csstype").Property.BorderBottomLeftRadius<string | number>[] | undefined;
|
|
760
|
+
readonly MozBorderRadiusBottomright?: string | number | import("csstype").Property.BorderBottomRightRadius<string | number>[] | undefined;
|
|
761
|
+
readonly MozBorderRadiusTopleft?: string | number | import("csstype").Property.BorderTopLeftRadius<string | number>[] | undefined;
|
|
762
|
+
readonly MozBorderRadiusTopright?: string | number | import("csstype").Property.BorderTopRightRadius<string | number>[] | undefined;
|
|
1688
763
|
readonly MozBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1689
764
|
readonly MozBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1690
|
-
readonly MozBoxFlex?:
|
|
1691
|
-
readonly MozBoxOrdinalGroup?:
|
|
765
|
+
readonly MozBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
766
|
+
readonly MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1692
767
|
readonly MozBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1693
768
|
readonly MozBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1694
769
|
readonly MozBoxShadow?: import("csstype").Property.BoxShadow | import("csstype").Property.BoxShadow[] | undefined;
|
|
1695
770
|
readonly MozFloatEdge?: import("csstype").Property.MozFloatEdge | import("csstype").Property.MozFloatEdge[] | undefined;
|
|
1696
|
-
readonly MozForceBrokenImageIcon?:
|
|
1697
|
-
readonly MozOpacity?:
|
|
1698
|
-
readonly MozOutline?:
|
|
771
|
+
readonly MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | import("csstype").Property.MozForceBrokenImageIcon[] | undefined;
|
|
772
|
+
readonly MozOpacity?: import("csstype").Property.Opacity | import("csstype").Property.Opacity[] | undefined;
|
|
773
|
+
readonly MozOutline?: string | number | import("csstype").Property.Outline<string | number>[] | undefined;
|
|
1699
774
|
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?:
|
|
775
|
+
readonly MozOutlineRadius?: string | number | import("csstype").Property.MozOutlineRadius<string | number>[] | undefined;
|
|
776
|
+
readonly MozOutlineRadiusBottomleft?: string | number | import("csstype").Property.MozOutlineRadiusBottomleft<string | number>[] | undefined;
|
|
777
|
+
readonly MozOutlineRadiusBottomright?: string | number | import("csstype").Property.MozOutlineRadiusBottomright<string | number>[] | undefined;
|
|
778
|
+
readonly MozOutlineRadiusTopleft?: string | number | import("csstype").Property.MozOutlineRadiusTopleft<string | number>[] | undefined;
|
|
779
|
+
readonly MozOutlineRadiusTopright?: string | number | import("csstype").Property.MozOutlineRadiusTopright<string | number>[] | undefined;
|
|
1705
780
|
readonly MozOutlineStyle?: import("csstype").Property.OutlineStyle | import("csstype").Property.OutlineStyle[] | undefined;
|
|
1706
|
-
readonly MozOutlineWidth?:
|
|
781
|
+
readonly MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | import("csstype").Property.OutlineWidth<string | number>[] | undefined;
|
|
1707
782
|
readonly MozTextAlignLast?: import("csstype").Property.TextAlignLast | import("csstype").Property.TextAlignLast[] | undefined;
|
|
1708
783
|
readonly MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | import("csstype").Property.TextDecorationColor[] | undefined;
|
|
1709
784
|
readonly MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | import("csstype").Property.TextDecorationLine[] | undefined;
|
|
@@ -1711,23 +786,23 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1711
786
|
readonly MozUserInput?: import("csstype").Property.MozUserInput | import("csstype").Property.MozUserInput[] | undefined;
|
|
1712
787
|
readonly msImeMode?: import("csstype").Property.ImeMode | import("csstype").Property.ImeMode[] | undefined;
|
|
1713
788
|
readonly msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
1714
|
-
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] |
|
|
789
|
+
readonly OAnimation?: import("csstype").Property.Animation<string & {}> | import("csstype").Property.Animation<string & {}>[] | undefined;
|
|
1715
790
|
readonly OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
1716
791
|
readonly OAnimationDirection?: import("csstype").Property.AnimationDirection | import("csstype").Property.AnimationDirection[] | undefined;
|
|
1717
792
|
readonly OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
1718
793
|
readonly OAnimationFillMode?: import("csstype").Property.AnimationFillMode | import("csstype").Property.AnimationFillMode[] | undefined;
|
|
1719
|
-
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] |
|
|
794
|
+
readonly OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | import("csstype").Property.AnimationIterationCount[] | undefined;
|
|
1720
795
|
readonly OAnimationName?: import("csstype").Property.AnimationName | import("csstype").Property.AnimationName[] | undefined;
|
|
1721
796
|
readonly OAnimationPlayState?: import("csstype").Property.AnimationPlayState | import("csstype").Property.AnimationPlayState[] | undefined;
|
|
1722
797
|
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[] |
|
|
798
|
+
readonly OBackgroundSize?: string | number | import("csstype").Property.BackgroundSize<string | number>[] | undefined;
|
|
799
|
+
readonly OBorderImage?: import("csstype").Property.BorderImage | import("csstype").Property.BorderImage[] | undefined;
|
|
1725
800
|
readonly OObjectFit?: import("csstype").Property.ObjectFit | import("csstype").Property.ObjectFit[] | undefined;
|
|
1726
|
-
readonly OObjectPosition?:
|
|
1727
|
-
readonly OTabSize?:
|
|
801
|
+
readonly OObjectPosition?: string | number | import("csstype").Property.ObjectPosition<string | number>[] | undefined;
|
|
802
|
+
readonly OTabSize?: string | number | import("csstype").Property.TabSize<string | number>[] | undefined;
|
|
1728
803
|
readonly OTextOverflow?: import("csstype").Property.TextOverflow | import("csstype").Property.TextOverflow[] | undefined;
|
|
1729
804
|
readonly OTransform?: import("csstype").Property.Transform | import("csstype").Property.Transform[] | undefined;
|
|
1730
|
-
readonly OTransformOrigin?:
|
|
805
|
+
readonly OTransformOrigin?: string | number | import("csstype").Property.TransformOrigin<string | number>[] | undefined;
|
|
1731
806
|
readonly OTransition?: import("csstype").Property.Transition<string & {}> | import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
1732
807
|
readonly OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
1733
808
|
readonly OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
@@ -1735,26 +810,26 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1735
810
|
readonly OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
1736
811
|
readonly WebkitBoxAlign?: import("csstype").Property.BoxAlign | import("csstype").Property.BoxAlign[] | undefined;
|
|
1737
812
|
readonly WebkitBoxDirection?: import("csstype").Property.BoxDirection | import("csstype").Property.BoxDirection[] | undefined;
|
|
1738
|
-
readonly WebkitBoxFlex?:
|
|
1739
|
-
readonly WebkitBoxFlexGroup?:
|
|
813
|
+
readonly WebkitBoxFlex?: import("csstype").Property.BoxFlex | import("csstype").Property.BoxFlex[] | undefined;
|
|
814
|
+
readonly WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | import("csstype").Property.BoxFlexGroup[] | undefined;
|
|
1740
815
|
readonly WebkitBoxLines?: import("csstype").Property.BoxLines | import("csstype").Property.BoxLines[] | undefined;
|
|
1741
|
-
readonly WebkitBoxOrdinalGroup?:
|
|
816
|
+
readonly WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | import("csstype").Property.BoxOrdinalGroup[] | undefined;
|
|
1742
817
|
readonly WebkitBoxOrient?: import("csstype").Property.BoxOrient | import("csstype").Property.BoxOrient[] | undefined;
|
|
1743
818
|
readonly WebkitBoxPack?: import("csstype").Property.BoxPack | import("csstype").Property.BoxPack[] | undefined;
|
|
1744
819
|
readonly WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
1745
820
|
readonly WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
1746
821
|
readonly alignmentBaseline?: import("csstype").Property.AlignmentBaseline | import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
1747
|
-
readonly baselineShift?:
|
|
822
|
+
readonly baselineShift?: string | number | import("csstype").Property.BaselineShift<string | number>[] | undefined;
|
|
1748
823
|
readonly clipRule?: import("csstype").Property.ClipRule | import("csstype").Property.ClipRule[] | undefined;
|
|
1749
824
|
readonly colorInterpolation?: import("csstype").Property.ColorInterpolation | import("csstype").Property.ColorInterpolation[] | undefined;
|
|
1750
825
|
readonly colorRendering?: import("csstype").Property.ColorRendering | import("csstype").Property.ColorRendering[] | undefined;
|
|
1751
826
|
readonly dominantBaseline?: import("csstype").Property.DominantBaseline | import("csstype").Property.DominantBaseline[] | undefined;
|
|
1752
827
|
readonly fill?: import("csstype").Property.Fill | import("csstype").Property.Fill[] | undefined;
|
|
1753
|
-
readonly fillOpacity?:
|
|
828
|
+
readonly fillOpacity?: import("csstype").Property.FillOpacity | import("csstype").Property.FillOpacity[] | undefined;
|
|
1754
829
|
readonly fillRule?: import("csstype").Property.FillRule | import("csstype").Property.FillRule[] | undefined;
|
|
1755
830
|
readonly floodColor?: import("csstype").Property.FloodColor | import("csstype").Property.FloodColor[] | undefined;
|
|
1756
|
-
readonly floodOpacity?:
|
|
1757
|
-
readonly glyphOrientationVertical?:
|
|
831
|
+
readonly floodOpacity?: import("csstype").Property.FloodOpacity | import("csstype").Property.FloodOpacity[] | undefined;
|
|
832
|
+
readonly glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | import("csstype").Property.GlyphOrientationVertical[] | undefined;
|
|
1758
833
|
readonly lightingColor?: import("csstype").Property.LightingColor | import("csstype").Property.LightingColor[] | undefined;
|
|
1759
834
|
readonly marker?: import("csstype").Property.Marker | import("csstype").Property.Marker[] | undefined;
|
|
1760
835
|
readonly markerEnd?: import("csstype").Property.MarkerEnd | import("csstype").Property.MarkerEnd[] | undefined;
|
|
@@ -1762,139 +837,139 @@ export declare const useInput: ({ disabled, isNested }: UseInputProps) => {
|
|
|
1762
837
|
readonly markerStart?: import("csstype").Property.MarkerStart | import("csstype").Property.MarkerStart[] | undefined;
|
|
1763
838
|
readonly shapeRendering?: import("csstype").Property.ShapeRendering | import("csstype").Property.ShapeRendering[] | undefined;
|
|
1764
839
|
readonly stopColor?: import("csstype").Property.StopColor | import("csstype").Property.StopColor[] | undefined;
|
|
1765
|
-
readonly stopOpacity?:
|
|
840
|
+
readonly stopOpacity?: import("csstype").Property.StopOpacity | import("csstype").Property.StopOpacity[] | undefined;
|
|
1766
841
|
readonly stroke?: import("csstype").Property.Stroke | import("csstype").Property.Stroke[] | undefined;
|
|
1767
|
-
readonly strokeDasharray?:
|
|
1768
|
-
readonly strokeDashoffset?:
|
|
842
|
+
readonly strokeDasharray?: string | number | import("csstype").Property.StrokeDasharray<string | number>[] | undefined;
|
|
843
|
+
readonly strokeDashoffset?: string | number | import("csstype").Property.StrokeDashoffset<string | number>[] | undefined;
|
|
1769
844
|
readonly strokeLinecap?: import("csstype").Property.StrokeLinecap | import("csstype").Property.StrokeLinecap[] | undefined;
|
|
1770
845
|
readonly strokeLinejoin?: import("csstype").Property.StrokeLinejoin | import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
1771
|
-
readonly strokeMiterlimit?:
|
|
1772
|
-
readonly strokeOpacity?:
|
|
1773
|
-
readonly strokeWidth?:
|
|
846
|
+
readonly strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | import("csstype").Property.StrokeMiterlimit[] | undefined;
|
|
847
|
+
readonly strokeOpacity?: import("csstype").Property.StrokeOpacity | import("csstype").Property.StrokeOpacity[] | undefined;
|
|
848
|
+
readonly strokeWidth?: string | number | import("csstype").Property.StrokeWidth<string | number>[] | undefined;
|
|
1774
849
|
readonly textAnchor?: import("csstype").Property.TextAnchor | import("csstype").Property.TextAnchor[] | undefined;
|
|
1775
850
|
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 ":invalid"?: import("@emotion/
|
|
1872
|
-
readonly ":last-child"?: import("@emotion/
|
|
1873
|
-
readonly ":last-of-type"?: import("@emotion/
|
|
1874
|
-
readonly ":left"?: import("@emotion/
|
|
1875
|
-
readonly ":link"?: import("@emotion/
|
|
1876
|
-
readonly ":local-link"?: import("@emotion/
|
|
1877
|
-
readonly ":nth-col"?: import("@emotion/
|
|
1878
|
-
readonly ":nth-last-col"?: import("@emotion/
|
|
1879
|
-
readonly ":only-child"?: import("@emotion/
|
|
1880
|
-
readonly ":only-of-type"?: import("@emotion/
|
|
1881
|
-
readonly ":optional"?: import("@emotion/
|
|
1882
|
-
readonly ":out-of-range"?: import("@emotion/
|
|
1883
|
-
readonly ":past"?: import("@emotion/
|
|
1884
|
-
readonly ":paused"?: import("@emotion/
|
|
1885
|
-
readonly ":picture-in-picture"?: import("@emotion/
|
|
1886
|
-
readonly ":placeholder-shown"?: import("@emotion/
|
|
1887
|
-
readonly ":read-only"?: import("@emotion/
|
|
1888
|
-
readonly ":read-write"?: import("@emotion/
|
|
1889
|
-
readonly ":required"?: import("@emotion/
|
|
1890
|
-
readonly ":right"?: import("@emotion/
|
|
1891
|
-
readonly ":root"?: import("@emotion/
|
|
1892
|
-
readonly ":scope"?: import("@emotion/
|
|
1893
|
-
readonly ":target"?: import("@emotion/
|
|
1894
|
-
readonly ":target-within"?: import("@emotion/
|
|
1895
|
-
readonly ":user-invalid"?: import("@emotion/
|
|
1896
|
-
readonly ":user-valid"?: import("@emotion/
|
|
1897
|
-
readonly ":valid"?: import("@emotion/
|
|
1898
|
-
readonly ":visited"?: import("@emotion/
|
|
851
|
+
readonly ":-moz-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
852
|
+
readonly ":-moz-dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
853
|
+
readonly ":-webkit-any()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
854
|
+
readonly "::cue"?: import("@emotion/serialize").CSSObject | undefined;
|
|
855
|
+
readonly "::cue-region"?: import("@emotion/serialize").CSSObject | undefined;
|
|
856
|
+
readonly "::part"?: import("@emotion/serialize").CSSObject | undefined;
|
|
857
|
+
readonly "::slotted"?: import("@emotion/serialize").CSSObject | undefined;
|
|
858
|
+
readonly ":dir"?: import("@emotion/serialize").CSSObject | undefined;
|
|
859
|
+
readonly ":has"?: import("@emotion/serialize").CSSObject | undefined;
|
|
860
|
+
readonly ":host"?: import("@emotion/serialize").CSSObject | undefined;
|
|
861
|
+
readonly ":host-context"?: import("@emotion/serialize").CSSObject | undefined;
|
|
862
|
+
readonly ":is"?: import("@emotion/serialize").CSSObject | undefined;
|
|
863
|
+
readonly ":lang"?: import("@emotion/serialize").CSSObject | undefined;
|
|
864
|
+
readonly ":matches()"?: import("@emotion/serialize").CSSObject | undefined;
|
|
865
|
+
readonly ":not"?: import("@emotion/serialize").CSSObject | undefined;
|
|
866
|
+
readonly ":nth-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
867
|
+
readonly ":nth-last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
868
|
+
readonly ":nth-last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
869
|
+
readonly ":nth-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
870
|
+
readonly ":where"?: import("@emotion/serialize").CSSObject | undefined;
|
|
871
|
+
readonly ":-khtml-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
872
|
+
readonly ":-moz-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
873
|
+
readonly ":-moz-focusring"?: import("@emotion/serialize").CSSObject | undefined;
|
|
874
|
+
readonly ":-moz-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
875
|
+
readonly ":-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
876
|
+
readonly ":-moz-read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
877
|
+
readonly ":-moz-read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
878
|
+
readonly ":-moz-ui-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
879
|
+
readonly ":-moz-ui-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
880
|
+
readonly ":-ms-fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
881
|
+
readonly ":-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
882
|
+
readonly ":-webkit-any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
883
|
+
readonly ":-webkit-full-screen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
884
|
+
readonly "::-moz-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
885
|
+
readonly "::-moz-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
886
|
+
readonly "::-moz-range-progress"?: import("@emotion/serialize").CSSObject | undefined;
|
|
887
|
+
readonly "::-moz-range-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
888
|
+
readonly "::-moz-range-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
889
|
+
readonly "::-moz-selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
890
|
+
readonly "::-ms-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
891
|
+
readonly "::-ms-browse"?: import("@emotion/serialize").CSSObject | undefined;
|
|
892
|
+
readonly "::-ms-check"?: import("@emotion/serialize").CSSObject | undefined;
|
|
893
|
+
readonly "::-ms-clear"?: import("@emotion/serialize").CSSObject | undefined;
|
|
894
|
+
readonly "::-ms-fill"?: import("@emotion/serialize").CSSObject | undefined;
|
|
895
|
+
readonly "::-ms-fill-lower"?: import("@emotion/serialize").CSSObject | undefined;
|
|
896
|
+
readonly "::-ms-fill-upper"?: import("@emotion/serialize").CSSObject | undefined;
|
|
897
|
+
readonly "::-ms-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
898
|
+
readonly "::-ms-reveal"?: import("@emotion/serialize").CSSObject | undefined;
|
|
899
|
+
readonly "::-ms-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
900
|
+
readonly "::-ms-ticks-after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
901
|
+
readonly "::-ms-ticks-before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
902
|
+
readonly "::-ms-tooltip"?: import("@emotion/serialize").CSSObject | undefined;
|
|
903
|
+
readonly "::-ms-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
904
|
+
readonly "::-ms-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
905
|
+
readonly "::-webkit-backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
906
|
+
readonly "::-webkit-input-placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
907
|
+
readonly "::-webkit-progress-bar"?: import("@emotion/serialize").CSSObject | undefined;
|
|
908
|
+
readonly "::-webkit-progress-inner-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
909
|
+
readonly "::-webkit-progress-value"?: import("@emotion/serialize").CSSObject | undefined;
|
|
910
|
+
readonly "::-webkit-slider-runnable-track"?: import("@emotion/serialize").CSSObject | undefined;
|
|
911
|
+
readonly "::-webkit-slider-thumb"?: import("@emotion/serialize").CSSObject | undefined;
|
|
912
|
+
readonly "::after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
913
|
+
readonly "::backdrop"?: import("@emotion/serialize").CSSObject | undefined;
|
|
914
|
+
readonly "::before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
915
|
+
readonly "::first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
916
|
+
readonly "::first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
917
|
+
readonly "::grammar-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
918
|
+
readonly "::marker"?: import("@emotion/serialize").CSSObject | undefined;
|
|
919
|
+
readonly "::placeholder"?: import("@emotion/serialize").CSSObject | undefined;
|
|
920
|
+
readonly "::selection"?: import("@emotion/serialize").CSSObject | undefined;
|
|
921
|
+
readonly "::spelling-error"?: import("@emotion/serialize").CSSObject | undefined;
|
|
922
|
+
readonly "::target-text"?: import("@emotion/serialize").CSSObject | undefined;
|
|
923
|
+
readonly ":active"?: import("@emotion/serialize").CSSObject | undefined;
|
|
924
|
+
readonly ":after"?: import("@emotion/serialize").CSSObject | undefined;
|
|
925
|
+
readonly ":any-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
926
|
+
readonly ":before"?: import("@emotion/serialize").CSSObject | undefined;
|
|
927
|
+
readonly ":blank"?: import("@emotion/serialize").CSSObject | undefined;
|
|
928
|
+
readonly ":checked"?: import("@emotion/serialize").CSSObject | undefined;
|
|
929
|
+
readonly ":current"?: import("@emotion/serialize").CSSObject | undefined;
|
|
930
|
+
readonly ":default"?: import("@emotion/serialize").CSSObject | undefined;
|
|
931
|
+
readonly ":defined"?: import("@emotion/serialize").CSSObject | undefined;
|
|
932
|
+
readonly ":disabled"?: import("@emotion/serialize").CSSObject | undefined;
|
|
933
|
+
readonly ":empty"?: import("@emotion/serialize").CSSObject | undefined;
|
|
934
|
+
readonly ":first"?: import("@emotion/serialize").CSSObject | undefined;
|
|
935
|
+
readonly ":first-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
936
|
+
readonly ":first-letter"?: import("@emotion/serialize").CSSObject | undefined;
|
|
937
|
+
readonly ":first-line"?: import("@emotion/serialize").CSSObject | undefined;
|
|
938
|
+
readonly ":first-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
939
|
+
readonly ":focus-visible"?: import("@emotion/serialize").CSSObject | undefined;
|
|
940
|
+
readonly ":focus-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
941
|
+
readonly ":fullscreen"?: import("@emotion/serialize").CSSObject | undefined;
|
|
942
|
+
readonly ":future"?: import("@emotion/serialize").CSSObject | undefined;
|
|
943
|
+
readonly ":hover"?: import("@emotion/serialize").CSSObject | undefined;
|
|
944
|
+
readonly ":in-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
945
|
+
readonly ":indeterminate"?: import("@emotion/serialize").CSSObject | undefined;
|
|
946
|
+
readonly ":invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
947
|
+
readonly ":last-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
948
|
+
readonly ":last-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
949
|
+
readonly ":left"?: import("@emotion/serialize").CSSObject | undefined;
|
|
950
|
+
readonly ":link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
951
|
+
readonly ":local-link"?: import("@emotion/serialize").CSSObject | undefined;
|
|
952
|
+
readonly ":nth-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
953
|
+
readonly ":nth-last-col"?: import("@emotion/serialize").CSSObject | undefined;
|
|
954
|
+
readonly ":only-child"?: import("@emotion/serialize").CSSObject | undefined;
|
|
955
|
+
readonly ":only-of-type"?: import("@emotion/serialize").CSSObject | undefined;
|
|
956
|
+
readonly ":optional"?: import("@emotion/serialize").CSSObject | undefined;
|
|
957
|
+
readonly ":out-of-range"?: import("@emotion/serialize").CSSObject | undefined;
|
|
958
|
+
readonly ":past"?: import("@emotion/serialize").CSSObject | undefined;
|
|
959
|
+
readonly ":paused"?: import("@emotion/serialize").CSSObject | undefined;
|
|
960
|
+
readonly ":picture-in-picture"?: import("@emotion/serialize").CSSObject | undefined;
|
|
961
|
+
readonly ":placeholder-shown"?: import("@emotion/serialize").CSSObject | undefined;
|
|
962
|
+
readonly ":read-only"?: import("@emotion/serialize").CSSObject | undefined;
|
|
963
|
+
readonly ":read-write"?: import("@emotion/serialize").CSSObject | undefined;
|
|
964
|
+
readonly ":required"?: import("@emotion/serialize").CSSObject | undefined;
|
|
965
|
+
readonly ":right"?: import("@emotion/serialize").CSSObject | undefined;
|
|
966
|
+
readonly ":root"?: import("@emotion/serialize").CSSObject | undefined;
|
|
967
|
+
readonly ":scope"?: import("@emotion/serialize").CSSObject | undefined;
|
|
968
|
+
readonly ":target"?: import("@emotion/serialize").CSSObject | undefined;
|
|
969
|
+
readonly ":target-within"?: import("@emotion/serialize").CSSObject | undefined;
|
|
970
|
+
readonly ":user-invalid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
971
|
+
readonly ":user-valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
972
|
+
readonly ":valid"?: import("@emotion/serialize").CSSObject | undefined;
|
|
973
|
+
readonly ":visited"?: import("@emotion/serialize").CSSObject | undefined;
|
|
1899
974
|
};
|
|
1900
975
|
export {};
|