csstype-extra 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.d.ts +1096 -1086
package/src/index.d.ts CHANGED
@@ -1,1091 +1,1101 @@
1
- /** biome-ignore-all lint/complexity/noBannedTypes: <this is a generated file> */
2
- export as namespace CSS;
1
+ // biome-ignore lint/suspicious/noEmptyInterface: gen
3
2
  export interface CustomColors{}
4
- export type AccentColor = "auto" | TColor;
5
- export type AlignContent = "normal" | TBaselinePosition | TContentDistribution | TOverflowPosition | TContentPosition;
6
- export type AlignItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
7
- export type AlignSelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
8
- export type AlignmentBaseline = "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge";
9
- export type All = "initial" | "inherit" | "unset" | "revert" | "revert-layer";
10
- export type Animation = TSingleAnimation;
11
- export type AnimationComposition = TSingleAnimationComposition;
12
- export type AnimationDelay = (string & {});
13
- export type AnimationDirection = TSingleAnimationDirection;
14
- export type AnimationDuration = "auto";
15
- export type AnimationFillMode = TSingleAnimationFillMode;
16
- export type AnimationIterationCount = TSingleAnimationIterationCount;
17
- export type AnimationName = "none" | TKeyframesName;
18
- export type AnimationPlayState = TSingleAnimationPlayState;
19
- export type AnimationTimingFunction = TEasingFunction;
20
- export type Appearance = "none" | "auto" | TCompatAuto | TCompatSpecial;
21
- export type AspectRatio = "auto" | TRatio;
22
- export type BackdropFilter = "none" | TFilterValueList;
23
- export type BackfaceVisibility = "visible" | "hidden";
24
- export type Background = TBgLayer | TFinalBgLayer;
25
- export type BackgroundAttachment = TAttachment;
26
- export type BackgroundBlendMode = TBlendMode;
27
- export type BackgroundClip = TBgClip;
28
- export type BackgroundColor = TColor;
29
- export type BackgroundImage = TBgImage;
30
- export type BackgroundOrigin = TVisualBox;
31
- export type BackgroundPosition = TBgPosition;
32
- export type BackgroundPositionX = "center" | "left" | "right" | "x-start" | "x-end" | TLengthPercentage;
33
- export type BackgroundPositionY = "center" | "top" | "bottom" | "y-start" | "y-end" | TLengthPercentage;
34
- export type BackgroundRepeat = TRepeatStyle;
35
- export type BackgroundSize = TBgSize;
36
- export type BaselineShift = TLengthPercentage | "sub" | "super" | "baseline";
37
- export type BlockSize = Width;
38
- export type Border = TLineWidth | TLineStyle | TColor;
39
- export type BorderBlock = BorderBlockStart;
40
- export type BorderBlockColor = BorderTopColor;
41
- export type BorderBlockEnd = BorderTopWidth | BorderTopStyle | TColor;
42
- export type BorderBlockEndColor = BorderTopColor;
43
- export type BorderBlockEndStyle = BorderTopStyle;
44
- export type BorderBlockEndWidth = BorderTopWidth;
45
- export type BorderBlockStart = BorderTopWidth | BorderTopStyle | TColor;
46
- export type BorderBlockStartColor = BorderTopColor;
47
- export type BorderBlockStartStyle = BorderTopStyle;
48
- export type BorderBlockStartWidth = BorderTopWidth;
49
- export type BorderBlockStyle = BorderTopStyle;
50
- export type BorderBlockWidth = BorderTopWidth;
51
- export type BorderBottom = TLineWidth | TLineStyle | TColor;
52
- export type BorderBottomColor = BorderTopColor;
53
- export type BorderBottomLeftRadius = TLengthPercentage;
54
- export type BorderBottomRightRadius = TLengthPercentage;
55
- export type BorderBottomStyle = TLineStyle;
56
- export type BorderBottomWidth = TLineWidth;
57
- export type BorderCollapse = "separate" | "collapse";
58
- export type BorderColor = TColor;
59
- export type BorderEndEndRadius = BorderTopLeftRadius;
60
- export type BorderEndStartRadius = BorderTopLeftRadius;
61
- export type BorderImage = BorderImageSource | BorderImageSlice | BorderImageWidth | BorderImageWidth | BorderImageOutset | BorderImageRepeat;
62
- export type BorderImageOutset = number;
63
- export type BorderImageRepeat = "stretch" | "repeat" | "round" | "space";
64
- export type BorderImageSlice = number | "fill";
65
- export type BorderImageSource = "none" | TImage;
66
- export type BorderImageWidth = TLengthPercentage | number | "auto";
67
- export type BorderInline = BorderBlockStart;
68
- export type BorderInlineColor = BorderTopColor;
69
- export type BorderInlineEnd = BorderTopWidth | BorderTopStyle | TColor;
70
- export type BorderInlineEndColor = BorderTopColor;
71
- export type BorderInlineEndStyle = BorderTopStyle;
72
- export type BorderInlineEndWidth = BorderTopWidth;
73
- export type BorderInlineStart = BorderTopWidth | BorderTopStyle | TColor;
74
- export type BorderInlineStartColor = BorderTopColor;
75
- export type BorderInlineStartStyle = BorderTopStyle;
76
- export type BorderInlineStartWidth = BorderTopWidth;
77
- export type BorderInlineStyle = BorderTopStyle;
78
- export type BorderInlineWidth = BorderTopWidth;
79
- export type BorderLeft = TLineWidth | TLineStyle | TColor;
80
- export type BorderLeftColor = TColor;
81
- export type BorderLeftStyle = TLineStyle;
82
- export type BorderLeftWidth = TLineWidth;
83
- export type BorderRadius = TLengthPercentage;
84
- export type BorderRight = TLineWidth | TLineStyle | TColor;
85
- export type BorderRightColor = TColor;
86
- export type BorderRightStyle = TLineStyle;
87
- export type BorderRightWidth = TLineWidth;
88
- export type BorderSpacing = (string & {});
89
- export type BorderStartEndRadius = BorderTopLeftRadius;
90
- export type BorderStartStartRadius = BorderTopLeftRadius;
91
- export type BorderStyle = TLineStyle;
92
- export type BorderTop = TLineWidth | TLineStyle | TColor;
93
- export type BorderTopColor = TColor;
94
- export type BorderTopLeftRadius = TLengthPercentage;
95
- export type BorderTopRightRadius = TLengthPercentage;
96
- export type BorderTopStyle = TLineStyle;
97
- export type BorderTopWidth = TLineWidth;
98
- export type BorderWidth = TLineWidth;
99
- export type Bottom = "auto" | TLengthPercentage;
100
- export type BoxDecorationBreak = "slice" | "clone";
101
- export type BoxShadow = "none" | TShadow;
102
- export type BoxSizing = "content-box" | "border-box";
103
- export type BreakAfter = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
104
- export type BreakBefore = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
105
- export type BreakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
106
- export type CaptionSide = "top" | "bottom";
107
- export type Caret = CaretColor | CaretShape;
108
- export type CaretColor = "auto" | TColor;
109
- export type CaretShape = "auto" | "bar" | "block" | "underscore";
110
- export type Clear = "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
111
- export type ClipPath = TClipSource | TBasicShape | TGeometryBox | "none";
112
- export type ClipRule = "nonzero" | "evenodd";
113
- export type Color = TColor;
114
- export type ColorInterpolationFilters = "auto" | "sRGB" | "linearRGB";
115
- export type ColorScheme = "normal" | "light" | "dark" | (string & {}) | "only";
116
- export type ColumnCount = number | "auto";
117
- export type ColumnFill = "auto" | "balance";
118
- export type ColumnGap = "normal" | TLengthPercentage;
119
- export type ColumnRule = ColumnRuleWidth | ColumnRuleStyle | ColumnRuleColor;
120
- export type ColumnRuleColor = TColor;
121
- export type ColumnRuleStyle = BorderStyle;
122
- export type ColumnRuleWidth = BorderWidth;
123
- export type ColumnSpan = "none" | "all";
124
- export type ColumnWidth = "auto";
125
- export type Columns = ColumnWidth | ColumnCount;
126
- export type Contain = "none" | "strict" | "content" | "size" | "inline-size" | "layout" | "style" | "paint";
127
- export type ContainIntrinsicBlockSize = "auto" | "none";
128
- export type ContainIntrinsicHeight = "auto" | "none";
129
- export type ContainIntrinsicInlineSize = "auto" | "none";
130
- export type ContainIntrinsicSize = "auto" | "none";
131
- export type ContainIntrinsicWidth = "auto" | "none";
132
- export type Container = ContainerName | ContainerType;
133
- export type ContainerName = "none" | (string & {});
134
- export type ContainerType = "normal" | "size" | "inline-size" | "scroll-state";
135
- export type Content = "normal" | "none" | TContentReplacement | TContentList | (string & {}) | TCounter;
136
- export type ContentVisibility = "visible" | "auto" | "hidden";
137
- export type CounterIncrement = TCounterName | number | "none";
138
- export type CounterReset = TCounterName | number | TReversedCounterName | number | "none";
139
- export type CounterSet = TCounterName | number | "none";
140
- export type Cursor = TCursorPredefined;
141
- export type Cx = number;
142
- export type Cy = number;
143
- export type D = "none" | (string & {});
144
- export type Direction = "ltr" | "rtl";
145
- export type Display = TDisplayOutside | TDisplayInside | TDisplayListitem | TDisplayInternal | TDisplayBox | TDisplayLegacy;
146
- export type DominantBaseline = "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
147
- export type EmptyCells = "show" | "hide";
148
- export type Fill = TPaint;
149
- export type FillOpacity = Opacity;
150
- export type FillRule = "nonzero" | "evenodd";
151
- export type Filter = "none" | TFilterValueList;
152
- export type Flex = "none" | FlexGrow | FlexShrink | FlexBasis;
153
- export type FlexBasis = "content" | Width;
154
- export type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
155
- export type FlexFlow = FlexDirection | FlexWrap;
156
- export type FlexGrow = number;
157
- export type FlexShrink = number;
158
- export type FlexWrap = "nowrap" | "wrap" | "wrap-reverse";
159
- export type Float = "left" | "right" | "none" | "inline-start" | "inline-end";
160
- export type FloodColor = TColor;
161
- export type FloodOpacity = Opacity;
162
- export type Font = FontStyle | TFontVariantCss2 | FontWeight | TFontWidthCss3 | FontSize | LineHeight | FontFamily | TSystemFamilyName;
163
- export type FontFamily = TFamilyName | TGenericFamily;
164
- export type FontFeatureSettings = "normal" | TFeatureTagValue;
165
- export type FontKerning = "auto" | "normal" | "none";
166
- export type FontLanguageOverride = "normal" | (string & {});
167
- export type FontOpticalSizing = "auto" | "none";
168
- export type FontPalette = "normal" | "light" | "dark" | TPaletteIdentifier;
169
- export type FontSize = TAbsoluteSize | TRelativeSize | TLengthPercentage | "math";
170
- export type FontSizeAdjust = "none" | "ex-height" | "cap-height" | "ch-width" | "ic-width" | "ic-height" | "from-font" | number;
171
- export type FontStyle = "normal" | "italic" | "oblique";
172
- export type FontSynthesis = "none" | "weight" | "style" | "small-caps" | "position";
173
- export type FontSynthesisSmallCaps = "auto" | "none";
174
- export type FontSynthesisStyle = "auto" | "none";
175
- export type FontSynthesisWeight = "auto" | "none";
176
- export type FontVariant = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues | TFeatureValueName | "historical-forms" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
177
- export type FontVariantAlternates = "normal" | TFeatureValueName | "historical-forms";
178
- export type FontVariantCaps = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
179
- export type FontVariantEastAsian = "normal" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
180
- export type FontVariantEmoji = "normal" | "text" | "emoji" | "unicode";
181
- export type FontVariantLigatures = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues;
182
- export type FontVariantNumeric = "normal" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero";
183
- export type FontVariantPosition = "normal" | "sub" | "super";
184
- export type FontVariationSettings = "normal" | (string & {}) | number;
185
- export type FontWeight = TFontWeightAbsolute | "bolder" | "lighter";
186
- export type ForcedColorAdjust = "auto" | "none" | "preserve-parent-color";
187
- export type Gap = RowGap | ColumnGap;
188
- export type Grid = GridTemplate | GridTemplateRows | "auto-flow" | "dense" | GridAutoColumns | "auto-flow" | "dense" | GridAutoRows | GridTemplateColumns;
189
- export type GridArea = TGridLine;
190
- export type GridAutoColumns = TTrackSize;
191
- export type GridAutoFlow = "row" | "column" | "dense";
192
- export type GridAutoRows = TTrackSize;
193
- export type GridColumn = TGridLine;
194
- export type GridColumnEnd = TGridLine;
195
- export type GridColumnStart = TGridLine;
196
- export type GridRow = TGridLine;
197
- export type GridRowEnd = TGridLine;
198
- export type GridRowStart = TGridLine;
199
- export type GridTemplate = "none" | GridTemplateRows | GridTemplateColumns | TLineNames | (string & {}) | TTrackSize | TExplicitTrackList;
200
- export type GridTemplateAreas = "none" | (string & {});
201
- export type GridTemplateColumns = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
202
- export type GridTemplateRows = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
203
- export type HangingPunctuation = "none" | "first" | "force-end" | "allow-end" | "last";
204
- export type Height = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
205
- export type HyphenateCharacter = "auto" | (string & {});
206
- export type HyphenateLimitChars = "auto" | number;
207
- export type Hyphens = "none" | "manual" | "auto";
208
- export type ImageOrientation = "from-image" | "flip";
209
- export type ImageRendering = "auto" | "crisp-edges" | "pixelated" | "smooth";
210
- export type InitialLetter = "normal" | number;
211
- export type InlineSize = Width;
212
- export type Inset = Top;
213
- export type InsetBlock = Top;
214
- export type InsetBlockEnd = Top;
215
- export type InsetBlockStart = Top;
216
- export type InsetInline = Top;
217
- export type InsetInlineEnd = Top;
218
- export type InsetInlineStart = Top;
219
- export type Isolation = "auto" | "isolate";
220
- export type JustifyContent = "normal" | TContentDistribution | TOverflowPosition | TContentPosition | "left" | "right";
221
- export type JustifyItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "legacy" | "legacy" | "left" | "right" | "center" | "anchor-center";
222
- export type JustifySelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "anchor-center";
223
- export type Left = "auto" | TLengthPercentage;
224
- export type LetterSpacing = "normal";
225
- export type LightingColor = TColor;
226
- export type LineBreak = "auto" | "loose" | "normal" | "strict" | "anywhere";
227
- export type LineClamp = "none" | number;
228
- export type LineHeight = "normal" | number;
229
- export type ListStyle = ListStyleType | ListStylePosition | ListStyleImage;
230
- export type ListStyleImage = TImage | "none";
231
- export type ListStylePosition = "inside" | "outside";
232
- export type ListStyleType = TCounterStyle | (string & {}) | "none";
233
- export type Margin = MarginTop;
234
- export type MarginBlock = MarginTop;
235
- export type MarginBlockEnd = MarginTop;
236
- export type MarginBlockStart = MarginTop;
237
- export type MarginBottom = TLengthPercentage | "auto";
238
- export type MarginInline = MarginTop;
239
- export type MarginInlineEnd = MarginTop;
240
- export type MarginInlineStart = MarginTop;
241
- export type MarginLeft = TLengthPercentage | "auto";
242
- export type MarginRight = TLengthPercentage | "auto";
243
- export type MarginTop = TLengthPercentage | "auto";
244
- export type Marker = "none";
245
- export type MarkerEnd = "none";
246
- export type MarkerMid = "none";
247
- export type MarkerStart = "none";
248
- export type Mask = TMaskLayer;
249
- export type MaskBorder = MaskBorderSource | MaskBorderSlice | MaskBorderWidth | MaskBorderOutset | MaskBorderRepeat | MaskBorderMode;
250
- export type MaskBorderMode = "luminance" | "alpha";
251
- export type MaskBorderOutset = number;
252
- export type MaskBorderRepeat = "stretch" | "repeat" | "round" | "space";
253
- export type MaskBorderSlice = TNumberPercentage | "fill";
254
- export type MaskBorderSource = "none" | TImage;
255
- export type MaskBorderWidth = TLengthPercentage | number | "auto";
256
- export type MaskClip = TCoordBox | "no-clip";
257
- export type MaskComposite = TCompositingOperator;
258
- export type MaskImage = TMaskReference;
259
- export type MaskMode = TMaskingMode;
260
- export type MaskOrigin = TCoordBox;
261
- export type MaskPosition = TPosition;
262
- export type MaskRepeat = TRepeatStyle;
263
- export type MaskSize = TBgSize;
264
- export type MaskType = "luminance" | "alpha";
265
- export type MathDepth = "auto-add" | number;
266
- export type MathStyle = "normal" | "compact";
267
- export type MaxBlockSize = MaxWidth;
268
- export type MaxHeight = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
269
- export type MaxInlineSize = MaxWidth;
270
- export type MaxWidth = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
271
- export type MinBlockSize = MinWidth;
272
- export type MinHeight = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
273
- export type MinInlineSize = MinWidth;
274
- export type MinWidth = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
275
- export type MixBlendMode = TBlendMode | "plus-darker" | "plus-lighter";
276
- export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
277
- export type ObjectPosition = TPosition;
278
- export type Offset = OffsetPosition | OffsetPath | OffsetDistance | OffsetRotate | OffsetAnchor;
279
- export type OffsetAnchor = "auto" | TPosition;
280
- export type OffsetDistance = TLengthPercentage;
281
- export type OffsetPath = "none" | TOffsetPath | TCoordBox;
282
- export type OffsetPosition = "normal" | "auto" | TPosition;
283
- export type OffsetRotate = "auto" | "reverse";
284
- export type Opacity = TOpacityValue;
285
- export type Order = number;
286
- export type Orphans = number;
287
- export type Outline = OutlineWidth | OutlineStyle | OutlineColor;
288
- export type OutlineColor = "auto" | TColor;
289
- export type OutlineOffset = (string & {});
290
- export type OutlineStyle = "auto" | TOutlineLineStyle;
291
- export type OutlineWidth = TLineWidth;
292
- export type Overflow = "visible" | "hidden" | "clip" | "scroll" | "auto";
293
- export type OverflowAnchor = "auto" | "none";
294
- export type OverflowBlock = "visible" | "hidden" | "clip" | "scroll" | "auto";
295
- export type OverflowClipMargin = TVisualBox;
296
- export type OverflowInline = "visible" | "hidden" | "clip" | "scroll" | "auto";
297
- export type OverflowWrap = "normal" | "break-word" | "anywhere";
298
- export type OverflowX = "visible" | "hidden" | "clip" | "scroll" | "auto";
299
- export type OverflowY = "visible" | "hidden" | "clip" | "scroll" | "auto";
300
- export type OverscrollBehavior = "contain" | "none" | "auto";
301
- export type OverscrollBehaviorBlock = "contain" | "none" | "auto";
302
- export type OverscrollBehaviorInline = "contain" | "none" | "auto";
303
- export type OverscrollBehaviorX = "contain" | "none" | "auto";
304
- export type OverscrollBehaviorY = "contain" | "none" | "auto";
305
- export type Padding = PaddingTop;
306
- export type PaddingBlock = PaddingTop;
307
- export type PaddingBlockEnd = PaddingTop;
308
- export type PaddingBlockStart = PaddingTop;
309
- export type PaddingBottom = TLengthPercentage;
310
- export type PaddingInline = PaddingTop;
311
- export type PaddingInlineEnd = PaddingTop;
312
- export type PaddingInlineStart = PaddingTop;
313
- export type PaddingLeft = TLengthPercentage;
314
- export type PaddingRight = TLengthPercentage;
315
- export type PaddingTop = TLengthPercentage;
316
- export type Page = "auto" | (string & {});
317
- export type PaintOrder = "normal" | "fill" | "stroke" | "markers";
318
- export type Perspective = "none";
319
- export type PerspectiveOrigin = TPosition;
320
- export type PlaceContent = AlignContent | JustifyContent;
321
- export type PlaceItems = AlignItems | JustifyItems;
322
- export type PlaceSelf = AlignSelf | JustifySelf;
323
- export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
324
- export type Position = "static" | "relative" | "absolute" | "sticky" | "fixed";
325
- export type PrintColorAdjust = "economy" | "exact";
326
- export type Quotes = "none" | "auto" | (string & {});
327
- export type R = number;
328
- export type Resize = "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
329
- export type Right = "auto" | TLengthPercentage;
330
- export type Rotate = "none" | "x" | "y" | "z" | number;
331
- export type RowGap = "normal" | TLengthPercentage;
332
- export type RubyAlign = "start" | "center" | "space-between" | "space-around";
333
- export type RubyOverhang = "auto" | "none";
334
- export type RubyPosition = "alternate" | "over" | "under" | "inter-character";
335
- export type Rx = number;
336
- export type Ry = number;
337
- export type Scale = "none" | number;
338
- export type ScrollBehavior = "auto" | "smooth";
339
- export type ScrollMargin = (string & {});
340
- export type ScrollMarginBlock = (string & {});
341
- export type ScrollMarginBlockEnd = (string & {});
342
- export type ScrollMarginBlockStart = (string & {});
343
- export type ScrollMarginBottom = (string & {});
344
- export type ScrollMarginInline = (string & {});
345
- export type ScrollMarginInlineEnd = (string & {});
346
- export type ScrollMarginInlineStart = (string & {});
347
- export type ScrollMarginLeft = (string & {});
348
- export type ScrollMarginRight = (string & {});
349
- export type ScrollMarginTop = (string & {});
350
- export type ScrollPadding = "auto" | TLengthPercentage;
351
- export type ScrollPaddingBlock = "auto" | TLengthPercentage;
352
- export type ScrollPaddingBlockEnd = "auto" | TLengthPercentage;
353
- export type ScrollPaddingBlockStart = "auto" | TLengthPercentage;
354
- export type ScrollPaddingBottom = "auto" | TLengthPercentage;
355
- export type ScrollPaddingInline = "auto" | TLengthPercentage;
356
- export type ScrollPaddingInlineEnd = "auto" | TLengthPercentage;
357
- export type ScrollPaddingInlineStart = "auto" | TLengthPercentage;
358
- export type ScrollPaddingLeft = "auto" | TLengthPercentage;
359
- export type ScrollPaddingRight = "auto" | TLengthPercentage;
360
- export type ScrollPaddingTop = "auto" | TLengthPercentage;
361
- export type ScrollSnapAlign = "none" | "start" | "end" | "center";
362
- export type ScrollSnapStop = "normal" | "always";
363
- export type ScrollSnapType = "none" | "x" | "y" | "block" | "inline" | "both" | "mandatory" | "proximity";
364
- export type ScrollbarColor = "auto" | TColor;
365
- export type ScrollbarGutter = "auto" | "stable" | "both-edges";
366
- export type ScrollbarWidth = "auto" | "thin" | "none";
367
- export type ShapeImageThreshold = TOpacityValue;
368
- export type ShapeMargin = TLengthPercentage;
369
- export type ShapeOutside = "none" | TShapeBox | TBasicShape | TImage;
370
- export type ShapeRendering = "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
371
- export type StopColor = Color;
372
- export type StopOpacity = Opacity;
373
- export type Stroke = TPaint;
374
- export type StrokeDasharray = "none" | TDasharray;
375
- export type StrokeDashoffset = TLengthPercentage | number;
376
- export type StrokeLinecap = "butt" | "round" | "square";
377
- export type StrokeLinejoin = "miter" | "miter-clip" | "round" | "bevel" | "arcs";
378
- export type StrokeMiterlimit = number;
379
- export type StrokeOpacity = Opacity;
380
- export type StrokeWidth = TLengthPercentage | number;
381
- export type TabSize = number;
382
- export type TableLayout = "auto" | "fixed";
383
- export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent";
384
- export type TextAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
385
- export type TextAnchor = "start" | "middle" | "end";
386
- export type TextAutospace = "normal" | "auto";
387
- export type TextBox = "normal" | TextBoxTrim | TextBoxEdge;
388
- export type TextBoxEdge = "auto" | TTextEdge;
389
- export type TextBoxTrim = "none" | "trim-start" | "trim-end" | "trim-both";
390
- export type TextCombineUpright = "none" | "all" | "digits" | number;
391
- export type TextDecoration = TextDecorationLine | TextDecorationStyle | TextDecorationColor | TextDecorationThickness;
392
- export type TextDecorationColor = TColor;
393
- export type TextDecorationLine = "none" | "underline" | "overline" | "line-through" | "blink" | "spelling-error" | "grammar-error";
394
- export type TextDecorationSkipInk = "auto" | "all" | "none";
395
- export type TextDecorationStyle = "solid" | "double" | "dotted" | "dashed" | "wavy";
396
- export type TextDecorationThickness = "auto" | "from-font" | number;
397
- export type TextEmphasis = TextEmphasisStyle | TextEmphasisColor;
398
- export type TextEmphasisColor = TColor;
399
- export type TextEmphasisPosition = "auto" | "over" | "under" | "right" | "left";
400
- export type TextEmphasisStyle = "none" | "filled" | "open" | "dot" | "circle" | "double-circle" | "triangle" | "sesame" | (string & {});
401
- export type TextIndent = TLengthPercentage | "hanging" | "each-line";
402
- export type TextJustify = "auto" | "inter-character" | "inter-word" | "none";
403
- export type TextOrientation = "mixed" | "upright" | "sideways";
404
- export type TextOverflow = "clip" | "ellipsis" | (string & {});
405
- export type TextRendering = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
406
- export type TextShadow = "none" | TShadowT;
407
- export type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana" | "math-auto";
408
- export type TextUnderlineOffset = "auto" | number;
409
- export type TextUnderlinePosition = "auto" | "from-font" | "under" | "left" | "right";
410
- export type TextWrap = TextWrapMode | TextWrapStyle;
411
- export type TextWrapMode = "wrap" | "nowrap";
412
- export type TextWrapStyle = "auto" | "balance" | "stable" | "pretty";
413
- export type Top = "auto" | TLengthPercentage;
414
- export type TouchAction = "auto" | "none" | "pan-x" | "pan-left" | "pan-right" | "pan-y" | "pan-up" | "pan-down" | "pinch-zoom" | "manipulation";
415
- export type Transform = "none" | TTransformList;
416
- export type TransformBox = "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box";
417
- export type TransformOrigin = TLengthPercentage | "left" | "center" | "right" | "top" | "bottom" | TLengthPercentage | "left" | "center" | "right" | TLengthPercentage | "top" | "center" | "bottom";
418
- export type TransformStyle = "flat" | "preserve-3d";
419
- export type Transition = TSingleTransition;
420
- export type TransitionBehavior = TTransitionBehaviorValue;
421
- export type TransitionDelay = (string & {});
422
- export type TransitionDuration = (string & {});
423
- export type TransitionProperty = "none" | TSingleTransitionProperty;
424
- export type TransitionTimingFunction = TEasingFunction;
425
- export type Translate = "none" | TLengthPercentage;
426
- export type UnicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
427
- export type UserSelect = "auto" | "text" | "none" | "all";
428
- export type VectorEffect = "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
429
- export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | number;
430
- export type ViewTransitionClass = "none" | (string & {});
431
- export type ViewTransitionName = "none" | (string & {}) | "match-element";
432
- export type Visibility = "visible" | "hidden" | "collapse";
433
- export type WhiteSpace = "normal" | "pre" | "pre-wrap" | "pre-line" | WhiteSpaceCollapse | TextWrapMode;
434
- export type WhiteSpaceCollapse = "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces";
435
- export type Widows = number;
436
- export type Width = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
437
- export type WillChange = "auto" | TAnimateableFeature;
438
- export type WordBreak = "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
439
- export type WordSpacing = "normal";
440
- export type WordWrap = "normal" | "break-word";
441
- export type WritingMode = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
442
- export type X = number;
443
- export type Y = number;
444
- export type ZIndex = "auto" | number;
445
- export type Zoom = "normal" | "reset" | number;
446
- export interface StandardProperties {
447
- accentColor: AccentColor
448
- alignContent: AlignContent
449
- alignItems: AlignItems
450
- alignSelf: AlignSelf
451
- alignmentBaseline: AlignmentBaseline
452
- all: All
453
- animation: Animation
454
- animationComposition: AnimationComposition
455
- animationDelay: AnimationDelay
456
- animationDirection: AnimationDirection
457
- animationDuration: AnimationDuration
458
- animationFillMode: AnimationFillMode
459
- animationIterationCount: AnimationIterationCount
460
- animationName: AnimationName
461
- animationPlayState: AnimationPlayState
462
- animationTimingFunction: AnimationTimingFunction
463
- appearance: Appearance
464
- aspectRatio: AspectRatio
465
- backdropFilter: BackdropFilter
466
- backfaceVisibility: BackfaceVisibility
467
- background: Background
468
- backgroundAttachment: BackgroundAttachment
469
- backgroundBlendMode: BackgroundBlendMode
470
- backgroundClip: BackgroundClip
471
- backgroundColor: BackgroundColor
472
- backgroundImage: BackgroundImage
473
- backgroundOrigin: BackgroundOrigin
474
- backgroundPosition: BackgroundPosition
475
- backgroundPositionX: BackgroundPositionX
476
- backgroundPositionY: BackgroundPositionY
477
- backgroundRepeat: BackgroundRepeat
478
- backgroundSize: BackgroundSize
479
- baselineShift: BaselineShift
480
- blockSize: BlockSize
481
- border: Border
482
- borderBlock: BorderBlock
483
- borderBlockColor: BorderBlockColor
484
- borderBlockEnd: BorderBlockEnd
485
- borderBlockEndColor: BorderBlockEndColor
486
- borderBlockEndStyle: BorderBlockEndStyle
487
- borderBlockEndWidth: BorderBlockEndWidth
488
- borderBlockStart: BorderBlockStart
489
- borderBlockStartColor: BorderBlockStartColor
490
- borderBlockStartStyle: BorderBlockStartStyle
491
- borderBlockStartWidth: BorderBlockStartWidth
492
- borderBlockStyle: BorderBlockStyle
493
- borderBlockWidth: BorderBlockWidth
494
- borderBottom: BorderBottom
495
- borderBottomColor: BorderBottomColor
496
- borderBottomLeftRadius: BorderBottomLeftRadius
497
- borderBottomRightRadius: BorderBottomRightRadius
498
- borderBottomStyle: BorderBottomStyle
499
- borderBottomWidth: BorderBottomWidth
500
- borderCollapse: BorderCollapse
501
- borderColor: BorderColor
502
- borderEndEndRadius: BorderEndEndRadius
503
- borderEndStartRadius: BorderEndStartRadius
504
- borderImage: BorderImage
505
- borderImageOutset: BorderImageOutset
506
- borderImageRepeat: BorderImageRepeat
507
- borderImageSlice: BorderImageSlice
508
- borderImageSource: BorderImageSource
509
- borderImageWidth: BorderImageWidth
510
- borderInline: BorderInline
511
- borderInlineColor: BorderInlineColor
512
- borderInlineEnd: BorderInlineEnd
513
- borderInlineEndColor: BorderInlineEndColor
514
- borderInlineEndStyle: BorderInlineEndStyle
515
- borderInlineEndWidth: BorderInlineEndWidth
516
- borderInlineStart: BorderInlineStart
517
- borderInlineStartColor: BorderInlineStartColor
518
- borderInlineStartStyle: BorderInlineStartStyle
519
- borderInlineStartWidth: BorderInlineStartWidth
520
- borderInlineStyle: BorderInlineStyle
521
- borderInlineWidth: BorderInlineWidth
522
- borderLeft: BorderLeft
523
- borderLeftColor: BorderLeftColor
524
- borderLeftStyle: BorderLeftStyle
525
- borderLeftWidth: BorderLeftWidth
526
- borderRadius: BorderRadius
527
- borderRight: BorderRight
528
- borderRightColor: BorderRightColor
529
- borderRightStyle: BorderRightStyle
530
- borderRightWidth: BorderRightWidth
531
- borderSpacing: BorderSpacing
532
- borderStartEndRadius: BorderStartEndRadius
533
- borderStartStartRadius: BorderStartStartRadius
534
- borderStyle: BorderStyle
535
- borderTop: BorderTop
536
- borderTopColor: BorderTopColor
537
- borderTopLeftRadius: BorderTopLeftRadius
538
- borderTopRightRadius: BorderTopRightRadius
539
- borderTopStyle: BorderTopStyle
540
- borderTopWidth: BorderTopWidth
541
- borderWidth: BorderWidth
542
- bottom: Bottom
543
- boxDecorationBreak: BoxDecorationBreak
544
- boxShadow: BoxShadow
545
- boxSizing: BoxSizing
546
- breakAfter: BreakAfter
547
- breakBefore: BreakBefore
548
- breakInside: BreakInside
549
- captionSide: CaptionSide
550
- caret: Caret
551
- caretColor: CaretColor
552
- caretShape: CaretShape
553
- clear: Clear
554
- clipPath: ClipPath
555
- clipRule: ClipRule
556
- color: Color
557
- colorInterpolationFilters: ColorInterpolationFilters
558
- colorScheme: ColorScheme
559
- columnCount: ColumnCount
560
- columnFill: ColumnFill
561
- columnGap: ColumnGap
562
- columnRule: ColumnRule
563
- columnRuleColor: ColumnRuleColor
564
- columnRuleStyle: ColumnRuleStyle
565
- columnRuleWidth: ColumnRuleWidth
566
- columnSpan: ColumnSpan
567
- columnWidth: ColumnWidth
568
- columns: Columns
569
- contain: Contain
570
- containIntrinsicBlockSize: ContainIntrinsicBlockSize
571
- containIntrinsicHeight: ContainIntrinsicHeight
572
- containIntrinsicInlineSize: ContainIntrinsicInlineSize
573
- containIntrinsicSize: ContainIntrinsicSize
574
- containIntrinsicWidth: ContainIntrinsicWidth
575
- container: Container
576
- containerName: ContainerName
577
- containerType: ContainerType
578
- content: Content
579
- contentVisibility: ContentVisibility
580
- counterIncrement: CounterIncrement
581
- counterReset: CounterReset
582
- counterSet: CounterSet
583
- cursor: Cursor
584
- cx: Cx
585
- cy: Cy
586
- d: D
587
- direction: Direction
588
- display: Display
589
- dominantBaseline: DominantBaseline
590
- emptyCells: EmptyCells
591
- fill: Fill
592
- fillOpacity: FillOpacity
593
- fillRule: FillRule
594
- filter: Filter
595
- flex: Flex
596
- flexBasis: FlexBasis
597
- flexDirection: FlexDirection
598
- flexFlow: FlexFlow
599
- flexGrow: FlexGrow
600
- flexShrink: FlexShrink
601
- flexWrap: FlexWrap
602
- float: Float
603
- floodColor: FloodColor
604
- floodOpacity: FloodOpacity
605
- font: Font
606
- fontFamily: FontFamily
607
- fontFeatureSettings: FontFeatureSettings
608
- fontKerning: FontKerning
609
- fontLanguageOverride: FontLanguageOverride
610
- fontOpticalSizing: FontOpticalSizing
611
- fontPalette: FontPalette
612
- fontSize: FontSize
613
- fontSizeAdjust: FontSizeAdjust
614
- fontStyle: FontStyle
615
- fontSynthesis: FontSynthesis
616
- fontSynthesisSmallCaps: FontSynthesisSmallCaps
617
- fontSynthesisStyle: FontSynthesisStyle
618
- fontSynthesisWeight: FontSynthesisWeight
619
- fontVariant: FontVariant
620
- fontVariantAlternates: FontVariantAlternates
621
- fontVariantCaps: FontVariantCaps
622
- fontVariantEastAsian: FontVariantEastAsian
623
- fontVariantEmoji: FontVariantEmoji
624
- fontVariantLigatures: FontVariantLigatures
625
- fontVariantNumeric: FontVariantNumeric
626
- fontVariantPosition: FontVariantPosition
627
- fontVariationSettings: FontVariationSettings
628
- fontWeight: FontWeight
629
- forcedColorAdjust: ForcedColorAdjust
630
- gap: Gap
631
- grid: Grid
632
- gridArea: GridArea
633
- gridAutoColumns: GridAutoColumns
634
- gridAutoFlow: GridAutoFlow
635
- gridAutoRows: GridAutoRows
636
- gridColumn: GridColumn
637
- gridColumnEnd: GridColumnEnd
638
- gridColumnStart: GridColumnStart
639
- gridRow: GridRow
640
- gridRowEnd: GridRowEnd
641
- gridRowStart: GridRowStart
642
- gridTemplate: GridTemplate
643
- gridTemplateAreas: GridTemplateAreas
644
- gridTemplateColumns: GridTemplateColumns
645
- gridTemplateRows: GridTemplateRows
646
- hangingPunctuation: HangingPunctuation
647
- height: Height
648
- hyphenateCharacter: HyphenateCharacter
649
- hyphenateLimitChars: HyphenateLimitChars
650
- hyphens: Hyphens
651
- imageOrientation: ImageOrientation
652
- imageRendering: ImageRendering
653
- initialLetter: InitialLetter
654
- inlineSize: InlineSize
655
- inset: Inset
656
- insetBlock: InsetBlock
657
- insetBlockEnd: InsetBlockEnd
658
- insetBlockStart: InsetBlockStart
659
- insetInline: InsetInline
660
- insetInlineEnd: InsetInlineEnd
661
- insetInlineStart: InsetInlineStart
662
- isolation: Isolation
663
- justifyContent: JustifyContent
664
- justifyItems: JustifyItems
665
- justifySelf: JustifySelf
666
- left: Left
667
- letterSpacing: LetterSpacing
668
- lightingColor: LightingColor
669
- lineBreak: LineBreak
670
- lineClamp: LineClamp
671
- lineHeight: LineHeight
672
- listStyle: ListStyle
673
- listStyleImage: ListStyleImage
674
- listStylePosition: ListStylePosition
675
- listStyleType: ListStyleType
676
- margin: Margin
677
- marginBlock: MarginBlock
678
- marginBlockEnd: MarginBlockEnd
679
- marginBlockStart: MarginBlockStart
680
- marginBottom: MarginBottom
681
- marginInline: MarginInline
682
- marginInlineEnd: MarginInlineEnd
683
- marginInlineStart: MarginInlineStart
684
- marginLeft: MarginLeft
685
- marginRight: MarginRight
686
- marginTop: MarginTop
687
- marker: Marker
688
- markerEnd: MarkerEnd
689
- markerMid: MarkerMid
690
- markerStart: MarkerStart
691
- mask: Mask
692
- maskBorder: MaskBorder
693
- maskBorderMode: MaskBorderMode
694
- maskBorderOutset: MaskBorderOutset
695
- maskBorderRepeat: MaskBorderRepeat
696
- maskBorderSlice: MaskBorderSlice
697
- maskBorderSource: MaskBorderSource
698
- maskBorderWidth: MaskBorderWidth
699
- maskClip: MaskClip
700
- maskComposite: MaskComposite
701
- maskImage: MaskImage
702
- maskMode: MaskMode
703
- maskOrigin: MaskOrigin
704
- maskPosition: MaskPosition
705
- maskRepeat: MaskRepeat
706
- maskSize: MaskSize
707
- maskType: MaskType
708
- mathDepth: MathDepth
709
- mathStyle: MathStyle
710
- maxBlockSize: MaxBlockSize
711
- maxHeight: MaxHeight
712
- maxInlineSize: MaxInlineSize
713
- maxWidth: MaxWidth
714
- minBlockSize: MinBlockSize
715
- minHeight: MinHeight
716
- minInlineSize: MinInlineSize
717
- minWidth: MinWidth
718
- mixBlendMode: MixBlendMode
719
- objectFit: ObjectFit
720
- objectPosition: ObjectPosition
721
- offset: Offset
722
- offsetAnchor: OffsetAnchor
723
- offsetDistance: OffsetDistance
724
- offsetPath: OffsetPath
725
- offsetPosition: OffsetPosition
726
- offsetRotate: OffsetRotate
727
- opacity: Opacity
728
- order: Order
729
- orphans: Orphans
730
- outline: Outline
731
- outlineColor: OutlineColor
732
- outlineOffset: OutlineOffset
733
- outlineStyle: OutlineStyle
734
- outlineWidth: OutlineWidth
735
- overflow: Overflow
736
- overflowAnchor: OverflowAnchor
737
- overflowBlock: OverflowBlock
738
- overflowClipMargin: OverflowClipMargin
739
- overflowInline: OverflowInline
740
- overflowWrap: OverflowWrap
741
- overflowX: OverflowX
742
- overflowY: OverflowY
743
- overscrollBehavior: OverscrollBehavior
744
- overscrollBehaviorBlock: OverscrollBehaviorBlock
745
- overscrollBehaviorInline: OverscrollBehaviorInline
746
- overscrollBehaviorX: OverscrollBehaviorX
747
- overscrollBehaviorY: OverscrollBehaviorY
748
- padding: Padding
749
- paddingBlock: PaddingBlock
750
- paddingBlockEnd: PaddingBlockEnd
751
- paddingBlockStart: PaddingBlockStart
752
- paddingBottom: PaddingBottom
753
- paddingInline: PaddingInline
754
- paddingInlineEnd: PaddingInlineEnd
755
- paddingInlineStart: PaddingInlineStart
756
- paddingLeft: PaddingLeft
757
- paddingRight: PaddingRight
758
- paddingTop: PaddingTop
759
- page: Page
760
- paintOrder: PaintOrder
761
- perspective: Perspective
762
- perspectiveOrigin: PerspectiveOrigin
763
- placeContent: PlaceContent
764
- placeItems: PlaceItems
765
- placeSelf: PlaceSelf
766
- pointerEvents: PointerEvents
767
- position: Position
768
- printColorAdjust: PrintColorAdjust
769
- quotes: Quotes
770
- r: R
771
- resize: Resize
772
- right: Right
773
- rotate: Rotate
774
- rowGap: RowGap
775
- rubyAlign: RubyAlign
776
- rubyOverhang: RubyOverhang
777
- rubyPosition: RubyPosition
778
- rx: Rx
779
- ry: Ry
780
- scale: Scale
781
- scrollBehavior: ScrollBehavior
782
- scrollMargin: ScrollMargin
783
- scrollMarginBlock: ScrollMarginBlock
784
- scrollMarginBlockEnd: ScrollMarginBlockEnd
785
- scrollMarginBlockStart: ScrollMarginBlockStart
786
- scrollMarginBottom: ScrollMarginBottom
787
- scrollMarginInline: ScrollMarginInline
788
- scrollMarginInlineEnd: ScrollMarginInlineEnd
789
- scrollMarginInlineStart: ScrollMarginInlineStart
790
- scrollMarginLeft: ScrollMarginLeft
791
- scrollMarginRight: ScrollMarginRight
792
- scrollMarginTop: ScrollMarginTop
793
- scrollPadding: ScrollPadding
794
- scrollPaddingBlock: ScrollPaddingBlock
795
- scrollPaddingBlockEnd: ScrollPaddingBlockEnd
796
- scrollPaddingBlockStart: ScrollPaddingBlockStart
797
- scrollPaddingBottom: ScrollPaddingBottom
798
- scrollPaddingInline: ScrollPaddingInline
799
- scrollPaddingInlineEnd: ScrollPaddingInlineEnd
800
- scrollPaddingInlineStart: ScrollPaddingInlineStart
801
- scrollPaddingLeft: ScrollPaddingLeft
802
- scrollPaddingRight: ScrollPaddingRight
803
- scrollPaddingTop: ScrollPaddingTop
804
- scrollSnapAlign: ScrollSnapAlign
805
- scrollSnapStop: ScrollSnapStop
806
- scrollSnapType: ScrollSnapType
807
- scrollbarColor: ScrollbarColor
808
- scrollbarGutter: ScrollbarGutter
809
- scrollbarWidth: ScrollbarWidth
810
- shapeImageThreshold: ShapeImageThreshold
811
- shapeMargin: ShapeMargin
812
- shapeOutside: ShapeOutside
813
- shapeRendering: ShapeRendering
814
- stopColor: StopColor
815
- stopOpacity: StopOpacity
816
- stroke: Stroke
817
- strokeDasharray: StrokeDasharray
818
- strokeDashoffset: StrokeDashoffset
819
- strokeLinecap: StrokeLinecap
820
- strokeLinejoin: StrokeLinejoin
821
- strokeMiterlimit: StrokeMiterlimit
822
- strokeOpacity: StrokeOpacity
823
- strokeWidth: StrokeWidth
824
- tabSize: TabSize
825
- tableLayout: TableLayout
826
- textAlign: TextAlign
827
- textAlignLast: TextAlignLast
828
- textAnchor: TextAnchor
829
- textAutospace: TextAutospace
830
- textBox: TextBox
831
- textBoxEdge: TextBoxEdge
832
- textBoxTrim: TextBoxTrim
833
- textCombineUpright: TextCombineUpright
834
- textDecoration: TextDecoration
835
- textDecorationColor: TextDecorationColor
836
- textDecorationLine: TextDecorationLine
837
- textDecorationSkipInk: TextDecorationSkipInk
838
- textDecorationStyle: TextDecorationStyle
839
- textDecorationThickness: TextDecorationThickness
840
- textEmphasis: TextEmphasis
841
- textEmphasisColor: TextEmphasisColor
842
- textEmphasisPosition: TextEmphasisPosition
843
- textEmphasisStyle: TextEmphasisStyle
844
- textIndent: TextIndent
845
- textJustify: TextJustify
846
- textOrientation: TextOrientation
847
- textOverflow: TextOverflow
848
- textRendering: TextRendering
849
- textShadow: TextShadow
850
- textTransform: TextTransform
851
- textUnderlineOffset: TextUnderlineOffset
852
- textUnderlinePosition: TextUnderlinePosition
853
- textWrap: TextWrap
854
- textWrapMode: TextWrapMode
855
- textWrapStyle: TextWrapStyle
856
- top: Top
857
- touchAction: TouchAction
858
- transform: Transform
859
- transformBox: TransformBox
860
- transformOrigin: TransformOrigin
861
- transformStyle: TransformStyle
862
- transition: Transition
863
- transitionBehavior: TransitionBehavior
864
- transitionDelay: TransitionDelay
865
- transitionDuration: TransitionDuration
866
- transitionProperty: TransitionProperty
867
- transitionTimingFunction: TransitionTimingFunction
868
- translate: Translate
869
- unicodeBidi: UnicodeBidi
870
- userSelect: UserSelect
871
- vectorEffect: VectorEffect
872
- verticalAlign: VerticalAlign
873
- viewTransitionClass: ViewTransitionClass
874
- viewTransitionName: ViewTransitionName
875
- visibility: Visibility
876
- whiteSpace: WhiteSpace
877
- whiteSpaceCollapse: WhiteSpaceCollapse
878
- widows: Widows
879
- width: Width
880
- willChange: WillChange
881
- wordBreak: WordBreak
882
- wordSpacing: WordSpacing
883
- wordWrap: WordWrap
884
- writingMode: WritingMode
885
- x: X
886
- y: Y
887
- zIndex: ZIndex
888
- zoom: Zoom
3
+ export as namespace CSS;
4
+ export interface StandardLonghandProperties {
5
+ accentColor?: Property.AccentColor | undefined
6
+ alignContent?: Property.AlignContent | undefined
7
+ alignItems?: Property.AlignItems | undefined
8
+ alignSelf?: Property.AlignSelf | undefined
9
+ alignmentBaseline?: Property.AlignmentBaseline | undefined
10
+ all?: Property.All | undefined
11
+ animationComposition?: Property.AnimationComposition | undefined
12
+ animationDelay?: Property.AnimationDelay | undefined
13
+ animationDirection?: Property.AnimationDirection | undefined
14
+ animationDuration?: Property.AnimationDuration | undefined
15
+ animationFillMode?: Property.AnimationFillMode | undefined
16
+ animationIterationCount?: Property.AnimationIterationCount | undefined
17
+ animationName?: Property.AnimationName | undefined
18
+ animationPlayState?: Property.AnimationPlayState | undefined
19
+ animationTimingFunction?: Property.AnimationTimingFunction | undefined
20
+ appearance?: Property.Appearance | undefined
21
+ aspectRatio?: Property.AspectRatio | undefined
22
+ backdropFilter?: Property.BackdropFilter | undefined
23
+ backfaceVisibility?: Property.BackfaceVisibility | undefined
24
+ backgroundAttachment?: Property.BackgroundAttachment | undefined
25
+ backgroundBlendMode?: Property.BackgroundBlendMode | undefined
26
+ backgroundClip?: Property.BackgroundClip | undefined
27
+ backgroundColor?: Property.BackgroundColor | undefined
28
+ backgroundImage?: Property.BackgroundImage | undefined
29
+ backgroundOrigin?: Property.BackgroundOrigin | undefined
30
+ backgroundPositionX?: Property.BackgroundPositionX | undefined
31
+ backgroundPositionY?: Property.BackgroundPositionY | undefined
32
+ backgroundRepeat?: Property.BackgroundRepeat | undefined
33
+ backgroundSize?: Property.BackgroundSize | undefined
34
+ baselineShift?: Property.BaselineShift | undefined
35
+ blockSize?: Property.BlockSize | undefined
36
+ borderBlockColor?: Property.BorderBlockColor | undefined
37
+ borderBlockEndColor?: Property.BorderBlockEndColor | undefined
38
+ borderBlockEndStyle?: Property.BorderBlockEndStyle | undefined
39
+ borderBlockEndWidth?: Property.BorderBlockEndWidth | undefined
40
+ borderBlockStartColor?: Property.BorderBlockStartColor | undefined
41
+ borderBlockStartStyle?: Property.BorderBlockStartStyle | undefined
42
+ borderBlockStartWidth?: Property.BorderBlockStartWidth | undefined
43
+ borderBlockStyle?: Property.BorderBlockStyle | undefined
44
+ borderBlockWidth?: Property.BorderBlockWidth | undefined
45
+ borderBottomColor?: Property.BorderBottomColor | undefined
46
+ borderBottomLeftRadius?: Property.BorderBottomLeftRadius | undefined
47
+ borderBottomRightRadius?: Property.BorderBottomRightRadius | undefined
48
+ borderBottomStyle?: Property.BorderBottomStyle | undefined
49
+ borderBottomWidth?: Property.BorderBottomWidth | undefined
50
+ borderCollapse?: Property.BorderCollapse | undefined
51
+ borderEndEndRadius?: Property.BorderEndEndRadius | undefined
52
+ borderEndStartRadius?: Property.BorderEndStartRadius | undefined
53
+ borderImageOutset?: Property.BorderImageOutset | undefined
54
+ borderImageRepeat?: Property.BorderImageRepeat | undefined
55
+ borderImageSlice?: Property.BorderImageSlice | undefined
56
+ borderImageSource?: Property.BorderImageSource | undefined
57
+ borderImageWidth?: Property.BorderImageWidth | undefined
58
+ borderInlineColor?: Property.BorderInlineColor | undefined
59
+ borderInlineEndColor?: Property.BorderInlineEndColor | undefined
60
+ borderInlineEndStyle?: Property.BorderInlineEndStyle | undefined
61
+ borderInlineEndWidth?: Property.BorderInlineEndWidth | undefined
62
+ borderInlineStartColor?: Property.BorderInlineStartColor | undefined
63
+ borderInlineStartStyle?: Property.BorderInlineStartStyle | undefined
64
+ borderInlineStartWidth?: Property.BorderInlineStartWidth | undefined
65
+ borderInlineStyle?: Property.BorderInlineStyle | undefined
66
+ borderInlineWidth?: Property.BorderInlineWidth | undefined
67
+ borderLeftColor?: Property.BorderLeftColor | undefined
68
+ borderLeftStyle?: Property.BorderLeftStyle | undefined
69
+ borderLeftWidth?: Property.BorderLeftWidth | undefined
70
+ borderRightColor?: Property.BorderRightColor | undefined
71
+ borderRightStyle?: Property.BorderRightStyle | undefined
72
+ borderRightWidth?: Property.BorderRightWidth | undefined
73
+ borderSpacing?: Property.BorderSpacing | undefined
74
+ borderStartEndRadius?: Property.BorderStartEndRadius | undefined
75
+ borderStartStartRadius?: Property.BorderStartStartRadius | undefined
76
+ borderTopColor?: Property.BorderTopColor | undefined
77
+ borderTopLeftRadius?: Property.BorderTopLeftRadius | undefined
78
+ borderTopRightRadius?: Property.BorderTopRightRadius | undefined
79
+ borderTopStyle?: Property.BorderTopStyle | undefined
80
+ borderTopWidth?: Property.BorderTopWidth | undefined
81
+ bottom?: Property.Bottom | undefined
82
+ boxDecorationBreak?: Property.BoxDecorationBreak | undefined
83
+ boxShadow?: Property.BoxShadow | undefined
84
+ boxSizing?: Property.BoxSizing | undefined
85
+ breakAfter?: Property.BreakAfter | undefined
86
+ breakBefore?: Property.BreakBefore | undefined
87
+ breakInside?: Property.BreakInside | undefined
88
+ captionSide?: Property.CaptionSide | undefined
89
+ caretColor?: Property.CaretColor | undefined
90
+ caretShape?: Property.CaretShape | undefined
91
+ clear?: Property.Clear | undefined
92
+ clipPath?: Property.ClipPath | undefined
93
+ clipRule?: Property.ClipRule | undefined
94
+ color?: Property.Color | undefined
95
+ colorInterpolationFilters?: Property.ColorInterpolationFilters | undefined
96
+ colorScheme?: Property.ColorScheme | undefined
97
+ columnCount?: Property.ColumnCount | undefined
98
+ columnFill?: Property.ColumnFill | undefined
99
+ columnGap?: Property.ColumnGap | undefined
100
+ columnRuleColor?: Property.ColumnRuleColor | undefined
101
+ columnRuleStyle?: Property.ColumnRuleStyle | undefined
102
+ columnRuleWidth?: Property.ColumnRuleWidth | undefined
103
+ columnSpan?: Property.ColumnSpan | undefined
104
+ columnWidth?: Property.ColumnWidth | undefined
105
+ contain?: Property.Contain | undefined
106
+ containIntrinsicBlockSize?: Property.ContainIntrinsicBlockSize | undefined
107
+ containIntrinsicHeight?: Property.ContainIntrinsicHeight | undefined
108
+ containIntrinsicInlineSize?: Property.ContainIntrinsicInlineSize | undefined
109
+ containIntrinsicWidth?: Property.ContainIntrinsicWidth | undefined
110
+ containerName?: Property.ContainerName | undefined
111
+ containerType?: Property.ContainerType | undefined
112
+ content?: Property.Content | undefined
113
+ contentVisibility?: Property.ContentVisibility | undefined
114
+ counterIncrement?: Property.CounterIncrement | undefined
115
+ counterReset?: Property.CounterReset | undefined
116
+ counterSet?: Property.CounterSet | undefined
117
+ cursor?: Property.Cursor | undefined
118
+ cx?: Property.Cx | undefined
119
+ cy?: Property.Cy | undefined
120
+ d?: Property.D | undefined
121
+ direction?: Property.Direction | undefined
122
+ display?: Property.Display | undefined
123
+ dominantBaseline?: Property.DominantBaseline | undefined
124
+ emptyCells?: Property.EmptyCells | undefined
125
+ fill?: Property.Fill | undefined
126
+ fillOpacity?: Property.FillOpacity | undefined
127
+ fillRule?: Property.FillRule | undefined
128
+ filter?: Property.Filter | undefined
129
+ flexBasis?: Property.FlexBasis | undefined
130
+ flexDirection?: Property.FlexDirection | undefined
131
+ flexGrow?: Property.FlexGrow | undefined
132
+ flexShrink?: Property.FlexShrink | undefined
133
+ flexWrap?: Property.FlexWrap | undefined
134
+ float?: Property.Float | undefined
135
+ floodColor?: Property.FloodColor | undefined
136
+ floodOpacity?: Property.FloodOpacity | undefined
137
+ fontFamily?: Property.FontFamily | undefined
138
+ fontFeatureSettings?: Property.FontFeatureSettings | undefined
139
+ fontKerning?: Property.FontKerning | undefined
140
+ fontLanguageOverride?: Property.FontLanguageOverride | undefined
141
+ fontOpticalSizing?: Property.FontOpticalSizing | undefined
142
+ fontPalette?: Property.FontPalette | undefined
143
+ fontSize?: Property.FontSize | undefined
144
+ fontSizeAdjust?: Property.FontSizeAdjust | undefined
145
+ fontStyle?: Property.FontStyle | undefined
146
+ fontSynthesis?: Property.FontSynthesis | undefined
147
+ fontSynthesisSmallCaps?: Property.FontSynthesisSmallCaps | undefined
148
+ fontSynthesisStyle?: Property.FontSynthesisStyle | undefined
149
+ fontSynthesisWeight?: Property.FontSynthesisWeight | undefined
150
+ fontVariant?: Property.FontVariant | undefined
151
+ fontVariantAlternates?: Property.FontVariantAlternates | undefined
152
+ fontVariantCaps?: Property.FontVariantCaps | undefined
153
+ fontVariantEastAsian?: Property.FontVariantEastAsian | undefined
154
+ fontVariantEmoji?: Property.FontVariantEmoji | undefined
155
+ fontVariantLigatures?: Property.FontVariantLigatures | undefined
156
+ fontVariantNumeric?: Property.FontVariantNumeric | undefined
157
+ fontVariantPosition?: Property.FontVariantPosition | undefined
158
+ fontVariationSettings?: Property.FontVariationSettings | undefined
159
+ fontWeight?: Property.FontWeight | undefined
160
+ forcedColorAdjust?: Property.ForcedColorAdjust | undefined
161
+ gridAutoColumns?: Property.GridAutoColumns | undefined
162
+ gridAutoFlow?: Property.GridAutoFlow | undefined
163
+ gridAutoRows?: Property.GridAutoRows | undefined
164
+ gridColumnEnd?: Property.GridColumnEnd | undefined
165
+ gridColumnStart?: Property.GridColumnStart | undefined
166
+ gridRowEnd?: Property.GridRowEnd | undefined
167
+ gridRowStart?: Property.GridRowStart | undefined
168
+ gridTemplateAreas?: Property.GridTemplateAreas | undefined
169
+ gridTemplateColumns?: Property.GridTemplateColumns | undefined
170
+ gridTemplateRows?: Property.GridTemplateRows | undefined
171
+ hangingPunctuation?: Property.HangingPunctuation | undefined
172
+ height?: Property.Height | undefined
173
+ hyphenateCharacter?: Property.HyphenateCharacter | undefined
174
+ hyphenateLimitChars?: Property.HyphenateLimitChars | undefined
175
+ hyphens?: Property.Hyphens | undefined
176
+ imageOrientation?: Property.ImageOrientation | undefined
177
+ imageRendering?: Property.ImageRendering | undefined
178
+ initialLetter?: Property.InitialLetter | undefined
179
+ inlineSize?: Property.InlineSize | undefined
180
+ insetBlockEnd?: Property.InsetBlockEnd | undefined
181
+ insetBlockStart?: Property.InsetBlockStart | undefined
182
+ insetInlineEnd?: Property.InsetInlineEnd | undefined
183
+ insetInlineStart?: Property.InsetInlineStart | undefined
184
+ isolation?: Property.Isolation | undefined
185
+ justifyContent?: Property.JustifyContent | undefined
186
+ justifyItems?: Property.JustifyItems | undefined
187
+ justifySelf?: Property.JustifySelf | undefined
188
+ left?: Property.Left | undefined
189
+ letterSpacing?: Property.LetterSpacing | undefined
190
+ lightingColor?: Property.LightingColor | undefined
191
+ lineBreak?: Property.LineBreak | undefined
192
+ lineClamp?: Property.LineClamp | undefined
193
+ lineHeight?: Property.LineHeight | undefined
194
+ listStyleImage?: Property.ListStyleImage | undefined
195
+ listStylePosition?: Property.ListStylePosition | undefined
196
+ listStyleType?: Property.ListStyleType | undefined
197
+ marginBlockEnd?: Property.MarginBlockEnd | undefined
198
+ marginBlockStart?: Property.MarginBlockStart | undefined
199
+ marginBottom?: Property.MarginBottom | undefined
200
+ marginInlineEnd?: Property.MarginInlineEnd | undefined
201
+ marginInlineStart?: Property.MarginInlineStart | undefined
202
+ marginLeft?: Property.MarginLeft | undefined
203
+ marginRight?: Property.MarginRight | undefined
204
+ marginTop?: Property.MarginTop | undefined
205
+ marker?: Property.Marker | undefined
206
+ markerEnd?: Property.MarkerEnd | undefined
207
+ markerMid?: Property.MarkerMid | undefined
208
+ markerStart?: Property.MarkerStart | undefined
209
+ maskBorderMode?: Property.MaskBorderMode | undefined
210
+ maskBorderOutset?: Property.MaskBorderOutset | undefined
211
+ maskBorderRepeat?: Property.MaskBorderRepeat | undefined
212
+ maskBorderSlice?: Property.MaskBorderSlice | undefined
213
+ maskBorderSource?: Property.MaskBorderSource | undefined
214
+ maskBorderWidth?: Property.MaskBorderWidth | undefined
215
+ maskClip?: Property.MaskClip | undefined
216
+ maskComposite?: Property.MaskComposite | undefined
217
+ maskImage?: Property.MaskImage | undefined
218
+ maskMode?: Property.MaskMode | undefined
219
+ maskOrigin?: Property.MaskOrigin | undefined
220
+ maskPosition?: Property.MaskPosition | undefined
221
+ maskRepeat?: Property.MaskRepeat | undefined
222
+ maskSize?: Property.MaskSize | undefined
223
+ maskType?: Property.MaskType | undefined
224
+ mathDepth?: Property.MathDepth | undefined
225
+ mathStyle?: Property.MathStyle | undefined
226
+ maxBlockSize?: Property.MaxBlockSize | undefined
227
+ maxHeight?: Property.MaxHeight | undefined
228
+ maxInlineSize?: Property.MaxInlineSize | undefined
229
+ maxWidth?: Property.MaxWidth | undefined
230
+ minBlockSize?: Property.MinBlockSize | undefined
231
+ minHeight?: Property.MinHeight | undefined
232
+ minInlineSize?: Property.MinInlineSize | undefined
233
+ minWidth?: Property.MinWidth | undefined
234
+ mixBlendMode?: Property.MixBlendMode | undefined
235
+ objectFit?: Property.ObjectFit | undefined
236
+ objectPosition?: Property.ObjectPosition | undefined
237
+ offsetAnchor?: Property.OffsetAnchor | undefined
238
+ offsetDistance?: Property.OffsetDistance | undefined
239
+ offsetPath?: Property.OffsetPath | undefined
240
+ offsetPosition?: Property.OffsetPosition | undefined
241
+ offsetRotate?: Property.OffsetRotate | undefined
242
+ opacity?: Property.Opacity | undefined
243
+ order?: Property.Order | undefined
244
+ orphans?: Property.Orphans | undefined
245
+ outlineColor?: Property.OutlineColor | undefined
246
+ outlineOffset?: Property.OutlineOffset | undefined
247
+ outlineStyle?: Property.OutlineStyle | undefined
248
+ outlineWidth?: Property.OutlineWidth | undefined
249
+ overflowAnchor?: Property.OverflowAnchor | undefined
250
+ overflowBlock?: Property.OverflowBlock | undefined
251
+ overflowClipMargin?: Property.OverflowClipMargin | undefined
252
+ overflowInline?: Property.OverflowInline | undefined
253
+ overflowWrap?: Property.OverflowWrap | undefined
254
+ overflowX?: Property.OverflowX | undefined
255
+ overflowY?: Property.OverflowY | undefined
256
+ overscrollBehaviorBlock?: Property.OverscrollBehaviorBlock | undefined
257
+ overscrollBehaviorInline?: Property.OverscrollBehaviorInline | undefined
258
+ overscrollBehaviorX?: Property.OverscrollBehaviorX | undefined
259
+ overscrollBehaviorY?: Property.OverscrollBehaviorY | undefined
260
+ paddingBlockEnd?: Property.PaddingBlockEnd | undefined
261
+ paddingBlockStart?: Property.PaddingBlockStart | undefined
262
+ paddingBottom?: Property.PaddingBottom | undefined
263
+ paddingInlineEnd?: Property.PaddingInlineEnd | undefined
264
+ paddingInlineStart?: Property.PaddingInlineStart | undefined
265
+ paddingLeft?: Property.PaddingLeft | undefined
266
+ paddingRight?: Property.PaddingRight | undefined
267
+ paddingTop?: Property.PaddingTop | undefined
268
+ page?: Property.Page | undefined
269
+ paintOrder?: Property.PaintOrder | undefined
270
+ perspective?: Property.Perspective | undefined
271
+ perspectiveOrigin?: Property.PerspectiveOrigin | undefined
272
+ pointerEvents?: Property.PointerEvents | undefined
273
+ position?: Property.Position | undefined
274
+ printColorAdjust?: Property.PrintColorAdjust | undefined
275
+ quotes?: Property.Quotes | undefined
276
+ r?: Property.R | undefined
277
+ resize?: Property.Resize | undefined
278
+ right?: Property.Right | undefined
279
+ rotate?: Property.Rotate | undefined
280
+ rowGap?: Property.RowGap | undefined
281
+ rubyAlign?: Property.RubyAlign | undefined
282
+ rubyOverhang?: Property.RubyOverhang | undefined
283
+ rubyPosition?: Property.RubyPosition | undefined
284
+ rx?: Property.Rx | undefined
285
+ ry?: Property.Ry | undefined
286
+ scale?: Property.Scale | undefined
287
+ scrollBehavior?: Property.ScrollBehavior | undefined
288
+ scrollMarginBlockEnd?: Property.ScrollMarginBlockEnd | undefined
289
+ scrollMarginBlockStart?: Property.ScrollMarginBlockStart | undefined
290
+ scrollMarginBottom?: Property.ScrollMarginBottom | undefined
291
+ scrollMarginInlineEnd?: Property.ScrollMarginInlineEnd | undefined
292
+ scrollMarginInlineStart?: Property.ScrollMarginInlineStart | undefined
293
+ scrollMarginLeft?: Property.ScrollMarginLeft | undefined
294
+ scrollMarginRight?: Property.ScrollMarginRight | undefined
295
+ scrollMarginTop?: Property.ScrollMarginTop | undefined
296
+ scrollPaddingBlockEnd?: Property.ScrollPaddingBlockEnd | undefined
297
+ scrollPaddingBlockStart?: Property.ScrollPaddingBlockStart | undefined
298
+ scrollPaddingBottom?: Property.ScrollPaddingBottom | undefined
299
+ scrollPaddingInlineEnd?: Property.ScrollPaddingInlineEnd | undefined
300
+ scrollPaddingInlineStart?: Property.ScrollPaddingInlineStart | undefined
301
+ scrollPaddingLeft?: Property.ScrollPaddingLeft | undefined
302
+ scrollPaddingRight?: Property.ScrollPaddingRight | undefined
303
+ scrollPaddingTop?: Property.ScrollPaddingTop | undefined
304
+ scrollSnapAlign?: Property.ScrollSnapAlign | undefined
305
+ scrollSnapStop?: Property.ScrollSnapStop | undefined
306
+ scrollSnapType?: Property.ScrollSnapType | undefined
307
+ scrollbarColor?: Property.ScrollbarColor | undefined
308
+ scrollbarGutter?: Property.ScrollbarGutter | undefined
309
+ scrollbarWidth?: Property.ScrollbarWidth | undefined
310
+ shapeImageThreshold?: Property.ShapeImageThreshold | undefined
311
+ shapeMargin?: Property.ShapeMargin | undefined
312
+ shapeOutside?: Property.ShapeOutside | undefined
313
+ shapeRendering?: Property.ShapeRendering | undefined
314
+ stopColor?: Property.StopColor | undefined
315
+ stopOpacity?: Property.StopOpacity | undefined
316
+ stroke?: Property.Stroke | undefined
317
+ strokeDasharray?: Property.StrokeDasharray | undefined
318
+ strokeDashoffset?: Property.StrokeDashoffset | undefined
319
+ strokeLinecap?: Property.StrokeLinecap | undefined
320
+ strokeLinejoin?: Property.StrokeLinejoin | undefined
321
+ strokeMiterlimit?: Property.StrokeMiterlimit | undefined
322
+ strokeOpacity?: Property.StrokeOpacity | undefined
323
+ strokeWidth?: Property.StrokeWidth | undefined
324
+ tabSize?: Property.TabSize | undefined
325
+ tableLayout?: Property.TableLayout | undefined
326
+ textAlign?: Property.TextAlign | undefined
327
+ textAlignLast?: Property.TextAlignLast | undefined
328
+ textAnchor?: Property.TextAnchor | undefined
329
+ textAutospace?: Property.TextAutospace | undefined
330
+ textBox?: Property.TextBox | undefined
331
+ textBoxEdge?: Property.TextBoxEdge | undefined
332
+ textBoxTrim?: Property.TextBoxTrim | undefined
333
+ textCombineUpright?: Property.TextCombineUpright | undefined
334
+ textDecorationColor?: Property.TextDecorationColor | undefined
335
+ textDecorationLine?: Property.TextDecorationLine | undefined
336
+ textDecorationSkipInk?: Property.TextDecorationSkipInk | undefined
337
+ textDecorationStyle?: Property.TextDecorationStyle | undefined
338
+ textDecorationThickness?: Property.TextDecorationThickness | undefined
339
+ textEmphasisColor?: Property.TextEmphasisColor | undefined
340
+ textEmphasisPosition?: Property.TextEmphasisPosition | undefined
341
+ textEmphasisStyle?: Property.TextEmphasisStyle | undefined
342
+ textIndent?: Property.TextIndent | undefined
343
+ textJustify?: Property.TextJustify | undefined
344
+ textOrientation?: Property.TextOrientation | undefined
345
+ textOverflow?: Property.TextOverflow | undefined
346
+ textRendering?: Property.TextRendering | undefined
347
+ textShadow?: Property.TextShadow | undefined
348
+ textTransform?: Property.TextTransform | undefined
349
+ textUnderlineOffset?: Property.TextUnderlineOffset | undefined
350
+ textUnderlinePosition?: Property.TextUnderlinePosition | undefined
351
+ textWrapMode?: Property.TextWrapMode | undefined
352
+ textWrapStyle?: Property.TextWrapStyle | undefined
353
+ top?: Property.Top | undefined
354
+ touchAction?: Property.TouchAction | undefined
355
+ transform?: Property.Transform | undefined
356
+ transformBox?: Property.TransformBox | undefined
357
+ transformOrigin?: Property.TransformOrigin | undefined
358
+ transformStyle?: Property.TransformStyle | undefined
359
+ transitionBehavior?: Property.TransitionBehavior | undefined
360
+ transitionDelay?: Property.TransitionDelay | undefined
361
+ transitionDuration?: Property.TransitionDuration | undefined
362
+ transitionProperty?: Property.TransitionProperty | undefined
363
+ transitionTimingFunction?: Property.TransitionTimingFunction | undefined
364
+ translate?: Property.Translate | undefined
365
+ unicodeBidi?: Property.UnicodeBidi | undefined
366
+ userSelect?: Property.UserSelect | undefined
367
+ vectorEffect?: Property.VectorEffect | undefined
368
+ verticalAlign?: Property.VerticalAlign | undefined
369
+ viewTransitionClass?: Property.ViewTransitionClass | undefined
370
+ viewTransitionName?: Property.ViewTransitionName | undefined
371
+ visibility?: Property.Visibility | undefined
372
+ whiteSpace?: Property.WhiteSpace | undefined
373
+ whiteSpaceCollapse?: Property.WhiteSpaceCollapse | undefined
374
+ widows?: Property.Widows | undefined
375
+ width?: Property.Width | undefined
376
+ willChange?: Property.WillChange | undefined
377
+ wordBreak?: Property.WordBreak | undefined
378
+ wordSpacing?: Property.WordSpacing | undefined
379
+ wordWrap?: Property.WordWrap | undefined
380
+ writingMode?: Property.WritingMode | undefined
381
+ x?: Property.X | undefined
382
+ y?: Property.Y | undefined
383
+ zIndex?: Property.ZIndex | undefined
384
+ zoom?: Property.Zoom | undefined
385
+ }
386
+ export interface StandardShorthandProperties {
387
+ animation?: Property.Animation | undefined
388
+ background?: Property.Background | undefined
389
+ backgroundPosition?: Property.BackgroundPosition | undefined
390
+ border?: Property.Border | undefined
391
+ borderBlock?: Property.BorderBlock | undefined
392
+ borderBlockEnd?: Property.BorderBlockEnd | undefined
393
+ borderBlockStart?: Property.BorderBlockStart | undefined
394
+ borderBottom?: Property.BorderBottom | undefined
395
+ borderColor?: Property.BorderColor | undefined
396
+ borderImage?: Property.BorderImage | undefined
397
+ borderInline?: Property.BorderInline | undefined
398
+ borderInlineEnd?: Property.BorderInlineEnd | undefined
399
+ borderInlineStart?: Property.BorderInlineStart | undefined
400
+ borderLeft?: Property.BorderLeft | undefined
401
+ borderRadius?: Property.BorderRadius | undefined
402
+ borderRight?: Property.BorderRight | undefined
403
+ borderStyle?: Property.BorderStyle | undefined
404
+ borderTop?: Property.BorderTop | undefined
405
+ borderWidth?: Property.BorderWidth | undefined
406
+ caret?: Property.Caret | undefined
407
+ columnRule?: Property.ColumnRule | undefined
408
+ columns?: Property.Columns | undefined
409
+ containIntrinsicSize?: Property.ContainIntrinsicSize | undefined
410
+ container?: Property.Container | undefined
411
+ flex?: Property.Flex | undefined
412
+ flexFlow?: Property.FlexFlow | undefined
413
+ font?: Property.Font | undefined
414
+ gap?: Property.Gap | undefined
415
+ grid?: Property.Grid | undefined
416
+ gridArea?: Property.GridArea | undefined
417
+ gridColumn?: Property.GridColumn | undefined
418
+ gridRow?: Property.GridRow | undefined
419
+ gridTemplate?: Property.GridTemplate | undefined
420
+ inset?: Property.Inset | undefined
421
+ insetBlock?: Property.InsetBlock | undefined
422
+ insetInline?: Property.InsetInline | undefined
423
+ listStyle?: Property.ListStyle | undefined
424
+ margin?: Property.Margin | undefined
425
+ marginBlock?: Property.MarginBlock | undefined
426
+ marginInline?: Property.MarginInline | undefined
427
+ mask?: Property.Mask | undefined
428
+ maskBorder?: Property.MaskBorder | undefined
429
+ offset?: Property.Offset | undefined
430
+ outline?: Property.Outline | undefined
431
+ overflow?: Property.Overflow | undefined
432
+ overscrollBehavior?: Property.OverscrollBehavior | undefined
433
+ padding?: Property.Padding | undefined
434
+ paddingBlock?: Property.PaddingBlock | undefined
435
+ paddingInline?: Property.PaddingInline | undefined
436
+ placeContent?: Property.PlaceContent | undefined
437
+ placeItems?: Property.PlaceItems | undefined
438
+ placeSelf?: Property.PlaceSelf | undefined
439
+ scrollMargin?: Property.ScrollMargin | undefined
440
+ scrollMarginBlock?: Property.ScrollMarginBlock | undefined
441
+ scrollMarginInline?: Property.ScrollMarginInline | undefined
442
+ scrollPadding?: Property.ScrollPadding | undefined
443
+ scrollPaddingBlock?: Property.ScrollPaddingBlock | undefined
444
+ scrollPaddingInline?: Property.ScrollPaddingInline | undefined
445
+ textDecoration?: Property.TextDecoration | undefined
446
+ textEmphasis?: Property.TextEmphasis | undefined
447
+ textWrap?: Property.TextWrap | undefined
448
+ transition?: Property.Transition | undefined
449
+ }
450
+ export interface VendorLonghandProperties {
451
+ msAccelerator?: Property.MsAccelerator | undefined
452
+ msBlockProgression?: Property.MsBlockProgression | undefined
453
+ msContentZoomChaining?: Property.MsContentZoomChaining | undefined
454
+ msContentZoomLimitMax?: Property.MsContentZoomLimitMax | undefined
455
+ msContentZoomLimitMin?: Property.MsContentZoomLimitMin | undefined
456
+ msContentZoomSnapPoints?: Property.MsContentZoomSnapPoints | undefined
457
+ msContentZoomSnapType?: Property.MsContentZoomSnapType | undefined
458
+ msContentZooming?: Property.MsContentZooming | undefined
459
+ msFilter?: Property.MsFilter | undefined
460
+ msFlowFrom?: Property.MsFlowFrom | undefined
461
+ msFlowInto?: Property.MsFlowInto | undefined
462
+ msGridColumns?: Property.MsGridColumns | undefined
463
+ msGridRows?: Property.MsGridRows | undefined
464
+ msHighContrastAdjust?: Property.MsHighContrastAdjust | undefined
465
+ msHyphenateLimitChars?: Property.MsHyphenateLimitChars | undefined
466
+ msHyphenateLimitLines?: Property.MsHyphenateLimitLines | undefined
467
+ msHyphenateLimitZone?: Property.MsHyphenateLimitZone | undefined
468
+ msImeAlign?: Property.MsImeAlign | undefined
469
+ msOverflowStyle?: Property.MsOverflowStyle | undefined
470
+ msScrollChaining?: Property.MsScrollChaining | undefined
471
+ msScrollLimitXMax?: Property.MsScrollLimitXMax | undefined
472
+ msScrollLimitXMin?: Property.MsScrollLimitXMin | undefined
473
+ msScrollLimitYMax?: Property.MsScrollLimitYMax | undefined
474
+ msScrollLimitYMin?: Property.MsScrollLimitYMin | undefined
475
+ msScrollRails?: Property.MsScrollRails | undefined
476
+ msScrollSnapPointsX?: Property.MsScrollSnapPointsX | undefined
477
+ msScrollSnapPointsY?: Property.MsScrollSnapPointsY | undefined
478
+ msScrollSnapType?: Property.MsScrollSnapType | undefined
479
+ msScrollTranslation?: Property.MsScrollTranslation | undefined
480
+ msScrollbar3dlightColor?: Property.MsScrollbar3dlightColor | undefined
481
+ msScrollbarArrowColor?: Property.MsScrollbarArrowColor | undefined
482
+ msScrollbarBaseColor?: Property.MsScrollbarBaseColor | undefined
483
+ msScrollbarDarkshadowColor?: Property.MsScrollbarDarkshadowColor | undefined
484
+ msScrollbarFaceColor?: Property.MsScrollbarFaceColor | undefined
485
+ msScrollbarHighlightColor?: Property.MsScrollbarHighlightColor | undefined
486
+ msScrollbarShadowColor?: Property.MsScrollbarShadowColor | undefined
487
+ msScrollbarTrackColor?: Property.MsScrollbarTrackColor | undefined
488
+ msTextAutospace?: Property.MsTextAutospace | undefined
489
+ msTouchSelect?: Property.MsTouchSelect | undefined
490
+ msUserSelect?: Property.MsUserSelect | undefined
491
+ msWrapFlow?: Property.MsWrapFlow | undefined
492
+ msWrapMargin?: Property.MsWrapMargin | undefined
493
+ msWrapThrough?: Property.MsWrapThrough | undefined
494
+ MozAppearance?: Property.MozAppearance | undefined
495
+ MozBinding?: Property.MozBinding | undefined
496
+ MozBorderBottomColors?: Property.MozBorderBottomColors | undefined
497
+ MozBorderLeftColors?: Property.MozBorderLeftColors | undefined
498
+ MozBorderRightColors?: Property.MozBorderRightColors | undefined
499
+ MozBorderTopColors?: Property.MozBorderTopColors | undefined
500
+ MozContextProperties?: Property.MozContextProperties | undefined
501
+ MozFloatEdge?: Property.MozFloatEdge | undefined
502
+ MozForceBrokenImageIcon?: Property.MozForceBrokenImageIcon | undefined
503
+ MozOrient?: Property.MozOrient | undefined
504
+ MozOutlineRadiusBottomleft?: Property.MozOutlineRadiusBottomleft | undefined
505
+ MozOutlineRadiusBottomright?: Property.MozOutlineRadiusBottomright | undefined
506
+ MozOutlineRadiusTopleft?: Property.MozOutlineRadiusTopleft | undefined
507
+ MozOutlineRadiusTopright?: Property.MozOutlineRadiusTopright | undefined
508
+ MozStackSizing?: Property.MozStackSizing | undefined
509
+ MozTextBlink?: Property.MozTextBlink | undefined
510
+ MozUserFocus?: Property.MozUserFocus | undefined
511
+ MozUserInput?: Property.MozUserInput | undefined
512
+ MozUserModify?: Property.MozUserModify | undefined
513
+ MozWindowDragging?: Property.MozWindowDragging | undefined
514
+ MozWindowShadow?: Property.MozWindowShadow | undefined
515
+ WebkitAppearance?: Property.WebkitAppearance | undefined
516
+ WebkitBorderBeforeColor?: Property.WebkitBorderBeforeColor | undefined
517
+ WebkitBorderBeforeStyle?: Property.WebkitBorderBeforeStyle | undefined
518
+ WebkitBorderBeforeWidth?: Property.WebkitBorderBeforeWidth | undefined
519
+ WebkitBoxReflect?: Property.WebkitBoxReflect | undefined
520
+ WebkitLineClamp?: Property.WebkitLineClamp | undefined
521
+ WebkitMaskAttachment?: Property.WebkitMaskAttachment | undefined
522
+ WebkitMaskClip?: Property.WebkitMaskClip | undefined
523
+ WebkitMaskComposite?: Property.WebkitMaskComposite | undefined
524
+ WebkitMaskImage?: Property.WebkitMaskImage | undefined
525
+ WebkitMaskOrigin?: Property.WebkitMaskOrigin | undefined
526
+ WebkitMaskPosition?: Property.WebkitMaskPosition | undefined
527
+ WebkitMaskPositionX?: Property.WebkitMaskPositionX | undefined
528
+ WebkitMaskPositionY?: Property.WebkitMaskPositionY | undefined
529
+ WebkitMaskRepeat?: Property.WebkitMaskRepeat | undefined
530
+ WebkitMaskRepeatX?: Property.WebkitMaskRepeatX | undefined
531
+ WebkitMaskRepeatY?: Property.WebkitMaskRepeatY | undefined
532
+ WebkitMaskSize?: Property.WebkitMaskSize | undefined
533
+ WebkitOverflowScrolling?: Property.WebkitOverflowScrolling | undefined
534
+ WebkitTapHighlightColor?: Property.WebkitTapHighlightColor | undefined
535
+ WebkitTextFillColor?: Property.WebkitTextFillColor | undefined
536
+ WebkitTextStrokeColor?: Property.WebkitTextStrokeColor | undefined
537
+ WebkitTextStrokeWidth?: Property.WebkitTextStrokeWidth | undefined
538
+ WebkitTouchCallout?: Property.WebkitTouchCallout | undefined
539
+ WebkitUserModify?: Property.WebkitUserModify | undefined
540
+ WebkitUserSelect?: Property.WebkitUserSelect | undefined
541
+ }
542
+ export interface VendorShorthandProperties {
543
+ msContentZoomLimit?: Property.MsContentZoomLimit | undefined
544
+ msContentZoomSnap?: Property.MsContentZoomSnap | undefined
545
+ msScrollLimit?: Property.MsScrollLimit | undefined
546
+ msScrollSnapX?: Property.MsScrollSnapX | undefined
547
+ msScrollSnapY?: Property.MsScrollSnapY | undefined
548
+ MozOutlineRadius?: Property.MozOutlineRadius | undefined
549
+ WebkitBorderBefore?: Property.WebkitBorderBefore | undefined
550
+ WebkitMask?: Property.WebkitMask | undefined
551
+ WebkitTextStroke?: Property.WebkitTextStroke | undefined
889
552
  }
890
- export type MsAccelerator = "false" | "true";
891
- export type MsBlockProgression = "tb" | "rl" | "bt" | "lr";
892
- export type MsContentZoomChaining = "none" | "chained";
893
- export type MsContentZoomLimit = MsContentZoomLimitMin | MsContentZoomLimitMax;
894
- export type MsContentZoomLimitMax = number;
895
- export type MsContentZoomLimitMin = number;
896
- export type MsContentZoomSnap = MsContentZoomSnapType | MsContentZoomSnapPoints;
897
- export type MsContentZoomSnapPoints = number;
898
- export type MsContentZoomSnapType = "none" | "proximity" | "mandatory";
899
- export type MsContentZooming = "none" | "zoom";
900
- export type MsFilter = (string & {});
901
- export type MsFlowFrom = "none" | (string & {});
902
- export type MsFlowInto = "none" | (string & {});
903
- export type MsGridColumns = "none" | TTrackList | TAutoTrackList;
904
- export type MsGridRows = "none" | TTrackList | TAutoTrackList;
905
- export type MsHighContrastAdjust = "auto" | "none";
906
- export type MsHyphenateLimitChars = "auto" | number;
907
- export type MsHyphenateLimitLines = "no-limit" | number;
908
- export type MsHyphenateLimitZone = number;
909
- export type MsImeAlign = "auto" | "after";
910
- export type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
911
- export type MsScrollChaining = "chained" | "none";
912
- export type MsScrollLimit = MsScrollLimitXMin | MsScrollLimitYMin | MsScrollLimitXMax | MsScrollLimitYMax;
913
- export type MsScrollLimitXMax = "auto";
914
- export type MsScrollLimitXMin = (string & {});
915
- export type MsScrollLimitYMax = "auto";
916
- export type MsScrollLimitYMin = (string & {});
917
- export type MsScrollRails = "none" | "railed";
918
- export type MsScrollSnapPointsX = TLengthPercentage;
919
- export type MsScrollSnapPointsY = TLengthPercentage;
920
- export type MsScrollSnapType = "none" | "proximity" | "mandatory";
921
- export type MsScrollSnapX = MsScrollSnapType | MsScrollSnapPointsX;
922
- export type MsScrollSnapY = MsScrollSnapType | MsScrollSnapPointsY;
923
- export type MsScrollTranslation = "none" | "vertical-to-horizontal";
924
- export type MsScrollbar3dlightColor = TColor;
925
- export type MsScrollbarArrowColor = TColor;
926
- export type MsScrollbarBaseColor = TColor;
927
- export type MsScrollbarDarkshadowColor = TColor;
928
- export type MsScrollbarFaceColor = TColor;
929
- export type MsScrollbarHighlightColor = TColor;
930
- export type MsScrollbarShadowColor = TColor;
931
- export type MsScrollbarTrackColor = TColor;
932
- export type MsTextAutospace = "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space";
933
- export type MsTouchSelect = "grippers" | "none";
934
- export type MsUserSelect = "none" | "element" | "text";
935
- export type MsWrapFlow = "auto" | "both" | "start" | "end" | "maximum" | "clear";
936
- export type MsWrapMargin = (string & {});
937
- export type MsWrapThrough = "wrap" | "none";
938
- export type MozAppearance = "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview" | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communicationstext" | "-moz-win-communications-toolbox" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-mediatext" | "-moz-win-media-toolbox" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized";
939
- export type MozBinding = "none";
940
- export type MozBorderBottomColors = TColor | "none";
941
- export type MozBorderLeftColors = TColor | "none";
942
- export type MozBorderRightColors = TColor | "none";
943
- export type MozBorderTopColors = TColor | "none";
944
- export type MozContextProperties = "none" | "fill" | "fill-opacity" | "stroke" | "stroke-opacity";
945
- export type MozFloatEdge = "border-box" | "content-box" | "margin-box" | "padding-box";
946
- export type MozForceBrokenImageIcon = "0" | "1";
947
- export type MozOrient = "inline" | "block" | "horizontal" | "vertical";
948
- export type MozOutlineRadius = TOutlineRadius;
949
- export type MozOutlineRadiusBottomleft = TOutlineRadius;
950
- export type MozOutlineRadiusBottomright = TOutlineRadius;
951
- export type MozOutlineRadiusTopleft = TOutlineRadius;
952
- export type MozOutlineRadiusTopright = TOutlineRadius;
953
- export type MozStackSizing = "ignore" | "stretch-to-fit";
954
- export type MozTextBlink = "none" | "blink";
955
- export type MozUserFocus = "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none";
956
- export type MozUserInput = "auto" | "none" | "enabled" | "disabled";
957
- export type MozUserModify = "read-only" | "read-write" | "write-only";
958
- export type MozWindowDragging = "drag" | "no-drag";
959
- export type MozWindowShadow = "default" | "menu" | "tooltip" | "sheet" | "none";
960
- export type WebkitAppearance = "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield" | "-apple-pay-button";
961
- export type WebkitBorderBefore = BorderWidth | BorderStyle | TColor;
962
- export type WebkitBorderBeforeColor = TColor;
963
- export type WebkitBorderBeforeStyle = BorderStyle;
964
- export type WebkitBorderBeforeWidth = BorderWidth;
965
- export type WebkitBoxReflect = "above" | "below" | "right" | "left" | TImage;
966
- export type WebkitLineClamp = "none" | number;
967
- export type WebkitMask = TMaskReference | TPosition | TBgSize | TRepeatStyle | TVisualBox | "border" | "padding" | "content" | "text" | TVisualBox | "border" | "padding" | "content";
968
- export type WebkitMaskAttachment = TAttachment;
969
- export type WebkitMaskClip = TCoordBox | "no-clip" | "border" | "padding" | "content" | "text";
970
- export type WebkitMaskComposite = TCompositeStyle;
971
- export type WebkitMaskImage = TMaskReference;
972
- export type WebkitMaskOrigin = TCoordBox | "border" | "padding" | "content";
973
- export type WebkitMaskPosition = TPosition;
974
- export type WebkitMaskPositionX = TLengthPercentage | "left" | "center" | "right";
975
- export type WebkitMaskPositionY = TLengthPercentage | "top" | "center" | "bottom";
976
- export type WebkitMaskRepeat = TRepeatStyle;
977
- export type WebkitMaskRepeatX = "repeat" | "no-repeat" | "space" | "round";
978
- export type WebkitMaskRepeatY = "repeat" | "no-repeat" | "space" | "round";
979
- export type WebkitMaskSize = TBgSize;
980
- export type WebkitOverflowScrolling = "auto" | "touch";
981
- export type WebkitTapHighlightColor = TColor;
982
- export type WebkitTextFillColor = TColor;
983
- export type WebkitTextStroke = TColor;
984
- export type WebkitTextStrokeColor = TColor;
985
- export type WebkitTextStrokeWidth = (string & {});
986
- export type WebkitTouchCallout = "default" | "none";
987
- export type WebkitUserModify = "read-only" | "read-write" | "read-write-plaintext-only";
988
- export type WebkitUserSelect = "auto" | "text" | "none" | "all";
989
- export interface VendorProperties {
990
- MsAccelerator: MsAccelerator
991
- MsBlockProgression: MsBlockProgression
992
- MsContentZoomChaining: MsContentZoomChaining
993
- MsContentZoomLimit: MsContentZoomLimit
994
- MsContentZoomLimitMax: MsContentZoomLimitMax
995
- MsContentZoomLimitMin: MsContentZoomLimitMin
996
- MsContentZoomSnap: MsContentZoomSnap
997
- MsContentZoomSnapPoints: MsContentZoomSnapPoints
998
- MsContentZoomSnapType: MsContentZoomSnapType
999
- MsContentZooming: MsContentZooming
1000
- MsFilter: MsFilter
1001
- MsFlowFrom: MsFlowFrom
1002
- MsFlowInto: MsFlowInto
1003
- MsGridColumns: MsGridColumns
1004
- MsGridRows: MsGridRows
1005
- MsHighContrastAdjust: MsHighContrastAdjust
1006
- MsHyphenateLimitChars: MsHyphenateLimitChars
1007
- MsHyphenateLimitLines: MsHyphenateLimitLines
1008
- MsHyphenateLimitZone: MsHyphenateLimitZone
1009
- MsImeAlign: MsImeAlign
1010
- MsOverflowStyle: MsOverflowStyle
1011
- MsScrollChaining: MsScrollChaining
1012
- MsScrollLimit: MsScrollLimit
1013
- MsScrollLimitXMax: MsScrollLimitXMax
1014
- MsScrollLimitXMin: MsScrollLimitXMin
1015
- MsScrollLimitYMax: MsScrollLimitYMax
1016
- MsScrollLimitYMin: MsScrollLimitYMin
1017
- MsScrollRails: MsScrollRails
1018
- MsScrollSnapPointsX: MsScrollSnapPointsX
1019
- MsScrollSnapPointsY: MsScrollSnapPointsY
1020
- MsScrollSnapType: MsScrollSnapType
1021
- MsScrollSnapX: MsScrollSnapX
1022
- MsScrollSnapY: MsScrollSnapY
1023
- MsScrollTranslation: MsScrollTranslation
1024
- MsScrollbar3dlightColor: MsScrollbar3dlightColor
1025
- MsScrollbarArrowColor: MsScrollbarArrowColor
1026
- MsScrollbarBaseColor: MsScrollbarBaseColor
1027
- MsScrollbarDarkshadowColor: MsScrollbarDarkshadowColor
1028
- MsScrollbarFaceColor: MsScrollbarFaceColor
1029
- MsScrollbarHighlightColor: MsScrollbarHighlightColor
1030
- MsScrollbarShadowColor: MsScrollbarShadowColor
1031
- MsScrollbarTrackColor: MsScrollbarTrackColor
1032
- MsTextAutospace: MsTextAutospace
1033
- MsTouchSelect: MsTouchSelect
1034
- MsUserSelect: MsUserSelect
1035
- MsWrapFlow: MsWrapFlow
1036
- MsWrapMargin: MsWrapMargin
1037
- MsWrapThrough: MsWrapThrough
1038
- MozAppearance: MozAppearance
1039
- MozBinding: MozBinding
1040
- MozBorderBottomColors: MozBorderBottomColors
1041
- MozBorderLeftColors: MozBorderLeftColors
1042
- MozBorderRightColors: MozBorderRightColors
1043
- MozBorderTopColors: MozBorderTopColors
1044
- MozContextProperties: MozContextProperties
1045
- MozFloatEdge: MozFloatEdge
1046
- MozForceBrokenImageIcon: MozForceBrokenImageIcon
1047
- MozOrient: MozOrient
1048
- MozOutlineRadius: MozOutlineRadius
1049
- MozOutlineRadiusBottomleft: MozOutlineRadiusBottomleft
1050
- MozOutlineRadiusBottomright: MozOutlineRadiusBottomright
1051
- MozOutlineRadiusTopleft: MozOutlineRadiusTopleft
1052
- MozOutlineRadiusTopright: MozOutlineRadiusTopright
1053
- MozStackSizing: MozStackSizing
1054
- MozTextBlink: MozTextBlink
1055
- MozUserFocus: MozUserFocus
1056
- MozUserInput: MozUserInput
1057
- MozUserModify: MozUserModify
1058
- MozWindowDragging: MozWindowDragging
1059
- MozWindowShadow: MozWindowShadow
1060
- WebkitAppearance: WebkitAppearance
1061
- WebkitBorderBefore: WebkitBorderBefore
1062
- WebkitBorderBeforeColor: WebkitBorderBeforeColor
1063
- WebkitBorderBeforeStyle: WebkitBorderBeforeStyle
1064
- WebkitBorderBeforeWidth: WebkitBorderBeforeWidth
1065
- WebkitBoxReflect: WebkitBoxReflect
1066
- WebkitLineClamp: WebkitLineClamp
1067
- WebkitMask: WebkitMask
1068
- WebkitMaskAttachment: WebkitMaskAttachment
1069
- WebkitMaskClip: WebkitMaskClip
1070
- WebkitMaskComposite: WebkitMaskComposite
1071
- WebkitMaskImage: WebkitMaskImage
1072
- WebkitMaskOrigin: WebkitMaskOrigin
1073
- WebkitMaskPosition: WebkitMaskPosition
1074
- WebkitMaskPositionX: WebkitMaskPositionX
1075
- WebkitMaskPositionY: WebkitMaskPositionY
1076
- WebkitMaskRepeat: WebkitMaskRepeat
1077
- WebkitMaskRepeatX: WebkitMaskRepeatX
1078
- WebkitMaskRepeatY: WebkitMaskRepeatY
1079
- WebkitMaskSize: WebkitMaskSize
1080
- WebkitOverflowScrolling: WebkitOverflowScrolling
1081
- WebkitTapHighlightColor: WebkitTapHighlightColor
1082
- WebkitTextFillColor: WebkitTextFillColor
1083
- WebkitTextStroke: WebkitTextStroke
1084
- WebkitTextStrokeColor: WebkitTextStrokeColor
1085
- WebkitTextStrokeWidth: WebkitTextStrokeWidth
1086
- WebkitTouchCallout: WebkitTouchCallout
1087
- WebkitUserModify: WebkitUserModify
1088
- WebkitUserSelect: WebkitUserSelect
553
+ export type AtRules = "@charset" | "@counter-style" | "@container" | "@document" | "@font-face" | "@font-feature-values" | "@font-palette-values" | "@import" | "@keyframes" | "@layer" | "@media" | "@namespace" | "@page" | "@position-try" | "@property" | "@scope" | "@starting-style" | "@supports" | "@view-transition"
554
+ export type AdvancedPseudos = ":active-view-transition-type()" | ":dir()" | ":has()" | ":host()" | ":host-context()" | ":is()" | ":lang()" | ":not()" | ":nth-child()" | ":nth-last-child()" | ":nth-last-of-type()" | ":nth-of-type()" | ":state()" | ":where()" | "::cue()" | "::cue-region()" | "::highlight()" | "::part()" | "::picker()" | "::slotted()" | "::view-transition-group()" | "::view-transition-image-pair()" | "::view-transition-new()" | "::view-transition-old()"
555
+ export type SimplePseudos = "Type selectors" | "Class selectors" | "ID selectors" | "Universal selectors" | "Attribute selectors" | "Nesting selector" | "Selector list" | "Next-sibling combinator" | "Subsequent-sibling combinator" | "Child combinator" | "Descendant combinator" | "Column combinator" | "Namespace separator" | "Pseudo-classes" | "Pseudo-elements" | ":active" | ":active-view-transition" | ":any-link" | ":autofill" | ":blank" | ":buffering" | ":checked" | ":current" | ":default" | ":defined" | ":disabled" | ":empty" | ":enabled" | ":first" | ":first-child" | ":first-of-type" | ":focus" | ":focus-visible" | ":focus-within" | ":fullscreen" | ":future" | ":has-slotted" | ":host" | ":hover" | ":in-range" | ":indeterminate" | ":invalid" | ":last-child" | ":last-of-type" | ":left" | ":link" | ":local-link" | ":modal" | ":muted" | ":only-child" | ":only-of-type" | ":open" | ":optional" | ":out-of-range" | ":past" | ":paused" | ":picture-in-picture" | ":placeholder-shown" | ":playing" | ":popover-open" | ":read-only" | ":read-write" | ":required" | ":right" | ":root" | ":scope" | ":seeking" | ":stalled" | ":target" | ":target-current" | ":target-within" | ":user-invalid" | ":user-valid" | ":valid" | ":visited" | ":volume-locked" | ":xr-overlay" | "::-ms-browse" | "::-ms-check" | "::-ms-clear" | "::-ms-expand" | "::-ms-fill" | "::-ms-fill-lower" | "::-ms-fill-upper" | "::-ms-reveal" | "::-ms-thumb" | "::-ms-ticks-after" | "::-ms-ticks-before" | "::-ms-tooltip" | "::-ms-track" | "::-ms-value" | "::-moz-progress-bar" | "::-moz-range-progress" | "::-moz-range-thumb" | "::-moz-range-track" | "::-webkit-progress-bar" | "::-webkit-progress-inner-value" | "::-webkit-progress-value" | "::-webkit-slider-runnable-track" | "::-webkit-slider-thumb" | "::after" | "::backdrop" | "::before" | "::checkmark" | "::cue" | "::cue-region" | "::details-content" | "::file-selector-button" | "::first-letter" | "::first-line" | "::grammar-error" | "::marker" | "::picker-icon" | "::placeholder" | "::scroll-marker" | "::scroll-marker-group" | "::selection" | "::spelling-error" | "::target-text" | "::view-transition"
556
+ export type Pseudos = AdvancedPseudos | SimplePseudos
557
+ export namespace Property {
558
+ export type AccentColor = "auto" | TColor;
559
+ export type AlignContent = "normal" | TBaselinePosition | TContentDistribution | TOverflowPosition | TContentPosition;
560
+ export type AlignItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
561
+ export type AlignSelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
562
+ export type AlignmentBaseline = "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge";
563
+ export type All = "initial" | "inherit" | "unset" | "revert" | "revert-layer";
564
+ export type AnimationComposition = TSingleAnimationComposition;
565
+ export type AnimationDelay = (string & {});
566
+ export type AnimationDirection = TSingleAnimationDirection;
567
+ export type AnimationDuration = "auto";
568
+ export type AnimationFillMode = TSingleAnimationFillMode;
569
+ export type AnimationIterationCount = TSingleAnimationIterationCount;
570
+ export type AnimationName = "none" | TKeyframesName;
571
+ export type AnimationPlayState = TSingleAnimationPlayState;
572
+ export type AnimationTimingFunction = TEasingFunction;
573
+ export type Appearance = "none" | "auto" | TCompatAuto | TCompatSpecial;
574
+ export type AspectRatio = "auto" | TRatio;
575
+ export type BackdropFilter = "none" | TFilterValueList;
576
+ export type BackfaceVisibility = "visible" | "hidden";
577
+ export type BackgroundAttachment = TAttachment;
578
+ export type BackgroundBlendMode = TBlendMode;
579
+ export type BackgroundClip = TBgClip;
580
+ export type BackgroundColor = TColor;
581
+ export type BackgroundImage = TBgImage;
582
+ export type BackgroundOrigin = TVisualBox;
583
+ export type BackgroundPositionX = "center" | "left" | "right" | "x-start" | "x-end" | TLengthPercentage;
584
+ export type BackgroundPositionY = "center" | "top" | "bottom" | "y-start" | "y-end" | TLengthPercentage;
585
+ export type BackgroundRepeat = TRepeatStyle;
586
+ export type BackgroundSize = TBgSize;
587
+ export type BaselineShift = TLengthPercentage | "sub" | "super" | "baseline";
588
+ export type BlockSize = Width;
589
+ export type BorderBlockColor = BorderTopColor;
590
+ export type BorderBlockEndColor = BorderTopColor;
591
+ export type BorderBlockEndStyle = BorderTopStyle;
592
+ export type BorderBlockEndWidth = BorderTopWidth;
593
+ export type BorderBlockStartColor = BorderTopColor;
594
+ export type BorderBlockStartStyle = BorderTopStyle;
595
+ export type BorderBlockStartWidth = BorderTopWidth;
596
+ export type BorderBlockStyle = BorderTopStyle;
597
+ export type BorderBlockWidth = BorderTopWidth;
598
+ export type BorderBottomColor = BorderTopColor;
599
+ export type BorderBottomLeftRadius = TLengthPercentage;
600
+ export type BorderBottomRightRadius = TLengthPercentage;
601
+ export type BorderBottomStyle = TLineStyle;
602
+ export type BorderBottomWidth = TLineWidth;
603
+ export type BorderCollapse = "separate" | "collapse";
604
+ export type BorderEndEndRadius = BorderTopLeftRadius;
605
+ export type BorderEndStartRadius = BorderTopLeftRadius;
606
+ export type BorderImageOutset = number;
607
+ export type BorderImageRepeat = "stretch" | "repeat" | "round" | "space";
608
+ export type BorderImageSlice = number | "fill";
609
+ export type BorderImageSource = "none" | TImage;
610
+ export type BorderImageWidth = TLengthPercentage | number | "auto";
611
+ export type BorderInlineColor = BorderTopColor;
612
+ export type BorderInlineEndColor = BorderTopColor;
613
+ export type BorderInlineEndStyle = BorderTopStyle;
614
+ export type BorderInlineEndWidth = BorderTopWidth;
615
+ export type BorderInlineStartColor = BorderTopColor;
616
+ export type BorderInlineStartStyle = BorderTopStyle;
617
+ export type BorderInlineStartWidth = BorderTopWidth;
618
+ export type BorderInlineStyle = BorderTopStyle;
619
+ export type BorderInlineWidth = BorderTopWidth;
620
+ export type BorderLeftColor = TColor;
621
+ export type BorderLeftStyle = TLineStyle;
622
+ export type BorderLeftWidth = TLineWidth;
623
+ export type BorderRightColor = TColor;
624
+ export type BorderRightStyle = TLineStyle;
625
+ export type BorderRightWidth = TLineWidth;
626
+ export type BorderSpacing = (string & {});
627
+ export type BorderStartEndRadius = BorderTopLeftRadius;
628
+ export type BorderStartStartRadius = BorderTopLeftRadius;
629
+ export type BorderTopColor = TColor;
630
+ export type BorderTopLeftRadius = TLengthPercentage;
631
+ export type BorderTopRightRadius = TLengthPercentage;
632
+ export type BorderTopStyle = TLineStyle;
633
+ export type BorderTopWidth = TLineWidth;
634
+ export type Bottom = "auto" | TLengthPercentage;
635
+ export type BoxDecorationBreak = "slice" | "clone";
636
+ export type BoxShadow = "none" | TShadow;
637
+ export type BoxSizing = "content-box" | "border-box";
638
+ export type BreakAfter = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
639
+ export type BreakBefore = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
640
+ export type BreakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
641
+ export type CaptionSide = "top" | "bottom";
642
+ export type CaretColor = "auto" | TColor;
643
+ export type CaretShape = "auto" | "bar" | "block" | "underscore";
644
+ export type Clear = "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
645
+ export type ClipPath = TClipSource | TBasicShape | TGeometryBox | "none";
646
+ export type ClipRule = "nonzero" | "evenodd";
647
+ export type Color = TColor;
648
+ export type ColorInterpolationFilters = "auto" | "sRGB" | "linearRGB";
649
+ export type ColorScheme = "normal" | "light" | "dark" | (string & {}) | "only";
650
+ export type ColumnCount = number | "auto";
651
+ export type ColumnFill = "auto" | "balance";
652
+ export type ColumnGap = "normal" | TLengthPercentage;
653
+ export type ColumnRuleColor = TColor;
654
+ export type ColumnRuleStyle = BorderStyle;
655
+ export type ColumnRuleWidth = BorderWidth;
656
+ export type ColumnSpan = "none" | "all";
657
+ export type ColumnWidth = "auto";
658
+ export type Contain = "none" | "strict" | "content" | "size" | "inline-size" | "layout" | "style" | "paint";
659
+ export type ContainIntrinsicBlockSize = "auto" | "none";
660
+ export type ContainIntrinsicHeight = "auto" | "none";
661
+ export type ContainIntrinsicInlineSize = "auto" | "none";
662
+ export type ContainIntrinsicWidth = "auto" | "none";
663
+ export type ContainerName = "none" | (string & {});
664
+ export type ContainerType = "normal" | "size" | "inline-size" | "scroll-state";
665
+ export type Content = "normal" | "none" | TContentReplacement | TContentList | (string & {}) | TCounter;
666
+ export type ContentVisibility = "visible" | "auto" | "hidden";
667
+ export type CounterIncrement = TCounterName | number | "none";
668
+ export type CounterReset = TCounterName | number | TReversedCounterName | number | "none";
669
+ export type CounterSet = TCounterName | number | "none";
670
+ export type Cursor = TCursorPredefined;
671
+ export type Cx = number;
672
+ export type Cy = number;
673
+ export type D = "none" | (string & {});
674
+ export type Direction = "ltr" | "rtl";
675
+ export type Display = TDisplayOutside | TDisplayInside | TDisplayListitem | TDisplayInternal | TDisplayBox | TDisplayLegacy;
676
+ export type DominantBaseline = "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
677
+ export type EmptyCells = "show" | "hide";
678
+ export type Fill = TPaint;
679
+ export type FillOpacity = Opacity;
680
+ export type FillRule = "nonzero" | "evenodd";
681
+ export type Filter = "none" | TFilterValueList;
682
+ export type FlexBasis = "content" | Width;
683
+ export type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
684
+ export type FlexGrow = number;
685
+ export type FlexShrink = number;
686
+ export type FlexWrap = "nowrap" | "wrap" | "wrap-reverse";
687
+ export type Float = "left" | "right" | "none" | "inline-start" | "inline-end";
688
+ export type FloodColor = TColor;
689
+ export type FloodOpacity = Opacity;
690
+ export type FontFamily = TFamilyName | TGenericFamily;
691
+ export type FontFeatureSettings = "normal" | TFeatureTagValue;
692
+ export type FontKerning = "auto" | "normal" | "none";
693
+ export type FontLanguageOverride = "normal" | (string & {});
694
+ export type FontOpticalSizing = "auto" | "none";
695
+ export type FontPalette = "normal" | "light" | "dark" | TPaletteIdentifier;
696
+ export type FontSize = TAbsoluteSize | TRelativeSize | TLengthPercentage | "math";
697
+ export type FontSizeAdjust = "none" | "ex-height" | "cap-height" | "ch-width" | "ic-width" | "ic-height" | "from-font" | number;
698
+ export type FontStyle = "normal" | "italic" | "oblique";
699
+ export type FontSynthesis = "none" | "weight" | "style" | "small-caps" | "position";
700
+ export type FontSynthesisSmallCaps = "auto" | "none";
701
+ export type FontSynthesisStyle = "auto" | "none";
702
+ export type FontSynthesisWeight = "auto" | "none";
703
+ export type FontVariant = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues | TFeatureValueName | "historical-forms" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
704
+ export type FontVariantAlternates = "normal" | TFeatureValueName | "historical-forms";
705
+ export type FontVariantCaps = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
706
+ export type FontVariantEastAsian = "normal" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
707
+ export type FontVariantEmoji = "normal" | "text" | "emoji" | "unicode";
708
+ export type FontVariantLigatures = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues;
709
+ export type FontVariantNumeric = "normal" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero";
710
+ export type FontVariantPosition = "normal" | "sub" | "super";
711
+ export type FontVariationSettings = "normal" | (string & {}) | number;
712
+ export type FontWeight = TFontWeightAbsolute | "bolder" | "lighter";
713
+ export type ForcedColorAdjust = "auto" | "none" | "preserve-parent-color";
714
+ export type GridAutoColumns = TTrackSize;
715
+ export type GridAutoFlow = "row" | "column" | "dense";
716
+ export type GridAutoRows = TTrackSize;
717
+ export type GridColumnEnd = TGridLine;
718
+ export type GridColumnStart = TGridLine;
719
+ export type GridRowEnd = TGridLine;
720
+ export type GridRowStart = TGridLine;
721
+ export type GridTemplateAreas = "none" | (string & {});
722
+ export type GridTemplateColumns = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
723
+ export type GridTemplateRows = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
724
+ export type HangingPunctuation = "none" | "first" | "force-end" | "allow-end" | "last";
725
+ export type Height = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
726
+ export type HyphenateCharacter = "auto" | (string & {});
727
+ export type HyphenateLimitChars = "auto" | number;
728
+ export type Hyphens = "none" | "manual" | "auto";
729
+ export type ImageOrientation = "from-image" | "flip";
730
+ export type ImageRendering = "auto" | "crisp-edges" | "pixelated" | "smooth";
731
+ export type InitialLetter = "normal" | number;
732
+ export type InlineSize = Width;
733
+ export type InsetBlockEnd = Top;
734
+ export type InsetBlockStart = Top;
735
+ export type InsetInlineEnd = Top;
736
+ export type InsetInlineStart = Top;
737
+ export type Isolation = "auto" | "isolate";
738
+ export type JustifyContent = "normal" | TContentDistribution | TOverflowPosition | TContentPosition | "left" | "right";
739
+ export type JustifyItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "legacy" | "legacy" | "left" | "right" | "center" | "anchor-center";
740
+ export type JustifySelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "anchor-center";
741
+ export type Left = "auto" | TLengthPercentage;
742
+ export type LetterSpacing = "normal";
743
+ export type LightingColor = TColor;
744
+ export type LineBreak = "auto" | "loose" | "normal" | "strict" | "anywhere";
745
+ export type LineClamp = "none" | number;
746
+ export type LineHeight = "normal" | number;
747
+ export type ListStyleImage = TImage | "none";
748
+ export type ListStylePosition = "inside" | "outside";
749
+ export type ListStyleType = TCounterStyle | (string & {}) | "none";
750
+ export type MarginBlockEnd = MarginTop;
751
+ export type MarginBlockStart = MarginTop;
752
+ export type MarginBottom = TLengthPercentage | "auto";
753
+ export type MarginInlineEnd = MarginTop;
754
+ export type MarginInlineStart = MarginTop;
755
+ export type MarginLeft = TLengthPercentage | "auto";
756
+ export type MarginRight = TLengthPercentage | "auto";
757
+ export type MarginTop = TLengthPercentage | "auto";
758
+ export type Marker = "none";
759
+ export type MarkerEnd = "none";
760
+ export type MarkerMid = "none";
761
+ export type MarkerStart = "none";
762
+ export type MaskBorderMode = "luminance" | "alpha";
763
+ export type MaskBorderOutset = number;
764
+ export type MaskBorderRepeat = "stretch" | "repeat" | "round" | "space";
765
+ export type MaskBorderSlice = TNumberPercentage | "fill";
766
+ export type MaskBorderSource = "none" | TImage;
767
+ export type MaskBorderWidth = TLengthPercentage | number | "auto";
768
+ export type MaskClip = TCoordBox | "no-clip";
769
+ export type MaskComposite = TCompositingOperator;
770
+ export type MaskImage = TMaskReference;
771
+ export type MaskMode = TMaskingMode;
772
+ export type MaskOrigin = TCoordBox;
773
+ export type MaskPosition = TPosition;
774
+ export type MaskRepeat = TRepeatStyle;
775
+ export type MaskSize = TBgSize;
776
+ export type MaskType = "luminance" | "alpha";
777
+ export type MathDepth = "auto-add" | number;
778
+ export type MathStyle = "normal" | "compact";
779
+ export type MaxBlockSize = MaxWidth;
780
+ export type MaxHeight = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
781
+ export type MaxInlineSize = MaxWidth;
782
+ export type MaxWidth = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
783
+ export type MinBlockSize = MinWidth;
784
+ export type MinHeight = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
785
+ export type MinInlineSize = MinWidth;
786
+ export type MinWidth = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
787
+ export type MixBlendMode = TBlendMode | "plus-darker" | "plus-lighter";
788
+ export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
789
+ export type ObjectPosition = TPosition;
790
+ export type OffsetAnchor = "auto" | TPosition;
791
+ export type OffsetDistance = TLengthPercentage;
792
+ export type OffsetPath = "none" | TOffsetPath | TCoordBox;
793
+ export type OffsetPosition = "normal" | "auto" | TPosition;
794
+ export type OffsetRotate = "auto" | "reverse";
795
+ export type Opacity = TOpacityValue;
796
+ export type Order = number;
797
+ export type Orphans = number;
798
+ export type OutlineColor = "auto" | TColor;
799
+ export type OutlineOffset = (string & {});
800
+ export type OutlineStyle = "auto" | TOutlineLineStyle;
801
+ export type OutlineWidth = TLineWidth;
802
+ export type OverflowAnchor = "auto" | "none";
803
+ export type OverflowBlock = "visible" | "hidden" | "clip" | "scroll" | "auto";
804
+ export type OverflowClipMargin = TVisualBox;
805
+ export type OverflowInline = "visible" | "hidden" | "clip" | "scroll" | "auto";
806
+ export type OverflowWrap = "normal" | "break-word" | "anywhere";
807
+ export type OverflowX = "visible" | "hidden" | "clip" | "scroll" | "auto";
808
+ export type OverflowY = "visible" | "hidden" | "clip" | "scroll" | "auto";
809
+ export type OverscrollBehaviorBlock = "contain" | "none" | "auto";
810
+ export type OverscrollBehaviorInline = "contain" | "none" | "auto";
811
+ export type OverscrollBehaviorX = "contain" | "none" | "auto";
812
+ export type OverscrollBehaviorY = "contain" | "none" | "auto";
813
+ export type PaddingBlockEnd = PaddingTop;
814
+ export type PaddingBlockStart = PaddingTop;
815
+ export type PaddingBottom = TLengthPercentage;
816
+ export type PaddingInlineEnd = PaddingTop;
817
+ export type PaddingInlineStart = PaddingTop;
818
+ export type PaddingLeft = TLengthPercentage;
819
+ export type PaddingRight = TLengthPercentage;
820
+ export type PaddingTop = TLengthPercentage;
821
+ export type Page = "auto" | (string & {});
822
+ export type PaintOrder = "normal" | "fill" | "stroke" | "markers";
823
+ export type Perspective = "none";
824
+ export type PerspectiveOrigin = TPosition;
825
+ export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
826
+ export type Position = "static" | "relative" | "absolute" | "sticky" | "fixed";
827
+ export type PrintColorAdjust = "economy" | "exact";
828
+ export type Quotes = "none" | "auto" | (string & {});
829
+ export type R = number;
830
+ export type Resize = "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
831
+ export type Right = "auto" | TLengthPercentage;
832
+ export type Rotate = "none" | "x" | "y" | "z" | number;
833
+ export type RowGap = "normal" | TLengthPercentage;
834
+ export type RubyAlign = "start" | "center" | "space-between" | "space-around";
835
+ export type RubyOverhang = "auto" | "none";
836
+ export type RubyPosition = "alternate" | "over" | "under" | "inter-character";
837
+ export type Rx = number;
838
+ export type Ry = number;
839
+ export type Scale = "none" | number;
840
+ export type ScrollBehavior = "auto" | "smooth";
841
+ export type ScrollMarginBlockEnd = (string & {});
842
+ export type ScrollMarginBlockStart = (string & {});
843
+ export type ScrollMarginBottom = (string & {});
844
+ export type ScrollMarginInlineEnd = (string & {});
845
+ export type ScrollMarginInlineStart = (string & {});
846
+ export type ScrollMarginLeft = (string & {});
847
+ export type ScrollMarginRight = (string & {});
848
+ export type ScrollMarginTop = (string & {});
849
+ export type ScrollPaddingBlockEnd = "auto" | TLengthPercentage;
850
+ export type ScrollPaddingBlockStart = "auto" | TLengthPercentage;
851
+ export type ScrollPaddingBottom = "auto" | TLengthPercentage;
852
+ export type ScrollPaddingInlineEnd = "auto" | TLengthPercentage;
853
+ export type ScrollPaddingInlineStart = "auto" | TLengthPercentage;
854
+ export type ScrollPaddingLeft = "auto" | TLengthPercentage;
855
+ export type ScrollPaddingRight = "auto" | TLengthPercentage;
856
+ export type ScrollPaddingTop = "auto" | TLengthPercentage;
857
+ export type ScrollSnapAlign = "none" | "start" | "end" | "center";
858
+ export type ScrollSnapStop = "normal" | "always";
859
+ export type ScrollSnapType = "none" | "x" | "y" | "block" | "inline" | "both" | "mandatory" | "proximity";
860
+ export type ScrollbarColor = "auto" | TColor;
861
+ export type ScrollbarGutter = "auto" | "stable" | "both-edges";
862
+ export type ScrollbarWidth = "auto" | "thin" | "none";
863
+ export type ShapeImageThreshold = TOpacityValue;
864
+ export type ShapeMargin = TLengthPercentage;
865
+ export type ShapeOutside = "none" | TShapeBox | TBasicShape | TImage;
866
+ export type ShapeRendering = "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
867
+ export type StopColor = Color;
868
+ export type StopOpacity = Opacity;
869
+ export type Stroke = TPaint;
870
+ export type StrokeDasharray = "none" | TDasharray;
871
+ export type StrokeDashoffset = TLengthPercentage | number;
872
+ export type StrokeLinecap = "butt" | "round" | "square";
873
+ export type StrokeLinejoin = "miter" | "miter-clip" | "round" | "bevel" | "arcs";
874
+ export type StrokeMiterlimit = number;
875
+ export type StrokeOpacity = Opacity;
876
+ export type StrokeWidth = TLengthPercentage | number;
877
+ export type TabSize = number;
878
+ export type TableLayout = "auto" | "fixed";
879
+ export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent";
880
+ export type TextAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
881
+ export type TextAnchor = "start" | "middle" | "end";
882
+ export type TextAutospace = "normal" | "auto";
883
+ export type TextBox = "normal" | TextBoxTrim | TextBoxEdge;
884
+ export type TextBoxEdge = "auto" | TTextEdge;
885
+ export type TextBoxTrim = "none" | "trim-start" | "trim-end" | "trim-both";
886
+ export type TextCombineUpright = "none" | "all" | "digits" | number;
887
+ export type TextDecorationColor = TColor;
888
+ export type TextDecorationLine = "none" | "underline" | "overline" | "line-through" | "blink" | "spelling-error" | "grammar-error";
889
+ export type TextDecorationSkipInk = "auto" | "all" | "none";
890
+ export type TextDecorationStyle = "solid" | "double" | "dotted" | "dashed" | "wavy";
891
+ export type TextDecorationThickness = "auto" | "from-font" | number;
892
+ export type TextEmphasisColor = TColor;
893
+ export type TextEmphasisPosition = "auto" | "over" | "under" | "right" | "left";
894
+ export type TextEmphasisStyle = "none" | "filled" | "open" | "dot" | "circle" | "double-circle" | "triangle" | "sesame" | (string & {});
895
+ export type TextIndent = TLengthPercentage | "hanging" | "each-line";
896
+ export type TextJustify = "auto" | "inter-character" | "inter-word" | "none";
897
+ export type TextOrientation = "mixed" | "upright" | "sideways";
898
+ export type TextOverflow = "clip" | "ellipsis" | (string & {});
899
+ export type TextRendering = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
900
+ export type TextShadow = "none" | TShadowT;
901
+ export type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana" | "math-auto";
902
+ export type TextUnderlineOffset = "auto" | number;
903
+ export type TextUnderlinePosition = "auto" | "from-font" | "under" | "left" | "right";
904
+ export type TextWrapMode = "wrap" | "nowrap";
905
+ export type TextWrapStyle = "auto" | "balance" | "stable" | "pretty";
906
+ export type Top = "auto" | TLengthPercentage;
907
+ export type TouchAction = "auto" | "none" | "pan-x" | "pan-left" | "pan-right" | "pan-y" | "pan-up" | "pan-down" | "pinch-zoom" | "manipulation";
908
+ export type Transform = "none" | TTransformList;
909
+ export type TransformBox = "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box";
910
+ export type TransformOrigin = TLengthPercentage | "left" | "center" | "right" | "top" | "bottom" | TLengthPercentage | "left" | "center" | "right" | TLengthPercentage | "top" | "center" | "bottom";
911
+ export type TransformStyle = "flat" | "preserve-3d";
912
+ export type TransitionBehavior = TTransitionBehaviorValue;
913
+ export type TransitionDelay = (string & {});
914
+ export type TransitionDuration = (string & {});
915
+ export type TransitionProperty = "none" | TSingleTransitionProperty;
916
+ export type TransitionTimingFunction = TEasingFunction;
917
+ export type Translate = "none" | TLengthPercentage;
918
+ export type UnicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
919
+ export type UserSelect = "auto" | "text" | "none" | "all";
920
+ export type VectorEffect = "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
921
+ export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | number;
922
+ export type ViewTransitionClass = "none" | (string & {});
923
+ export type ViewTransitionName = "none" | (string & {}) | "match-element";
924
+ export type Visibility = "visible" | "hidden" | "collapse";
925
+ export type WhiteSpace = "normal" | "pre" | "pre-wrap" | "pre-line" | WhiteSpaceCollapse | TextWrapMode;
926
+ export type WhiteSpaceCollapse = "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces";
927
+ export type Widows = number;
928
+ export type Width = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
929
+ export type WillChange = "auto" | TAnimateableFeature;
930
+ export type WordBreak = "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
931
+ export type WordSpacing = "normal";
932
+ export type WordWrap = "normal" | "break-word";
933
+ export type WritingMode = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
934
+ export type X = number;
935
+ export type Y = number;
936
+ export type ZIndex = "auto" | number;
937
+ export type Zoom = "normal" | "reset" | number;
938
+ export type Animation = TSingleAnimation;
939
+ export type Background = TBgLayer | TFinalBgLayer;
940
+ export type BackgroundPosition = TBgPosition;
941
+ export type Border = TLineWidth | TLineStyle | TColor;
942
+ export type BorderBlock = BorderBlockStart;
943
+ export type BorderBlockEnd = BorderTopWidth | BorderTopStyle | TColor;
944
+ export type BorderBlockStart = BorderTopWidth | BorderTopStyle | TColor;
945
+ export type BorderBottom = TLineWidth | TLineStyle | TColor;
946
+ export type BorderColor = TColor;
947
+ export type BorderImage = BorderImageSource | BorderImageSlice | BorderImageWidth | BorderImageWidth | BorderImageOutset | BorderImageRepeat;
948
+ export type BorderInline = BorderBlockStart;
949
+ export type BorderInlineEnd = BorderTopWidth | BorderTopStyle | TColor;
950
+ export type BorderInlineStart = BorderTopWidth | BorderTopStyle | TColor;
951
+ export type BorderLeft = TLineWidth | TLineStyle | TColor;
952
+ export type BorderRadius = TLengthPercentage;
953
+ export type BorderRight = TLineWidth | TLineStyle | TColor;
954
+ export type BorderStyle = TLineStyle;
955
+ export type BorderTop = TLineWidth | TLineStyle | TColor;
956
+ export type BorderWidth = TLineWidth;
957
+ export type Caret = CaretColor | CaretShape;
958
+ export type ColumnRule = ColumnRuleWidth | ColumnRuleStyle | ColumnRuleColor;
959
+ export type Columns = ColumnWidth | ColumnCount;
960
+ export type ContainIntrinsicSize = "auto" | "none";
961
+ export type Container = ContainerName | ContainerType;
962
+ export type Flex = "none" | FlexGrow | FlexShrink | FlexBasis;
963
+ export type FlexFlow = FlexDirection | FlexWrap;
964
+ export type Font = FontStyle | TFontVariantCss2 | FontWeight | TFontWidthCss3 | FontSize | LineHeight | FontFamily | TSystemFamilyName;
965
+ export type Gap = RowGap | ColumnGap;
966
+ export type Grid = GridTemplate | GridTemplateRows | "auto-flow" | "dense" | GridAutoColumns | "auto-flow" | "dense" | GridAutoRows | GridTemplateColumns;
967
+ export type GridArea = TGridLine;
968
+ export type GridColumn = TGridLine;
969
+ export type GridRow = TGridLine;
970
+ export type GridTemplate = "none" | GridTemplateRows | GridTemplateColumns | TLineNames | (string & {}) | TTrackSize | TExplicitTrackList;
971
+ export type Inset = Top;
972
+ export type InsetBlock = Top;
973
+ export type InsetInline = Top;
974
+ export type ListStyle = ListStyleType | ListStylePosition | ListStyleImage;
975
+ export type Margin = MarginTop;
976
+ export type MarginBlock = MarginTop;
977
+ export type MarginInline = MarginTop;
978
+ export type Mask = TMaskLayer;
979
+ export type MaskBorder = MaskBorderSource | MaskBorderSlice | MaskBorderWidth | MaskBorderOutset | MaskBorderRepeat | MaskBorderMode;
980
+ export type Offset = OffsetPosition | OffsetPath | OffsetDistance | OffsetRotate | OffsetAnchor;
981
+ export type Outline = OutlineWidth | OutlineStyle | OutlineColor;
982
+ export type Overflow = "visible" | "hidden" | "clip" | "scroll" | "auto";
983
+ export type OverscrollBehavior = "contain" | "none" | "auto";
984
+ export type Padding = PaddingTop;
985
+ export type PaddingBlock = PaddingTop;
986
+ export type PaddingInline = PaddingTop;
987
+ export type PlaceContent = AlignContent | JustifyContent;
988
+ export type PlaceItems = AlignItems | JustifyItems;
989
+ export type PlaceSelf = AlignSelf | JustifySelf;
990
+ export type ScrollMargin = (string & {});
991
+ export type ScrollMarginBlock = (string & {});
992
+ export type ScrollMarginInline = (string & {});
993
+ export type ScrollPadding = "auto" | TLengthPercentage;
994
+ export type ScrollPaddingBlock = "auto" | TLengthPercentage;
995
+ export type ScrollPaddingInline = "auto" | TLengthPercentage;
996
+ export type TextDecoration = TextDecorationLine | TextDecorationStyle | TextDecorationColor | TextDecorationThickness;
997
+ export type TextEmphasis = TextEmphasisStyle | TextEmphasisColor;
998
+ export type TextWrap = TextWrapMode | TextWrapStyle;
999
+ export type Transition = TSingleTransition;
1000
+ export type MsAccelerator = "false" | "true";
1001
+ export type MsBlockProgression = "tb" | "rl" | "bt" | "lr";
1002
+ export type MsContentZoomChaining = "none" | "chained";
1003
+ export type MsContentZoomLimitMax = number;
1004
+ export type MsContentZoomLimitMin = number;
1005
+ export type MsContentZoomSnapPoints = number;
1006
+ export type MsContentZoomSnapType = "none" | "proximity" | "mandatory";
1007
+ export type MsContentZooming = "none" | "zoom";
1008
+ export type MsFilter = (string & {});
1009
+ export type MsFlowFrom = "none" | (string & {});
1010
+ export type MsFlowInto = "none" | (string & {});
1011
+ export type MsGridColumns = "none" | TTrackList | TAutoTrackList;
1012
+ export type MsGridRows = "none" | TTrackList | TAutoTrackList;
1013
+ export type MsHighContrastAdjust = "auto" | "none";
1014
+ export type MsHyphenateLimitChars = "auto" | number;
1015
+ export type MsHyphenateLimitLines = "no-limit" | number;
1016
+ export type MsHyphenateLimitZone = number;
1017
+ export type MsImeAlign = "auto" | "after";
1018
+ export type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
1019
+ export type MsScrollChaining = "chained" | "none";
1020
+ export type MsScrollLimitXMax = "auto";
1021
+ export type MsScrollLimitXMin = (string & {});
1022
+ export type MsScrollLimitYMax = "auto";
1023
+ export type MsScrollLimitYMin = (string & {});
1024
+ export type MsScrollRails = "none" | "railed";
1025
+ export type MsScrollSnapPointsX = TLengthPercentage;
1026
+ export type MsScrollSnapPointsY = TLengthPercentage;
1027
+ export type MsScrollSnapType = "none" | "proximity" | "mandatory";
1028
+ export type MsScrollTranslation = "none" | "vertical-to-horizontal";
1029
+ export type MsScrollbar3dlightColor = TColor;
1030
+ export type MsScrollbarArrowColor = TColor;
1031
+ export type MsScrollbarBaseColor = TColor;
1032
+ export type MsScrollbarDarkshadowColor = TColor;
1033
+ export type MsScrollbarFaceColor = TColor;
1034
+ export type MsScrollbarHighlightColor = TColor;
1035
+ export type MsScrollbarShadowColor = TColor;
1036
+ export type MsScrollbarTrackColor = TColor;
1037
+ export type MsTextAutospace = "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space";
1038
+ export type MsTouchSelect = "grippers" | "none";
1039
+ export type MsUserSelect = "none" | "element" | "text";
1040
+ export type MsWrapFlow = "auto" | "both" | "start" | "end" | "maximum" | "clear";
1041
+ export type MsWrapMargin = (string & {});
1042
+ export type MsWrapThrough = "wrap" | "none";
1043
+ export type MozAppearance = "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview" | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communicationstext" | "-moz-win-communications-toolbox" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-mediatext" | "-moz-win-media-toolbox" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized";
1044
+ export type MozBinding = "none";
1045
+ export type MozBorderBottomColors = TColor | "none";
1046
+ export type MozBorderLeftColors = TColor | "none";
1047
+ export type MozBorderRightColors = TColor | "none";
1048
+ export type MozBorderTopColors = TColor | "none";
1049
+ export type MozContextProperties = "none" | "fill" | "fill-opacity" | "stroke" | "stroke-opacity";
1050
+ export type MozFloatEdge = "border-box" | "content-box" | "margin-box" | "padding-box";
1051
+ export type MozForceBrokenImageIcon = "0" | "1";
1052
+ export type MozOrient = "inline" | "block" | "horizontal" | "vertical";
1053
+ export type MozOutlineRadiusBottomleft = TOutlineRadius;
1054
+ export type MozOutlineRadiusBottomright = TOutlineRadius;
1055
+ export type MozOutlineRadiusTopleft = TOutlineRadius;
1056
+ export type MozOutlineRadiusTopright = TOutlineRadius;
1057
+ export type MozStackSizing = "ignore" | "stretch-to-fit";
1058
+ export type MozTextBlink = "none" | "blink";
1059
+ export type MozUserFocus = "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none";
1060
+ export type MozUserInput = "auto" | "none" | "enabled" | "disabled";
1061
+ export type MozUserModify = "read-only" | "read-write" | "write-only";
1062
+ export type MozWindowDragging = "drag" | "no-drag";
1063
+ export type MozWindowShadow = "default" | "menu" | "tooltip" | "sheet" | "none";
1064
+ export type WebkitAppearance = "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield" | "-apple-pay-button";
1065
+ export type WebkitBorderBeforeColor = TColor;
1066
+ export type WebkitBorderBeforeStyle = BorderStyle;
1067
+ export type WebkitBorderBeforeWidth = BorderWidth;
1068
+ export type WebkitBoxReflect = "above" | "below" | "right" | "left" | TImage;
1069
+ export type WebkitLineClamp = "none" | number;
1070
+ export type WebkitMaskAttachment = TAttachment;
1071
+ export type WebkitMaskClip = TCoordBox | "no-clip" | "border" | "padding" | "content" | "text";
1072
+ export type WebkitMaskComposite = TCompositeStyle;
1073
+ export type WebkitMaskImage = TMaskReference;
1074
+ export type WebkitMaskOrigin = TCoordBox | "border" | "padding" | "content";
1075
+ export type WebkitMaskPosition = TPosition;
1076
+ export type WebkitMaskPositionX = TLengthPercentage | "left" | "center" | "right";
1077
+ export type WebkitMaskPositionY = TLengthPercentage | "top" | "center" | "bottom";
1078
+ export type WebkitMaskRepeat = TRepeatStyle;
1079
+ export type WebkitMaskRepeatX = "repeat" | "no-repeat" | "space" | "round";
1080
+ export type WebkitMaskRepeatY = "repeat" | "no-repeat" | "space" | "round";
1081
+ export type WebkitMaskSize = TBgSize;
1082
+ export type WebkitOverflowScrolling = "auto" | "touch";
1083
+ export type WebkitTapHighlightColor = TColor;
1084
+ export type WebkitTextFillColor = TColor;
1085
+ export type WebkitTextStrokeColor = TColor;
1086
+ export type WebkitTextStrokeWidth = (string & {});
1087
+ export type WebkitTouchCallout = "default" | "none";
1088
+ export type WebkitUserModify = "read-only" | "read-write" | "read-write-plaintext-only";
1089
+ export type WebkitUserSelect = "auto" | "text" | "none" | "all";
1090
+ export type MsContentZoomLimit = MsContentZoomLimitMin | MsContentZoomLimitMax;
1091
+ export type MsContentZoomSnap = MsContentZoomSnapType | MsContentZoomSnapPoints;
1092
+ export type MsScrollLimit = MsScrollLimitXMin | MsScrollLimitYMin | MsScrollLimitXMax | MsScrollLimitYMax;
1093
+ export type MsScrollSnapX = MsScrollSnapType | MsScrollSnapPointsX;
1094
+ export type MsScrollSnapY = MsScrollSnapType | MsScrollSnapPointsY;
1095
+ export type MozOutlineRadius = TOutlineRadius;
1096
+ export type WebkitBorderBefore = BorderWidth | BorderStyle | TColor;
1097
+ export type WebkitMask = TMaskReference | TPosition | TBgSize | TRepeatStyle | TVisualBox | "border" | "padding" | "content" | "text" | TVisualBox | "border" | "padding" | "content";
1098
+ export type WebkitTextStroke = TColor;
1089
1099
  }
1090
1100
  export type TAbsoluteSize = "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" | "xxx-large";
1091
1101
  export type TAlphaValue = number;