@omnia/fx 8.0.458-dev → 8.0.460-dev

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 (27) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +1 -1
  3. package/internal-do-not-import-from-here/ux/alignmentpicker/AlignmentPicker.d.ts +3 -1
  4. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/ComponentEditorStore.d.ts +3 -0
  5. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/HeaderEditorStore.d.ts +3 -0
  6. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStyleEditorStore.d.ts +2 -1
  7. package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/DynamicColorIndicator.d.ts +1 -1
  8. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +10 -4
  9. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +4 -2
  10. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.stylex.d.ts +4 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderPickerStore.d.ts +3 -1
  12. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderStyleEditorStore.d.ts +9 -2
  13. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/SpacingPicker3.d.ts +2 -4
  14. package/internal-do-not-import-from-here/ux/aurora/components/spacingpicker/store/SpacingPickerStore.d.ts +38 -0
  15. package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts +5 -3
  16. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +1 -1
  17. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +8 -0
  18. package/internal-do-not-import-from-here/ux/mobile/index.d.ts +0 -1
  19. package/internal-do-not-import-from-here/ux/oxide/panel/store/PanelStore.d.ts +0 -1
  20. package/internal-do-not-import-from-here/ux/oxide/splitpane/Splitpane.d.ts +2 -2
  21. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +10 -8
  22. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +1 -2
  23. package/package.json +3 -3
  24. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex_old.d.ts +0 -0
  25. package/internal-do-not-import-from-here/ux/oxide/panel/Panel_old.d.ts +0 -0
  26. package/internal-do-not-import-from-here/ux/shared-mobile/stylex/Typings.d.ts +0 -894
  27. package/internal-do-not-import-from-here/ux/shared-mobile/stylex/index.d.ts +0 -156
@@ -1,894 +0,0 @@
1
- export type CSSCursor = "auto" | "default" | "none" | "context-menu" | "help" | "inherit" | "pointer" | "progress" | "wait" | "cell" | "crosshair" | "text" | "vertical-text" | "alias" | "copy" | "move" | "no-drop" | "not-allowed" | "e-resize" | "n-resize" | "ne-resize" | "nw-resize" | "s-resize" | "se-resize" | "sw-resize" | "w-resize" | "ew-resize" | "ns-resize" | "nesw-resize" | "nwse-resize" | "col-resize" | "row-resize" | "all-scroll" | "zoom-in" | "zoom-out" | "grab" | "grabbing" | "-webkit-grab" | "-webkit-grabbing";
2
- type alignContent = "center" | "start" | "end" | "flex-start" | "flex-end" | "normal" | "baseline" | "first baseline" | "last baseline" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center" | All;
3
- type alignItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" | All;
4
- type alignSelf = "auto" | "normal" | "center" | "start" | "end" | "self-start" | "self-end" | "flex-start" | "flex-end" | "baseline" | "first baseline" | "last baseline" | "stretch" | "safe center" | "unsafe center" | All;
5
- export type All = null | "initial" | "inherit" | "unset";
6
- type animationDelay = time;
7
- type animationDirection = singleAnimationDirection;
8
- type animationDuration = time;
9
- type animationFillMode = singleAnimationFillMode;
10
- type animationIterationCount = singleAnimationIterationCount;
11
- type animationName = singleAnimationName;
12
- type animationPlayState = singleAnimationPlayState;
13
- type animationTimingFunction = singleTimingFunction;
14
- type appearance = "auto" | "none" | "textfield" | string;
15
- type backdropFilter = "none" | string;
16
- type backfaceVisibility = "visible" | "hidden";
17
- type backgroundAttachment = attachment;
18
- type backgroundBlendMode = blendMode;
19
- type backgroundClip = box;
20
- type backgroundColor = color;
21
- type backgroundImage = bgImage;
22
- type backgroundOrigin = box;
23
- type backgroundPosition = string;
24
- type backgroundPositionX = string;
25
- type backgroundPositionY = string;
26
- type backgroundRepeat = repeatStyle;
27
- type backgroundSize = bgSize;
28
- type blockSize = width;
29
- type border = borderWidth | brStyle | color;
30
- type borderBlockEnd = borderWidth | borderStyle | color;
31
- type borderBlockEndColor = color;
32
- type borderBlockEndStyle = borderStyle;
33
- type borderBlockEndWidth = borderWidth;
34
- type borderBlockStart = borderWidth | borderStyle | color;
35
- type borderBlockStartColor = color;
36
- type borderBlockStartStyle = borderStyle;
37
- type borderBlockStartWidth = borderWidth;
38
- type borderBottomLeftRadius = lengthPercentage;
39
- type borderBottomRightRadius = lengthPercentage;
40
- type borderBottomStyle = brStyle;
41
- type borderBottomWidth = borderWidth;
42
- type borderCollapse = "collapse" | "separate";
43
- type borderColor = color;
44
- type borderImage = borderImageSource | borderImageSlice | string | borderImageRepeat;
45
- type borderImageOutset = string;
46
- type borderImageRepeat = string;
47
- type borderImageSlice = string | number | "fill";
48
- type borderImageSource = "none" | string;
49
- type borderImageWidth = string;
50
- type borderInlineEnd = borderWidth | borderStyle | color;
51
- type borderInlineEndColor = color;
52
- type borderInlineEndStyle = borderStyle;
53
- type borderInlineEndWidth = borderWidth;
54
- type borderInlineStart = borderWidth | borderStyle | color;
55
- type borderInlineStartColor = color;
56
- type borderInlineStartStyle = borderStyle;
57
- type borderInlineStartWidth = borderWidth;
58
- type borderLeftColor = color;
59
- type borderLeftStyle = brStyle;
60
- type borderLeftWidth = borderWidth;
61
- type borderRightColor = color;
62
- type borderRightStyle = brStyle;
63
- type borderRightWidth = borderWidth;
64
- type borderRadius = lengthPercentage;
65
- type borderSpacing = number | string;
66
- type borderStyle = brStyle;
67
- type borderTopLeftRadius = lengthPercentage;
68
- type borderTopRightRadius = lengthPercentage;
69
- type borderTopStyle = brStyle;
70
- type borderTopWidth = borderWidth;
71
- type boxAlign = "start" | "center" | "end" | "baseline" | "stretch";
72
- type boxDecorationBreak = "slice" | "clone";
73
- type boxDirection = "normal" | "reverse" | "inherit";
74
- type boxFlex = number | string;
75
- type boxFlexGroup = number | string;
76
- type boxLines = "single" | "multiple";
77
- type boxOrdinalGroup = number | string;
78
- type boxOrient = "horizontal" | "vertical" | "inline-axis" | "block-axis" | "inherit";
79
- type boxShadow = "none" | string;
80
- type boxSizing = "content-box" | "border-box";
81
- type boxSuppress = "show" | "discard" | "hide";
82
- type breakAfter = "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
83
- type breakBefore = "auto" | "avoid" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
84
- type breakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
85
- type captionSide = "top" | "bottom" | "block-start" | "block-end" | "inline-start" | "inline-end";
86
- type clear = "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
87
- type clip = string | "auto";
88
- type clipPath = string | "none";
89
- type columnCount = number | "auto" | string;
90
- type columnFill = "auto" | "balance";
91
- type columnGap = number | string | "normal";
92
- type columnRule = columnRuleWidth | columnRuleStyle | columnRuleColor;
93
- type columnRuleColor = color;
94
- type columnRuleStyle = brStyle;
95
- type columnRuleWidth = borderWidth;
96
- type columnSpan = "none" | "all";
97
- type columnWidth = number | "auto" | string;
98
- type columns = columnWidth | columnCount;
99
- type contain = "none" | "strict" | "content" | string;
100
- type content = string;
101
- type counterIncrement = string | "none";
102
- type counterReset = string | "none";
103
- type cursor = CSSCursor;
104
- type direction = "ltr" | "rtl" | "inherit";
105
- type display = "none" | "inherit" | "inline" | "block" | "list-item" | "inline-list-item" | "inline-block" | "inline-table" | "table" | "table-cell" | "table-column" | "table-column-group" | "table-footer-group" | "table-header-group" | "table-row" | "table-row-group" | "flex" | "inline-flex" | "grid" | "inline-grid" | "-webkit-box" | "run-in" | "ruby" | "ruby-base" | "ruby-text" | "ruby-base-container" | "ruby-text-container" | "contents";
106
- type displayInside = "auto" | "block" | "table" | "flex" | "grid" | "ruby";
107
- type displayList = "none" | "list-item";
108
- type displayOutside = "block-level" | "inline-level" | "run-in" | "contents" | "none" | "table-row-group" | "table-header-group" | "table-footer-group" | "table-row" | "table-cell" | "table-column-group" | "table-column" | "table-caption" | "ruby-base" | "ruby-text" | "ruby-base-container" | "ruby-text-container";
109
- type emptyCells = "show" | "hide";
110
- type filter = "none" | string;
111
- type flex = "none" | string | number;
112
- type flexBasis = "content" | number | string | "inherit";
113
- type flexDirection = "row" | "row-reverse" | "column" | "column-reverse" | "inherit";
114
- type flexFlow = flexDirection | flexWrap;
115
- type flexGrow = All | number | string;
116
- type flexShrink = All | number | string;
117
- type flexWrap = "nowrap" | "wrap" | "wrap-reverse" | "inherit";
118
- type float = "left" | "right" | "none" | "start" | "end" | "inline-start" | "inline-end" | "inherit";
119
- type fontFamily = string;
120
- type fontFeatureSettings = "normal" | string;
121
- type fontKerning = "auto" | "normal" | "none";
122
- type fontLanguageOverride = "normal" | string;
123
- type fontSize = absoluteSize | relativeSize | lengthPercentage;
124
- type fontSizeAdjust = "none" | number;
125
- type fontStretch = "normal" | "ultra-condensed" | "extra-condensed" | "condensed" | "semi-condensed" | "semi-expanded" | "expanded" | "extra-expanded" | "ultra-expanded" | string;
126
- type fontStyle = "normal" | "italic" | "oblique";
127
- type fontSynthesis = "none" | string;
128
- type fontVariant = "normal" | "none" | string;
129
- type fontVariantAlternates = "normal" | string;
130
- type fontVariantCaps = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
131
- type fontVariantEastAsian = "normal" | string;
132
- type fontVariantLigatures = "normal" | "none" | string;
133
- type fontVariantNumeric = "normal" | string;
134
- type fontVariantPosition = "normal" | "sub" | "super";
135
- export type FontWeight = "inherit" | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | string | number;
136
- type gap = number | string;
137
- type grid = gridTemplate | string;
138
- type gridArea = gridLine | string;
139
- type gridAutoColumns = trackSize;
140
- type gridAutoFlow = string | "dense";
141
- type gridAutoRows = trackSize;
142
- type gridColumn = gridLine | string;
143
- type gridColumnEnd = gridLine;
144
- type gridColumnGap = lengthPercentage;
145
- type gridColumnStart = gridLine;
146
- type gridGap = gridRowGap | gridColumnGap;
147
- type gridRow = gridLine | string;
148
- type gridRowEnd = gridLine;
149
- type gridRowGap = lengthPercentage;
150
- type gridRowStart = gridLine;
151
- type gridTemplate = "none" | "subgrid" | string;
152
- type gridTemplateAreas = "none" | string;
153
- type gridTemplateColumns = "none" | "subgrid" | string;
154
- type gridTemplateRows = "none" | "subgrid" | string;
155
- type hyphens = "none" | "manual" | "auto";
156
- type imageOrientation = "from-image" | number | string;
157
- type imageRendering = "auto" | "crisp-edges" | "pixelated" | "optimizeSpeed" | "optimizeQuality" | string;
158
- type imageResolution = string | "snap";
159
- type imeMode = "auto" | "normal" | "active" | "inactive" | "disabled";
160
- type initialLetter = "normal" | string;
161
- type initialLetterAlign = string;
162
- type inlineSize = width;
163
- type isolation = "auto" | "isolate";
164
- type justifyContent = "center" | "start" | "end" | "flex-start" | "flex-end" | "left" | "right" | "normal" | "space-between" | "space-around" | "space-evenly" | "stretch" | "safe center" | "unsafe center" | "inherit";
165
- type justifyItems = "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center" | "legacy right" | "legacy left" | "legacy center" | All;
166
- type justifySelf = "auto" | "normal" | "stretch" | "center" | "start" | "end" | "flex-start" | "flex-end" | "self-start" | "self-end" | "left" | "right" | "baseline" | "first baseline" | "last baseline" | "safe center" | "unsafe center";
167
- type letterSpacing = "normal" | lengthPercentage;
168
- type lineBreak = "auto" | "loose" | "normal" | "strict";
169
- type lineHeight = "inherit" | number | string;
170
- type listStyle = listStyleType | listStylePosition | listStyleImage;
171
- type listStyleImage = string | "none";
172
- type listStylePosition = "inside" | "outside";
173
- type listStyleType = string | "none";
174
- type margin = number | string;
175
- type marginBlockEnd = marginLeft;
176
- type marginBlockStart = marginLeft;
177
- type marginBottom = number | string | "auto";
178
- type marginInlineEnd = marginLeft;
179
- type marginInlineStart = marginLeft;
180
- type marginLeft = number | string | "auto";
181
- type marginRight = number | string | "auto";
182
- type marginTop = number | string | "auto";
183
- type markerOffset = number | "auto" | string;
184
- type mask = maskLayer;
185
- type maskClip = string;
186
- type maskComposite = compositeOperator;
187
- type maskMode = maskingMode;
188
- type maskOrigin = geometryBox;
189
- type maskPosition = string;
190
- type maskRepeat = repeatStyle;
191
- type maskSize = bgSize;
192
- type maskType = "luminance" | "alpha";
193
- type maxBlockSize = maxWidth;
194
- type maxHeight = number | string | "none" | "max-content" | "min-content" | "fit-content" | "fill-available";
195
- type maxInlineSize = maxWidth;
196
- type maxWidth = number | string | "none" | "max-content" | "min-content" | "fit-content" | "fill-available";
197
- type minBlockSize = minWidth;
198
- type minHeight = number | string | "auto" | "max-content" | "min-content" | "fit-content" | "fill-available";
199
- type minInlineSize = minWidth;
200
- type minWidth = number | string | "auto" | "max-content" | "min-content" | "fit-content" | "fill-available";
201
- type mixBlendMode = blendMode;
202
- type motion = motionPath | motionOffset | motionRotation;
203
- type motionOffset = lengthPercentage;
204
- type motionPath = string | geometryBox | "none";
205
- type motionRotation = string | number;
206
- type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
207
- export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
208
- type objectPosition = string;
209
- type opacity = number | string;
210
- type order = number | string;
211
- type orphans = number | string;
212
- type outline = string;
213
- type outlineColor = color | "invert";
214
- type outlineOffset = number | string;
215
- type outlineStyle = "auto" | brStyle;
216
- type outlineWidth = borderWidth;
217
- type overflow = "visible" | "hidden" | "clip" | "scroll" | "auto";
218
- type overflowAnchor = "auto" | "none";
219
- type overflowWrap = "normal" | "break-word";
220
- type overflowX = overflow;
221
- type overflowY = overflow;
222
- type overscrollBehavior = "none" | "contain" | "auto";
223
- type overscrollBehaviorX = "none" | "contain" | "auto";
224
- type overscrollBehaviorY = "none" | "contain" | "auto";
225
- type padding = number | string;
226
- type paddingBlockEnd = paddingLeft;
227
- type paddingBlockStart = paddingLeft;
228
- type paddingBottom = number | string;
229
- type paddingLeft = number | string;
230
- type paddingRight = number | string;
231
- type paddingTop = number | string;
232
- type pageBreakAfter = "auto" | "always" | "avoid" | "left" | "right";
233
- type pageBreakBefore = "auto" | "always" | "avoid" | "left" | "right";
234
- type pageBreakInside = "auto" | "avoid";
235
- type perspective = "none" | number;
236
- type perspectiveOrigin = string;
237
- export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
238
- type position = "static" | "relative" | "absolute" | "sticky" | "fixed";
239
- type quotes = string | "none";
240
- type resize = "none" | "both" | "horizontal" | "vertical";
241
- type rowGap = number | string;
242
- type rubyAlign = "start" | "center" | "space-between" | "space-around";
243
- type rubyMerge = "separate" | "collapse" | "auto";
244
- type rubyPosition = "over" | "under" | "inter-character";
245
- type scrollBehavior = "auto" | "smooth";
246
- type scrollSnapAlign = "none" | "start" | "end" | "center";
247
- type scrollSnapType = "none" | "x mandatory" | "y mandatory";
248
- type shapeImageThreshold = number | string;
249
- type shapeMargin = lengthPercentage;
250
- type shapeOutside = "none" | shapeBox | string;
251
- type tabSize = number | string;
252
- type tableLayout = "auto" | "fixed";
253
- export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent" | "inherit";
254
- type textAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify" | "inherit";
255
- type textCombineUpright = "none" | "all" | string;
256
- export type TextDecoration = textDecorationLine | textDecorationStyle | textDecorationColor;
257
- type textDecorationColor = color;
258
- type textDecorationLine = "none" | string;
259
- type textDecorationSkip = "none" | string;
260
- type textDecorationStyle = "solid" | "double" | "dotted" | "dashed" | "wavy";
261
- type textEmphasis = textEmphasisStyle | textEmphasisColor;
262
- type textEmphasisColor = color;
263
- type textEmphasisPosition = string;
264
- type textEmphasisStyle = "none" | string;
265
- type textIndent = lengthPercentage | "hanging" | "each-line";
266
- type textOrientation = "mixed" | "upright" | "sideways";
267
- type textOverflow = string;
268
- type textRendering = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
269
- type textShadow = "none" | string;
270
- type textSizeAdjust = "none" | "auto" | string;
271
- type textTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width";
272
- type textUnderlinePosition = "auto" | string;
273
- type touchAction = "auto" | "none" | string | "manipulation";
274
- type transform = "none" | string;
275
- type transformBox = "border-box" | "fill-box" | "view-box";
276
- type transformOrigin = string | number;
277
- type transformStyle = "flat" | "preserve-3d";
278
- type transition = singleTransition;
279
- type transitionDelay = time;
280
- type transitionDuration = time;
281
- type transitionProperty = "none" | singleTransitionProperty;
282
- type transitionTimingFunction = singleTransitionTimingFunction;
283
- type unicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
284
- type userSelect = "auto" | "text" | "none" | "contain" | "all";
285
- export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | string | number;
286
- type visibility = "visible" | "hidden" | "collapse";
287
- type whiteSpace = "normal" | "pre" | "nowrap" | "pre-wrap" | "pre-line" | "initial" | "inherit";
288
- type widows = number | string;
289
- type width = string | number | "available" | "min-content" | "max-content" | "fit-content" | "auto";
290
- type willChange = "auto" | animatableFeature;
291
- type wordBreak = "normal" | "break-all" | "keep-all" | nonStandardWordBreak;
292
- type wordSpacing = "normal" | lengthPercentage;
293
- type wordWrap = "normal" | "break-word";
294
- type writingMode = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr" | svgWritingMode;
295
- type zIndex = "auto" | number;
296
- type alignmentBaseline = "auto" | "baseline" | "before-edge" | "text-before-edge" | "middle" | "central" | "after-edge" | "text-after-edge" | "ideographic" | "alphabetic" | "hanging" | "mathematical";
297
- type baselineShift = "baseline" | "sub" | "super" | svgLength;
298
- type behavior = string;
299
- type clipRule = "nonzero" | "evenodd";
300
- type cue = cueBefore | cueAfter;
301
- type cueAfter = string | number | "none";
302
- type cueBefore = string | number | "none";
303
- type dominantBaseline = "auto" | "use-script" | "no-change" | "reset-size" | "ideographic" | "alphabetic" | "hanging" | "mathematical" | "central" | "middle" | "text-after-edge" | "text-before-edge";
304
- type fill = paint;
305
- type fillOpacity = number | string;
306
- type fillRule = "nonzero" | "evenodd";
307
- type glyphOrientationHorizontal = number | string;
308
- type glyphOrientationVertical = number | string;
309
- type kerning = "auto" | svgLength;
310
- type marker = "none" | string;
311
- type markerEnd = "none" | string;
312
- type markerMid = "none" | string;
313
- type markerStart = "none" | string;
314
- type pause = pauseBefore | pauseAfter;
315
- type pauseAfter = number | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
316
- type pauseBefore = number | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
317
- type rest = restBefore | restAfter;
318
- type restAfter = number | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
319
- type restBefore = number | "none" | "x-weak" | "weak" | "medium" | "strong" | "x-strong";
320
- type shapeRendering = "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
321
- type src = string;
322
- type speak = "auto" | "none" | "normal";
323
- type speakAs = "normal" | "spell-out" | "digits" | string;
324
- type stroke = paint;
325
- type strokeDasharray = "none" | string;
326
- type strokeDashoffset = svgLength;
327
- type strokeLinecap = "butt" | "round" | "square";
328
- type strokeLinejoin = "miter" | "round" | "bevel";
329
- type strokeMiterlimit = number | string;
330
- type strokeOpacity = number | string;
331
- type strokeWidth = svgLength;
332
- type textAnchor = "start" | "middle" | "end";
333
- type unicodeRange = string;
334
- type voiceBalance = number | "left" | "center" | "right" | "leftwards" | "rightwards";
335
- type voiceDuration = "auto" | time;
336
- type voiceFamily = string | "preserve";
337
- type voicePitch = number | "absolute" | string;
338
- type voiceRange = number | "absolute" | string;
339
- type voiceRate = string;
340
- type voiceStress = "normal" | "strong" | "moderate" | "none" | "reduced";
341
- type voiceVolume = "silent" | string;
342
- type absoluteSize = "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large";
343
- type animatableFeature = "scroll-position" | "contents" | string;
344
- type attachment = "scroll" | "fixed" | "local";
345
- type bgImage = "none" | string;
346
- type bgSize = string | "cover" | "contain";
347
- type box = "border-box" | "padding-box" | "content-box";
348
- type brStyle = "none" | "hidden" | "dotted" | "dashed" | "solid" | "double" | "groove" | "ridge" | "inset" | "outset";
349
- type borderWidth = number | "thin" | "medium" | "thick" | string;
350
- type color = string;
351
- type compositeOperator = "add" | "subtract" | "intersect" | "exclude";
352
- type geometryBox = shapeBox | "fill-box" | "stroke-box" | "view-box";
353
- type gridLine = "auto" | string;
354
- type lengthPercentage = number | string;
355
- type maskLayer = maskReference | maskingMode | string | repeatStyle | geometryBox | compositeOperator;
356
- type maskReference = "none" | string;
357
- type maskingMode = "alpha" | "luminance" | "match-source";
358
- type relativeSize = "larger" | "smaller";
359
- type repeatStyle = "repeat-x" | "repeat-y" | string;
360
- type shapeBox = box | "margin-box";
361
- type singleAnimationDirection = "normal" | "reverse" | "alternate" | "alternate-reverse";
362
- type singleAnimationFillMode = "none" | "forwards" | "backwards" | "both";
363
- type singleAnimationIterationCount = "infinite" | number;
364
- type singleAnimationName = "none" | string;
365
- type singleAnimationPlayState = "running" | "paused";
366
- type singleTimingFunction = singleTransitionTimingFunction;
367
- type singleTransition = singleTransitionTimingFunction | string | number;
368
- type singleTransitionTimingFunction = "ease" | "linear" | "ease-in" | "ease-out" | "ease-in-out" | "step-start" | "step-end" | string;
369
- type singleTransitionProperty = "all" | string;
370
- type time = string;
371
- type trackBreadth = lengthPercentage | string | "min-content" | "max-content" | "auto";
372
- type trackSize = trackBreadth | string;
373
- type nonStandardWordBreak = "break-word";
374
- type blendMode = "normal" | "multiply" | "screen" | "overlay" | "darken" | "lighten" | "color-dodge" | "color-burn" | "hard-light" | "soft-light" | "difference" | "exclusion" | "hue" | "saturation" | "color" | "luminosity";
375
- type maskImage = maskReference;
376
- type paint = "none" | "currentColor" | color | string;
377
- type svgLength = string | number;
378
- type svgWritingMode = "lr-tb" | "rl-tb" | "tb-rl" | "lr" | "rl" | "tb";
379
- type top = number | string;
380
- type OptionalArray<T> = Array<T> | T;
381
- export type SupportedVendorSpecificCSSProperties = Readonly<{
382
- MozOsxFontSmoothing?: null | "grayscale";
383
- WebkitAppearance?: null | appearance;
384
- WebkitFontSmoothing?: null | "antialiased";
385
- WebkitTapHighlightColor?: null | color;
386
- }>;
387
- export type CSSProperties = Readonly<{
388
- theme?: All | string;
389
- MozOsxFontSmoothing?: All | "grayscale";
390
- WebkitAppearance?: All | appearance;
391
- WebkitFontSmoothing?: All | "antialiased";
392
- WebkitTapHighlightColor?: All | color;
393
- WebkitMaskImage?: All | maskImage;
394
- WebkitTextFillColor?: All | color;
395
- textFillColor?: All | color;
396
- WebkitTextStrokeWidth?: All | number | string;
397
- WebkitTextStrokeColor?: All | color;
398
- WebkitBackgroundClip?: null | "border-box" | "padding-box" | "content-box" | "text";
399
- WebkitBoxOrient?: null | "vertical" | "horizontal" | "inline-axis" | "block-axis";
400
- WebkitLineClamp?: All | number | string;
401
- accentColor?: All | color;
402
- aspectRatio?: All | number | string;
403
- placeContent?: All | string;
404
- alignContent?: All | alignContent;
405
- justifyContent?: All | justifyContent;
406
- placeItems?: All | string;
407
- placeSelf?: All | string;
408
- alignItems?: All | alignItems;
409
- justifyItems?: All | justifyItems;
410
- alignSelf?: All | alignSelf;
411
- justifySelf?: All | justifySelf;
412
- alignmentBaseline?: All | alignmentBaseline;
413
- alignTracks?: All | string;
414
- justifyTracks?: All | string;
415
- masonryAutoFlow?: All | string;
416
- animation?: All | string;
417
- animationComposition?: All | string;
418
- animationDelay?: All | OptionalArray<animationDelay>;
419
- animationDirection?: All | OptionalArray<animationDirection>;
420
- animationDuration?: All | OptionalArray<animationDuration>;
421
- animationFillMode?: All | OptionalArray<animationFillMode>;
422
- animationIterationCount?: All | OptionalArray<animationIterationCount>;
423
- animationName?: All | OptionalArray<animationName>;
424
- animationPlayState?: All | OptionalArray<animationPlayState>;
425
- animationTimingFunction?: All | OptionalArray<animationTimingFunction>;
426
- animationTimeline?: All | string;
427
- animationRange?: All | string;
428
- animationRangeStart?: All | string;
429
- animationRangeEnd?: All | string;
430
- appearance?: All | appearance;
431
- azimuth?: All | string;
432
- backdropFilter?: All | backdropFilter;
433
- backfaceVisibility?: All | backfaceVisibility;
434
- background?: All | string;
435
- backgroundAttachment?: All | OptionalArray<backgroundAttachment>;
436
- backgroundBlendMode?: All | OptionalArray<backgroundBlendMode>;
437
- backgroundClip?: All | OptionalArray<backgroundClip>;
438
- backgroundColor?: All | backgroundColor;
439
- backgroundImage?: All | OptionalArray<backgroundImage>;
440
- backgroundOrigin?: All | OptionalArray<backgroundOrigin>;
441
- backgroundPosition?: All | OptionalArray<backgroundPosition>;
442
- backgroundPositionX?: All | OptionalArray<backgroundPositionX>;
443
- backgroundPositionY?: All | OptionalArray<backgroundPositionY>;
444
- backgroundRepeat?: All | OptionalArray<backgroundRepeat>;
445
- backgroundSize?: All | OptionalArray<backgroundSize>;
446
- baselineShift?: All | baselineShift;
447
- behavior?: All | behavior;
448
- blockSize?: All | blockSize;
449
- border?: All | border;
450
- borderBlock?: All | borderBlockEnd;
451
- borderBlockColor?: All | borderBlockEndColor;
452
- borderBlockStyle?: All | borderBlockEndStyle;
453
- borderBlockWidth?: All | borderBlockEndWidth;
454
- borderBlockEnd?: All | borderBlockEnd;
455
- borderBlockEndColor?: All | borderBlockEndColor;
456
- borderBlockEndStyle?: All | borderBlockEndStyle;
457
- borderBlockEndWidth?: All | borderBlockEndWidth;
458
- borderBlockStart?: All | borderBlockStart;
459
- borderBlockStartColor?: All | borderBlockStartColor;
460
- borderBlockStartStyle?: All | borderBlockStartStyle;
461
- borderBlockStartWidth?: All | borderBlockStartWidth;
462
- borderBottom?: All | border;
463
- borderBottomColor?: All | color;
464
- borderBottomStyle?: All | borderBottomStyle;
465
- borderBottomWidth?: All | borderBottomWidth;
466
- borderCollapse?: All | borderCollapse;
467
- borderColor?: All | borderColor;
468
- borderImage?: All | borderImage;
469
- borderImageOutset?: All | borderImageOutset;
470
- borderImageRepeat?: All | borderImageRepeat;
471
- borderImageSlice?: All | borderImageSlice;
472
- borderImageSource?: All | borderImageSource;
473
- borderImageWidth?: All | borderImageWidth;
474
- borderInline?: All | borderInlineEnd;
475
- borderInlineColor?: All | borderInlineEndColor;
476
- borderInlineStyle?: All | borderInlineEndStyle;
477
- borderInlineWidth?: All | borderInlineEndWidth;
478
- borderInlineEnd?: All | borderInlineEnd;
479
- borderInlineEndColor?: All | borderInlineEndColor;
480
- borderInlineEndStyle?: All | borderInlineEndStyle;
481
- borderInlineEndWidth?: All | borderInlineEndWidth;
482
- borderInlineStart?: All | borderInlineStart;
483
- borderInlineStartColor?: All | borderInlineStartColor;
484
- borderInlineStartStyle?: All | borderInlineStartStyle;
485
- borderInlineStartWidth?: All | borderInlineStartWidth;
486
- borderLeft?: All | border;
487
- borderLeftColor?: All | borderLeftColor;
488
- borderLeftStyle?: All | borderLeftStyle;
489
- borderLeftWidth?: All | borderLeftWidth;
490
- borderRight?: All | border;
491
- borderRightColor?: All | borderRightColor;
492
- borderRightStyle?: All | borderRightStyle;
493
- borderRightWidth?: All | borderRightWidth;
494
- borderSpacing?: All | borderSpacing;
495
- borderStyle?: All | borderStyle;
496
- borderTop?: All | border;
497
- borderTopColor?: All | color;
498
- borderRadius?: All | borderRadius;
499
- borderEndStartRadius?: All | borderBottomLeftRadius;
500
- borderStartStartRadius?: All | borderTopLeftRadius;
501
- borderStartEndRadius?: All | borderTopRightRadius;
502
- borderEndEndRadius?: All | borderBottomRightRadius;
503
- borderTopLeftRadius?: All | borderTopLeftRadius;
504
- borderTopRightRadius?: All | borderTopRightRadius;
505
- borderBottomLeftRadius?: All | borderBottomLeftRadius;
506
- borderBottomRightRadius?: All | borderBottomRightRadius;
507
- borderTopStyle?: All | borderTopStyle;
508
- borderTopWidth?: All | borderTopWidth;
509
- borderWidth?: All | borderWidth;
510
- bottom?: All | number | string;
511
- boxAlign?: All | boxAlign;
512
- boxDecorationBreak?: All | boxDecorationBreak;
513
- boxDirection?: All | boxDirection;
514
- boxFlex?: All | boxFlex;
515
- boxFlexGroup?: All | boxFlexGroup;
516
- boxLines?: All | boxLines;
517
- boxOrdinalGroup?: All | boxOrdinalGroup;
518
- boxOrient?: All | boxOrient;
519
- boxShadow?: All | OptionalArray<boxShadow>;
520
- boxSizing?: All | boxSizing;
521
- boxSuppress?: All | boxSuppress;
522
- breakAfter?: All | breakAfter;
523
- breakBefore?: All | breakBefore;
524
- breakInside?: All | breakInside;
525
- captionSide?: All | captionSide;
526
- caret?: All | string;
527
- caretColor?: All | color;
528
- caretShape?: All | string;
529
- clear?: All | clear;
530
- clip?: All | clip;
531
- clipPath?: All | clipPath;
532
- clipRule?: All | clipRule;
533
- color?: All | color;
534
- colorScheme?: null | "normal" | "light" | "dark" | "light dark" | "only light" | "only dark";
535
- forcedColorAdjust?: All | "auto" | "none";
536
- printColorAdjust?: All | "economy" | "exact";
537
- columns?: All | columns;
538
- columnCount?: All | columnCount;
539
- columnWidth?: All | columnWidth;
540
- columnRule?: All | columnRule;
541
- columnRuleColor?: All | columnRuleColor;
542
- columnRuleStyle?: All | columnRuleStyle;
543
- columnRuleWidth?: All | columnRuleWidth;
544
- columnFill?: All | columnFill;
545
- columnGap?: All | columnGap;
546
- columnSpan?: All | columnSpan;
547
- contain?: All | contain;
548
- containIntrinsicSize?: All | number | string;
549
- containIntrinsicBlockSize?: All | number | string;
550
- containIntrinsicInlineSize?: All | number | string;
551
- containIntrinsicHeightSize?: All | number | string;
552
- containIntrinsicWidthSize?: All | number | string;
553
- container?: All | string;
554
- containerName?: All | string;
555
- containerType?: All | "size" | "inline-size" | "normal";
556
- contentVisibility?: All | "visible" | "hidden" | "auto";
557
- content?: All | content;
558
- counterIncrement?: All | counterIncrement;
559
- counterReset?: All | counterReset;
560
- counterSet?: All | string | number;
561
- cue?: All | cue;
562
- cueAfter?: All | cueAfter;
563
- cueBefore?: All | cueBefore;
564
- cursor?: All | OptionalArray<cursor>;
565
- direction?: All | direction;
566
- display?: All | display;
567
- displayInside?: All | displayInside;
568
- displayList?: All | displayList;
569
- displayOutside?: All | displayOutside;
570
- dominantBaseline?: All | dominantBaseline;
571
- emptyCells?: All | emptyCells;
572
- end?: All | number | string;
573
- fill?: All | fill;
574
- fillOpacity?: All | fillOpacity;
575
- fillRule?: All | fillRule;
576
- filter?: All | filter;
577
- flex?: All | flex;
578
- flexBasis?: All | flexBasis;
579
- flexDirection?: All | flexDirection;
580
- flexFlow?: All | flexFlow;
581
- flexGrow?: All | flexGrow;
582
- flexShrink?: All | flexShrink;
583
- flexWrap?: All | flexWrap;
584
- float?: All | float;
585
- font?: All | string;
586
- fontFamily?: All | fontFamily;
587
- fontFeatureSettings?: All | fontFeatureSettings;
588
- fontKerning?: All | fontKerning;
589
- fontLanguageOverride?: All | fontLanguageOverride;
590
- fontSize?: All | fontSize;
591
- fontSizeAdjust?: All | fontSizeAdjust;
592
- fontStretch?: All | fontStretch;
593
- fontStyle?: All | fontStyle;
594
- fontSynthesis?: All | fontSynthesis;
595
- fontSynthesisWeight?: All | "auto" | "none";
596
- fontSynthesisStyle?: All | "auto" | "none";
597
- fontSynthesisSmallCaps?: All | "auto" | "none";
598
- fontSynthesisPosition?: All | "auto" | "none";
599
- fontVariant?: All | fontVariant;
600
- fontVariantAlternates?: All | fontVariantAlternates;
601
- fontVariantCaps?: All | fontVariantCaps;
602
- fontVariantEastAsian?: All | fontVariantEastAsian;
603
- fontVariantLigatures?: All | fontVariantLigatures;
604
- fontVariantNumeric?: All | fontVariantNumeric;
605
- fontVariantPosition?: All | fontVariantPosition;
606
- fontWeight?: All | FontWeight;
607
- fontOpticalSizing?: All | "auto" | "none";
608
- fontPalette?: All | "light" | "dark" | string;
609
- fontVariationSettings?: All | string;
610
- gap?: All | gap;
611
- glyphOrientationHorizontal?: All | glyphOrientationHorizontal;
612
- glyphOrientationVertical?: All | glyphOrientationVertical;
613
- grid?: All | grid;
614
- gridArea?: All | gridArea;
615
- gridAutoColumns?: All | gridAutoColumns;
616
- gridAutoFlow?: All | gridAutoFlow;
617
- gridAutoRows?: All | gridAutoRows;
618
- gridColumn?: All | gridColumn;
619
- gridColumnEnd?: All | gridColumnEnd;
620
- gridColumnGap?: All | gridColumnGap;
621
- gridColumnStart?: All | gridColumnStart;
622
- gridGap?: All | gridGap;
623
- gridRow?: All | gridRow;
624
- gridRowEnd?: All | gridRowEnd;
625
- gridRowGap?: All | gridRowGap;
626
- gridRowStart?: All | gridRowStart;
627
- gridTemplate?: All | gridTemplate;
628
- gridTemplateAreas?: All | gridTemplateAreas;
629
- gridTemplateColumns?: All | gridTemplateColumns;
630
- gridTemplateRows?: All | gridTemplateRows;
631
- hangingPunctuation?: All | string;
632
- hyphenateCharacter?: All | string;
633
- hyphenateLimitChars?: All | string | number;
634
- hyphens?: All | hyphens;
635
- height?: All | number | string;
636
- imageOrientation?: All | imageOrientation;
637
- imageRendering?: All | imageRendering;
638
- imageResolution?: All | imageResolution;
639
- imeMode?: All | imeMode;
640
- initialLetter?: All | initialLetter;
641
- initialLetterAlign?: All | initialLetterAlign;
642
- inlineSize?: All | inlineSize;
643
- inset?: All | number | string;
644
- insetBlock?: All | number | string;
645
- insetBlockEnd?: All | number | string;
646
- insetBlockStart?: All | number | string;
647
- insetInline?: All | number | string;
648
- insetInlineEnd?: All | number | string;
649
- insetInlineStart?: All | number | string;
650
- isolation?: All | isolation;
651
- kerning?: All | kerning;
652
- left?: All | number | string;
653
- letterSpacing?: All | letterSpacing;
654
- lineBreak?: All | lineBreak;
655
- lineHeight?: All | lineHeight;
656
- lineHeightStep?: All | number | string;
657
- listStyle?: All | listStyle;
658
- listStyleImage?: All | listStyleImage;
659
- listStylePosition?: All | listStylePosition;
660
- listStyleType?: All | listStyleType;
661
- margin?: All | margin;
662
- marginBlock?: All | marginBlockEnd;
663
- marginBlockEnd?: All | marginBlockEnd;
664
- marginBlockStart?: All | marginBlockStart;
665
- marginBottom?: All | marginBottom;
666
- marginInline?: All | marginInlineEnd;
667
- marginInlineEnd?: All | marginInlineEnd;
668
- marginInlineStart?: All | marginInlineStart;
669
- marginLeft?: All | marginLeft;
670
- marginRight?: All | marginRight;
671
- marginTop?: All | marginTop;
672
- marginTrim?: null | "none" | "block" | "block-start" | "block-end" | "inline" | "inline-start" | "inline-end";
673
- marker?: All | marker;
674
- markerEnd?: All | markerEnd;
675
- markerMid?: All | markerMid;
676
- markerOffset?: All | markerOffset;
677
- markerStart?: All | markerStart;
678
- mask?: All | mask;
679
- maskClip?: All | maskClip;
680
- maskComposite?: All | maskComposite;
681
- maskImage?: All | maskImage;
682
- maskMode?: All | maskMode;
683
- maskOrigin?: All | maskOrigin;
684
- maskPosition?: All | maskPosition;
685
- maskRepeat?: All | maskRepeat;
686
- maskSize?: All | maskSize;
687
- maskType?: All | maskType;
688
- maskBorder?: All | string;
689
- maskBorderMode?: All | "alpha" | "luminance";
690
- maskBorderOutset?: All | string | number;
691
- maskBorderRepeat?: All | "stretch" | "repeat" | "round" | "space";
692
- maskBorderSlice?: All | string | number;
693
- maskBorderSource?: All | string;
694
- maskBorderWidth?: All | string | number;
695
- maxBlockSize?: All | maxBlockSize;
696
- maxHeight?: All | maxHeight;
697
- maxInlineSize?: All | maxInlineSize;
698
- maxWidth?: All | maxWidth;
699
- minBlockSize?: All | minBlockSize;
700
- minHeight?: All | minHeight;
701
- minInlineSize?: All | minInlineSize;
702
- minWidth?: All | minWidth;
703
- mixBlendMode?: All | mixBlendMode;
704
- motion?: All | motion;
705
- motionOffset?: All | motionOffset;
706
- motionPath?: All | motionPath;
707
- motionRotation?: All | motionRotation;
708
- MsOverflowStyle?: All | MsOverflowStyle;
709
- objectFit?: All | ObjectFit;
710
- objectPosition?: All | objectPosition;
711
- offset?: All | string;
712
- offsetAnchor?: All | string;
713
- offsetDistance?: All | string | number;
714
- offsetPath?: All | string;
715
- offsetPosition?: All | string;
716
- offsetRotate?: All | string;
717
- opacity?: All | opacity;
718
- order?: All | order;
719
- orphans?: All | orphans;
720
- outline?: All | outline;
721
- outlineColor?: All | outlineColor;
722
- outlineOffset?: All | outlineOffset;
723
- outlineStyle?: All | outlineStyle;
724
- outlineWidth?: All | outlineWidth;
725
- overflow?: All | overflow;
726
- overflowBlock?: All | overflowY;
727
- overflowBlockX?: All | overflowX;
728
- overflowX?: All | overflowX;
729
- overflowY?: All | overflowY;
730
- overflowAnchor?: All | overflowAnchor;
731
- overflowClipMargin?: All | string;
732
- overflowWrap?: All | overflowWrap;
733
- overscrollBehavior?: All | overscrollBehavior;
734
- overscrollBehaviorBlock?: All | overscrollBehaviorY;
735
- overscrollBehaviorY?: All | overscrollBehaviorY;
736
- overscrollBehaviorInline?: All | overscrollBehaviorX;
737
- overscrollBehaviorX?: All | overscrollBehaviorX;
738
- padding?: All | padding;
739
- paddingBlock?: All | paddingBlockEnd;
740
- paddingBlockEnd?: All | paddingBlockEnd;
741
- paddingBlockStart?: All | paddingBlockStart;
742
- paddingInline?: All | paddingBlockEnd;
743
- paddingInlineEnd?: All | paddingBlockEnd;
744
- paddingInlineStart?: All | paddingBlockStart;
745
- paddingBottom?: All | paddingBottom;
746
- paddingLeft?: All | paddingLeft;
747
- paddingRight?: All | paddingRight;
748
- paddingTop?: All | paddingTop;
749
- page?: All | string;
750
- pageBreakAfter?: All | pageBreakAfter;
751
- pageBreakBefore?: All | pageBreakBefore;
752
- pageBreakInside?: All | pageBreakInside;
753
- paintOrder?: null | "normal" | "stroke" | "fill" | "markers" | "stroke fill" | "stroke markers" | "fill markers" | "stroke fill markers";
754
- pause?: All | pause;
755
- pauseAfter?: All | pauseAfter;
756
- pauseBefore?: All | pauseBefore;
757
- perspective?: All | perspective;
758
- perspectiveOrigin?: All | perspectiveOrigin;
759
- pointerEvents?: All | PointerEvents;
760
- position?: All | position;
761
- quotes?: All | quotes;
762
- resize?: All | resize;
763
- rest?: All | rest;
764
- restAfter?: All | restAfter;
765
- restBefore?: All | restBefore;
766
- right?: All | number | string;
767
- rowGap?: All | rowGap;
768
- rubyAlign?: All | rubyAlign;
769
- rubyMerge?: All | rubyMerge;
770
- rubyPosition?: All | rubyPosition;
771
- mathDepth?: All | number | string;
772
- mathShift?: All | "normal" | "compact";
773
- mathStyle?: All | "normal" | "compact";
774
- scrollBehavior?: All | scrollBehavior;
775
- scrollMargin?: All | number | string;
776
- scrollMarginTop?: All | number | string;
777
- scrollMarginRight?: All | number | string;
778
- scrollMarginBottom?: All | number | string;
779
- scrollMarginLeft?: All | number | string;
780
- scrollMarginBlock?: All | number | string;
781
- scrollMarginBlockEnd?: All | number | string;
782
- scrollMarginBlockStart?: All | number | string;
783
- scrollMarginInline?: All | number | string;
784
- scrollMarginInlineEnd?: All | number | string;
785
- scrollMarginInlineStart?: All | number | string;
786
- scrollPadding?: All | number | string;
787
- scrollPaddingTop?: All | number | string;
788
- scrollPaddingRight?: All | number | string;
789
- scrollPaddingBottom?: All | number | string;
790
- scrollPaddingLeft?: All | number | string;
791
- scrollPaddingBlock?: All | number | string;
792
- scrollPaddingBlockEnd?: All | number | string;
793
- scrollPaddingBlockStart?: All | number | string;
794
- scrollPaddingInline?: All | number | string;
795
- scrollPaddingInlineEnd?: All | number | string;
796
- scrollPaddingInlineStart?: All | number | string;
797
- scrollSnapAlign?: All | scrollSnapAlign;
798
- scrollSnapStop?: All | "normal" | "always";
799
- scrollSnapType?: All | scrollSnapType;
800
- scrollTimeline?: All | string;
801
- scrollTimelineAxis?: All | "block" | "inline" | "x" | "y";
802
- scrollTimelineName?: All | string;
803
- scrollbarColor?: All | color;
804
- scrollbarGutter?: All | "auto" | "stable" | "stable both-edges";
805
- scrollbarWidth?: All | "auto" | "thin" | "none";
806
- shapeImageThreshold?: All | shapeImageThreshold;
807
- shapeMargin?: All | shapeMargin;
808
- shapeOutside?: All | shapeOutside;
809
- shapeRendering?: All | shapeRendering;
810
- speak?: All | speak;
811
- speakAs?: All | speakAs;
812
- src?: All | src;
813
- start?: All | number | string;
814
- stroke?: All | stroke;
815
- strokeDasharray?: All | strokeDasharray;
816
- strokeDashoffset?: All | strokeDashoffset;
817
- strokeLinecap?: All | strokeLinecap;
818
- strokeLinejoin?: All | strokeLinejoin;
819
- strokeMiterlimit?: All | strokeMiterlimit;
820
- strokeOpacity?: All | strokeOpacity;
821
- strokeWidth?: All | strokeWidth;
822
- tabSize?: All | tabSize;
823
- tableLayout?: All | tableLayout;
824
- textAlign?: All | TextAlign;
825
- textAlignLast?: All | textAlignLast;
826
- textAnchor?: All | textAnchor;
827
- textCombineUpright?: All | textCombineUpright;
828
- textDecoration?: All | TextDecoration;
829
- textDecorationColor?: All | textDecorationColor;
830
- textDecorationLine?: All | textDecorationLine;
831
- textDecorationSkip?: All | textDecorationSkip;
832
- textDecorationSkipInk?: All | "auto" | "none" | "all";
833
- textDecorationStyle?: All | textDecorationStyle;
834
- textDecorationThickness?: All | number | string;
835
- textEmphasis?: All | textEmphasis;
836
- textEmphasisColor?: All | textEmphasisColor;
837
- textEmphasisPosition?: All | textEmphasisPosition;
838
- textEmphasisStyle?: All | textEmphasisStyle;
839
- textIndent?: All | textIndent;
840
- textJustify?: null | "none" | "auto" | "inter-word" | "inter-character" | "distribute";
841
- textOrientation?: All | textOrientation;
842
- textOverflow?: All | textOverflow;
843
- textRendering?: All | textRendering;
844
- textShadow?: All | OptionalArray<textShadow>;
845
- textSizeAdjust?: All | textSizeAdjust;
846
- textTransform?: All | textTransform;
847
- textUnderlineOffset?: All | number | string;
848
- textUnderlinePosition?: All | textUnderlinePosition;
849
- textWrap?: All | "wrap" | "nowrap" | "balance";
850
- timelineScope?: All | string;
851
- top?: All | top;
852
- touchAction?: All | touchAction;
853
- transform?: All | transform;
854
- transformBox?: All | transformBox;
855
- transformOrigin?: All | transformOrigin;
856
- transformStyle?: All | transformStyle;
857
- rotate?: All | number | string;
858
- scale?: All | number | string;
859
- translate?: All | number | string;
860
- transition?: All | OptionalArray<transition>;
861
- transitionDelay?: All | OptionalArray<transitionDelay>;
862
- transitionDuration?: All | OptionalArray<transitionDuration>;
863
- transitionProperty?: All | OptionalArray<transitionProperty>;
864
- transitionTimingFunction?: All | OptionalArray<transitionTimingFunction>;
865
- unicodeBidi?: All | unicodeBidi;
866
- unicodeRange?: All | unicodeRange;
867
- userSelect?: All | userSelect;
868
- verticalAlign?: All | VerticalAlign;
869
- viewTimeline?: All | string;
870
- viewTimelineAxis?: All | "block" | "inline" | "x" | "y";
871
- viewTimelineName?: All | string;
872
- viewTimelineInset?: All | number | string;
873
- viewTransitionName?: All | string;
874
- visibility?: All | visibility;
875
- voiceBalance?: All | voiceBalance;
876
- voiceDuration?: All | voiceDuration;
877
- voiceFamily?: All | voiceFamily;
878
- voicePitch?: All | voicePitch;
879
- voiceRange?: All | voiceRange;
880
- voiceRate?: All | voiceRate;
881
- voiceStress?: All | voiceStress;
882
- voiceVolume?: All | voiceVolume;
883
- whiteSpace?: All | whiteSpace;
884
- widows?: All | widows;
885
- width?: All | width;
886
- willChange?: All | willChange;
887
- wordBreak?: All | wordBreak;
888
- wordSpacing?: All | wordSpacing;
889
- wordWrap?: All | wordWrap;
890
- writingMode?: All | writingMode;
891
- zIndex?: All | zIndex;
892
- zoom?: All | "normal" | number | string;
893
- }>;
894
- export {};