@omnia/fx 8.0.456-dev → 8.0.457-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 (19) hide show
  1. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/ComponentEditorStore.d.ts +5 -8
  2. package/internal-do-not-import-from-here/ux/aurora/admin/themedesigner/componentblueprints/store/HeaderEditorStore.d.ts +5 -4
  3. package/internal-do-not-import-from-here/ux/aurora/components/buttonstyle/store/ButtonStyleEditorStore.d.ts +1 -8
  4. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker.d.ts +13 -10
  5. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderPicker_old.d.ts +0 -0
  6. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderRenderer.d.ts +5 -5
  7. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/HeaderStyleEditor.d.ts +26 -0
  8. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderPickerStore.d.ts +32 -0
  9. package/internal-do-not-import-from-here/ux/aurora/components/headerpicker/store/HeaderStyleEditorStore.d.ts +28 -0
  10. package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintViewer.d.ts +23 -0
  11. package/internal-do-not-import-from-here/ux/aurora/components/input/InputStylePicker.d.ts +10 -6
  12. package/internal-do-not-import-from-here/ux/aurora/components/input/store/InputStylePickerStore.d.ts +32 -0
  13. package/internal-do-not-import-from-here/ux/aurora/components/tabs/store/TabStyleEditorStore.d.ts +7 -1
  14. package/internal-do-not-import-from-here/ux/aurora/shared-mobile/ThemeProvider.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/shared-mobile/stylex/Typings.d.ts +513 -513
  16. package/internal-do-not-import-from-here/ux/shared-mobile/stylex/index.d.ts +67 -65
  17. package/internal-do-not-import-from-here/wctypings.d.ts +14 -4
  18. package/package.json +2 -2
  19. package/internal-do-not-import-from-here/ux/aurora/components/input/InputBlueprintsViewer.d.ts +0 -26
@@ -1,8 +1,8 @@
1
- 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
- type all = null | "initial" | "inherit" | "unset";
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
6
  type animationDelay = time;
7
7
  type animationDirection = singleAnimationDirection;
8
8
  type animationDuration = time;
@@ -112,8 +112,8 @@ type flex = "none" | string | number;
112
112
  type flexBasis = "content" | number | string | "inherit";
113
113
  type flexDirection = "row" | "row-reverse" | "column" | "column-reverse" | "inherit";
114
114
  type flexFlow = flexDirection | flexWrap;
115
- type flexGrow = all | number | string;
116
- type flexShrink = all | number | string;
115
+ type flexGrow = All | number | string;
116
+ type flexShrink = All | number | string;
117
117
  type flexWrap = "nowrap" | "wrap" | "wrap-reverse" | "inherit";
118
118
  type float = "left" | "right" | "none" | "start" | "end" | "inline-start" | "inline-end" | "inherit";
119
119
  type fontFamily = string;
@@ -132,7 +132,7 @@ type fontVariantEastAsian = "normal" | string;
132
132
  type fontVariantLigatures = "normal" | "none" | string;
133
133
  type fontVariantNumeric = "normal" | string;
134
134
  type fontVariantPosition = "normal" | "sub" | "super";
135
- type fontWeight = "inherit" | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | string | number;
135
+ export type FontWeight = "inherit" | "normal" | "bold" | "bolder" | "lighter" | 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900 | string | number;
136
136
  type gap = number | string;
137
137
  type grid = gridTemplate | string;
138
138
  type gridArea = gridLine | string;
@@ -162,7 +162,7 @@ type initialLetterAlign = string;
162
162
  type inlineSize = width;
163
163
  type isolation = "auto" | "isolate";
164
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;
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
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
167
  type letterSpacing = "normal" | lengthPercentage;
168
168
  type lineBreak = "auto" | "loose" | "normal" | "strict";
@@ -204,7 +204,7 @@ type motionOffset = lengthPercentage;
204
204
  type motionPath = string | geometryBox | "none";
205
205
  type motionRotation = string | number;
206
206
  type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
207
- type objectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
207
+ export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
208
208
  type objectPosition = string;
209
209
  type opacity = number | string;
210
210
  type order = number | string;
@@ -234,7 +234,7 @@ type pageBreakBefore = "auto" | "always" | "avoid" | "left" | "right";
234
234
  type pageBreakInside = "auto" | "avoid";
235
235
  type perspective = "none" | number;
236
236
  type perspectiveOrigin = string;
237
- type pointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
237
+ export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
238
238
  type position = "static" | "relative" | "absolute" | "sticky" | "fixed";
239
239
  type quotes = string | "none";
240
240
  type resize = "none" | "both" | "horizontal" | "vertical";
@@ -250,10 +250,10 @@ type shapeMargin = lengthPercentage;
250
250
  type shapeOutside = "none" | shapeBox | string;
251
251
  type tabSize = number | string;
252
252
  type tableLayout = "auto" | "fixed";
253
- type textAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent" | "inherit";
253
+ export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent" | "inherit";
254
254
  type textAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify" | "inherit";
255
255
  type textCombineUpright = "none" | "all" | string;
256
- type textDecoration = textDecorationLine | textDecorationStyle | textDecorationColor;
256
+ export type TextDecoration = textDecorationLine | textDecorationStyle | textDecorationColor;
257
257
  type textDecorationColor = color;
258
258
  type textDecorationLine = "none" | string;
259
259
  type textDecorationSkip = "none" | string;
@@ -282,7 +282,7 @@ type transitionProperty = "none" | singleTransitionProperty;
282
282
  type transitionTimingFunction = singleTransitionTimingFunction;
283
283
  type unicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
284
284
  type userSelect = "auto" | "text" | "none" | "contain" | "all";
285
- type verticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | string | number;
285
+ export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | string | number;
286
286
  type visibility = "visible" | "hidden" | "collapse";
287
287
  type whiteSpace = "normal" | "pre" | "nowrap" | "pre-wrap" | "pre-line" | "initial" | "inherit";
288
288
  type widows = number | string;
@@ -385,510 +385,510 @@ export type SupportedVendorSpecificCSSProperties = Readonly<{
385
385
  WebkitTapHighlightColor?: null | color;
386
386
  }>;
387
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;
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
398
  WebkitBackgroundClip?: null | "border-box" | "padding-box" | "content-box" | "text";
399
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;
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
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;
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
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;
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
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;
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
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;
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
893
  }>;
894
894
  export {};