csstype-extra 0.1.7 → 0.1.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +5 -3
  2. package/src/index.d.ts +545 -541
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "csstype-extra",
3
3
  "type": "module",
4
- "version": "0.1.7",
4
+ "version": "0.1.9",
5
5
  "description": "Strict TypeScript types for style based on MDN data",
6
6
  "repository": "https://github.com/dev-five-git/csstypes",
7
7
  "author": "devfive",
@@ -15,7 +15,8 @@
15
15
  "scripts": {
16
16
  "lint": "biome check .",
17
17
  "lint:fix": "biome check --write .",
18
- "build": "bun build.ts"
18
+ "build": "bun build.ts",
19
+ "prepare": "husky"
19
20
  },
20
21
  "files": [
21
22
  "src"
@@ -25,7 +26,8 @@
25
26
  "@biomejs/biome": "^2.3",
26
27
  "@types/bun": "latest",
27
28
  "@types/css-tree": "^2.3.11",
28
- "css-tree": "^3.1.0"
29
+ "css-tree": "^3.1.0",
30
+ "husky": "^9.1"
29
31
  },
30
32
  "peerDependencies": {
31
33
  "typescript": "^5"
package/src/index.d.ts CHANGED
@@ -554,548 +554,552 @@ export type AtRules = "@charset" | "@counter-style" | "@container" | "@document"
554
554
  export type AdvancedPseudos = ":active-view-transition-type()" | ":dir()" | ":has()" | ":host()" | ":host-context()" | ":is()" | ":lang()" | ":not()" | ":nth-child()" | ":nth-last-child()" | ":nth-last-of-type()" | ":nth-of-type()" | ":state()" | ":where()" | "::cue()" | "::cue-region()" | "::highlight()" | "::part()" | "::picker()" | "::slotted()" | "::view-transition-group()" | "::view-transition-image-pair()" | "::view-transition-new()" | "::view-transition-old()"
555
555
  export type SimplePseudos = "Type selectors" | "Class selectors" | "ID selectors" | "Universal selectors" | "Attribute selectors" | "Nesting selector" | "Selector list" | "Next-sibling combinator" | "Subsequent-sibling combinator" | "Child combinator" | "Descendant combinator" | "Column combinator" | "Namespace separator" | "Pseudo-classes" | "Pseudo-elements" | ":active" | ":active-view-transition" | ":any-link" | ":autofill" | ":blank" | ":buffering" | ":checked" | ":current" | ":default" | ":defined" | ":disabled" | ":empty" | ":enabled" | ":first" | ":first-child" | ":first-of-type" | ":focus" | ":focus-visible" | ":focus-within" | ":fullscreen" | ":future" | ":has-slotted" | ":host" | ":hover" | ":in-range" | ":indeterminate" | ":invalid" | ":last-child" | ":last-of-type" | ":left" | ":link" | ":local-link" | ":modal" | ":muted" | ":only-child" | ":only-of-type" | ":open" | ":optional" | ":out-of-range" | ":past" | ":paused" | ":picture-in-picture" | ":placeholder-shown" | ":playing" | ":popover-open" | ":read-only" | ":read-write" | ":required" | ":right" | ":root" | ":scope" | ":seeking" | ":stalled" | ":target" | ":target-current" | ":target-within" | ":user-invalid" | ":user-valid" | ":valid" | ":visited" | ":volume-locked" | ":xr-overlay" | "::-ms-browse" | "::-ms-check" | "::-ms-clear" | "::-ms-expand" | "::-ms-fill" | "::-ms-fill-lower" | "::-ms-fill-upper" | "::-ms-reveal" | "::-ms-thumb" | "::-ms-ticks-after" | "::-ms-ticks-before" | "::-ms-tooltip" | "::-ms-track" | "::-ms-value" | "::-moz-progress-bar" | "::-moz-range-progress" | "::-moz-range-thumb" | "::-moz-range-track" | "::-webkit-progress-bar" | "::-webkit-progress-inner-value" | "::-webkit-progress-value" | "::-webkit-slider-runnable-track" | "::-webkit-slider-thumb" | "::after" | "::backdrop" | "::before" | "::checkmark" | "::cue" | "::cue-region" | "::details-content" | "::file-selector-button" | "::first-letter" | "::first-line" | "::grammar-error" | "::marker" | "::picker-icon" | "::placeholder" | "::scroll-marker" | "::scroll-marker-group" | "::selection" | "::spelling-error" | "::target-text" | "::view-transition"
556
556
  export type Pseudos = AdvancedPseudos | SimplePseudos
557
+ export interface StandardProperties extends StandardLonghandProperties,StandardShorthandProperties{}
558
+ export interface VendorProperties extends VendorLonghandProperties,VendorShorthandProperties{}
559
+ export interface Properties extends StandardProperties,VendorProperties{}
560
+ export type Globals = "-moz-initial" | "inherit" | "initial" | "revert" | "revert-layer" | "unset"
557
561
  export namespace Property {
558
- export type AccentColor = "auto" | TColor;
559
- export type AlignContent = "normal" | TBaselinePosition | TContentDistribution | TOverflowPosition | TContentPosition;
560
- export type AlignItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
561
- export type AlignSelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center";
562
- export type AlignmentBaseline = "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge";
563
- export type All = "initial" | "inherit" | "unset" | "revert" | "revert-layer";
564
- export type AnimationComposition = TSingleAnimationComposition;
565
- export type AnimationDelay = (string & {});
566
- export type AnimationDirection = TSingleAnimationDirection;
567
- export type AnimationDuration = "auto";
568
- export type AnimationFillMode = TSingleAnimationFillMode;
569
- export type AnimationIterationCount = TSingleAnimationIterationCount;
570
- export type AnimationName = "none" | TKeyframesName;
571
- export type AnimationPlayState = TSingleAnimationPlayState;
572
- export type AnimationTimingFunction = TEasingFunction;
573
- export type Appearance = "none" | "auto" | TCompatAuto | TCompatSpecial;
574
- export type AspectRatio = "auto" | TRatio;
575
- export type BackdropFilter = "none" | TFilterValueList;
576
- export type BackfaceVisibility = "visible" | "hidden";
577
- export type BackgroundAttachment = TAttachment;
578
- export type BackgroundBlendMode = TBlendMode;
579
- export type BackgroundClip = TBgClip;
580
- export type BackgroundColor = TColor;
581
- export type BackgroundImage = TBgImage;
582
- export type BackgroundOrigin = TVisualBox;
583
- export type BackgroundPositionX = "center" | "left" | "right" | "x-start" | "x-end" | TLengthPercentage;
584
- export type BackgroundPositionY = "center" | "top" | "bottom" | "y-start" | "y-end" | TLengthPercentage;
585
- export type BackgroundRepeat = TRepeatStyle;
586
- export type BackgroundSize = TBgSize;
587
- export type BaselineShift = TLengthPercentage | "sub" | "super" | "baseline";
588
- export type BlockSize = Width;
589
- export type BorderBlockColor = BorderTopColor;
590
- export type BorderBlockEndColor = BorderTopColor;
591
- export type BorderBlockEndStyle = BorderTopStyle;
592
- export type BorderBlockEndWidth = BorderTopWidth;
593
- export type BorderBlockStartColor = BorderTopColor;
594
- export type BorderBlockStartStyle = BorderTopStyle;
595
- export type BorderBlockStartWidth = BorderTopWidth;
596
- export type BorderBlockStyle = BorderTopStyle;
597
- export type BorderBlockWidth = BorderTopWidth;
598
- export type BorderBottomColor = BorderTopColor;
599
- export type BorderBottomLeftRadius = TLengthPercentage;
600
- export type BorderBottomRightRadius = TLengthPercentage;
601
- export type BorderBottomStyle = TLineStyle;
602
- export type BorderBottomWidth = TLineWidth;
603
- export type BorderCollapse = "separate" | "collapse";
604
- export type BorderEndEndRadius = BorderTopLeftRadius;
605
- export type BorderEndStartRadius = BorderTopLeftRadius;
606
- export type BorderImageOutset = number;
607
- export type BorderImageRepeat = "stretch" | "repeat" | "round" | "space";
608
- export type BorderImageSlice = number | "fill";
609
- export type BorderImageSource = "none" | TImage;
610
- export type BorderImageWidth = TLengthPercentage | number | "auto";
611
- export type BorderInlineColor = BorderTopColor;
612
- export type BorderInlineEndColor = BorderTopColor;
613
- export type BorderInlineEndStyle = BorderTopStyle;
614
- export type BorderInlineEndWidth = BorderTopWidth;
615
- export type BorderInlineStartColor = BorderTopColor;
616
- export type BorderInlineStartStyle = BorderTopStyle;
617
- export type BorderInlineStartWidth = BorderTopWidth;
618
- export type BorderInlineStyle = BorderTopStyle;
619
- export type BorderInlineWidth = BorderTopWidth;
620
- export type BorderLeftColor = TColor;
621
- export type BorderLeftStyle = TLineStyle;
622
- export type BorderLeftWidth = TLineWidth;
623
- export type BorderRightColor = TColor;
624
- export type BorderRightStyle = TLineStyle;
625
- export type BorderRightWidth = TLineWidth;
626
- export type BorderSpacing = (string & {});
627
- export type BorderStartEndRadius = BorderTopLeftRadius;
628
- export type BorderStartStartRadius = BorderTopLeftRadius;
629
- export type BorderTopColor = TColor;
630
- export type BorderTopLeftRadius = TLengthPercentage;
631
- export type BorderTopRightRadius = TLengthPercentage;
632
- export type BorderTopStyle = TLineStyle;
633
- export type BorderTopWidth = TLineWidth;
634
- export type Bottom = "auto" | TLengthPercentage;
635
- export type BoxDecorationBreak = "slice" | "clone";
636
- export type BoxShadow = "none" | TShadow;
637
- export type BoxSizing = "content-box" | "border-box";
638
- export type BreakAfter = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
639
- export type BreakBefore = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region";
640
- export type BreakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region";
641
- export type CaptionSide = "top" | "bottom";
642
- export type CaretColor = "auto" | TColor;
643
- export type CaretShape = "auto" | "bar" | "block" | "underscore";
644
- export type Clear = "none" | "left" | "right" | "both" | "inline-start" | "inline-end";
645
- export type ClipPath = TClipSource | TBasicShape | TGeometryBox | "none";
646
- export type ClipRule = "nonzero" | "evenodd";
647
- export type Color = TColor;
648
- export type ColorInterpolationFilters = "auto" | "sRGB" | "linearRGB";
649
- export type ColorScheme = "normal" | "light" | "dark" | (string & {}) | "only";
650
- export type ColumnCount = number | "auto";
651
- export type ColumnFill = "auto" | "balance";
652
- export type ColumnGap = "normal" | TLengthPercentage;
653
- export type ColumnRuleColor = TColor;
654
- export type ColumnRuleStyle = BorderStyle;
655
- export type ColumnRuleWidth = BorderWidth;
656
- export type ColumnSpan = "none" | "all";
657
- export type ColumnWidth = "auto";
658
- export type Contain = "none" | "strict" | "content" | "size" | "inline-size" | "layout" | "style" | "paint";
659
- export type ContainIntrinsicBlockSize = "auto" | "none";
660
- export type ContainIntrinsicHeight = "auto" | "none";
661
- export type ContainIntrinsicInlineSize = "auto" | "none";
662
- export type ContainIntrinsicWidth = "auto" | "none";
663
- export type ContainerName = "none" | (string & {});
664
- export type ContainerType = "normal" | "size" | "inline-size" | "scroll-state";
665
- export type Content = "normal" | "none" | TContentReplacement | TContentList | (string & {}) | TCounter;
666
- export type ContentVisibility = "visible" | "auto" | "hidden";
667
- export type CounterIncrement = TCounterName | number | "none";
668
- export type CounterReset = TCounterName | number | TReversedCounterName | number | "none";
669
- export type CounterSet = TCounterName | number | "none";
670
- export type Cursor = TCursorPredefined;
671
- export type Cx = number;
672
- export type Cy = number;
673
- export type D = "none" | (string & {});
674
- export type Direction = "ltr" | "rtl";
675
- export type Display = TDisplayOutside | TDisplayInside | TDisplayListitem | TDisplayInternal | TDisplayBox | TDisplayLegacy;
676
- export type DominantBaseline = "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top";
677
- export type EmptyCells = "show" | "hide";
678
- export type Fill = TPaint;
679
- export type FillOpacity = Opacity;
680
- export type FillRule = "nonzero" | "evenodd";
681
- export type Filter = "none" | TFilterValueList;
682
- export type FlexBasis = "content" | Width;
683
- export type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse";
684
- export type FlexGrow = number;
685
- export type FlexShrink = number;
686
- export type FlexWrap = "nowrap" | "wrap" | "wrap-reverse";
687
- export type Float = "left" | "right" | "none" | "inline-start" | "inline-end";
688
- export type FloodColor = TColor;
689
- export type FloodOpacity = Opacity;
690
- export type FontFamily = TFamilyName | TGenericFamily;
691
- export type FontFeatureSettings = "normal" | TFeatureTagValue;
692
- export type FontKerning = "auto" | "normal" | "none";
693
- export type FontLanguageOverride = "normal" | (string & {});
694
- export type FontOpticalSizing = "auto" | "none";
695
- export type FontPalette = "normal" | "light" | "dark" | TPaletteIdentifier;
696
- export type FontSize = TAbsoluteSize | TRelativeSize | TLengthPercentage | "math";
697
- export type FontSizeAdjust = "none" | "ex-height" | "cap-height" | "ch-width" | "ic-width" | "ic-height" | "from-font" | number;
698
- export type FontStyle = "normal" | "italic" | "oblique";
699
- export type FontSynthesis = "none" | "weight" | "style" | "small-caps" | "position";
700
- export type FontSynthesisSmallCaps = "auto" | "none";
701
- export type FontSynthesisStyle = "auto" | "none";
702
- export type FontSynthesisWeight = "auto" | "none";
703
- export type FontVariant = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues | TFeatureValueName | "historical-forms" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
704
- export type FontVariantAlternates = "normal" | TFeatureValueName | "historical-forms";
705
- export type FontVariantCaps = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps";
706
- export type FontVariantEastAsian = "normal" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby";
707
- export type FontVariantEmoji = "normal" | "text" | "emoji" | "unicode";
708
- export type FontVariantLigatures = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues;
709
- export type FontVariantNumeric = "normal" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero";
710
- export type FontVariantPosition = "normal" | "sub" | "super";
711
- export type FontVariationSettings = "normal" | (string & {}) | number;
712
- export type FontWeight = TFontWeightAbsolute | "bolder" | "lighter";
713
- export type ForcedColorAdjust = "auto" | "none" | "preserve-parent-color";
714
- export type GridAutoColumns = TTrackSize;
715
- export type GridAutoFlow = "row" | "column" | "dense";
716
- export type GridAutoRows = TTrackSize;
717
- export type GridColumnEnd = TGridLine;
718
- export type GridColumnStart = TGridLine;
719
- export type GridRowEnd = TGridLine;
720
- export type GridRowStart = TGridLine;
721
- export type GridTemplateAreas = "none" | (string & {});
722
- export type GridTemplateColumns = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
723
- export type GridTemplateRows = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList;
724
- export type HangingPunctuation = "none" | "first" | "force-end" | "allow-end" | "last";
725
- export type Height = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
726
- export type HyphenateCharacter = "auto" | (string & {});
727
- export type HyphenateLimitChars = "auto" | number;
728
- export type Hyphens = "none" | "manual" | "auto";
729
- export type ImageOrientation = "from-image" | "flip";
730
- export type ImageRendering = "auto" | "crisp-edges" | "pixelated" | "smooth";
731
- export type InitialLetter = "normal" | number;
732
- export type InlineSize = Width;
733
- export type InsetBlockEnd = Top;
734
- export type InsetBlockStart = Top;
735
- export type InsetInlineEnd = Top;
736
- export type InsetInlineStart = Top;
737
- export type Isolation = "auto" | "isolate";
738
- export type JustifyContent = "normal" | TContentDistribution | TOverflowPosition | TContentPosition | "left" | "right";
739
- export type JustifyItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "legacy" | "legacy" | "left" | "right" | "center" | "anchor-center";
740
- export type JustifySelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "anchor-center";
741
- export type Left = "auto" | TLengthPercentage;
742
- export type LetterSpacing = "normal";
743
- export type LightingColor = TColor;
744
- export type LineBreak = "auto" | "loose" | "normal" | "strict" | "anywhere";
745
- export type LineClamp = "none" | number;
746
- export type LineHeight = "normal" | number;
747
- export type ListStyleImage = TImage | "none";
748
- export type ListStylePosition = "inside" | "outside";
749
- export type ListStyleType = TCounterStyle | (string & {}) | "none";
750
- export type MarginBlockEnd = MarginTop;
751
- export type MarginBlockStart = MarginTop;
752
- export type MarginBottom = TLengthPercentage | "auto";
753
- export type MarginInlineEnd = MarginTop;
754
- export type MarginInlineStart = MarginTop;
755
- export type MarginLeft = TLengthPercentage | "auto";
756
- export type MarginRight = TLengthPercentage | "auto";
757
- export type MarginTop = TLengthPercentage | "auto";
758
- export type Marker = "none";
759
- export type MarkerEnd = "none";
760
- export type MarkerMid = "none";
761
- export type MarkerStart = "none";
762
- export type MaskBorderMode = "luminance" | "alpha";
763
- export type MaskBorderOutset = number;
764
- export type MaskBorderRepeat = "stretch" | "repeat" | "round" | "space";
765
- export type MaskBorderSlice = TNumberPercentage | "fill";
766
- export type MaskBorderSource = "none" | TImage;
767
- export type MaskBorderWidth = TLengthPercentage | number | "auto";
768
- export type MaskClip = TCoordBox | "no-clip";
769
- export type MaskComposite = TCompositingOperator;
770
- export type MaskImage = TMaskReference;
771
- export type MaskMode = TMaskingMode;
772
- export type MaskOrigin = TCoordBox;
773
- export type MaskPosition = TPosition;
774
- export type MaskRepeat = TRepeatStyle;
775
- export type MaskSize = TBgSize;
776
- export type MaskType = "luminance" | "alpha";
777
- export type MathDepth = "auto-add" | number;
778
- export type MathStyle = "normal" | "compact";
779
- export type MaxBlockSize = MaxWidth;
780
- export type MaxHeight = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
781
- export type MaxInlineSize = MaxWidth;
782
- export type MaxWidth = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
783
- export type MinBlockSize = MinWidth;
784
- export type MinHeight = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
785
- export type MinInlineSize = MinWidth;
786
- export type MinWidth = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
787
- export type MixBlendMode = TBlendMode | "plus-darker" | "plus-lighter";
788
- export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down";
789
- export type ObjectPosition = TPosition;
790
- export type OffsetAnchor = "auto" | TPosition;
791
- export type OffsetDistance = TLengthPercentage;
792
- export type OffsetPath = "none" | TOffsetPath | TCoordBox;
793
- export type OffsetPosition = "normal" | "auto" | TPosition;
794
- export type OffsetRotate = "auto" | "reverse";
795
- export type Opacity = TOpacityValue;
796
- export type Order = number;
797
- export type Orphans = number;
798
- export type OutlineColor = "auto" | TColor;
799
- export type OutlineOffset = (string & {});
800
- export type OutlineStyle = "auto" | TOutlineLineStyle;
801
- export type OutlineWidth = TLineWidth;
802
- export type OverflowAnchor = "auto" | "none";
803
- export type OverflowBlock = "visible" | "hidden" | "clip" | "scroll" | "auto";
804
- export type OverflowClipMargin = TVisualBox;
805
- export type OverflowInline = "visible" | "hidden" | "clip" | "scroll" | "auto";
806
- export type OverflowWrap = "normal" | "break-word" | "anywhere";
807
- export type OverflowX = "visible" | "hidden" | "clip" | "scroll" | "auto";
808
- export type OverflowY = "visible" | "hidden" | "clip" | "scroll" | "auto";
809
- export type OverscrollBehaviorBlock = "contain" | "none" | "auto";
810
- export type OverscrollBehaviorInline = "contain" | "none" | "auto";
811
- export type OverscrollBehaviorX = "contain" | "none" | "auto";
812
- export type OverscrollBehaviorY = "contain" | "none" | "auto";
813
- export type PaddingBlockEnd = PaddingTop;
814
- export type PaddingBlockStart = PaddingTop;
815
- export type PaddingBottom = TLengthPercentage;
816
- export type PaddingInlineEnd = PaddingTop;
817
- export type PaddingInlineStart = PaddingTop;
818
- export type PaddingLeft = TLengthPercentage;
819
- export type PaddingRight = TLengthPercentage;
820
- export type PaddingTop = TLengthPercentage;
821
- export type Page = "auto" | (string & {});
822
- export type PaintOrder = "normal" | "fill" | "stroke" | "markers";
823
- export type Perspective = "none";
824
- export type PerspectiveOrigin = TPosition;
825
- export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit";
826
- export type Position = "static" | "relative" | "absolute" | "sticky" | "fixed";
827
- export type PrintColorAdjust = "economy" | "exact";
828
- export type Quotes = "none" | "auto" | (string & {});
829
- export type R = number;
830
- export type Resize = "none" | "both" | "horizontal" | "vertical" | "block" | "inline";
831
- export type Right = "auto" | TLengthPercentage;
832
- export type Rotate = "none" | "x" | "y" | "z" | number;
833
- export type RowGap = "normal" | TLengthPercentage;
834
- export type RubyAlign = "start" | "center" | "space-between" | "space-around";
835
- export type RubyOverhang = "auto" | "none";
836
- export type RubyPosition = "alternate" | "over" | "under" | "inter-character";
837
- export type Rx = number;
838
- export type Ry = number;
839
- export type Scale = "none" | number;
840
- export type ScrollBehavior = "auto" | "smooth";
841
- export type ScrollMarginBlockEnd = (string & {});
842
- export type ScrollMarginBlockStart = (string & {});
843
- export type ScrollMarginBottom = (string & {});
844
- export type ScrollMarginInlineEnd = (string & {});
845
- export type ScrollMarginInlineStart = (string & {});
846
- export type ScrollMarginLeft = (string & {});
847
- export type ScrollMarginRight = (string & {});
848
- export type ScrollMarginTop = (string & {});
849
- export type ScrollPaddingBlockEnd = "auto" | TLengthPercentage;
850
- export type ScrollPaddingBlockStart = "auto" | TLengthPercentage;
851
- export type ScrollPaddingBottom = "auto" | TLengthPercentage;
852
- export type ScrollPaddingInlineEnd = "auto" | TLengthPercentage;
853
- export type ScrollPaddingInlineStart = "auto" | TLengthPercentage;
854
- export type ScrollPaddingLeft = "auto" | TLengthPercentage;
855
- export type ScrollPaddingRight = "auto" | TLengthPercentage;
856
- export type ScrollPaddingTop = "auto" | TLengthPercentage;
857
- export type ScrollSnapAlign = "none" | "start" | "end" | "center";
858
- export type ScrollSnapStop = "normal" | "always";
859
- export type ScrollSnapType = "none" | "x" | "y" | "block" | "inline" | "both" | "mandatory" | "proximity";
860
- export type ScrollbarColor = "auto" | TColor;
861
- export type ScrollbarGutter = "auto" | "stable" | "both-edges";
862
- export type ScrollbarWidth = "auto" | "thin" | "none";
863
- export type ShapeImageThreshold = TOpacityValue;
864
- export type ShapeMargin = TLengthPercentage;
865
- export type ShapeOutside = "none" | TShapeBox | TBasicShape | TImage;
866
- export type ShapeRendering = "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision";
867
- export type StopColor = Color;
868
- export type StopOpacity = Opacity;
869
- export type Stroke = TPaint;
870
- export type StrokeDasharray = "none" | TDasharray;
871
- export type StrokeDashoffset = TLengthPercentage | number;
872
- export type StrokeLinecap = "butt" | "round" | "square";
873
- export type StrokeLinejoin = "miter" | "miter-clip" | "round" | "bevel" | "arcs";
874
- export type StrokeMiterlimit = number;
875
- export type StrokeOpacity = Opacity;
876
- export type StrokeWidth = TLengthPercentage | number;
877
- export type TabSize = number;
878
- export type TableLayout = "auto" | "fixed";
879
- export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent";
880
- export type TextAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify";
881
- export type TextAnchor = "start" | "middle" | "end";
882
- export type TextAutospace = "normal" | "auto";
883
- export type TextBox = "normal" | TextBoxTrim | TextBoxEdge;
884
- export type TextBoxEdge = "auto" | TTextEdge;
885
- export type TextBoxTrim = "none" | "trim-start" | "trim-end" | "trim-both";
886
- export type TextCombineUpright = "none" | "all" | "digits" | number;
887
- export type TextDecorationColor = TColor;
888
- export type TextDecorationLine = "none" | "underline" | "overline" | "line-through" | "blink" | "spelling-error" | "grammar-error";
889
- export type TextDecorationSkipInk = "auto" | "all" | "none";
890
- export type TextDecorationStyle = "solid" | "double" | "dotted" | "dashed" | "wavy";
891
- export type TextDecorationThickness = "auto" | "from-font" | number;
892
- export type TextEmphasisColor = TColor;
893
- export type TextEmphasisPosition = "auto" | "over" | "under" | "right" | "left";
894
- export type TextEmphasisStyle = "none" | "filled" | "open" | "dot" | "circle" | "double-circle" | "triangle" | "sesame" | (string & {});
895
- export type TextIndent = TLengthPercentage | "hanging" | "each-line";
896
- export type TextJustify = "auto" | "inter-character" | "inter-word" | "none";
897
- export type TextOrientation = "mixed" | "upright" | "sideways";
898
- export type TextOverflow = "clip" | "ellipsis" | (string & {});
899
- export type TextRendering = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision";
900
- export type TextShadow = "none" | TShadowT;
901
- export type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana" | "math-auto";
902
- export type TextUnderlineOffset = "auto" | number;
903
- export type TextUnderlinePosition = "auto" | "from-font" | "under" | "left" | "right";
904
- export type TextWrapMode = "wrap" | "nowrap";
905
- export type TextWrapStyle = "auto" | "balance" | "stable" | "pretty";
906
- export type Top = "auto" | TLengthPercentage;
907
- export type TouchAction = "auto" | "none" | "pan-x" | "pan-left" | "pan-right" | "pan-y" | "pan-up" | "pan-down" | "pinch-zoom" | "manipulation";
908
- export type Transform = "none" | TTransformList;
909
- export type TransformBox = "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box";
910
- export type TransformOrigin = TLengthPercentage | "left" | "center" | "right" | "top" | "bottom" | TLengthPercentage | "left" | "center" | "right" | TLengthPercentage | "top" | "center" | "bottom";
911
- export type TransformStyle = "flat" | "preserve-3d";
912
- export type TransitionBehavior = TTransitionBehaviorValue;
913
- export type TransitionDelay = (string & {});
914
- export type TransitionDuration = (string & {});
915
- export type TransitionProperty = "none" | TSingleTransitionProperty;
916
- export type TransitionTimingFunction = TEasingFunction;
917
- export type Translate = "none" | TLengthPercentage;
918
- export type UnicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext";
919
- export type UserSelect = "auto" | "text" | "none" | "all";
920
- export type VectorEffect = "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position";
921
- export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | number;
922
- export type ViewTransitionClass = "none" | (string & {});
923
- export type ViewTransitionName = "none" | (string & {}) | "match-element";
924
- export type Visibility = "visible" | "hidden" | "collapse";
925
- export type WhiteSpace = "normal" | "pre" | "pre-wrap" | "pre-line" | WhiteSpaceCollapse | TextWrapMode;
926
- export type WhiteSpaceCollapse = "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces";
927
- export type Widows = number;
928
- export type Width = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content";
929
- export type WillChange = "auto" | TAnimateableFeature;
930
- export type WordBreak = "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase";
931
- export type WordSpacing = "normal";
932
- export type WordWrap = "normal" | "break-word";
933
- export type WritingMode = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr";
934
- export type X = number;
935
- export type Y = number;
936
- export type ZIndex = "auto" | number;
937
- export type Zoom = "normal" | "reset" | number;
938
- export type Animation = TSingleAnimation;
939
- export type Background = TBgLayer | TFinalBgLayer;
940
- export type BackgroundPosition = TBgPosition;
941
- export type Border = TLineWidth | TLineStyle | TColor;
942
- export type BorderBlock = BorderBlockStart;
943
- export type BorderBlockEnd = BorderTopWidth | BorderTopStyle | TColor;
944
- export type BorderBlockStart = BorderTopWidth | BorderTopStyle | TColor;
945
- export type BorderBottom = TLineWidth | TLineStyle | TColor;
946
- export type BorderColor = TColor;
947
- export type BorderImage = BorderImageSource | BorderImageSlice | BorderImageWidth | BorderImageWidth | BorderImageOutset | BorderImageRepeat;
948
- export type BorderInline = BorderBlockStart;
949
- export type BorderInlineEnd = BorderTopWidth | BorderTopStyle | TColor;
950
- export type BorderInlineStart = BorderTopWidth | BorderTopStyle | TColor;
951
- export type BorderLeft = TLineWidth | TLineStyle | TColor;
952
- export type BorderRadius = TLengthPercentage;
953
- export type BorderRight = TLineWidth | TLineStyle | TColor;
954
- export type BorderStyle = TLineStyle;
955
- export type BorderTop = TLineWidth | TLineStyle | TColor;
956
- export type BorderWidth = TLineWidth;
957
- export type Caret = CaretColor | CaretShape;
958
- export type ColumnRule = ColumnRuleWidth | ColumnRuleStyle | ColumnRuleColor;
959
- export type Columns = ColumnWidth | ColumnCount;
960
- export type ContainIntrinsicSize = "auto" | "none";
961
- export type Container = ContainerName | ContainerType;
962
- export type Flex = "none" | FlexGrow | FlexShrink | FlexBasis;
963
- export type FlexFlow = FlexDirection | FlexWrap;
964
- export type Font = FontStyle | TFontVariantCss2 | FontWeight | TFontWidthCss3 | FontSize | LineHeight | FontFamily | TSystemFamilyName;
965
- export type Gap = RowGap | ColumnGap;
966
- export type Grid = GridTemplate | GridTemplateRows | "auto-flow" | "dense" | GridAutoColumns | "auto-flow" | "dense" | GridAutoRows | GridTemplateColumns;
967
- export type GridArea = TGridLine;
968
- export type GridColumn = TGridLine;
969
- export type GridRow = TGridLine;
970
- export type GridTemplate = "none" | GridTemplateRows | GridTemplateColumns | TLineNames | (string & {}) | TTrackSize | TExplicitTrackList;
971
- export type Inset = Top;
972
- export type InsetBlock = Top;
973
- export type InsetInline = Top;
974
- export type ListStyle = ListStyleType | ListStylePosition | ListStyleImage;
975
- export type Margin = MarginTop;
976
- export type MarginBlock = MarginTop;
977
- export type MarginInline = MarginTop;
978
- export type Mask = TMaskLayer;
979
- export type MaskBorder = MaskBorderSource | MaskBorderSlice | MaskBorderWidth | MaskBorderOutset | MaskBorderRepeat | MaskBorderMode;
980
- export type Offset = OffsetPosition | OffsetPath | OffsetDistance | OffsetRotate | OffsetAnchor;
981
- export type Outline = OutlineWidth | OutlineStyle | OutlineColor;
982
- export type Overflow = "visible" | "hidden" | "clip" | "scroll" | "auto";
983
- export type OverscrollBehavior = "contain" | "none" | "auto";
984
- export type Padding = PaddingTop;
985
- export type PaddingBlock = PaddingTop;
986
- export type PaddingInline = PaddingTop;
987
- export type PlaceContent = AlignContent | JustifyContent;
988
- export type PlaceItems = AlignItems | JustifyItems;
989
- export type PlaceSelf = AlignSelf | JustifySelf;
990
- export type ScrollMargin = (string & {});
991
- export type ScrollMarginBlock = (string & {});
992
- export type ScrollMarginInline = (string & {});
993
- export type ScrollPadding = "auto" | TLengthPercentage;
994
- export type ScrollPaddingBlock = "auto" | TLengthPercentage;
995
- export type ScrollPaddingInline = "auto" | TLengthPercentage;
996
- export type TextDecoration = TextDecorationLine | TextDecorationStyle | TextDecorationColor | TextDecorationThickness;
997
- export type TextEmphasis = TextEmphasisStyle | TextEmphasisColor;
998
- export type TextWrap = TextWrapMode | TextWrapStyle;
999
- export type Transition = TSingleTransition;
1000
- export type MsAccelerator = "false" | "true";
1001
- export type MsBlockProgression = "tb" | "rl" | "bt" | "lr";
1002
- export type MsContentZoomChaining = "none" | "chained";
1003
- export type MsContentZoomLimitMax = number;
1004
- export type MsContentZoomLimitMin = number;
1005
- export type MsContentZoomSnapPoints = number;
1006
- export type MsContentZoomSnapType = "none" | "proximity" | "mandatory";
1007
- export type MsContentZooming = "none" | "zoom";
1008
- export type MsFilter = (string & {});
1009
- export type MsFlowFrom = "none" | (string & {});
1010
- export type MsFlowInto = "none" | (string & {});
1011
- export type MsGridColumns = "none" | TTrackList | TAutoTrackList;
1012
- export type MsGridRows = "none" | TTrackList | TAutoTrackList;
1013
- export type MsHighContrastAdjust = "auto" | "none";
1014
- export type MsHyphenateLimitChars = "auto" | number;
1015
- export type MsHyphenateLimitLines = "no-limit" | number;
1016
- export type MsHyphenateLimitZone = number;
1017
- export type MsImeAlign = "auto" | "after";
1018
- export type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar";
1019
- export type MsScrollChaining = "chained" | "none";
1020
- export type MsScrollLimitXMax = "auto";
1021
- export type MsScrollLimitXMin = (string & {});
1022
- export type MsScrollLimitYMax = "auto";
1023
- export type MsScrollLimitYMin = (string & {});
1024
- export type MsScrollRails = "none" | "railed";
1025
- export type MsScrollSnapPointsX = TLengthPercentage;
1026
- export type MsScrollSnapPointsY = TLengthPercentage;
1027
- export type MsScrollSnapType = "none" | "proximity" | "mandatory";
1028
- export type MsScrollTranslation = "none" | "vertical-to-horizontal";
1029
- export type MsScrollbar3dlightColor = TColor;
1030
- export type MsScrollbarArrowColor = TColor;
1031
- export type MsScrollbarBaseColor = TColor;
1032
- export type MsScrollbarDarkshadowColor = TColor;
1033
- export type MsScrollbarFaceColor = TColor;
1034
- export type MsScrollbarHighlightColor = TColor;
1035
- export type MsScrollbarShadowColor = TColor;
1036
- export type MsScrollbarTrackColor = TColor;
1037
- export type MsTextAutospace = "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space";
1038
- export type MsTouchSelect = "grippers" | "none";
1039
- export type MsUserSelect = "none" | "element" | "text";
1040
- export type MsWrapFlow = "auto" | "both" | "start" | "end" | "maximum" | "clear";
1041
- export type MsWrapMargin = (string & {});
1042
- export type MsWrapThrough = "wrap" | "none";
1043
- export type MozAppearance = "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview" | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communicationstext" | "-moz-win-communications-toolbox" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-mediatext" | "-moz-win-media-toolbox" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized";
1044
- export type MozBinding = "none";
1045
- export type MozBorderBottomColors = TColor | "none";
1046
- export type MozBorderLeftColors = TColor | "none";
1047
- export type MozBorderRightColors = TColor | "none";
1048
- export type MozBorderTopColors = TColor | "none";
1049
- export type MozContextProperties = "none" | "fill" | "fill-opacity" | "stroke" | "stroke-opacity";
1050
- export type MozFloatEdge = "border-box" | "content-box" | "margin-box" | "padding-box";
1051
- export type MozForceBrokenImageIcon = "0" | "1";
1052
- export type MozOrient = "inline" | "block" | "horizontal" | "vertical";
1053
- export type MozOutlineRadiusBottomleft = TOutlineRadius;
1054
- export type MozOutlineRadiusBottomright = TOutlineRadius;
1055
- export type MozOutlineRadiusTopleft = TOutlineRadius;
1056
- export type MozOutlineRadiusTopright = TOutlineRadius;
1057
- export type MozStackSizing = "ignore" | "stretch-to-fit";
1058
- export type MozTextBlink = "none" | "blink";
1059
- export type MozUserFocus = "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none";
1060
- export type MozUserInput = "auto" | "none" | "enabled" | "disabled";
1061
- export type MozUserModify = "read-only" | "read-write" | "write-only";
1062
- export type MozWindowDragging = "drag" | "no-drag";
1063
- export type MozWindowShadow = "default" | "menu" | "tooltip" | "sheet" | "none";
1064
- export type WebkitAppearance = "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield" | "-apple-pay-button";
1065
- export type WebkitBorderBeforeColor = TColor;
1066
- export type WebkitBorderBeforeStyle = BorderStyle;
1067
- export type WebkitBorderBeforeWidth = BorderWidth;
1068
- export type WebkitBoxReflect = "above" | "below" | "right" | "left" | TImage;
1069
- export type WebkitLineClamp = "none" | number;
1070
- export type WebkitMaskAttachment = TAttachment;
1071
- export type WebkitMaskClip = TCoordBox | "no-clip" | "border" | "padding" | "content" | "text";
1072
- export type WebkitMaskComposite = TCompositeStyle;
1073
- export type WebkitMaskImage = TMaskReference;
1074
- export type WebkitMaskOrigin = TCoordBox | "border" | "padding" | "content";
1075
- export type WebkitMaskPosition = TPosition;
1076
- export type WebkitMaskPositionX = TLengthPercentage | "left" | "center" | "right";
1077
- export type WebkitMaskPositionY = TLengthPercentage | "top" | "center" | "bottom";
1078
- export type WebkitMaskRepeat = TRepeatStyle;
1079
- export type WebkitMaskRepeatX = "repeat" | "no-repeat" | "space" | "round";
1080
- export type WebkitMaskRepeatY = "repeat" | "no-repeat" | "space" | "round";
1081
- export type WebkitMaskSize = TBgSize;
1082
- export type WebkitOverflowScrolling = "auto" | "touch";
1083
- export type WebkitTapHighlightColor = TColor;
1084
- export type WebkitTextFillColor = TColor;
1085
- export type WebkitTextStrokeColor = TColor;
1086
- export type WebkitTextStrokeWidth = (string & {});
1087
- export type WebkitTouchCallout = "default" | "none";
1088
- export type WebkitUserModify = "read-only" | "read-write" | "read-write-plaintext-only";
1089
- export type WebkitUserSelect = "auto" | "text" | "none" | "all";
1090
- export type MsContentZoomLimit = MsContentZoomLimitMin | MsContentZoomLimitMax;
1091
- export type MsContentZoomSnap = MsContentZoomSnapType | MsContentZoomSnapPoints;
1092
- export type MsScrollLimit = MsScrollLimitXMin | MsScrollLimitYMin | MsScrollLimitXMax | MsScrollLimitYMax;
1093
- export type MsScrollSnapX = MsScrollSnapType | MsScrollSnapPointsX;
1094
- export type MsScrollSnapY = MsScrollSnapType | MsScrollSnapPointsY;
1095
- export type MozOutlineRadius = TOutlineRadius;
1096
- export type WebkitBorderBefore = BorderWidth | BorderStyle | TColor;
1097
- export type WebkitMask = TMaskReference | TPosition | TBgSize | TRepeatStyle | TVisualBox | "border" | "padding" | "content" | "text" | TVisualBox | "border" | "padding" | "content";
1098
- export type WebkitTextStroke = TColor;
562
+ export type AccentColor = "auto" | TColor | Globals | (string & {})
563
+ export type AlignContent = "normal" | TBaselinePosition | TContentDistribution | TOverflowPosition | TContentPosition | Globals | (string & {})
564
+ export type AlignItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center" | Globals | (string & {})
565
+ export type AlignSelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "anchor-center" | Globals | (string & {})
566
+ export type AlignmentBaseline = "baseline" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "text-before-edge" | "text-after-edge" | Globals | (string & {})
567
+ export type All = "initial" | "inherit" | "unset" | "revert" | "revert-layer" | Globals | (string & {})
568
+ export type AnimationComposition = TSingleAnimationComposition | Globals | (string & {})
569
+ export type AnimationDelay = (string & {}) | Globals | (string & {})
570
+ export type AnimationDirection = TSingleAnimationDirection | Globals | (string & {})
571
+ export type AnimationDuration = "auto" | Globals | (string & {})
572
+ export type AnimationFillMode = TSingleAnimationFillMode | Globals | (string & {})
573
+ export type AnimationIterationCount = TSingleAnimationIterationCount | Globals | (string & {})
574
+ export type AnimationName = "none" | TKeyframesName | Globals | (string & {})
575
+ export type AnimationPlayState = TSingleAnimationPlayState | Globals | (string & {})
576
+ export type AnimationTimingFunction = TEasingFunction | Globals | (string & {})
577
+ export type Appearance = "none" | "auto" | TCompatAuto | TCompatSpecial | Globals | (string & {})
578
+ export type AspectRatio = "auto" | TRatio | Globals | (string & {})
579
+ export type BackdropFilter = "none" | TFilterValueList | Globals | (string & {})
580
+ export type BackfaceVisibility = "visible" | "hidden" | Globals | (string & {})
581
+ export type BackgroundAttachment = TAttachment | Globals | (string & {})
582
+ export type BackgroundBlendMode = TBlendMode | Globals | (string & {})
583
+ export type BackgroundClip = TBgClip | Globals | (string & {})
584
+ export type BackgroundColor = TColor | Globals | (string & {})
585
+ export type BackgroundImage = TBgImage | Globals | (string & {})
586
+ export type BackgroundOrigin = TVisualBox | Globals | (string & {})
587
+ export type BackgroundPositionX = "center" | "left" | "right" | "x-start" | "x-end" | TLengthPercentage | Globals | (string & {})
588
+ export type BackgroundPositionY = "center" | "top" | "bottom" | "y-start" | "y-end" | TLengthPercentage | Globals | (string & {})
589
+ export type BackgroundRepeat = TRepeatStyle | Globals | (string & {})
590
+ export type BackgroundSize = TBgSize | Globals | (string & {})
591
+ export type BaselineShift = TLengthPercentage | "sub" | "super" | "baseline" | Globals | (string & {})
592
+ export type BlockSize = Width | Globals | (string & {})
593
+ export type BorderBlockColor = BorderTopColor | Globals | (string & {})
594
+ export type BorderBlockEndColor = BorderTopColor | Globals | (string & {})
595
+ export type BorderBlockEndStyle = BorderTopStyle | Globals | (string & {})
596
+ export type BorderBlockEndWidth = BorderTopWidth | Globals | (string & {})
597
+ export type BorderBlockStartColor = BorderTopColor | Globals | (string & {})
598
+ export type BorderBlockStartStyle = BorderTopStyle | Globals | (string & {})
599
+ export type BorderBlockStartWidth = BorderTopWidth | Globals | (string & {})
600
+ export type BorderBlockStyle = BorderTopStyle | Globals | (string & {})
601
+ export type BorderBlockWidth = BorderTopWidth | Globals | (string & {})
602
+ export type BorderBottomColor = BorderTopColor | Globals | (string & {})
603
+ export type BorderBottomLeftRadius = TLengthPercentage | Globals | (string & {})
604
+ export type BorderBottomRightRadius = TLengthPercentage | Globals | (string & {})
605
+ export type BorderBottomStyle = TLineStyle | Globals | (string & {})
606
+ export type BorderBottomWidth = TLineWidth | Globals | (string & {})
607
+ export type BorderCollapse = "separate" | "collapse" | Globals | (string & {})
608
+ export type BorderEndEndRadius = BorderTopLeftRadius | Globals | (string & {})
609
+ export type BorderEndStartRadius = BorderTopLeftRadius | Globals | (string & {})
610
+ export type BorderImageOutset = number | Globals | (string & {})
611
+ export type BorderImageRepeat = "stretch" | "repeat" | "round" | "space" | Globals | (string & {})
612
+ export type BorderImageSlice = number | "fill" | Globals | (string & {})
613
+ export type BorderImageSource = "none" | TImage | Globals | (string & {})
614
+ export type BorderImageWidth = TLengthPercentage | number | "auto" | Globals | (string & {})
615
+ export type BorderInlineColor = BorderTopColor | Globals | (string & {})
616
+ export type BorderInlineEndColor = BorderTopColor | Globals | (string & {})
617
+ export type BorderInlineEndStyle = BorderTopStyle | Globals | (string & {})
618
+ export type BorderInlineEndWidth = BorderTopWidth | Globals | (string & {})
619
+ export type BorderInlineStartColor = BorderTopColor | Globals | (string & {})
620
+ export type BorderInlineStartStyle = BorderTopStyle | Globals | (string & {})
621
+ export type BorderInlineStartWidth = BorderTopWidth | Globals | (string & {})
622
+ export type BorderInlineStyle = BorderTopStyle | Globals | (string & {})
623
+ export type BorderInlineWidth = BorderTopWidth | Globals | (string & {})
624
+ export type BorderLeftColor = TColor | Globals | (string & {})
625
+ export type BorderLeftStyle = TLineStyle | Globals | (string & {})
626
+ export type BorderLeftWidth = TLineWidth | Globals | (string & {})
627
+ export type BorderRightColor = TColor | Globals | (string & {})
628
+ export type BorderRightStyle = TLineStyle | Globals | (string & {})
629
+ export type BorderRightWidth = TLineWidth | Globals | (string & {})
630
+ export type BorderSpacing = (string & {}) | Globals | (string & {})
631
+ export type BorderStartEndRadius = BorderTopLeftRadius | Globals | (string & {})
632
+ export type BorderStartStartRadius = BorderTopLeftRadius | Globals | (string & {})
633
+ export type BorderTopColor = TColor | Globals | (string & {})
634
+ export type BorderTopLeftRadius = TLengthPercentage | Globals | (string & {})
635
+ export type BorderTopRightRadius = TLengthPercentage | Globals | (string & {})
636
+ export type BorderTopStyle = TLineStyle | Globals | (string & {})
637
+ export type BorderTopWidth = TLineWidth | Globals | (string & {})
638
+ export type Bottom = "auto" | TLengthPercentage | Globals | (string & {})
639
+ export type BoxDecorationBreak = "slice" | "clone" | Globals | (string & {})
640
+ export type BoxShadow = "none" | TShadow | Globals | (string & {})
641
+ export type BoxSizing = "content-box" | "border-box" | Globals | (string & {})
642
+ export type BreakAfter = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region" | Globals | (string & {})
643
+ export type BreakBefore = "auto" | "avoid" | "always" | "all" | "avoid-page" | "page" | "left" | "right" | "recto" | "verso" | "avoid-column" | "column" | "avoid-region" | "region" | Globals | (string & {})
644
+ export type BreakInside = "auto" | "avoid" | "avoid-page" | "avoid-column" | "avoid-region" | Globals | (string & {})
645
+ export type CaptionSide = "top" | "bottom" | Globals | (string & {})
646
+ export type CaretColor = "auto" | TColor | Globals | (string & {})
647
+ export type CaretShape = "auto" | "bar" | "block" | "underscore" | Globals | (string & {})
648
+ export type Clear = "none" | "left" | "right" | "both" | "inline-start" | "inline-end" | Globals | (string & {})
649
+ export type ClipPath = TClipSource | TBasicShape | TGeometryBox | "none" | Globals | (string & {})
650
+ export type ClipRule = "nonzero" | "evenodd" | Globals | (string & {})
651
+ export type Color = TColor | Globals | (string & {})
652
+ export type ColorInterpolationFilters = "auto" | "sRGB" | "linearRGB" | Globals | (string & {})
653
+ export type ColorScheme = "normal" | "light" | "dark" | (string & {}) | "only" | Globals | (string & {})
654
+ export type ColumnCount = number | "auto" | Globals | (string & {})
655
+ export type ColumnFill = "auto" | "balance" | Globals | (string & {})
656
+ export type ColumnGap = "normal" | TLengthPercentage | Globals | (string & {})
657
+ export type ColumnRuleColor = TColor | Globals | (string & {})
658
+ export type ColumnRuleStyle = BorderStyle | Globals | (string & {})
659
+ export type ColumnRuleWidth = BorderWidth | Globals | (string & {})
660
+ export type ColumnSpan = "none" | "all" | Globals | (string & {})
661
+ export type ColumnWidth = "auto" | Globals | (string & {})
662
+ export type Contain = "none" | "strict" | "content" | "size" | "inline-size" | "layout" | "style" | "paint" | Globals | (string & {})
663
+ export type ContainIntrinsicBlockSize = "auto" | "none" | Globals | (string & {})
664
+ export type ContainIntrinsicHeight = "auto" | "none" | Globals | (string & {})
665
+ export type ContainIntrinsicInlineSize = "auto" | "none" | Globals | (string & {})
666
+ export type ContainIntrinsicWidth = "auto" | "none" | Globals | (string & {})
667
+ export type ContainerName = "none" | (string & {}) | Globals | (string & {})
668
+ export type ContainerType = "normal" | "size" | "inline-size" | "scroll-state" | Globals | (string & {})
669
+ export type Content = "normal" | "none" | TContentReplacement | TContentList | (string & {}) | TCounter | Globals | (string & {})
670
+ export type ContentVisibility = "visible" | "auto" | "hidden" | Globals | (string & {})
671
+ export type CounterIncrement = TCounterName | number | "none" | Globals | (string & {})
672
+ export type CounterReset = TCounterName | number | TReversedCounterName | number | "none" | Globals | (string & {})
673
+ export type CounterSet = TCounterName | number | "none" | Globals | (string & {})
674
+ export type Cursor = TCursorPredefined | Globals | (string & {})
675
+ export type Cx = number | Globals | (string & {})
676
+ export type Cy = number | Globals | (string & {})
677
+ export type D = "none" | (string & {}) | Globals | (string & {})
678
+ export type Direction = "ltr" | "rtl" | Globals | (string & {})
679
+ export type Display = TDisplayOutside | TDisplayInside | TDisplayListitem | TDisplayInternal | TDisplayBox | TDisplayLegacy | Globals | (string & {})
680
+ export type DominantBaseline = "auto" | "text-bottom" | "alphabetic" | "ideographic" | "middle" | "central" | "mathematical" | "hanging" | "text-top" | Globals | (string & {})
681
+ export type EmptyCells = "show" | "hide" | Globals | (string & {})
682
+ export type Fill = TPaint | Globals | (string & {})
683
+ export type FillOpacity = Opacity | Globals | (string & {})
684
+ export type FillRule = "nonzero" | "evenodd" | Globals | (string & {})
685
+ export type Filter = "none" | TFilterValueList | Globals | (string & {})
686
+ export type FlexBasis = "content" | Width | Globals | (string & {})
687
+ export type FlexDirection = "row" | "row-reverse" | "column" | "column-reverse" | Globals | (string & {})
688
+ export type FlexGrow = number | Globals | (string & {})
689
+ export type FlexShrink = number | Globals | (string & {})
690
+ export type FlexWrap = "nowrap" | "wrap" | "wrap-reverse" | Globals | (string & {})
691
+ export type Float = "left" | "right" | "none" | "inline-start" | "inline-end" | Globals | (string & {})
692
+ export type FloodColor = TColor | Globals | (string & {})
693
+ export type FloodOpacity = Opacity | Globals | (string & {})
694
+ export type FontFamily = TFamilyName | TGenericFamily | Globals | (string & {})
695
+ export type FontFeatureSettings = "normal" | TFeatureTagValue | Globals | (string & {})
696
+ export type FontKerning = "auto" | "normal" | "none" | Globals | (string & {})
697
+ export type FontLanguageOverride = "normal" | (string & {}) | Globals | (string & {})
698
+ export type FontOpticalSizing = "auto" | "none" | Globals | (string & {})
699
+ export type FontPalette = "normal" | "light" | "dark" | TPaletteIdentifier | Globals | (string & {})
700
+ export type FontSize = TAbsoluteSize | TRelativeSize | TLengthPercentage | "math" | Globals | (string & {})
701
+ export type FontSizeAdjust = "none" | "ex-height" | "cap-height" | "ch-width" | "ic-width" | "ic-height" | "from-font" | number | Globals | (string & {})
702
+ export type FontStyle = "normal" | "italic" | "oblique" | Globals | (string & {})
703
+ export type FontSynthesis = "none" | "weight" | "style" | "small-caps" | "position" | Globals | (string & {})
704
+ export type FontSynthesisSmallCaps = "auto" | "none" | Globals | (string & {})
705
+ export type FontSynthesisStyle = "auto" | "none" | Globals | (string & {})
706
+ export type FontSynthesisWeight = "auto" | "none" | Globals | (string & {})
707
+ export type FontVariant = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues | TFeatureValueName | "historical-forms" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby" | Globals | (string & {})
708
+ export type FontVariantAlternates = "normal" | TFeatureValueName | "historical-forms" | Globals | (string & {})
709
+ export type FontVariantCaps = "normal" | "small-caps" | "all-small-caps" | "petite-caps" | "all-petite-caps" | "unicase" | "titling-caps" | Globals | (string & {})
710
+ export type FontVariantEastAsian = "normal" | TEastAsianVariantValues | TEastAsianWidthValues | "ruby" | Globals | (string & {})
711
+ export type FontVariantEmoji = "normal" | "text" | "emoji" | "unicode" | Globals | (string & {})
712
+ export type FontVariantLigatures = "normal" | "none" | TCommonLigValues | TDiscretionaryLigValues | THistoricalLigValues | TContextualAltValues | Globals | (string & {})
713
+ export type FontVariantNumeric = "normal" | TNumericFigureValues | TNumericSpacingValues | TNumericFractionValues | "ordinal" | "slashed-zero" | Globals | (string & {})
714
+ export type FontVariantPosition = "normal" | "sub" | "super" | Globals | (string & {})
715
+ export type FontVariationSettings = "normal" | (string & {}) | number | Globals | (string & {})
716
+ export type FontWeight = TFontWeightAbsolute | "bolder" | "lighter" | Globals | (string & {})
717
+ export type ForcedColorAdjust = "auto" | "none" | "preserve-parent-color" | Globals | (string & {})
718
+ export type GridAutoColumns = TTrackSize | Globals | (string & {})
719
+ export type GridAutoFlow = "row" | "column" | "dense" | Globals | (string & {})
720
+ export type GridAutoRows = TTrackSize | Globals | (string & {})
721
+ export type GridColumnEnd = TGridLine | Globals | (string & {})
722
+ export type GridColumnStart = TGridLine | Globals | (string & {})
723
+ export type GridRowEnd = TGridLine | Globals | (string & {})
724
+ export type GridRowStart = TGridLine | Globals | (string & {})
725
+ export type GridTemplateAreas = "none" | (string & {}) | Globals | (string & {})
726
+ export type GridTemplateColumns = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList | Globals | (string & {})
727
+ export type GridTemplateRows = "none" | TTrackList | TAutoTrackList | "subgrid" | TLineNameList | Globals | (string & {})
728
+ export type HangingPunctuation = "none" | "first" | "force-end" | "allow-end" | "last" | Globals | (string & {})
729
+ export type Height = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
730
+ export type HyphenateCharacter = "auto" | (string & {}) | Globals | (string & {})
731
+ export type HyphenateLimitChars = "auto" | number | Globals | (string & {})
732
+ export type Hyphens = "none" | "manual" | "auto" | Globals | (string & {})
733
+ export type ImageOrientation = "from-image" | "flip" | Globals | (string & {})
734
+ export type ImageRendering = "auto" | "crisp-edges" | "pixelated" | "smooth" | Globals | (string & {})
735
+ export type InitialLetter = "normal" | number | Globals | (string & {})
736
+ export type InlineSize = Width | Globals | (string & {})
737
+ export type InsetBlockEnd = Top | Globals | (string & {})
738
+ export type InsetBlockStart = Top | Globals | (string & {})
739
+ export type InsetInlineEnd = Top | Globals | (string & {})
740
+ export type InsetInlineStart = Top | Globals | (string & {})
741
+ export type Isolation = "auto" | "isolate" | Globals | (string & {})
742
+ export type JustifyContent = "normal" | TContentDistribution | TOverflowPosition | TContentPosition | "left" | "right" | Globals | (string & {})
743
+ export type JustifyItems = "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "legacy" | "legacy" | "left" | "right" | "center" | "anchor-center" | Globals | (string & {})
744
+ export type JustifySelf = "auto" | "normal" | "stretch" | TBaselinePosition | TOverflowPosition | TSelfPosition | "left" | "right" | "anchor-center" | Globals | (string & {})
745
+ export type Left = "auto" | TLengthPercentage | Globals | (string & {})
746
+ export type LetterSpacing = "normal" | Globals | (string & {})
747
+ export type LightingColor = TColor | Globals | (string & {})
748
+ export type LineBreak = "auto" | "loose" | "normal" | "strict" | "anywhere" | Globals | (string & {})
749
+ export type LineClamp = "none" | number | Globals | (string & {})
750
+ export type LineHeight = "normal" | number | Globals | (string & {})
751
+ export type ListStyleImage = TImage | "none" | Globals | (string & {})
752
+ export type ListStylePosition = "inside" | "outside" | Globals | (string & {})
753
+ export type ListStyleType = TCounterStyle | (string & {}) | "none" | Globals | (string & {})
754
+ export type MarginBlockEnd = MarginTop | Globals | (string & {})
755
+ export type MarginBlockStart = MarginTop | Globals | (string & {})
756
+ export type MarginBottom = TLengthPercentage | "auto" | Globals | (string & {})
757
+ export type MarginInlineEnd = MarginTop | Globals | (string & {})
758
+ export type MarginInlineStart = MarginTop | Globals | (string & {})
759
+ export type MarginLeft = TLengthPercentage | "auto" | Globals | (string & {})
760
+ export type MarginRight = TLengthPercentage | "auto" | Globals | (string & {})
761
+ export type MarginTop = TLengthPercentage | "auto" | Globals | (string & {})
762
+ export type Marker = "none" | Globals | (string & {})
763
+ export type MarkerEnd = "none" | Globals | (string & {})
764
+ export type MarkerMid = "none" | Globals | (string & {})
765
+ export type MarkerStart = "none" | Globals | (string & {})
766
+ export type MaskBorderMode = "luminance" | "alpha" | Globals | (string & {})
767
+ export type MaskBorderOutset = number | Globals | (string & {})
768
+ export type MaskBorderRepeat = "stretch" | "repeat" | "round" | "space" | Globals | (string & {})
769
+ export type MaskBorderSlice = TNumberPercentage | "fill" | Globals | (string & {})
770
+ export type MaskBorderSource = "none" | TImage | Globals | (string & {})
771
+ export type MaskBorderWidth = TLengthPercentage | number | "auto" | Globals | (string & {})
772
+ export type MaskClip = TCoordBox | "no-clip" | Globals | (string & {})
773
+ export type MaskComposite = TCompositingOperator | Globals | (string & {})
774
+ export type MaskImage = TMaskReference | Globals | (string & {})
775
+ export type MaskMode = TMaskingMode | Globals | (string & {})
776
+ export type MaskOrigin = TCoordBox | Globals | (string & {})
777
+ export type MaskPosition = TPosition | Globals | (string & {})
778
+ export type MaskRepeat = TRepeatStyle | Globals | (string & {})
779
+ export type MaskSize = TBgSize | Globals | (string & {})
780
+ export type MaskType = "luminance" | "alpha" | Globals | (string & {})
781
+ export type MathDepth = "auto-add" | number | Globals | (string & {})
782
+ export type MathStyle = "normal" | "compact" | Globals | (string & {})
783
+ export type MaxBlockSize = MaxWidth | Globals | (string & {})
784
+ export type MaxHeight = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
785
+ export type MaxInlineSize = MaxWidth | Globals | (string & {})
786
+ export type MaxWidth = "none" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
787
+ export type MinBlockSize = MinWidth | Globals | (string & {})
788
+ export type MinHeight = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
789
+ export type MinInlineSize = MinWidth | Globals | (string & {})
790
+ export type MinWidth = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
791
+ export type MixBlendMode = TBlendMode | "plus-darker" | "plus-lighter" | Globals | (string & {})
792
+ export type ObjectFit = "fill" | "contain" | "cover" | "none" | "scale-down" | Globals | (string & {})
793
+ export type ObjectPosition = TPosition | Globals | (string & {})
794
+ export type OffsetAnchor = "auto" | TPosition | Globals | (string & {})
795
+ export type OffsetDistance = TLengthPercentage | Globals | (string & {})
796
+ export type OffsetPath = "none" | TOffsetPath | TCoordBox | Globals | (string & {})
797
+ export type OffsetPosition = "normal" | "auto" | TPosition | Globals | (string & {})
798
+ export type OffsetRotate = "auto" | "reverse" | Globals | (string & {})
799
+ export type Opacity = TOpacityValue | Globals | (string & {})
800
+ export type Order = number | Globals | (string & {})
801
+ export type Orphans = number | Globals | (string & {})
802
+ export type OutlineColor = "auto" | TColor | Globals | (string & {})
803
+ export type OutlineOffset = (string & {}) | Globals | (string & {})
804
+ export type OutlineStyle = "auto" | TOutlineLineStyle | Globals | (string & {})
805
+ export type OutlineWidth = TLineWidth | Globals | (string & {})
806
+ export type OverflowAnchor = "auto" | "none" | Globals | (string & {})
807
+ export type OverflowBlock = "visible" | "hidden" | "clip" | "scroll" | "auto" | Globals | (string & {})
808
+ export type OverflowClipMargin = TVisualBox | Globals | (string & {})
809
+ export type OverflowInline = "visible" | "hidden" | "clip" | "scroll" | "auto" | Globals | (string & {})
810
+ export type OverflowWrap = "normal" | "break-word" | "anywhere" | Globals | (string & {})
811
+ export type OverflowX = "visible" | "hidden" | "clip" | "scroll" | "auto" | Globals | (string & {})
812
+ export type OverflowY = "visible" | "hidden" | "clip" | "scroll" | "auto" | Globals | (string & {})
813
+ export type OverscrollBehaviorBlock = "contain" | "none" | "auto" | Globals | (string & {})
814
+ export type OverscrollBehaviorInline = "contain" | "none" | "auto" | Globals | (string & {})
815
+ export type OverscrollBehaviorX = "contain" | "none" | "auto" | Globals | (string & {})
816
+ export type OverscrollBehaviorY = "contain" | "none" | "auto" | Globals | (string & {})
817
+ export type PaddingBlockEnd = PaddingTop | Globals | (string & {})
818
+ export type PaddingBlockStart = PaddingTop | Globals | (string & {})
819
+ export type PaddingBottom = TLengthPercentage | Globals | (string & {})
820
+ export type PaddingInlineEnd = PaddingTop | Globals | (string & {})
821
+ export type PaddingInlineStart = PaddingTop | Globals | (string & {})
822
+ export type PaddingLeft = TLengthPercentage | Globals | (string & {})
823
+ export type PaddingRight = TLengthPercentage | Globals | (string & {})
824
+ export type PaddingTop = TLengthPercentage | Globals | (string & {})
825
+ export type Page = "auto" | (string & {}) | Globals | (string & {})
826
+ export type PaintOrder = "normal" | "fill" | "stroke" | "markers" | Globals | (string & {})
827
+ export type Perspective = "none" | Globals | (string & {})
828
+ export type PerspectiveOrigin = TPosition | Globals | (string & {})
829
+ export type PointerEvents = "auto" | "none" | "visiblePainted" | "visibleFill" | "visibleStroke" | "visible" | "painted" | "fill" | "stroke" | "all" | "inherit" | Globals | (string & {})
830
+ export type Position = "static" | "relative" | "absolute" | "sticky" | "fixed" | Globals | (string & {})
831
+ export type PrintColorAdjust = "economy" | "exact" | Globals | (string & {})
832
+ export type Quotes = "none" | "auto" | (string & {}) | Globals | (string & {})
833
+ export type R = number | Globals | (string & {})
834
+ export type Resize = "none" | "both" | "horizontal" | "vertical" | "block" | "inline" | Globals | (string & {})
835
+ export type Right = "auto" | TLengthPercentage | Globals | (string & {})
836
+ export type Rotate = "none" | "x" | "y" | "z" | number | Globals | (string & {})
837
+ export type RowGap = "normal" | TLengthPercentage | Globals | (string & {})
838
+ export type RubyAlign = "start" | "center" | "space-between" | "space-around" | Globals | (string & {})
839
+ export type RubyOverhang = "auto" | "none" | Globals | (string & {})
840
+ export type RubyPosition = "alternate" | "over" | "under" | "inter-character" | Globals | (string & {})
841
+ export type Rx = number | Globals | (string & {})
842
+ export type Ry = number | Globals | (string & {})
843
+ export type Scale = "none" | number | Globals | (string & {})
844
+ export type ScrollBehavior = "auto" | "smooth" | Globals | (string & {})
845
+ export type ScrollMarginBlockEnd = (string & {}) | Globals | (string & {})
846
+ export type ScrollMarginBlockStart = (string & {}) | Globals | (string & {})
847
+ export type ScrollMarginBottom = (string & {}) | Globals | (string & {})
848
+ export type ScrollMarginInlineEnd = (string & {}) | Globals | (string & {})
849
+ export type ScrollMarginInlineStart = (string & {}) | Globals | (string & {})
850
+ export type ScrollMarginLeft = (string & {}) | Globals | (string & {})
851
+ export type ScrollMarginRight = (string & {}) | Globals | (string & {})
852
+ export type ScrollMarginTop = (string & {}) | Globals | (string & {})
853
+ export type ScrollPaddingBlockEnd = "auto" | TLengthPercentage | Globals | (string & {})
854
+ export type ScrollPaddingBlockStart = "auto" | TLengthPercentage | Globals | (string & {})
855
+ export type ScrollPaddingBottom = "auto" | TLengthPercentage | Globals | (string & {})
856
+ export type ScrollPaddingInlineEnd = "auto" | TLengthPercentage | Globals | (string & {})
857
+ export type ScrollPaddingInlineStart = "auto" | TLengthPercentage | Globals | (string & {})
858
+ export type ScrollPaddingLeft = "auto" | TLengthPercentage | Globals | (string & {})
859
+ export type ScrollPaddingRight = "auto" | TLengthPercentage | Globals | (string & {})
860
+ export type ScrollPaddingTop = "auto" | TLengthPercentage | Globals | (string & {})
861
+ export type ScrollSnapAlign = "none" | "start" | "end" | "center" | Globals | (string & {})
862
+ export type ScrollSnapStop = "normal" | "always" | Globals | (string & {})
863
+ export type ScrollSnapType = "none" | "x" | "y" | "block" | "inline" | "both" | "mandatory" | "proximity" | Globals | (string & {})
864
+ export type ScrollbarColor = "auto" | TColor | Globals | (string & {})
865
+ export type ScrollbarGutter = "auto" | "stable" | "both-edges" | Globals | (string & {})
866
+ export type ScrollbarWidth = "auto" | "thin" | "none" | Globals | (string & {})
867
+ export type ShapeImageThreshold = TOpacityValue | Globals | (string & {})
868
+ export type ShapeMargin = TLengthPercentage | Globals | (string & {})
869
+ export type ShapeOutside = "none" | TShapeBox | TBasicShape | TImage | Globals | (string & {})
870
+ export type ShapeRendering = "auto" | "optimizeSpeed" | "crispEdges" | "geometricPrecision" | Globals | (string & {})
871
+ export type StopColor = Color | Globals | (string & {})
872
+ export type StopOpacity = Opacity | Globals | (string & {})
873
+ export type Stroke = TPaint | Globals | (string & {})
874
+ export type StrokeDasharray = "none" | TDasharray | Globals | (string & {})
875
+ export type StrokeDashoffset = TLengthPercentage | number | Globals | (string & {})
876
+ export type StrokeLinecap = "butt" | "round" | "square" | Globals | (string & {})
877
+ export type StrokeLinejoin = "miter" | "miter-clip" | "round" | "bevel" | "arcs" | Globals | (string & {})
878
+ export type StrokeMiterlimit = number | Globals | (string & {})
879
+ export type StrokeOpacity = Opacity | Globals | (string & {})
880
+ export type StrokeWidth = TLengthPercentage | number | Globals | (string & {})
881
+ export type TabSize = number | Globals | (string & {})
882
+ export type TableLayout = "auto" | "fixed" | Globals | (string & {})
883
+ export type TextAlign = "start" | "end" | "left" | "right" | "center" | "justify" | "match-parent" | Globals | (string & {})
884
+ export type TextAlignLast = "auto" | "start" | "end" | "left" | "right" | "center" | "justify" | Globals | (string & {})
885
+ export type TextAnchor = "start" | "middle" | "end" | Globals | (string & {})
886
+ export type TextAutospace = "normal" | "auto" | Globals | (string & {})
887
+ export type TextBox = "normal" | TextBoxTrim | TextBoxEdge | Globals | (string & {})
888
+ export type TextBoxEdge = "auto" | TTextEdge | Globals | (string & {})
889
+ export type TextBoxTrim = "none" | "trim-start" | "trim-end" | "trim-both" | Globals | (string & {})
890
+ export type TextCombineUpright = "none" | "all" | "digits" | number | Globals | (string & {})
891
+ export type TextDecorationColor = TColor | Globals | (string & {})
892
+ export type TextDecorationLine = "none" | "underline" | "overline" | "line-through" | "blink" | "spelling-error" | "grammar-error" | Globals | (string & {})
893
+ export type TextDecorationSkipInk = "auto" | "all" | "none" | Globals | (string & {})
894
+ export type TextDecorationStyle = "solid" | "double" | "dotted" | "dashed" | "wavy" | Globals | (string & {})
895
+ export type TextDecorationThickness = "auto" | "from-font" | number | Globals | (string & {})
896
+ export type TextEmphasisColor = TColor | Globals | (string & {})
897
+ export type TextEmphasisPosition = "auto" | "over" | "under" | "right" | "left" | Globals | (string & {})
898
+ export type TextEmphasisStyle = "none" | "filled" | "open" | "dot" | "circle" | "double-circle" | "triangle" | "sesame" | (string & {}) | Globals | (string & {})
899
+ export type TextIndent = TLengthPercentage | "hanging" | "each-line" | Globals | (string & {})
900
+ export type TextJustify = "auto" | "inter-character" | "inter-word" | "none" | Globals | (string & {})
901
+ export type TextOrientation = "mixed" | "upright" | "sideways" | Globals | (string & {})
902
+ export type TextOverflow = "clip" | "ellipsis" | (string & {}) | Globals | (string & {})
903
+ export type TextRendering = "auto" | "optimizeSpeed" | "optimizeLegibility" | "geometricPrecision" | Globals | (string & {})
904
+ export type TextShadow = "none" | TShadowT | Globals | (string & {})
905
+ export type TextTransform = "none" | "capitalize" | "uppercase" | "lowercase" | "full-width" | "full-size-kana" | "math-auto" | Globals | (string & {})
906
+ export type TextUnderlineOffset = "auto" | number | Globals | (string & {})
907
+ export type TextUnderlinePosition = "auto" | "from-font" | "under" | "left" | "right" | Globals | (string & {})
908
+ export type TextWrapMode = "wrap" | "nowrap" | Globals | (string & {})
909
+ export type TextWrapStyle = "auto" | "balance" | "stable" | "pretty" | Globals | (string & {})
910
+ export type Top = "auto" | TLengthPercentage | Globals | (string & {})
911
+ export type TouchAction = "auto" | "none" | "pan-x" | "pan-left" | "pan-right" | "pan-y" | "pan-up" | "pan-down" | "pinch-zoom" | "manipulation" | Globals | (string & {})
912
+ export type Transform = "none" | TTransformList | Globals | (string & {})
913
+ export type TransformBox = "content-box" | "border-box" | "fill-box" | "stroke-box" | "view-box" | Globals | (string & {})
914
+ export type TransformOrigin = TLengthPercentage | "left" | "center" | "right" | "top" | "bottom" | TLengthPercentage | "left" | "center" | "right" | TLengthPercentage | "top" | "center" | "bottom" | Globals | (string & {})
915
+ export type TransformStyle = "flat" | "preserve-3d" | Globals | (string & {})
916
+ export type TransitionBehavior = TTransitionBehaviorValue | Globals | (string & {})
917
+ export type TransitionDelay = (string & {}) | Globals | (string & {})
918
+ export type TransitionDuration = (string & {}) | Globals | (string & {})
919
+ export type TransitionProperty = "none" | TSingleTransitionProperty | Globals | (string & {})
920
+ export type TransitionTimingFunction = TEasingFunction | Globals | (string & {})
921
+ export type Translate = "none" | TLengthPercentage | Globals | (string & {})
922
+ export type UnicodeBidi = "normal" | "embed" | "isolate" | "bidi-override" | "isolate-override" | "plaintext" | Globals | (string & {})
923
+ export type UserSelect = "auto" | "text" | "none" | "all" | Globals | (string & {})
924
+ export type VectorEffect = "none" | "non-scaling-stroke" | "non-scaling-size" | "non-rotation" | "fixed-position" | Globals | (string & {})
925
+ export type VerticalAlign = "baseline" | "sub" | "super" | "text-top" | "text-bottom" | "middle" | "top" | "bottom" | number | Globals | (string & {})
926
+ export type ViewTransitionClass = "none" | (string & {}) | Globals | (string & {})
927
+ export type ViewTransitionName = "none" | (string & {}) | "match-element" | Globals | (string & {})
928
+ export type Visibility = "visible" | "hidden" | "collapse" | Globals | (string & {})
929
+ export type WhiteSpace = "normal" | "pre" | "pre-wrap" | "pre-line" | WhiteSpaceCollapse | TextWrapMode | Globals | (string & {})
930
+ export type WhiteSpaceCollapse = "collapse" | "preserve" | "preserve-breaks" | "preserve-spaces" | "break-spaces" | Globals | (string & {})
931
+ export type Widows = number | Globals | (string & {})
932
+ export type Width = "auto" | TLengthPercentage | "min-content" | "max-content" | "fit-content" | Globals | (string & {})
933
+ export type WillChange = "auto" | TAnimateableFeature | Globals | (string & {})
934
+ export type WordBreak = "normal" | "break-all" | "keep-all" | "break-word" | "auto-phrase" | Globals | (string & {})
935
+ export type WordSpacing = "normal" | Globals | (string & {})
936
+ export type WordWrap = "normal" | "break-word" | Globals | (string & {})
937
+ export type WritingMode = "horizontal-tb" | "vertical-rl" | "vertical-lr" | "sideways-rl" | "sideways-lr" | Globals | (string & {})
938
+ export type X = number | Globals | (string & {})
939
+ export type Y = number | Globals | (string & {})
940
+ export type ZIndex = "auto" | number | Globals | (string & {})
941
+ export type Zoom = "normal" | "reset" | number | Globals | (string & {})
942
+ export type Animation = TSingleAnimation | Globals | (string & {})
943
+ export type Background = TBgLayer | TFinalBgLayer | Globals | (string & {})
944
+ export type BackgroundPosition = TBgPosition | Globals | (string & {})
945
+ export type Border = TLineWidth | TLineStyle | TColor | Globals | (string & {})
946
+ export type BorderBlock = BorderBlockStart | Globals | (string & {})
947
+ export type BorderBlockEnd = BorderTopWidth | BorderTopStyle | TColor | Globals | (string & {})
948
+ export type BorderBlockStart = BorderTopWidth | BorderTopStyle | TColor | Globals | (string & {})
949
+ export type BorderBottom = TLineWidth | TLineStyle | TColor | Globals | (string & {})
950
+ export type BorderColor = TColor | Globals | (string & {})
951
+ export type BorderImage = BorderImageSource | BorderImageSlice | BorderImageWidth | BorderImageWidth | BorderImageOutset | BorderImageRepeat | Globals | (string & {})
952
+ export type BorderInline = BorderBlockStart | Globals | (string & {})
953
+ export type BorderInlineEnd = BorderTopWidth | BorderTopStyle | TColor | Globals | (string & {})
954
+ export type BorderInlineStart = BorderTopWidth | BorderTopStyle | TColor | Globals | (string & {})
955
+ export type BorderLeft = TLineWidth | TLineStyle | TColor | Globals | (string & {})
956
+ export type BorderRadius = TLengthPercentage | Globals | (string & {})
957
+ export type BorderRight = TLineWidth | TLineStyle | TColor | Globals | (string & {})
958
+ export type BorderStyle = TLineStyle | Globals | (string & {})
959
+ export type BorderTop = TLineWidth | TLineStyle | TColor | Globals | (string & {})
960
+ export type BorderWidth = TLineWidth | Globals | (string & {})
961
+ export type Caret = CaretColor | CaretShape | Globals | (string & {})
962
+ export type ColumnRule = ColumnRuleWidth | ColumnRuleStyle | ColumnRuleColor | Globals | (string & {})
963
+ export type Columns = ColumnWidth | ColumnCount | Globals | (string & {})
964
+ export type ContainIntrinsicSize = "auto" | "none" | Globals | (string & {})
965
+ export type Container = ContainerName | ContainerType | Globals | (string & {})
966
+ export type Flex = "none" | FlexGrow | FlexShrink | FlexBasis | Globals | (string & {})
967
+ export type FlexFlow = FlexDirection | FlexWrap | Globals | (string & {})
968
+ export type Font = FontStyle | TFontVariantCss2 | FontWeight | TFontWidthCss3 | FontSize | LineHeight | FontFamily | TSystemFamilyName | Globals | (string & {})
969
+ export type Gap = RowGap | ColumnGap | Globals | (string & {})
970
+ export type Grid = GridTemplate | GridTemplateRows | "auto-flow" | "dense" | GridAutoColumns | "auto-flow" | "dense" | GridAutoRows | GridTemplateColumns | Globals | (string & {})
971
+ export type GridArea = TGridLine | Globals | (string & {})
972
+ export type GridColumn = TGridLine | Globals | (string & {})
973
+ export type GridRow = TGridLine | Globals | (string & {})
974
+ export type GridTemplate = "none" | GridTemplateRows | GridTemplateColumns | TLineNames | (string & {}) | TTrackSize | TExplicitTrackList | Globals | (string & {})
975
+ export type Inset = Top | Globals | (string & {})
976
+ export type InsetBlock = Top | Globals | (string & {})
977
+ export type InsetInline = Top | Globals | (string & {})
978
+ export type ListStyle = ListStyleType | ListStylePosition | ListStyleImage | Globals | (string & {})
979
+ export type Margin = MarginTop | Globals | (string & {})
980
+ export type MarginBlock = MarginTop | Globals | (string & {})
981
+ export type MarginInline = MarginTop | Globals | (string & {})
982
+ export type Mask = TMaskLayer | Globals | (string & {})
983
+ export type MaskBorder = MaskBorderSource | MaskBorderSlice | MaskBorderWidth | MaskBorderOutset | MaskBorderRepeat | MaskBorderMode | Globals | (string & {})
984
+ export type Offset = OffsetPosition | OffsetPath | OffsetDistance | OffsetRotate | OffsetAnchor | Globals | (string & {})
985
+ export type Outline = OutlineWidth | OutlineStyle | OutlineColor | Globals | (string & {})
986
+ export type Overflow = "visible" | "hidden" | "clip" | "scroll" | "auto" | Globals | (string & {})
987
+ export type OverscrollBehavior = "contain" | "none" | "auto" | Globals | (string & {})
988
+ export type Padding = PaddingTop | Globals | (string & {})
989
+ export type PaddingBlock = PaddingTop | Globals | (string & {})
990
+ export type PaddingInline = PaddingTop | Globals | (string & {})
991
+ export type PlaceContent = AlignContent | JustifyContent | Globals | (string & {})
992
+ export type PlaceItems = AlignItems | JustifyItems | Globals | (string & {})
993
+ export type PlaceSelf = AlignSelf | JustifySelf | Globals | (string & {})
994
+ export type ScrollMargin = (string & {}) | Globals | (string & {})
995
+ export type ScrollMarginBlock = (string & {}) | Globals | (string & {})
996
+ export type ScrollMarginInline = (string & {}) | Globals | (string & {})
997
+ export type ScrollPadding = "auto" | TLengthPercentage | Globals | (string & {})
998
+ export type ScrollPaddingBlock = "auto" | TLengthPercentage | Globals | (string & {})
999
+ export type ScrollPaddingInline = "auto" | TLengthPercentage | Globals | (string & {})
1000
+ export type TextDecoration = TextDecorationLine | TextDecorationStyle | TextDecorationColor | TextDecorationThickness | Globals | (string & {})
1001
+ export type TextEmphasis = TextEmphasisStyle | TextEmphasisColor | Globals | (string & {})
1002
+ export type TextWrap = TextWrapMode | TextWrapStyle | Globals | (string & {})
1003
+ export type Transition = TSingleTransition | Globals | (string & {})
1004
+ export type MsAccelerator = "false" | "true" | Globals | (string & {})
1005
+ export type MsBlockProgression = "tb" | "rl" | "bt" | "lr" | Globals | (string & {})
1006
+ export type MsContentZoomChaining = "none" | "chained" | Globals | (string & {})
1007
+ export type MsContentZoomLimitMax = number | Globals | (string & {})
1008
+ export type MsContentZoomLimitMin = number | Globals | (string & {})
1009
+ export type MsContentZoomSnapPoints = number | Globals | (string & {})
1010
+ export type MsContentZoomSnapType = "none" | "proximity" | "mandatory" | Globals | (string & {})
1011
+ export type MsContentZooming = "none" | "zoom" | Globals | (string & {})
1012
+ export type MsFilter = (string & {}) | Globals | (string & {})
1013
+ export type MsFlowFrom = "none" | (string & {}) | Globals | (string & {})
1014
+ export type MsFlowInto = "none" | (string & {}) | Globals | (string & {})
1015
+ export type MsGridColumns = "none" | TTrackList | TAutoTrackList | Globals | (string & {})
1016
+ export type MsGridRows = "none" | TTrackList | TAutoTrackList | Globals | (string & {})
1017
+ export type MsHighContrastAdjust = "auto" | "none" | Globals | (string & {})
1018
+ export type MsHyphenateLimitChars = "auto" | number | Globals | (string & {})
1019
+ export type MsHyphenateLimitLines = "no-limit" | number | Globals | (string & {})
1020
+ export type MsHyphenateLimitZone = number | Globals | (string & {})
1021
+ export type MsImeAlign = "auto" | "after" | Globals | (string & {})
1022
+ export type MsOverflowStyle = "auto" | "none" | "scrollbar" | "-ms-autohiding-scrollbar" | Globals | (string & {})
1023
+ export type MsScrollChaining = "chained" | "none" | Globals | (string & {})
1024
+ export type MsScrollLimitXMax = "auto" | Globals | (string & {})
1025
+ export type MsScrollLimitXMin = (string & {}) | Globals | (string & {})
1026
+ export type MsScrollLimitYMax = "auto" | Globals | (string & {})
1027
+ export type MsScrollLimitYMin = (string & {}) | Globals | (string & {})
1028
+ export type MsScrollRails = "none" | "railed" | Globals | (string & {})
1029
+ export type MsScrollSnapPointsX = TLengthPercentage | Globals | (string & {})
1030
+ export type MsScrollSnapPointsY = TLengthPercentage | Globals | (string & {})
1031
+ export type MsScrollSnapType = "none" | "proximity" | "mandatory" | Globals | (string & {})
1032
+ export type MsScrollTranslation = "none" | "vertical-to-horizontal" | Globals | (string & {})
1033
+ export type MsScrollbar3dlightColor = TColor | Globals | (string & {})
1034
+ export type MsScrollbarArrowColor = TColor | Globals | (string & {})
1035
+ export type MsScrollbarBaseColor = TColor | Globals | (string & {})
1036
+ export type MsScrollbarDarkshadowColor = TColor | Globals | (string & {})
1037
+ export type MsScrollbarFaceColor = TColor | Globals | (string & {})
1038
+ export type MsScrollbarHighlightColor = TColor | Globals | (string & {})
1039
+ export type MsScrollbarShadowColor = TColor | Globals | (string & {})
1040
+ export type MsScrollbarTrackColor = TColor | Globals | (string & {})
1041
+ export type MsTextAutospace = "none" | "ideograph-alpha" | "ideograph-numeric" | "ideograph-parenthesis" | "ideograph-space" | Globals | (string & {})
1042
+ export type MsTouchSelect = "grippers" | "none" | Globals | (string & {})
1043
+ export type MsUserSelect = "none" | "element" | "text" | Globals | (string & {})
1044
+ export type MsWrapFlow = "auto" | "both" | "start" | "end" | "maximum" | "clear" | Globals | (string & {})
1045
+ export type MsWrapMargin = (string & {}) | Globals | (string & {})
1046
+ export type MsWrapThrough = "wrap" | "none" | Globals | (string & {})
1047
+ export type MozAppearance = "none" | "button" | "button-arrow-down" | "button-arrow-next" | "button-arrow-previous" | "button-arrow-up" | "button-bevel" | "button-focus" | "caret" | "checkbox" | "checkbox-container" | "checkbox-label" | "checkmenuitem" | "dualbutton" | "groupbox" | "listbox" | "listitem" | "menuarrow" | "menubar" | "menucheckbox" | "menuimage" | "menuitem" | "menuitemtext" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "menupopup" | "menuradio" | "menuseparator" | "meterbar" | "meterchunk" | "progressbar" | "progressbar-vertical" | "progresschunk" | "progresschunk-vertical" | "radio" | "radio-container" | "radio-label" | "radiomenuitem" | "range" | "range-thumb" | "resizer" | "resizerpanel" | "scale-horizontal" | "scalethumbend" | "scalethumb-horizontal" | "scalethumbstart" | "scalethumbtick" | "scalethumb-vertical" | "scale-vertical" | "scrollbarbutton-down" | "scrollbarbutton-left" | "scrollbarbutton-right" | "scrollbarbutton-up" | "scrollbarthumb-horizontal" | "scrollbarthumb-vertical" | "scrollbartrack-horizontal" | "scrollbartrack-vertical" | "searchfield" | "separator" | "sheet" | "spinner" | "spinner-downbutton" | "spinner-textfield" | "spinner-upbutton" | "splitter" | "statusbar" | "statusbarpanel" | "tab" | "tabpanel" | "tabpanels" | "tab-scroll-arrow-back" | "tab-scroll-arrow-forward" | "textfield" | "textfield-multiline" | "toolbar" | "toolbarbutton" | "toolbarbutton-dropdown" | "toolbargripper" | "toolbox" | "tooltip" | "treeheader" | "treeheadercell" | "treeheadersortarrow" | "treeitem" | "treeline" | "treetwisty" | "treetwistyopen" | "treeview" | "-moz-mac-unified-toolbar" | "-moz-win-borderless-glass" | "-moz-win-browsertabbar-toolbox" | "-moz-win-communicationstext" | "-moz-win-communications-toolbox" | "-moz-win-exclude-glass" | "-moz-win-glass" | "-moz-win-mediatext" | "-moz-win-media-toolbox" | "-moz-window-button-box" | "-moz-window-button-box-maximized" | "-moz-window-button-close" | "-moz-window-button-maximize" | "-moz-window-button-minimize" | "-moz-window-button-restore" | "-moz-window-frame-bottom" | "-moz-window-frame-left" | "-moz-window-frame-right" | "-moz-window-titlebar" | "-moz-window-titlebar-maximized" | Globals | (string & {})
1048
+ export type MozBinding = "none" | Globals | (string & {})
1049
+ export type MozBorderBottomColors = TColor | "none" | Globals | (string & {})
1050
+ export type MozBorderLeftColors = TColor | "none" | Globals | (string & {})
1051
+ export type MozBorderRightColors = TColor | "none" | Globals | (string & {})
1052
+ export type MozBorderTopColors = TColor | "none" | Globals | (string & {})
1053
+ export type MozContextProperties = "none" | "fill" | "fill-opacity" | "stroke" | "stroke-opacity" | Globals | (string & {})
1054
+ export type MozFloatEdge = "border-box" | "content-box" | "margin-box" | "padding-box" | Globals | (string & {})
1055
+ export type MozForceBrokenImageIcon = "0" | "1" | Globals | (string & {})
1056
+ export type MozOrient = "inline" | "block" | "horizontal" | "vertical" | Globals | (string & {})
1057
+ export type MozOutlineRadiusBottomleft = TOutlineRadius | Globals | (string & {})
1058
+ export type MozOutlineRadiusBottomright = TOutlineRadius | Globals | (string & {})
1059
+ export type MozOutlineRadiusTopleft = TOutlineRadius | Globals | (string & {})
1060
+ export type MozOutlineRadiusTopright = TOutlineRadius | Globals | (string & {})
1061
+ export type MozStackSizing = "ignore" | "stretch-to-fit" | Globals | (string & {})
1062
+ export type MozTextBlink = "none" | "blink" | Globals | (string & {})
1063
+ export type MozUserFocus = "ignore" | "normal" | "select-after" | "select-before" | "select-menu" | "select-same" | "select-all" | "none" | Globals | (string & {})
1064
+ export type MozUserInput = "auto" | "none" | "enabled" | "disabled" | Globals | (string & {})
1065
+ export type MozUserModify = "read-only" | "read-write" | "write-only" | Globals | (string & {})
1066
+ export type MozWindowDragging = "drag" | "no-drag" | Globals | (string & {})
1067
+ export type MozWindowShadow = "default" | "menu" | "tooltip" | "sheet" | "none" | Globals | (string & {})
1068
+ export type WebkitAppearance = "none" | "button" | "button-bevel" | "caret" | "checkbox" | "default-button" | "inner-spin-button" | "listbox" | "listitem" | "media-controls-background" | "media-controls-fullscreen-background" | "media-current-time-display" | "media-enter-fullscreen-button" | "media-exit-fullscreen-button" | "media-fullscreen-button" | "media-mute-button" | "media-overlay-play-button" | "media-play-button" | "media-seek-back-button" | "media-seek-forward-button" | "media-slider" | "media-sliderthumb" | "media-time-remaining-display" | "media-toggle-closed-captions-button" | "media-volume-slider" | "media-volume-slider-container" | "media-volume-sliderthumb" | "menulist" | "menulist-button" | "menulist-text" | "menulist-textfield" | "meter" | "progress-bar" | "progress-bar-value" | "push-button" | "radio" | "searchfield" | "searchfield-cancel-button" | "searchfield-decoration" | "searchfield-results-button" | "searchfield-results-decoration" | "slider-horizontal" | "slider-vertical" | "sliderthumb-horizontal" | "sliderthumb-vertical" | "square-button" | "textarea" | "textfield" | "-apple-pay-button" | Globals | (string & {})
1069
+ export type WebkitBorderBeforeColor = TColor | Globals | (string & {})
1070
+ export type WebkitBorderBeforeStyle = BorderStyle | Globals | (string & {})
1071
+ export type WebkitBorderBeforeWidth = BorderWidth | Globals | (string & {})
1072
+ export type WebkitBoxReflect = "above" | "below" | "right" | "left" | TImage | Globals | (string & {})
1073
+ export type WebkitLineClamp = "none" | number | Globals | (string & {})
1074
+ export type WebkitMaskAttachment = TAttachment | Globals | (string & {})
1075
+ export type WebkitMaskClip = TCoordBox | "no-clip" | "border" | "padding" | "content" | "text" | Globals | (string & {})
1076
+ export type WebkitMaskComposite = TCompositeStyle | Globals | (string & {})
1077
+ export type WebkitMaskImage = TMaskReference | Globals | (string & {})
1078
+ export type WebkitMaskOrigin = TCoordBox | "border" | "padding" | "content" | Globals | (string & {})
1079
+ export type WebkitMaskPosition = TPosition | Globals | (string & {})
1080
+ export type WebkitMaskPositionX = TLengthPercentage | "left" | "center" | "right" | Globals | (string & {})
1081
+ export type WebkitMaskPositionY = TLengthPercentage | "top" | "center" | "bottom" | Globals | (string & {})
1082
+ export type WebkitMaskRepeat = TRepeatStyle | Globals | (string & {})
1083
+ export type WebkitMaskRepeatX = "repeat" | "no-repeat" | "space" | "round" | Globals | (string & {})
1084
+ export type WebkitMaskRepeatY = "repeat" | "no-repeat" | "space" | "round" | Globals | (string & {})
1085
+ export type WebkitMaskSize = TBgSize | Globals | (string & {})
1086
+ export type WebkitOverflowScrolling = "auto" | "touch" | Globals | (string & {})
1087
+ export type WebkitTapHighlightColor = TColor | Globals | (string & {})
1088
+ export type WebkitTextFillColor = TColor | Globals | (string & {})
1089
+ export type WebkitTextStrokeColor = TColor | Globals | (string & {})
1090
+ export type WebkitTextStrokeWidth = (string & {}) | Globals | (string & {})
1091
+ export type WebkitTouchCallout = "default" | "none" | Globals | (string & {})
1092
+ export type WebkitUserModify = "read-only" | "read-write" | "read-write-plaintext-only" | Globals | (string & {})
1093
+ export type WebkitUserSelect = "auto" | "text" | "none" | "all" | Globals | (string & {})
1094
+ export type MsContentZoomLimit = MsContentZoomLimitMin | MsContentZoomLimitMax | Globals | (string & {})
1095
+ export type MsContentZoomSnap = MsContentZoomSnapType | MsContentZoomSnapPoints | Globals | (string & {})
1096
+ export type MsScrollLimit = MsScrollLimitXMin | MsScrollLimitYMin | MsScrollLimitXMax | MsScrollLimitYMax | Globals | (string & {})
1097
+ export type MsScrollSnapX = MsScrollSnapType | MsScrollSnapPointsX | Globals | (string & {})
1098
+ export type MsScrollSnapY = MsScrollSnapType | MsScrollSnapPointsY | Globals | (string & {})
1099
+ export type MozOutlineRadius = TOutlineRadius | Globals | (string & {})
1100
+ export type WebkitBorderBefore = BorderWidth | BorderStyle | TColor | Globals | (string & {})
1101
+ export type WebkitMask = TMaskReference | TPosition | TBgSize | TRepeatStyle | TVisualBox | "border" | "padding" | "content" | "text" | TVisualBox | "border" | "padding" | "content" | Globals | (string & {})
1102
+ export type WebkitTextStroke = TColor | Globals | (string & {})
1099
1103
  }
1100
1104
  export type TAbsoluteSize = "xx-small" | "x-small" | "small" | "medium" | "large" | "x-large" | "xx-large" | "xxx-large";
1101
1105
  export type TAlphaValue = number;