@nulogy/components 8.13.1 → 8.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +907 -582
- package/dist/main.module.js +907 -582
- package/dist/src/Breadcrumbs/Breadcrumbs.d.ts +5 -1
- package/dist/src/Breadcrumbs/Breadcrumbs.story.d.ts +1 -0
- package/dist/src/Breadcrumbs/BreadcrumbsListItem.d.ts +5 -3
- package/dist/src/Button/Button.d.ts +2 -2
- package/dist/src/Button/Button.story.d.ts +1 -6
- package/dist/src/Button/IconicButton.d.ts +2 -0
- package/dist/src/Button/IconicButton.story.d.ts +1 -0
- package/dist/src/Checkbox/Checkbox.d.ts +15 -1
- package/dist/src/Checkbox/Checkbox.story.d.ts +1 -0
- package/dist/src/DatePicker/DatePicker.d.ts +3 -1
- package/dist/src/DatePicker/DatePicker.story.d.ts +1 -0
- package/dist/src/DatePicker/DatePickerInput.d.ts +2 -0
- package/dist/src/DateRange/DateRange.d.ts +2 -0
- package/dist/src/DateRange/DateRange.story.d.ts +13 -72
- package/dist/src/DateRange/EndTime.d.ts +1 -0
- package/dist/src/DateRange/StartTime.d.ts +1 -0
- package/dist/src/DropdownMenu/DropdownButton.d.ts +7 -6
- package/dist/src/DropdownMenu/DropdownLink.d.ts +13 -2
- package/dist/src/DropdownMenu/DropdownMenu.d.ts +2 -0
- package/dist/src/DropdownMenu/DropdownMenu.story.d.ts +1 -0
- package/dist/src/Input/Input.story.d.ts +1 -0
- package/dist/src/Input/InputField.d.ts +6 -3
- package/dist/src/Link/Link.d.ts +7 -4
- package/dist/src/Link/Link.story.d.ts +2 -6
- package/dist/src/NDSProvider/ComponentSizeContext.d.ts +9 -0
- package/dist/src/NDSProvider/NDSProvider.d.ts +13 -2
- package/dist/src/Radio/Radio.d.ts +5 -11
- package/dist/src/Radio/Radio.story.d.ts +1 -0
- package/dist/src/RangeContainer/RangeContainer.d.ts +2 -0
- package/dist/src/Select/Select.d.ts +2 -0
- package/dist/src/Select/Select.story.d.ts +1 -0
- package/dist/src/Select/customReactSelectStyles.d.ts +924 -19
- package/dist/src/Switcher/Switch.d.ts +6 -3
- package/dist/src/Switcher/Switcher.d.ts +7 -5
- package/dist/src/Switcher/Switcher.story.d.ts +1 -0
- package/dist/src/Tabs/Tab.d.ts +2 -3
- package/dist/src/Tabs/Tabs.d.ts +5 -0
- package/dist/src/Tabs/Tabs.story.d.ts +2 -6
- package/dist/src/Textarea/StyledTextarea.d.ts +13 -1
- package/dist/src/Textarea/Textarea.story.d.ts +9 -48
- package/dist/src/TimePicker/TimePicker.d.ts +2 -0
- package/dist/src/TimePicker/TimePicker.story.d.ts +1 -0
- package/dist/src/TimePicker/TimePickerInput.d.ts +310 -1
- package/dist/src/TimePicker/TimePickerOption.d.ts +8 -1
- package/dist/src/TimeRange/TimeRange.d.ts +8 -7
- package/dist/src/Toggle/Toggle.d.ts +2 -0
- package/dist/src/Toggle/Toggle.story.d.ts +1 -0
- package/dist/src/theme.type.d.ts +1 -1
- package/dist/src/utils/ClickInputLabel.d.ts +5 -2
- package/dist/src/utils/dashed.d.ts +6 -0
- package/package.json +2 -2
- package/dist/src/Switcher/Switch.story.d.ts +0 -22
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { CSSObject } from "styled-components";
|
|
1
2
|
import { DefaultNDSThemeType } from "../theme.type";
|
|
3
|
+
import { ComponentSize } from "../NDSProvider/ComponentSizeContext";
|
|
2
4
|
type Placement = "top" | "bottom";
|
|
3
5
|
export declare function getControlBorderRadius({ border, isMenuOpen, menuLength, menuPlacement, theme, }: {
|
|
4
6
|
border: Placement;
|
|
@@ -18,36 +20,38 @@ export declare function getMenuBorderRadius({ border, menuPlacement, theme, }: {
|
|
|
18
20
|
radius: number;
|
|
19
21
|
style: string;
|
|
20
22
|
};
|
|
23
|
+
type SizeConfig = {
|
|
24
|
+
[key in ComponentSize]: CSSObject;
|
|
25
|
+
};
|
|
26
|
+
export declare function stylesForSize(config: SizeConfig, size: ComponentSize): CSSObject;
|
|
21
27
|
export declare const showIndicatorSeparator: ({ isMulti, hasValue, hasDefaultOptions }: {
|
|
22
28
|
isMulti: any;
|
|
23
29
|
hasValue: any;
|
|
24
30
|
hasDefaultOptions: any;
|
|
25
31
|
}) => any;
|
|
26
|
-
declare const customStyles: ({ theme, error, maxHeight, windowed, hasDefaultOptions }: {
|
|
27
|
-
theme:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
windowed: any;
|
|
31
|
-
hasDefaultOptions?: boolean;
|
|
32
|
+
declare const customStyles: ({ theme, error, maxHeight, windowed, size, hasDefaultOptions, }: {
|
|
33
|
+
theme: DefaultNDSThemeType;
|
|
34
|
+
} & {
|
|
35
|
+
[key: string]: any;
|
|
32
36
|
}) => {
|
|
33
37
|
option: () => {
|
|
34
38
|
height: number;
|
|
35
39
|
};
|
|
36
40
|
control: (provided: any, state: any) => {
|
|
37
41
|
display: string;
|
|
38
|
-
minHeight:
|
|
39
|
-
paddingLeft:
|
|
42
|
+
minHeight: string;
|
|
43
|
+
paddingLeft: string;
|
|
40
44
|
position: string;
|
|
41
45
|
width: string;
|
|
42
|
-
fontSize:
|
|
43
|
-
lineHeight:
|
|
44
|
-
color:
|
|
45
|
-
background:
|
|
46
|
+
fontSize: string;
|
|
47
|
+
lineHeight: string;
|
|
48
|
+
color: string;
|
|
49
|
+
background: string;
|
|
46
50
|
border: string;
|
|
47
51
|
borderColor: any;
|
|
48
52
|
boxSizing: string;
|
|
49
53
|
boxShadow: any;
|
|
50
|
-
borderRadius:
|
|
54
|
+
borderRadius: string;
|
|
51
55
|
borderBottomLeftRadius: string | number;
|
|
52
56
|
borderBottomRightRadius: string | number;
|
|
53
57
|
borderTopRightRadius: string | number;
|
|
@@ -59,19 +63,920 @@ declare const customStyles: ({ theme, error, maxHeight, windowed, hasDefaultOpti
|
|
|
59
63
|
dropdownIndicator: (provided: any, state: any) => any;
|
|
60
64
|
indicatorsContainer: (provided: any) => any;
|
|
61
65
|
input: () => {};
|
|
62
|
-
valueContainer: (provided: any) => any;
|
|
66
|
+
valueContainer: (provided: any, state: any) => any;
|
|
63
67
|
menu: (provided: any, state: any) => any;
|
|
64
68
|
menuList: (provided: any) => any;
|
|
65
69
|
multiValue: (provided: any) => any;
|
|
66
70
|
multiValueLabel: () => {
|
|
71
|
+
alignContent?: import("csstype").Property.AlignContent;
|
|
72
|
+
alignItems?: import("csstype").Property.AlignItems;
|
|
73
|
+
alignSelf?: import("csstype").Property.AlignSelf;
|
|
74
|
+
alignTracks?: import("csstype").Property.AlignTracks;
|
|
75
|
+
animationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
|
|
76
|
+
animationDirection?: import("csstype").Property.AnimationDirection;
|
|
77
|
+
animationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
|
|
78
|
+
animationFillMode?: import("csstype").Property.AnimationFillMode;
|
|
79
|
+
animationIterationCount?: import("csstype").Property.AnimationIterationCount;
|
|
80
|
+
animationName?: import("csstype").Property.AnimationName;
|
|
81
|
+
animationPlayState?: import("csstype").Property.AnimationPlayState;
|
|
82
|
+
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction;
|
|
83
|
+
appearance?: import("csstype").Property.Appearance;
|
|
84
|
+
aspectRatio?: import("csstype").Property.AspectRatio;
|
|
85
|
+
backdropFilter?: import("csstype").Property.BackdropFilter;
|
|
86
|
+
backfaceVisibility?: import("csstype").Property.BackfaceVisibility;
|
|
87
|
+
backgroundAttachment?: import("csstype").Property.BackgroundAttachment;
|
|
88
|
+
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode;
|
|
89
|
+
backgroundClip?: import("csstype").Property.BackgroundClip;
|
|
90
|
+
backgroundColor?: import("csstype").Property.BackgroundColor;
|
|
91
|
+
backgroundImage?: import("csstype").Property.BackgroundImage;
|
|
92
|
+
backgroundOrigin?: import("csstype").Property.BackgroundOrigin;
|
|
93
|
+
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number>;
|
|
94
|
+
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number>;
|
|
95
|
+
backgroundRepeat?: import("csstype").Property.BackgroundRepeat;
|
|
96
|
+
backgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
|
|
97
|
+
blockOverflow?: import("csstype").Property.BlockOverflow;
|
|
98
|
+
blockSize?: import("csstype").Property.BlockSize<string | number>;
|
|
99
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor;
|
|
100
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor;
|
|
101
|
+
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle;
|
|
102
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number>;
|
|
103
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor;
|
|
104
|
+
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle;
|
|
105
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number>;
|
|
106
|
+
borderBlockStyle?: import("csstype").Property.BorderBlockStyle;
|
|
107
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number>;
|
|
108
|
+
borderBottomColor?: import("csstype").Property.BorderBottomColor;
|
|
109
|
+
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
|
|
110
|
+
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
|
|
111
|
+
borderBottomStyle?: import("csstype").Property.BorderBottomStyle;
|
|
112
|
+
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number>;
|
|
113
|
+
borderCollapse?: import("csstype").Property.BorderCollapse;
|
|
114
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number>;
|
|
115
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number>;
|
|
116
|
+
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number>;
|
|
117
|
+
borderImageRepeat?: import("csstype").Property.BorderImageRepeat;
|
|
118
|
+
borderImageSlice?: import("csstype").Property.BorderImageSlice;
|
|
119
|
+
borderImageSource?: import("csstype").Property.BorderImageSource;
|
|
120
|
+
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number>;
|
|
121
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor;
|
|
122
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor;
|
|
123
|
+
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle;
|
|
124
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
|
|
125
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor;
|
|
126
|
+
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle;
|
|
127
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number>;
|
|
128
|
+
borderInlineStyle?: import("csstype").Property.BorderInlineStyle;
|
|
129
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number>;
|
|
130
|
+
borderLeftColor?: import("csstype").Property.BorderLeftColor;
|
|
131
|
+
borderLeftStyle?: import("csstype").Property.BorderLeftStyle;
|
|
132
|
+
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number>;
|
|
133
|
+
borderRightColor?: import("csstype").Property.BorderRightColor;
|
|
134
|
+
borderRightStyle?: import("csstype").Property.BorderRightStyle;
|
|
135
|
+
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number>;
|
|
136
|
+
borderSpacing?: import("csstype").Property.BorderSpacing<string | number>;
|
|
137
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number>;
|
|
138
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number>;
|
|
139
|
+
borderTopColor?: import("csstype").Property.BorderTopColor;
|
|
140
|
+
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
|
|
141
|
+
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
|
|
142
|
+
borderTopStyle?: import("csstype").Property.BorderTopStyle;
|
|
143
|
+
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number>;
|
|
144
|
+
bottom?: import("csstype").Property.Bottom<string | number>;
|
|
145
|
+
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak;
|
|
146
|
+
boxShadow?: import("csstype").Property.BoxShadow;
|
|
147
|
+
boxSizing?: import("csstype").Property.BoxSizing;
|
|
148
|
+
breakAfter?: import("csstype").Property.BreakAfter;
|
|
149
|
+
breakBefore?: import("csstype").Property.BreakBefore;
|
|
150
|
+
breakInside?: import("csstype").Property.BreakInside;
|
|
151
|
+
captionSide?: import("csstype").Property.CaptionSide;
|
|
152
|
+
caretColor?: import("csstype").Property.CaretColor;
|
|
153
|
+
clear?: import("csstype").Property.Clear;
|
|
154
|
+
clipPath?: import("csstype").Property.ClipPath;
|
|
155
|
+
color: string;
|
|
156
|
+
colorAdjust?: import("csstype").Property.ColorAdjust;
|
|
157
|
+
colorScheme?: import("csstype").Property.ColorScheme;
|
|
158
|
+
columnCount?: import("csstype").Property.ColumnCount;
|
|
159
|
+
columnFill?: import("csstype").Property.ColumnFill;
|
|
160
|
+
columnGap?: import("csstype").Property.ColumnGap<string | number>;
|
|
161
|
+
columnRuleColor?: import("csstype").Property.ColumnRuleColor;
|
|
162
|
+
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle;
|
|
163
|
+
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
|
|
164
|
+
columnSpan?: import("csstype").Property.ColumnSpan;
|
|
165
|
+
columnWidth?: import("csstype").Property.ColumnWidth<string | number>;
|
|
166
|
+
contain?: import("csstype").Property.Contain;
|
|
167
|
+
content?: import("csstype").Property.Content;
|
|
168
|
+
contentVisibility?: import("csstype").Property.ContentVisibility;
|
|
169
|
+
counterIncrement?: import("csstype").Property.CounterIncrement;
|
|
170
|
+
counterReset?: import("csstype").Property.CounterReset;
|
|
171
|
+
counterSet?: import("csstype").Property.CounterSet;
|
|
172
|
+
cursor?: import("csstype").Property.Cursor;
|
|
173
|
+
direction?: import("csstype").Property.Direction;
|
|
174
|
+
display?: import("csstype").Property.Display;
|
|
175
|
+
emptyCells?: import("csstype").Property.EmptyCells;
|
|
176
|
+
filter?: import("csstype").Property.Filter;
|
|
177
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number>;
|
|
178
|
+
flexDirection?: import("csstype").Property.FlexDirection;
|
|
179
|
+
flexGrow?: import("csstype").Property.FlexGrow;
|
|
180
|
+
flexShrink?: import("csstype").Property.FlexShrink;
|
|
181
|
+
flexWrap?: import("csstype").Property.FlexWrap;
|
|
182
|
+
float?: import("csstype").Property.Float;
|
|
183
|
+
fontFamily?: import("csstype").Property.FontFamily;
|
|
184
|
+
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings;
|
|
185
|
+
fontKerning?: import("csstype").Property.FontKerning;
|
|
186
|
+
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride;
|
|
187
|
+
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing;
|
|
188
|
+
fontSize: import("csstype").Property.FontSize<string | number>;
|
|
189
|
+
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust;
|
|
190
|
+
fontSmooth?: import("csstype").Property.FontSmooth<string | number>;
|
|
191
|
+
fontStretch?: import("csstype").Property.FontStretch;
|
|
192
|
+
fontStyle?: import("csstype").Property.FontStyle;
|
|
193
|
+
fontSynthesis?: import("csstype").Property.FontSynthesis;
|
|
194
|
+
fontVariant?: import("csstype").Property.FontVariant;
|
|
195
|
+
fontVariantCaps?: import("csstype").Property.FontVariantCaps;
|
|
196
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian;
|
|
197
|
+
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures;
|
|
198
|
+
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric;
|
|
199
|
+
fontVariantPosition?: import("csstype").Property.FontVariantPosition;
|
|
200
|
+
fontVariationSettings?: import("csstype").Property.FontVariationSettings;
|
|
201
|
+
fontWeight?: import("csstype").Property.FontWeight;
|
|
202
|
+
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust;
|
|
203
|
+
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number>;
|
|
204
|
+
gridAutoFlow?: import("csstype").Property.GridAutoFlow;
|
|
205
|
+
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number>;
|
|
206
|
+
gridColumnEnd?: import("csstype").Property.GridColumnEnd;
|
|
207
|
+
gridColumnStart?: import("csstype").Property.GridColumnStart;
|
|
208
|
+
gridRowEnd?: import("csstype").Property.GridRowEnd;
|
|
209
|
+
gridRowStart?: import("csstype").Property.GridRowStart;
|
|
210
|
+
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas;
|
|
211
|
+
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number>;
|
|
212
|
+
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number>;
|
|
213
|
+
hangingPunctuation?: import("csstype").Property.HangingPunctuation;
|
|
214
|
+
height?: import("csstype").Property.Height<string | number>;
|
|
215
|
+
hyphens?: import("csstype").Property.Hyphens;
|
|
216
|
+
imageOrientation?: import("csstype").Property.ImageOrientation;
|
|
217
|
+
imageRendering?: import("csstype").Property.ImageRendering;
|
|
218
|
+
imageResolution?: import("csstype").Property.ImageResolution;
|
|
219
|
+
initialLetter?: import("csstype").Property.InitialLetter;
|
|
220
|
+
inlineSize?: import("csstype").Property.InlineSize<string | number>;
|
|
221
|
+
inset?: import("csstype").Property.Inset<string | number>;
|
|
222
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number>;
|
|
223
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
|
|
224
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
|
|
225
|
+
insetInline?: import("csstype").Property.InsetInline<string | number>;
|
|
226
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
|
|
227
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
|
|
228
|
+
isolation?: import("csstype").Property.Isolation;
|
|
229
|
+
justifyContent?: import("csstype").Property.JustifyContent;
|
|
230
|
+
justifyItems?: import("csstype").Property.JustifyItems;
|
|
231
|
+
justifySelf?: import("csstype").Property.JustifySelf;
|
|
232
|
+
justifyTracks?: import("csstype").Property.JustifyTracks;
|
|
233
|
+
left?: import("csstype").Property.Left<string | number>;
|
|
234
|
+
letterSpacing?: import("csstype").Property.LetterSpacing<string | number>;
|
|
235
|
+
lineBreak?: import("csstype").Property.LineBreak;
|
|
236
|
+
lineHeight?: import("csstype").Property.LineHeight<string | number>;
|
|
237
|
+
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number>;
|
|
238
|
+
listStyleImage?: import("csstype").Property.ListStyleImage;
|
|
239
|
+
listStylePosition?: import("csstype").Property.ListStylePosition;
|
|
240
|
+
listStyleType?: import("csstype").Property.ListStyleType;
|
|
241
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number>;
|
|
242
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number>;
|
|
243
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number>;
|
|
244
|
+
marginBottom?: import("csstype").Property.MarginBottom<string | number>;
|
|
245
|
+
marginInline?: import("csstype").Property.MarginInline<string | number>;
|
|
246
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
|
|
247
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number>;
|
|
248
|
+
marginLeft?: import("csstype").Property.MarginLeft<string | number>;
|
|
249
|
+
marginRight?: import("csstype").Property.MarginRight<string | number>;
|
|
250
|
+
marginTop?: import("csstype").Property.MarginTop<string | number>;
|
|
251
|
+
maskBorderMode?: import("csstype").Property.MaskBorderMode;
|
|
252
|
+
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
|
|
253
|
+
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat;
|
|
254
|
+
maskBorderSlice?: import("csstype").Property.MaskBorderSlice;
|
|
255
|
+
maskBorderSource?: import("csstype").Property.MaskBorderSource;
|
|
256
|
+
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
|
|
257
|
+
maskClip?: import("csstype").Property.MaskClip;
|
|
258
|
+
maskComposite?: import("csstype").Property.MaskComposite;
|
|
259
|
+
maskImage?: import("csstype").Property.MaskImage;
|
|
260
|
+
maskMode?: import("csstype").Property.MaskMode;
|
|
261
|
+
maskOrigin?: import("csstype").Property.MaskOrigin;
|
|
262
|
+
maskPosition?: import("csstype").Property.MaskPosition<string | number>;
|
|
263
|
+
maskRepeat?: import("csstype").Property.MaskRepeat;
|
|
264
|
+
maskSize?: import("csstype").Property.MaskSize<string | number>;
|
|
265
|
+
maskType?: import("csstype").Property.MaskType;
|
|
266
|
+
mathStyle?: import("csstype").Property.MathStyle;
|
|
267
|
+
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number>;
|
|
268
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number>;
|
|
269
|
+
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
|
|
270
|
+
maxLines?: import("csstype").Property.MaxLines;
|
|
271
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number>;
|
|
272
|
+
minBlockSize?: import("csstype").Property.MinBlockSize<string | number>;
|
|
273
|
+
minHeight?: import("csstype").Property.MinHeight<string | number>;
|
|
274
|
+
minInlineSize?: import("csstype").Property.MinInlineSize<string | number>;
|
|
275
|
+
minWidth?: import("csstype").Property.MinWidth<string | number>;
|
|
276
|
+
mixBlendMode?: import("csstype").Property.MixBlendMode;
|
|
277
|
+
motionDistance?: import("csstype").Property.OffsetDistance<string | number>;
|
|
278
|
+
motionPath?: import("csstype").Property.OffsetPath;
|
|
279
|
+
motionRotation?: import("csstype").Property.OffsetRotate;
|
|
280
|
+
objectFit?: import("csstype").Property.ObjectFit;
|
|
281
|
+
objectPosition?: import("csstype").Property.ObjectPosition<string | number>;
|
|
282
|
+
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number>;
|
|
283
|
+
offsetDistance?: import("csstype").Property.OffsetDistance<string | number>;
|
|
284
|
+
offsetPath?: import("csstype").Property.OffsetPath;
|
|
285
|
+
offsetRotate?: import("csstype").Property.OffsetRotate;
|
|
286
|
+
offsetRotation?: import("csstype").Property.OffsetRotate;
|
|
287
|
+
opacity?: import("csstype").Property.Opacity;
|
|
288
|
+
order?: import("csstype").Property.Order;
|
|
289
|
+
orphans?: import("csstype").Property.Orphans;
|
|
290
|
+
outlineColor?: import("csstype").Property.OutlineColor;
|
|
291
|
+
outlineOffset?: import("csstype").Property.OutlineOffset<string | number>;
|
|
292
|
+
outlineStyle?: import("csstype").Property.OutlineStyle;
|
|
293
|
+
outlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
|
|
294
|
+
overflowAnchor?: import("csstype").Property.OverflowAnchor;
|
|
295
|
+
overflowBlock?: import("csstype").Property.OverflowBlock;
|
|
296
|
+
overflowClipBox?: import("csstype").Property.OverflowClipBox;
|
|
297
|
+
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number>;
|
|
298
|
+
overflowInline?: import("csstype").Property.OverflowInline;
|
|
299
|
+
overflowWrap?: import("csstype").Property.OverflowWrap;
|
|
300
|
+
overflowX?: import("csstype").Property.OverflowX;
|
|
301
|
+
overflowY?: import("csstype").Property.OverflowY;
|
|
302
|
+
overscrollBehaviorBlock?: import("csstype").Property.OverscrollBehaviorBlock;
|
|
303
|
+
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline;
|
|
304
|
+
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX;
|
|
305
|
+
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY;
|
|
306
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number>;
|
|
307
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number>;
|
|
308
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number>;
|
|
309
|
+
paddingBottom?: import("csstype").Property.PaddingBottom<string | number>;
|
|
310
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number>;
|
|
311
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
|
|
312
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number>;
|
|
313
|
+
paddingLeft?: import("csstype").Property.PaddingLeft<string | number>;
|
|
314
|
+
paddingRight?: import("csstype").Property.PaddingRight<string | number>;
|
|
315
|
+
paddingTop?: import("csstype").Property.PaddingTop<string | number>;
|
|
316
|
+
pageBreakAfter?: import("csstype").Property.PageBreakAfter;
|
|
317
|
+
pageBreakBefore?: import("csstype").Property.PageBreakBefore;
|
|
318
|
+
pageBreakInside?: import("csstype").Property.PageBreakInside;
|
|
319
|
+
paintOrder?: import("csstype").Property.PaintOrder;
|
|
320
|
+
perspective?: import("csstype").Property.Perspective<string | number>;
|
|
321
|
+
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
|
|
322
|
+
placeContent?: import("csstype").Property.PlaceContent;
|
|
323
|
+
pointerEvents?: import("csstype").Property.PointerEvents;
|
|
324
|
+
position?: import("csstype").Property.Position;
|
|
325
|
+
quotes?: import("csstype").Property.Quotes;
|
|
326
|
+
resize?: import("csstype").Property.Resize;
|
|
327
|
+
right?: import("csstype").Property.Right<string | number>;
|
|
328
|
+
rotate?: import("csstype").Property.Rotate;
|
|
329
|
+
rowGap?: import("csstype").Property.RowGap<string | number>;
|
|
330
|
+
rubyAlign?: import("csstype").Property.RubyAlign;
|
|
331
|
+
rubyMerge?: import("csstype").Property.RubyMerge;
|
|
332
|
+
rubyPosition?: import("csstype").Property.RubyPosition;
|
|
333
|
+
scale?: import("csstype").Property.Scale;
|
|
334
|
+
scrollBehavior?: import("csstype").Property.ScrollBehavior;
|
|
335
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number>;
|
|
336
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number>;
|
|
337
|
+
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number>;
|
|
338
|
+
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number>;
|
|
339
|
+
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
|
|
340
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number>;
|
|
341
|
+
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number>;
|
|
342
|
+
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number>;
|
|
343
|
+
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
|
|
344
|
+
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
|
|
345
|
+
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
|
|
346
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number>;
|
|
347
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number>;
|
|
348
|
+
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number>;
|
|
349
|
+
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number>;
|
|
350
|
+
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number>;
|
|
351
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number>;
|
|
352
|
+
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number>;
|
|
353
|
+
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number>;
|
|
354
|
+
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number>;
|
|
355
|
+
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number>;
|
|
356
|
+
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number>;
|
|
357
|
+
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign;
|
|
358
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number>;
|
|
359
|
+
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number>;
|
|
360
|
+
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number>;
|
|
361
|
+
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number>;
|
|
362
|
+
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number>;
|
|
363
|
+
scrollSnapStop?: import("csstype").Property.ScrollSnapStop;
|
|
364
|
+
scrollSnapType?: import("csstype").Property.ScrollSnapType;
|
|
365
|
+
scrollbarColor?: import("csstype").Property.ScrollbarColor;
|
|
366
|
+
scrollbarGutter?: import("csstype").Property.ScrollbarGutter;
|
|
367
|
+
scrollbarWidth?: import("csstype").Property.ScrollbarWidth;
|
|
368
|
+
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold;
|
|
369
|
+
shapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
|
|
370
|
+
shapeOutside?: import("csstype").Property.ShapeOutside;
|
|
371
|
+
tabSize?: import("csstype").Property.TabSize<string | number>;
|
|
372
|
+
tableLayout?: import("csstype").Property.TableLayout;
|
|
373
|
+
textAlign?: import("csstype").Property.TextAlign;
|
|
374
|
+
textAlignLast?: import("csstype").Property.TextAlignLast;
|
|
375
|
+
textCombineUpright?: import("csstype").Property.TextCombineUpright;
|
|
376
|
+
textDecorationColor?: import("csstype").Property.TextDecorationColor;
|
|
377
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine;
|
|
378
|
+
textDecorationSkip?: import("csstype").Property.TextDecorationSkip;
|
|
379
|
+
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk;
|
|
380
|
+
textDecorationStyle?: import("csstype").Property.TextDecorationStyle;
|
|
381
|
+
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number>;
|
|
382
|
+
textDecorationWidth?: import("csstype").Property.TextDecorationThickness<string | number>;
|
|
383
|
+
textEmphasisColor?: import("csstype").Property.TextEmphasisColor;
|
|
384
|
+
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition;
|
|
385
|
+
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle;
|
|
386
|
+
textIndent?: import("csstype").Property.TextIndent<string | number>;
|
|
387
|
+
textJustify?: import("csstype").Property.TextJustify;
|
|
388
|
+
textOrientation?: import("csstype").Property.TextOrientation;
|
|
67
389
|
textOverflow: string;
|
|
390
|
+
textRendering?: import("csstype").Property.TextRendering;
|
|
391
|
+
textShadow?: import("csstype").Property.TextShadow;
|
|
392
|
+
textSizeAdjust?: import("csstype").Property.TextSizeAdjust;
|
|
393
|
+
textTransform?: import("csstype").Property.TextTransform;
|
|
394
|
+
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number>;
|
|
395
|
+
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition;
|
|
396
|
+
top?: import("csstype").Property.Top<string | number>;
|
|
397
|
+
touchAction?: import("csstype").Property.TouchAction;
|
|
398
|
+
transform?: import("csstype").Property.Transform;
|
|
399
|
+
transformBox?: import("csstype").Property.TransformBox;
|
|
400
|
+
transformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
|
|
401
|
+
transformStyle?: import("csstype").Property.TransformStyle;
|
|
402
|
+
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
|
|
403
|
+
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
|
|
404
|
+
transitionProperty?: import("csstype").Property.TransitionProperty;
|
|
405
|
+
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction;
|
|
406
|
+
translate?: import("csstype").Property.Translate<string | number>;
|
|
407
|
+
unicodeBidi?: import("csstype").Property.UnicodeBidi;
|
|
408
|
+
userSelect?: import("csstype").Property.UserSelect;
|
|
409
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number>;
|
|
410
|
+
visibility?: import("csstype").Property.Visibility;
|
|
68
411
|
whiteSpace: string;
|
|
412
|
+
widows?: import("csstype").Property.Widows;
|
|
413
|
+
width?: import("csstype").Property.Width<string | number>;
|
|
414
|
+
willChange?: import("csstype").Property.WillChange;
|
|
415
|
+
wordBreak?: import("csstype").Property.WordBreak;
|
|
416
|
+
wordSpacing?: import("csstype").Property.WordSpacing<string | number>;
|
|
417
|
+
wordWrap?: import("csstype").Property.WordWrap;
|
|
418
|
+
writingMode?: import("csstype").Property.WritingMode;
|
|
419
|
+
zIndex?: import("csstype").Property.ZIndex;
|
|
420
|
+
zoom?: import("csstype").Property.Zoom;
|
|
421
|
+
all?: import("csstype").Globals;
|
|
422
|
+
animation?: import("csstype").Property.Animation<string & {}>;
|
|
423
|
+
background?: import("csstype").Property.Background<string | number>;
|
|
424
|
+
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number>;
|
|
425
|
+
border?: import("csstype").Property.Border<string | number>;
|
|
426
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number>;
|
|
427
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number>;
|
|
428
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number>;
|
|
429
|
+
borderBottom?: import("csstype").Property.BorderBottom<string | number>;
|
|
430
|
+
borderColor?: import("csstype").Property.BorderColor;
|
|
431
|
+
borderImage?: import("csstype").Property.BorderImage;
|
|
432
|
+
borderInline?: import("csstype").Property.BorderInline<string | number>;
|
|
433
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number>;
|
|
434
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number>;
|
|
435
|
+
borderLeft?: import("csstype").Property.BorderLeft<string | number>;
|
|
436
|
+
borderRadius: import("csstype").Property.BorderRadius<string | number>;
|
|
437
|
+
borderRight?: import("csstype").Property.BorderRight<string | number>;
|
|
438
|
+
borderStyle?: import("csstype").Property.BorderStyle;
|
|
439
|
+
borderTop?: import("csstype").Property.BorderTop<string | number>;
|
|
440
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number>;
|
|
441
|
+
columnRule?: import("csstype").Property.ColumnRule<string | number>;
|
|
442
|
+
columns?: import("csstype").Property.Columns<string | number>;
|
|
443
|
+
flex?: import("csstype").Property.Flex<string | number>;
|
|
444
|
+
flexFlow?: import("csstype").Property.FlexFlow;
|
|
445
|
+
font?: import("csstype").Property.Font;
|
|
446
|
+
gap?: import("csstype").Property.Gap<string | number>;
|
|
447
|
+
grid?: import("csstype").Property.Grid;
|
|
448
|
+
gridArea?: import("csstype").Property.GridArea;
|
|
449
|
+
gridColumn?: import("csstype").Property.GridColumn;
|
|
450
|
+
gridRow?: import("csstype").Property.GridRow;
|
|
451
|
+
gridTemplate?: import("csstype").Property.GridTemplate;
|
|
452
|
+
lineClamp?: import("csstype").Property.LineClamp;
|
|
453
|
+
listStyle?: import("csstype").Property.ListStyle;
|
|
454
|
+
margin?: import("csstype").Property.Margin<string | number>;
|
|
455
|
+
mask?: import("csstype").Property.Mask<string | number>;
|
|
456
|
+
maskBorder?: import("csstype").Property.MaskBorder;
|
|
457
|
+
motion?: import("csstype").Property.Offset<string | number>;
|
|
458
|
+
offset?: import("csstype").Property.Offset<string | number>;
|
|
459
|
+
outline?: import("csstype").Property.Outline<string | number>;
|
|
69
460
|
overflow: string;
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
461
|
+
overscrollBehavior?: import("csstype").Property.OverscrollBehavior;
|
|
462
|
+
padding?: import("csstype").Property.Padding<string | number>;
|
|
463
|
+
placeItems?: import("csstype").Property.PlaceItems;
|
|
464
|
+
placeSelf?: import("csstype").Property.PlaceSelf;
|
|
465
|
+
textDecoration?: import("csstype").Property.TextDecoration<string | number>;
|
|
466
|
+
textEmphasis?: import("csstype").Property.TextEmphasis;
|
|
467
|
+
transition?: import("csstype").Property.Transition<string & {}>;
|
|
468
|
+
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
|
|
469
|
+
MozAnimationDirection?: import("csstype").Property.AnimationDirection;
|
|
470
|
+
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
|
|
471
|
+
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode;
|
|
472
|
+
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount;
|
|
473
|
+
MozAnimationName?: import("csstype").Property.AnimationName;
|
|
474
|
+
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState;
|
|
475
|
+
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction;
|
|
476
|
+
MozAppearance?: import("csstype").Property.MozAppearance;
|
|
477
|
+
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility;
|
|
478
|
+
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors;
|
|
479
|
+
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor;
|
|
480
|
+
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle;
|
|
481
|
+
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number>;
|
|
482
|
+
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors;
|
|
483
|
+
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors;
|
|
484
|
+
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor;
|
|
485
|
+
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle;
|
|
486
|
+
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors;
|
|
487
|
+
MozBoxSizing?: import("csstype").Property.BoxSizing;
|
|
488
|
+
MozColumnCount?: import("csstype").Property.ColumnCount;
|
|
489
|
+
MozColumnFill?: import("csstype").Property.ColumnFill;
|
|
490
|
+
MozColumnGap?: import("csstype").Property.ColumnGap<string | number>;
|
|
491
|
+
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor;
|
|
492
|
+
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle;
|
|
493
|
+
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
|
|
494
|
+
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
|
|
495
|
+
MozContextProperties?: import("csstype").Property.MozContextProperties;
|
|
496
|
+
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings;
|
|
497
|
+
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride;
|
|
498
|
+
MozHyphens?: import("csstype").Property.Hyphens;
|
|
499
|
+
MozImageRegion?: import("csstype").Property.MozImageRegion;
|
|
500
|
+
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
|
|
501
|
+
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
|
|
502
|
+
MozOrient?: import("csstype").Property.MozOrient;
|
|
503
|
+
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
|
|
504
|
+
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
|
|
505
|
+
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
|
|
506
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number>;
|
|
507
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
|
|
508
|
+
MozStackSizing?: import("csstype").Property.MozStackSizing;
|
|
509
|
+
MozTabSize?: import("csstype").Property.TabSize<string | number>;
|
|
510
|
+
MozTextBlink?: import("csstype").Property.MozTextBlink;
|
|
511
|
+
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust;
|
|
512
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
|
|
513
|
+
MozTransformStyle?: import("csstype").Property.TransformStyle;
|
|
514
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
|
|
515
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
|
|
516
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty;
|
|
517
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction;
|
|
518
|
+
MozUserFocus?: import("csstype").Property.MozUserFocus;
|
|
519
|
+
MozUserModify?: import("csstype").Property.MozUserModify;
|
|
520
|
+
MozUserSelect?: import("csstype").Property.UserSelect;
|
|
521
|
+
MozWindowDragging?: import("csstype").Property.MozWindowDragging;
|
|
522
|
+
MozWindowShadow?: import("csstype").Property.MozWindowShadow;
|
|
523
|
+
msAccelerator?: import("csstype").Property.MsAccelerator;
|
|
524
|
+
msAlignSelf?: import("csstype").Property.AlignSelf;
|
|
525
|
+
msBlockProgression?: import("csstype").Property.MsBlockProgression;
|
|
526
|
+
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining;
|
|
527
|
+
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax;
|
|
528
|
+
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin;
|
|
529
|
+
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints;
|
|
530
|
+
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType;
|
|
531
|
+
msContentZooming?: import("csstype").Property.MsContentZooming;
|
|
532
|
+
msFilter?: import("csstype").Property.MsFilter;
|
|
533
|
+
msFlexDirection?: import("csstype").Property.FlexDirection;
|
|
534
|
+
msFlexPositive?: import("csstype").Property.FlexGrow;
|
|
535
|
+
msFlowFrom?: import("csstype").Property.MsFlowFrom;
|
|
536
|
+
msFlowInto?: import("csstype").Property.MsFlowInto;
|
|
537
|
+
msGridColumns?: import("csstype").Property.MsGridColumns<string | number>;
|
|
538
|
+
msGridRows?: import("csstype").Property.MsGridRows<string | number>;
|
|
539
|
+
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust;
|
|
540
|
+
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars;
|
|
541
|
+
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines;
|
|
542
|
+
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number>;
|
|
543
|
+
msHyphens?: import("csstype").Property.Hyphens;
|
|
544
|
+
msImeAlign?: import("csstype").Property.MsImeAlign;
|
|
545
|
+
msJustifySelf?: import("csstype").Property.JustifySelf;
|
|
546
|
+
msLineBreak?: import("csstype").Property.LineBreak;
|
|
547
|
+
msOrder?: import("csstype").Property.Order;
|
|
548
|
+
msOverflowStyle?: import("csstype").Property.MsOverflowStyle;
|
|
549
|
+
msOverflowX?: import("csstype").Property.OverflowX;
|
|
550
|
+
msOverflowY?: import("csstype").Property.OverflowY;
|
|
551
|
+
msScrollChaining?: import("csstype").Property.MsScrollChaining;
|
|
552
|
+
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number>;
|
|
553
|
+
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number>;
|
|
554
|
+
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number>;
|
|
555
|
+
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number>;
|
|
556
|
+
msScrollRails?: import("csstype").Property.MsScrollRails;
|
|
557
|
+
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX;
|
|
558
|
+
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY;
|
|
559
|
+
msScrollSnapType?: import("csstype").Property.MsScrollSnapType;
|
|
560
|
+
msScrollTranslation?: import("csstype").Property.MsScrollTranslation;
|
|
561
|
+
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor;
|
|
562
|
+
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor;
|
|
563
|
+
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor;
|
|
564
|
+
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor;
|
|
565
|
+
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor;
|
|
566
|
+
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor;
|
|
567
|
+
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor;
|
|
568
|
+
msTextAutospace?: import("csstype").Property.MsTextAutospace;
|
|
569
|
+
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright;
|
|
570
|
+
msTextOverflow?: import("csstype").Property.TextOverflow;
|
|
571
|
+
msTouchAction?: import("csstype").Property.TouchAction;
|
|
572
|
+
msTouchSelect?: import("csstype").Property.MsTouchSelect;
|
|
573
|
+
msTransform?: import("csstype").Property.Transform;
|
|
574
|
+
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
|
|
575
|
+
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
|
|
576
|
+
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
|
|
577
|
+
msTransitionProperty?: import("csstype").Property.TransitionProperty;
|
|
578
|
+
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction;
|
|
579
|
+
msUserSelect?: import("csstype").Property.MsUserSelect;
|
|
580
|
+
msWordBreak?: import("csstype").Property.WordBreak;
|
|
581
|
+
msWrapFlow?: import("csstype").Property.MsWrapFlow;
|
|
582
|
+
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number>;
|
|
583
|
+
msWrapThrough?: import("csstype").Property.MsWrapThrough;
|
|
584
|
+
msWritingMode?: import("csstype").Property.WritingMode;
|
|
585
|
+
WebkitAlignContent?: import("csstype").Property.AlignContent;
|
|
586
|
+
WebkitAlignItems?: import("csstype").Property.AlignItems;
|
|
587
|
+
WebkitAlignSelf?: import("csstype").Property.AlignSelf;
|
|
588
|
+
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
|
|
589
|
+
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection;
|
|
590
|
+
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
|
|
591
|
+
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode;
|
|
592
|
+
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount;
|
|
593
|
+
WebkitAnimationName?: import("csstype").Property.AnimationName;
|
|
594
|
+
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState;
|
|
595
|
+
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction;
|
|
596
|
+
WebkitAppearance?: import("csstype").Property.WebkitAppearance;
|
|
597
|
+
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter;
|
|
598
|
+
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility;
|
|
599
|
+
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip;
|
|
600
|
+
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin;
|
|
601
|
+
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
|
|
602
|
+
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor;
|
|
603
|
+
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle;
|
|
604
|
+
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number>;
|
|
605
|
+
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
|
|
606
|
+
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number>;
|
|
607
|
+
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice;
|
|
608
|
+
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number>;
|
|
609
|
+
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number>;
|
|
610
|
+
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak;
|
|
611
|
+
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number>;
|
|
612
|
+
WebkitBoxShadow?: import("csstype").Property.BoxShadow;
|
|
613
|
+
WebkitBoxSizing?: import("csstype").Property.BoxSizing;
|
|
614
|
+
WebkitClipPath?: import("csstype").Property.ClipPath;
|
|
615
|
+
WebkitColumnCount?: import("csstype").Property.ColumnCount;
|
|
616
|
+
WebkitColumnFill?: import("csstype").Property.ColumnFill;
|
|
617
|
+
WebkitColumnGap?: import("csstype").Property.ColumnGap<string | number>;
|
|
618
|
+
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor;
|
|
619
|
+
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle;
|
|
620
|
+
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number>;
|
|
621
|
+
WebkitColumnSpan?: import("csstype").Property.ColumnSpan;
|
|
622
|
+
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number>;
|
|
623
|
+
WebkitFilter?: import("csstype").Property.Filter;
|
|
624
|
+
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number>;
|
|
625
|
+
WebkitFlexDirection?: import("csstype").Property.FlexDirection;
|
|
626
|
+
WebkitFlexGrow?: import("csstype").Property.FlexGrow;
|
|
627
|
+
WebkitFlexShrink?: import("csstype").Property.FlexShrink;
|
|
628
|
+
WebkitFlexWrap?: import("csstype").Property.FlexWrap;
|
|
629
|
+
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings;
|
|
630
|
+
WebkitFontKerning?: import("csstype").Property.FontKerning;
|
|
631
|
+
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number>;
|
|
632
|
+
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures;
|
|
633
|
+
WebkitHyphens?: import("csstype").Property.Hyphens;
|
|
634
|
+
WebkitJustifyContent?: import("csstype").Property.JustifyContent;
|
|
635
|
+
WebkitLineBreak?: import("csstype").Property.LineBreak;
|
|
636
|
+
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp;
|
|
637
|
+
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number>;
|
|
638
|
+
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number>;
|
|
639
|
+
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment;
|
|
640
|
+
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number>;
|
|
641
|
+
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat;
|
|
642
|
+
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice;
|
|
643
|
+
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource;
|
|
644
|
+
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number>;
|
|
645
|
+
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip;
|
|
646
|
+
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite;
|
|
647
|
+
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage;
|
|
648
|
+
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin;
|
|
649
|
+
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number>;
|
|
650
|
+
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number>;
|
|
651
|
+
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number>;
|
|
652
|
+
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat;
|
|
653
|
+
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX;
|
|
654
|
+
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY;
|
|
655
|
+
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number>;
|
|
656
|
+
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number>;
|
|
657
|
+
WebkitOrder?: import("csstype").Property.Order;
|
|
658
|
+
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling;
|
|
659
|
+
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number>;
|
|
660
|
+
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number>;
|
|
661
|
+
WebkitPerspective?: import("csstype").Property.Perspective<string | number>;
|
|
662
|
+
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number>;
|
|
663
|
+
WebkitPrintColorAdjust?: import("csstype").Property.ColorAdjust;
|
|
664
|
+
WebkitRubyPosition?: import("csstype").Property.RubyPosition;
|
|
665
|
+
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType;
|
|
666
|
+
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number>;
|
|
667
|
+
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor;
|
|
668
|
+
WebkitTextCombine?: import("csstype").Property.TextCombineUpright;
|
|
669
|
+
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor;
|
|
670
|
+
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine;
|
|
671
|
+
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip;
|
|
672
|
+
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle;
|
|
673
|
+
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor;
|
|
674
|
+
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition;
|
|
675
|
+
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle;
|
|
676
|
+
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor;
|
|
677
|
+
WebkitTextOrientation?: import("csstype").Property.TextOrientation;
|
|
678
|
+
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust;
|
|
679
|
+
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor;
|
|
680
|
+
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number>;
|
|
681
|
+
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition;
|
|
682
|
+
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout;
|
|
683
|
+
WebkitTransform?: import("csstype").Property.Transform;
|
|
684
|
+
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
|
|
685
|
+
WebkitTransformStyle?: import("csstype").Property.TransformStyle;
|
|
686
|
+
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
|
|
687
|
+
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
|
|
688
|
+
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty;
|
|
689
|
+
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction;
|
|
690
|
+
WebkitUserModify?: import("csstype").Property.WebkitUserModify;
|
|
691
|
+
WebkitUserSelect?: import("csstype").Property.UserSelect;
|
|
692
|
+
WebkitWritingMode?: import("csstype").Property.WritingMode;
|
|
693
|
+
MozAnimation?: import("csstype").Property.Animation<string & {}>;
|
|
694
|
+
MozBorderImage?: import("csstype").Property.BorderImage;
|
|
695
|
+
MozColumnRule?: import("csstype").Property.ColumnRule<string | number>;
|
|
696
|
+
MozColumns?: import("csstype").Property.Columns<string | number>;
|
|
697
|
+
MozTransition?: import("csstype").Property.Transition<string & {}>;
|
|
698
|
+
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit;
|
|
699
|
+
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap;
|
|
700
|
+
msFlex?: import("csstype").Property.Flex<string | number>;
|
|
701
|
+
msScrollLimit?: import("csstype").Property.MsScrollLimit;
|
|
702
|
+
msScrollSnapX?: import("csstype").Property.MsScrollSnapX;
|
|
703
|
+
msScrollSnapY?: import("csstype").Property.MsScrollSnapY;
|
|
704
|
+
msTransition?: import("csstype").Property.Transition<string & {}>;
|
|
705
|
+
WebkitAnimation?: import("csstype").Property.Animation<string & {}>;
|
|
706
|
+
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number>;
|
|
707
|
+
WebkitBorderImage?: import("csstype").Property.BorderImage;
|
|
708
|
+
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
|
|
709
|
+
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number>;
|
|
710
|
+
WebkitColumns?: import("csstype").Property.Columns<string | number>;
|
|
711
|
+
WebkitFlex?: import("csstype").Property.Flex<string | number>;
|
|
712
|
+
WebkitFlexFlow?: import("csstype").Property.FlexFlow;
|
|
713
|
+
WebkitMask?: import("csstype").Property.WebkitMask<string | number>;
|
|
714
|
+
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder;
|
|
715
|
+
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis;
|
|
716
|
+
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number>;
|
|
717
|
+
WebkitTransition?: import("csstype").Property.Transition<string & {}>;
|
|
718
|
+
azimuth?: import("csstype").Property.Azimuth;
|
|
719
|
+
boxAlign?: import("csstype").Property.BoxAlign;
|
|
720
|
+
boxDirection?: import("csstype").Property.BoxDirection;
|
|
721
|
+
boxFlex?: import("csstype").Property.BoxFlex;
|
|
722
|
+
boxFlexGroup?: import("csstype").Property.BoxFlexGroup;
|
|
723
|
+
boxLines?: import("csstype").Property.BoxLines;
|
|
724
|
+
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup;
|
|
725
|
+
boxOrient?: import("csstype").Property.BoxOrient;
|
|
726
|
+
boxPack?: import("csstype").Property.BoxPack;
|
|
727
|
+
clip?: import("csstype").Property.Clip;
|
|
728
|
+
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates;
|
|
729
|
+
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number>;
|
|
730
|
+
gridGap?: import("csstype").Property.GridGap<string | number>;
|
|
731
|
+
gridRowGap?: import("csstype").Property.GridRowGap<string | number>;
|
|
732
|
+
imeMode?: import("csstype").Property.ImeMode;
|
|
733
|
+
offsetBlock?: import("csstype").Property.InsetBlock<string | number>;
|
|
734
|
+
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number>;
|
|
735
|
+
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number>;
|
|
736
|
+
offsetInline?: import("csstype").Property.InsetInline<string | number>;
|
|
737
|
+
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number>;
|
|
738
|
+
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number>;
|
|
739
|
+
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number>;
|
|
740
|
+
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number>;
|
|
741
|
+
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX;
|
|
742
|
+
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY;
|
|
743
|
+
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX;
|
|
744
|
+
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY;
|
|
745
|
+
scrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor;
|
|
746
|
+
KhtmlBoxAlign?: import("csstype").Property.BoxAlign;
|
|
747
|
+
KhtmlBoxDirection?: import("csstype").Property.BoxDirection;
|
|
748
|
+
KhtmlBoxFlex?: import("csstype").Property.BoxFlex;
|
|
749
|
+
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup;
|
|
750
|
+
KhtmlBoxLines?: import("csstype").Property.BoxLines;
|
|
751
|
+
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup;
|
|
752
|
+
KhtmlBoxOrient?: import("csstype").Property.BoxOrient;
|
|
753
|
+
KhtmlBoxPack?: import("csstype").Property.BoxPack;
|
|
754
|
+
KhtmlLineBreak?: import("csstype").Property.LineBreak;
|
|
755
|
+
KhtmlOpacity?: import("csstype").Property.Opacity;
|
|
756
|
+
KhtmlUserSelect?: import("csstype").Property.UserSelect;
|
|
757
|
+
MozBackgroundClip?: import("csstype").Property.BackgroundClip;
|
|
758
|
+
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak;
|
|
759
|
+
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin;
|
|
760
|
+
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
|
|
761
|
+
MozBinding?: import("csstype").Property.MozBinding;
|
|
762
|
+
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number>;
|
|
763
|
+
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number>;
|
|
764
|
+
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number>;
|
|
765
|
+
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number>;
|
|
766
|
+
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number>;
|
|
767
|
+
MozBoxAlign?: import("csstype").Property.BoxAlign;
|
|
768
|
+
MozBoxDirection?: import("csstype").Property.BoxDirection;
|
|
769
|
+
MozBoxFlex?: import("csstype").Property.BoxFlex;
|
|
770
|
+
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup;
|
|
771
|
+
MozBoxOrient?: import("csstype").Property.BoxOrient;
|
|
772
|
+
MozBoxPack?: import("csstype").Property.BoxPack;
|
|
773
|
+
MozBoxShadow?: import("csstype").Property.BoxShadow;
|
|
774
|
+
MozFloatEdge?: import("csstype").Property.MozFloatEdge;
|
|
775
|
+
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon;
|
|
776
|
+
MozOpacity?: import("csstype").Property.Opacity;
|
|
777
|
+
MozOutline?: import("csstype").Property.Outline<string | number>;
|
|
778
|
+
MozOutlineColor?: import("csstype").Property.OutlineColor;
|
|
779
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number>;
|
|
780
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number>;
|
|
781
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number>;
|
|
782
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number>;
|
|
783
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number>;
|
|
784
|
+
MozOutlineStyle?: import("csstype").Property.OutlineStyle;
|
|
785
|
+
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number>;
|
|
786
|
+
MozTextAlignLast?: import("csstype").Property.TextAlignLast;
|
|
787
|
+
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor;
|
|
788
|
+
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine;
|
|
789
|
+
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle;
|
|
790
|
+
MozUserInput?: import("csstype").Property.MozUserInput;
|
|
791
|
+
msImeMode?: import("csstype").Property.ImeMode;
|
|
792
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor;
|
|
793
|
+
OAnimation?: import("csstype").Property.Animation<string & {}>;
|
|
794
|
+
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}>;
|
|
795
|
+
OAnimationDirection?: import("csstype").Property.AnimationDirection;
|
|
796
|
+
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}>;
|
|
797
|
+
OAnimationFillMode?: import("csstype").Property.AnimationFillMode;
|
|
798
|
+
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount;
|
|
799
|
+
OAnimationName?: import("csstype").Property.AnimationName;
|
|
800
|
+
OAnimationPlayState?: import("csstype").Property.AnimationPlayState;
|
|
801
|
+
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction;
|
|
802
|
+
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number>;
|
|
803
|
+
OBorderImage?: import("csstype").Property.BorderImage;
|
|
804
|
+
OObjectFit?: import("csstype").Property.ObjectFit;
|
|
805
|
+
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number>;
|
|
806
|
+
OTabSize?: import("csstype").Property.TabSize<string | number>;
|
|
807
|
+
OTextOverflow?: import("csstype").Property.TextOverflow;
|
|
808
|
+
OTransform?: import("csstype").Property.Transform;
|
|
809
|
+
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number>;
|
|
810
|
+
OTransition?: import("csstype").Property.Transition<string & {}>;
|
|
811
|
+
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}>;
|
|
812
|
+
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}>;
|
|
813
|
+
OTransitionProperty?: import("csstype").Property.TransitionProperty;
|
|
814
|
+
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction;
|
|
815
|
+
WebkitBoxAlign?: import("csstype").Property.BoxAlign;
|
|
816
|
+
WebkitBoxDirection?: import("csstype").Property.BoxDirection;
|
|
817
|
+
WebkitBoxFlex?: import("csstype").Property.BoxFlex;
|
|
818
|
+
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup;
|
|
819
|
+
WebkitBoxLines?: import("csstype").Property.BoxLines;
|
|
820
|
+
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup;
|
|
821
|
+
WebkitBoxOrient?: import("csstype").Property.BoxOrient;
|
|
822
|
+
WebkitBoxPack?: import("csstype").Property.BoxPack;
|
|
823
|
+
WebkitScrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX;
|
|
824
|
+
WebkitScrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY;
|
|
825
|
+
alignmentBaseline?: import("csstype").Property.AlignmentBaseline;
|
|
826
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number>;
|
|
827
|
+
clipRule?: import("csstype").Property.ClipRule;
|
|
828
|
+
colorInterpolation?: import("csstype").Property.ColorInterpolation;
|
|
829
|
+
colorRendering?: import("csstype").Property.ColorRendering;
|
|
830
|
+
dominantBaseline?: import("csstype").Property.DominantBaseline;
|
|
831
|
+
fill?: import("csstype").Property.Fill;
|
|
832
|
+
fillOpacity?: import("csstype").Property.FillOpacity;
|
|
833
|
+
fillRule?: import("csstype").Property.FillRule;
|
|
834
|
+
floodColor?: import("csstype").Property.FloodColor;
|
|
835
|
+
floodOpacity?: import("csstype").Property.FloodOpacity;
|
|
836
|
+
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical;
|
|
837
|
+
lightingColor?: import("csstype").Property.LightingColor;
|
|
838
|
+
marker?: import("csstype").Property.Marker;
|
|
839
|
+
markerEnd?: import("csstype").Property.MarkerEnd;
|
|
840
|
+
markerMid?: import("csstype").Property.MarkerMid;
|
|
841
|
+
markerStart?: import("csstype").Property.MarkerStart;
|
|
842
|
+
shapeRendering?: import("csstype").Property.ShapeRendering;
|
|
843
|
+
stopColor?: import("csstype").Property.StopColor;
|
|
844
|
+
stopOpacity?: import("csstype").Property.StopOpacity;
|
|
845
|
+
stroke?: import("csstype").Property.Stroke;
|
|
846
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number>;
|
|
847
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number>;
|
|
848
|
+
strokeLinecap?: import("csstype").Property.StrokeLinecap;
|
|
849
|
+
strokeLinejoin?: import("csstype").Property.StrokeLinejoin;
|
|
850
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit;
|
|
851
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity;
|
|
852
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number>;
|
|
853
|
+
textAnchor?: import("csstype").Property.TextAnchor;
|
|
854
|
+
vectorEffect?: import("csstype").Property.VectorEffect;
|
|
855
|
+
":-moz-any()"?: CSSObject;
|
|
856
|
+
":-moz-dir"?: CSSObject;
|
|
857
|
+
":-webkit-any()"?: CSSObject;
|
|
858
|
+
"::cue"?: CSSObject;
|
|
859
|
+
"::cue-region"?: CSSObject;
|
|
860
|
+
"::part"?: CSSObject;
|
|
861
|
+
"::slotted"?: CSSObject;
|
|
862
|
+
":dir"?: CSSObject;
|
|
863
|
+
":has"?: CSSObject;
|
|
864
|
+
":host"?: CSSObject;
|
|
865
|
+
":host-context"?: CSSObject;
|
|
866
|
+
":is"?: CSSObject;
|
|
867
|
+
":lang"?: CSSObject;
|
|
868
|
+
":matches()"?: CSSObject;
|
|
869
|
+
":not"?: CSSObject;
|
|
870
|
+
":nth-child"?: CSSObject;
|
|
871
|
+
":nth-last-child"?: CSSObject;
|
|
872
|
+
":nth-last-of-type"?: CSSObject;
|
|
873
|
+
":nth-of-type"?: CSSObject;
|
|
874
|
+
":where"?: CSSObject;
|
|
875
|
+
":-khtml-any-link"?: CSSObject;
|
|
876
|
+
":-moz-any-link"?: CSSObject;
|
|
877
|
+
":-moz-focusring"?: CSSObject;
|
|
878
|
+
":-moz-full-screen"?: CSSObject;
|
|
879
|
+
":-moz-placeholder"?: CSSObject;
|
|
880
|
+
":-moz-read-only"?: CSSObject;
|
|
881
|
+
":-moz-read-write"?: CSSObject;
|
|
882
|
+
":-moz-ui-invalid"?: CSSObject;
|
|
883
|
+
":-moz-ui-valid"?: CSSObject;
|
|
884
|
+
":-ms-fullscreen"?: CSSObject;
|
|
885
|
+
":-ms-input-placeholder"?: CSSObject;
|
|
886
|
+
":-webkit-any-link"?: CSSObject;
|
|
887
|
+
":-webkit-full-screen"?: CSSObject;
|
|
888
|
+
"::-moz-placeholder"?: CSSObject;
|
|
889
|
+
"::-moz-progress-bar"?: CSSObject;
|
|
890
|
+
"::-moz-range-progress"?: CSSObject;
|
|
891
|
+
"::-moz-range-thumb"?: CSSObject;
|
|
892
|
+
"::-moz-range-track"?: CSSObject;
|
|
893
|
+
"::-moz-selection"?: CSSObject;
|
|
894
|
+
"::-ms-backdrop"?: CSSObject;
|
|
895
|
+
"::-ms-browse"?: CSSObject;
|
|
896
|
+
"::-ms-check"?: CSSObject;
|
|
897
|
+
"::-ms-clear"?: CSSObject;
|
|
898
|
+
"::-ms-fill"?: CSSObject;
|
|
899
|
+
"::-ms-fill-lower"?: CSSObject;
|
|
900
|
+
"::-ms-fill-upper"?: CSSObject;
|
|
901
|
+
"::-ms-input-placeholder"?: CSSObject;
|
|
902
|
+
"::-ms-reveal"?: CSSObject;
|
|
903
|
+
"::-ms-thumb"?: CSSObject;
|
|
904
|
+
"::-ms-ticks-after"?: CSSObject;
|
|
905
|
+
"::-ms-ticks-before"?: CSSObject;
|
|
906
|
+
"::-ms-tooltip"?: CSSObject;
|
|
907
|
+
"::-ms-track"?: CSSObject;
|
|
908
|
+
"::-ms-value"?: CSSObject;
|
|
909
|
+
"::-webkit-backdrop"?: CSSObject;
|
|
910
|
+
"::-webkit-input-placeholder"?: CSSObject;
|
|
911
|
+
"::-webkit-progress-bar"?: CSSObject;
|
|
912
|
+
"::-webkit-progress-inner-value"?: CSSObject;
|
|
913
|
+
"::-webkit-progress-value"?: CSSObject;
|
|
914
|
+
"::-webkit-slider-runnable-track"?: CSSObject;
|
|
915
|
+
"::-webkit-slider-thumb"?: CSSObject;
|
|
916
|
+
"::after"?: CSSObject;
|
|
917
|
+
"::backdrop"?: CSSObject;
|
|
918
|
+
"::before"?: CSSObject;
|
|
919
|
+
"::first-letter"?: CSSObject;
|
|
920
|
+
"::first-line"?: CSSObject;
|
|
921
|
+
"::grammar-error"?: CSSObject;
|
|
922
|
+
"::marker"?: CSSObject;
|
|
923
|
+
"::placeholder"?: CSSObject;
|
|
924
|
+
"::selection"?: CSSObject;
|
|
925
|
+
"::spelling-error"?: CSSObject;
|
|
926
|
+
"::target-text"?: CSSObject;
|
|
927
|
+
":active"?: CSSObject;
|
|
928
|
+
":after"?: CSSObject;
|
|
929
|
+
":any-link"?: CSSObject;
|
|
930
|
+
":before"?: CSSObject;
|
|
931
|
+
":blank"?: CSSObject;
|
|
932
|
+
":checked"?: CSSObject;
|
|
933
|
+
":current"?: CSSObject;
|
|
934
|
+
":default"?: CSSObject;
|
|
935
|
+
":defined"?: CSSObject;
|
|
936
|
+
":disabled"?: CSSObject;
|
|
937
|
+
":empty"?: CSSObject;
|
|
938
|
+
":enabled"?: CSSObject;
|
|
939
|
+
":first"?: CSSObject;
|
|
940
|
+
":first-child"?: CSSObject;
|
|
941
|
+
":first-letter"?: CSSObject;
|
|
942
|
+
":first-line"?: CSSObject;
|
|
943
|
+
":first-of-type"?: CSSObject;
|
|
944
|
+
":focus"?: CSSObject;
|
|
945
|
+
":focus-visible"?: CSSObject;
|
|
946
|
+
":focus-within"?: CSSObject;
|
|
947
|
+
":fullscreen"?: CSSObject;
|
|
948
|
+
":future"?: CSSObject;
|
|
949
|
+
":hover"?: CSSObject;
|
|
950
|
+
":in-range"?: CSSObject;
|
|
951
|
+
":indeterminate"?: CSSObject;
|
|
952
|
+
":invalid"?: CSSObject;
|
|
953
|
+
":last-child"?: CSSObject;
|
|
954
|
+
":last-of-type"?: CSSObject;
|
|
955
|
+
":left"?: CSSObject;
|
|
956
|
+
":link"?: CSSObject;
|
|
957
|
+
":local-link"?: CSSObject;
|
|
958
|
+
":nth-col"?: CSSObject;
|
|
959
|
+
":nth-last-col"?: CSSObject;
|
|
960
|
+
":only-child"?: CSSObject;
|
|
961
|
+
":only-of-type"?: CSSObject;
|
|
962
|
+
":optional"?: CSSObject;
|
|
963
|
+
":out-of-range"?: CSSObject;
|
|
964
|
+
":past"?: CSSObject;
|
|
965
|
+
":paused"?: CSSObject;
|
|
966
|
+
":picture-in-picture"?: CSSObject;
|
|
967
|
+
":placeholder-shown"?: CSSObject;
|
|
968
|
+
":read-only"?: CSSObject;
|
|
969
|
+
":read-write"?: CSSObject;
|
|
970
|
+
":required"?: CSSObject;
|
|
971
|
+
":right"?: CSSObject;
|
|
972
|
+
":root"?: CSSObject;
|
|
973
|
+
":scope"?: CSSObject;
|
|
974
|
+
":target"?: CSSObject;
|
|
975
|
+
":target-within"?: CSSObject;
|
|
976
|
+
":user-invalid"?: CSSObject;
|
|
977
|
+
":user-valid"?: CSSObject;
|
|
978
|
+
":valid"?: CSSObject;
|
|
979
|
+
":visited"?: CSSObject;
|
|
75
980
|
};
|
|
76
981
|
multiValueRemove: (provided: any) => any;
|
|
77
982
|
noOptionsMessage: (provided: any) => any;
|