csstype-extra 0.1.12 → 0.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -3
- package/src/index.d.ts +3896 -705
package/src/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// biome-ignore lint/suspicious/noEmptyInterface: gen
|
|
2
|
-
export interface CustomColors{}
|
|
3
|
-
export as namespace CSS
|
|
2
|
+
export interface CustomColors {}
|
|
3
|
+
export as namespace CSS
|
|
4
4
|
export interface StandardLonghandProperties {
|
|
5
5
|
accentColor?: Property.AccentColor | undefined
|
|
6
6
|
alignContent?: Property.AlignContent | undefined
|
|
@@ -85,14 +85,30 @@ export interface StandardLonghandProperties {
|
|
|
85
85
|
borderTopStyle?: Property.BorderTopStyle | undefined
|
|
86
86
|
borderTopWidth?: Property.BorderTopWidth | undefined
|
|
87
87
|
bottom?: Property.Bottom | undefined
|
|
88
|
+
WebkitBoxAlign?: Property.WebkitBoxAlign | undefined
|
|
89
|
+
MozBoxAlign?: Property.MozBoxAlign | undefined
|
|
88
90
|
boxAlign?: Property.BoxAlign | undefined
|
|
89
91
|
boxDecorationBreak?: Property.BoxDecorationBreak | undefined
|
|
92
|
+
WebkitBoxDirection?: Property.WebkitBoxDirection | undefined
|
|
93
|
+
MozBoxDirection?: Property.MozBoxDirection | undefined
|
|
90
94
|
boxDirection?: Property.BoxDirection | undefined
|
|
95
|
+
WebkitBoxFlex?: Property.WebkitBoxFlex | undefined
|
|
96
|
+
MozBoxFlex?: Property.MozBoxFlex | undefined
|
|
91
97
|
boxFlex?: Property.BoxFlex | undefined
|
|
98
|
+
WebkitBoxFlexGroup?: Property.WebkitBoxFlexGroup | undefined
|
|
99
|
+
MozBoxFlexGroup?: Property.MozBoxFlexGroup | undefined
|
|
92
100
|
boxFlexGroup?: Property.BoxFlexGroup | undefined
|
|
101
|
+
WebkitBoxLines?: Property.WebkitBoxLines | undefined
|
|
102
|
+
MozBoxLines?: Property.MozBoxLines | undefined
|
|
93
103
|
boxLines?: Property.BoxLines | undefined
|
|
104
|
+
WebkitBoxOrdinalGroup?: Property.WebkitBoxOrdinalGroup | undefined
|
|
105
|
+
MozBoxOrdinalGroup?: Property.MozBoxOrdinalGroup | undefined
|
|
94
106
|
boxOrdinalGroup?: Property.BoxOrdinalGroup | undefined
|
|
107
|
+
WebkitBoxOrient?: Property.WebkitBoxOrient | undefined
|
|
108
|
+
MozBoxOrient?: Property.MozBoxOrient | undefined
|
|
95
109
|
boxOrient?: Property.BoxOrient | undefined
|
|
110
|
+
WebkitBoxPack?: Property.WebkitBoxPack | undefined
|
|
111
|
+
MozBoxPack?: Property.MozBoxPack | undefined
|
|
96
112
|
boxPack?: Property.BoxPack | undefined
|
|
97
113
|
boxShadow?: Property.BoxShadow | undefined
|
|
98
114
|
boxSizing?: Property.BoxSizing | undefined
|
|
@@ -281,6 +297,7 @@ export interface StandardLonghandProperties {
|
|
|
281
297
|
outlineWidth?: Property.OutlineWidth | undefined
|
|
282
298
|
overflowAnchor?: Property.OverflowAnchor | undefined
|
|
283
299
|
overflowBlock?: Property.OverflowBlock | undefined
|
|
300
|
+
MozOverflowClipBox?: Property.MozOverflowClipBox | undefined
|
|
284
301
|
overflowClipBox?: Property.OverflowClipBox | undefined
|
|
285
302
|
overflowClipMargin?: Property.OverflowClipMargin | undefined
|
|
286
303
|
overflowInline?: Property.OverflowInline | undefined
|
|
@@ -617,83 +634,453 @@ export interface VendorShorthandProperties {
|
|
|
617
634
|
WebkitMask?: Property.WebkitMask | undefined
|
|
618
635
|
WebkitTextStroke?: Property.WebkitTextStroke | undefined
|
|
619
636
|
}
|
|
620
|
-
export type AtRules =
|
|
621
|
-
|
|
622
|
-
|
|
637
|
+
export type AtRules =
|
|
638
|
+
| '@charset'
|
|
639
|
+
| '@counter-style'
|
|
640
|
+
| '@container'
|
|
641
|
+
| '@document'
|
|
642
|
+
| '@font-face'
|
|
643
|
+
| '@font-feature-values'
|
|
644
|
+
| '@font-palette-values'
|
|
645
|
+
| '@import'
|
|
646
|
+
| '@keyframes'
|
|
647
|
+
| '@layer'
|
|
648
|
+
| '@media'
|
|
649
|
+
| '@namespace'
|
|
650
|
+
| '@page'
|
|
651
|
+
| '@position-try'
|
|
652
|
+
| '@property'
|
|
653
|
+
| '@scope'
|
|
654
|
+
| '@starting-style'
|
|
655
|
+
| '@supports'
|
|
656
|
+
| '@view-transition'
|
|
657
|
+
export type AdvancedPseudos =
|
|
658
|
+
| ':active-view-transition-type()'
|
|
659
|
+
| ':dir()'
|
|
660
|
+
| ':has()'
|
|
661
|
+
| ':host()'
|
|
662
|
+
| ':host-context()'
|
|
663
|
+
| ':is()'
|
|
664
|
+
| ':lang()'
|
|
665
|
+
| ':not()'
|
|
666
|
+
| ':nth-child()'
|
|
667
|
+
| ':nth-last-child()'
|
|
668
|
+
| ':nth-last-of-type()'
|
|
669
|
+
| ':nth-of-type()'
|
|
670
|
+
| ':state()'
|
|
671
|
+
| ':where()'
|
|
672
|
+
| '::cue()'
|
|
673
|
+
| '::cue-region()'
|
|
674
|
+
| '::highlight()'
|
|
675
|
+
| '::part()'
|
|
676
|
+
| '::picker()'
|
|
677
|
+
| '::slotted()'
|
|
678
|
+
| '::view-transition-group()'
|
|
679
|
+
| '::view-transition-image-pair()'
|
|
680
|
+
| '::view-transition-new()'
|
|
681
|
+
| '::view-transition-old()'
|
|
682
|
+
export type SimplePseudos =
|
|
683
|
+
| 'Type selectors'
|
|
684
|
+
| 'Class selectors'
|
|
685
|
+
| 'ID selectors'
|
|
686
|
+
| 'Universal selectors'
|
|
687
|
+
| 'Attribute selectors'
|
|
688
|
+
| 'Nesting selector'
|
|
689
|
+
| 'Selector list'
|
|
690
|
+
| 'Next-sibling combinator'
|
|
691
|
+
| 'Subsequent-sibling combinator'
|
|
692
|
+
| 'Child combinator'
|
|
693
|
+
| 'Descendant combinator'
|
|
694
|
+
| 'Column combinator'
|
|
695
|
+
| 'Namespace separator'
|
|
696
|
+
| 'Pseudo-classes'
|
|
697
|
+
| 'Pseudo-elements'
|
|
698
|
+
| ':active'
|
|
699
|
+
| ':active-view-transition'
|
|
700
|
+
| ':any-link'
|
|
701
|
+
| ':autofill'
|
|
702
|
+
| ':blank'
|
|
703
|
+
| ':buffering'
|
|
704
|
+
| ':checked'
|
|
705
|
+
| ':current'
|
|
706
|
+
| ':default'
|
|
707
|
+
| ':defined'
|
|
708
|
+
| ':disabled'
|
|
709
|
+
| ':empty'
|
|
710
|
+
| ':enabled'
|
|
711
|
+
| ':first'
|
|
712
|
+
| ':first-child'
|
|
713
|
+
| ':first-of-type'
|
|
714
|
+
| ':focus'
|
|
715
|
+
| ':focus-visible'
|
|
716
|
+
| ':focus-within'
|
|
717
|
+
| ':fullscreen'
|
|
718
|
+
| ':future'
|
|
719
|
+
| ':has-slotted'
|
|
720
|
+
| ':host'
|
|
721
|
+
| ':hover'
|
|
722
|
+
| ':in-range'
|
|
723
|
+
| ':indeterminate'
|
|
724
|
+
| ':invalid'
|
|
725
|
+
| ':last-child'
|
|
726
|
+
| ':last-of-type'
|
|
727
|
+
| ':left'
|
|
728
|
+
| ':link'
|
|
729
|
+
| ':local-link'
|
|
730
|
+
| ':modal'
|
|
731
|
+
| ':muted'
|
|
732
|
+
| ':only-child'
|
|
733
|
+
| ':only-of-type'
|
|
734
|
+
| ':open'
|
|
735
|
+
| ':optional'
|
|
736
|
+
| ':out-of-range'
|
|
737
|
+
| ':past'
|
|
738
|
+
| ':paused'
|
|
739
|
+
| ':picture-in-picture'
|
|
740
|
+
| ':placeholder-shown'
|
|
741
|
+
| ':playing'
|
|
742
|
+
| ':popover-open'
|
|
743
|
+
| ':read-only'
|
|
744
|
+
| ':read-write'
|
|
745
|
+
| ':required'
|
|
746
|
+
| ':right'
|
|
747
|
+
| ':root'
|
|
748
|
+
| ':scope'
|
|
749
|
+
| ':seeking'
|
|
750
|
+
| ':stalled'
|
|
751
|
+
| ':target'
|
|
752
|
+
| ':target-current'
|
|
753
|
+
| ':target-within'
|
|
754
|
+
| ':user-invalid'
|
|
755
|
+
| ':user-valid'
|
|
756
|
+
| ':valid'
|
|
757
|
+
| ':visited'
|
|
758
|
+
| ':volume-locked'
|
|
759
|
+
| ':xr-overlay'
|
|
760
|
+
| '::-ms-browse'
|
|
761
|
+
| '::-ms-check'
|
|
762
|
+
| '::-ms-clear'
|
|
763
|
+
| '::-ms-expand'
|
|
764
|
+
| '::-ms-fill'
|
|
765
|
+
| '::-ms-fill-lower'
|
|
766
|
+
| '::-ms-fill-upper'
|
|
767
|
+
| '::-ms-reveal'
|
|
768
|
+
| '::-ms-thumb'
|
|
769
|
+
| '::-ms-ticks-after'
|
|
770
|
+
| '::-ms-ticks-before'
|
|
771
|
+
| '::-ms-tooltip'
|
|
772
|
+
| '::-ms-track'
|
|
773
|
+
| '::-ms-value'
|
|
774
|
+
| '::-moz-progress-bar'
|
|
775
|
+
| '::-moz-range-progress'
|
|
776
|
+
| '::-moz-range-thumb'
|
|
777
|
+
| '::-moz-range-track'
|
|
778
|
+
| '::-webkit-progress-bar'
|
|
779
|
+
| '::-webkit-progress-inner-value'
|
|
780
|
+
| '::-webkit-progress-value'
|
|
781
|
+
| '::-webkit-slider-runnable-track'
|
|
782
|
+
| '::-webkit-slider-thumb'
|
|
783
|
+
| '::after'
|
|
784
|
+
| '::backdrop'
|
|
785
|
+
| '::before'
|
|
786
|
+
| '::checkmark'
|
|
787
|
+
| '::cue'
|
|
788
|
+
| '::cue-region'
|
|
789
|
+
| '::details-content'
|
|
790
|
+
| '::file-selector-button'
|
|
791
|
+
| '::first-letter'
|
|
792
|
+
| '::first-line'
|
|
793
|
+
| '::grammar-error'
|
|
794
|
+
| '::marker'
|
|
795
|
+
| '::picker-icon'
|
|
796
|
+
| '::placeholder'
|
|
797
|
+
| '::scroll-marker'
|
|
798
|
+
| '::scroll-marker-group'
|
|
799
|
+
| '::selection'
|
|
800
|
+
| '::spelling-error'
|
|
801
|
+
| '::target-text'
|
|
802
|
+
| '::view-transition'
|
|
623
803
|
export type Pseudos = AdvancedPseudos | SimplePseudos
|
|
624
|
-
export interface StandardProperties
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
export
|
|
804
|
+
export interface StandardProperties
|
|
805
|
+
extends StandardLonghandProperties,
|
|
806
|
+
StandardShorthandProperties {}
|
|
807
|
+
export interface VendorProperties
|
|
808
|
+
extends VendorLonghandProperties,
|
|
809
|
+
VendorShorthandProperties {}
|
|
810
|
+
export interface Properties extends StandardProperties, VendorProperties {}
|
|
811
|
+
export type Globals =
|
|
812
|
+
| '-moz-initial'
|
|
813
|
+
| 'inherit'
|
|
814
|
+
| 'initial'
|
|
815
|
+
| 'revert'
|
|
816
|
+
| 'revert-layer'
|
|
817
|
+
| 'unset'
|
|
628
818
|
export namespace Property {
|
|
629
|
-
export type AccentColor =
|
|
630
|
-
export type AlignContent =
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
export type
|
|
819
|
+
export type AccentColor = 'auto' | TColor | Globals | (string & {})
|
|
820
|
+
export type AlignContent =
|
|
821
|
+
| 'normal'
|
|
822
|
+
| TBaselinePosition
|
|
823
|
+
| TContentDistribution
|
|
824
|
+
| TOverflowPosition
|
|
825
|
+
| TContentPosition
|
|
826
|
+
| Globals
|
|
827
|
+
| (string & {})
|
|
828
|
+
export type AlignItems =
|
|
829
|
+
| 'normal'
|
|
830
|
+
| 'stretch'
|
|
831
|
+
| TBaselinePosition
|
|
832
|
+
| TOverflowPosition
|
|
833
|
+
| TSelfPosition
|
|
834
|
+
| 'anchor-center'
|
|
835
|
+
| Globals
|
|
836
|
+
| (string & {})
|
|
837
|
+
export type AlignSelf =
|
|
838
|
+
| 'auto'
|
|
839
|
+
| 'normal'
|
|
840
|
+
| 'stretch'
|
|
841
|
+
| TBaselinePosition
|
|
842
|
+
| TOverflowPosition
|
|
843
|
+
| TSelfPosition
|
|
844
|
+
| 'anchor-center'
|
|
845
|
+
| Globals
|
|
846
|
+
| (string & {})
|
|
847
|
+
export type AlignTracks =
|
|
848
|
+
| 'normal'
|
|
849
|
+
| TBaselinePosition
|
|
850
|
+
| TContentDistribution
|
|
851
|
+
| TOverflowPosition
|
|
852
|
+
| TContentPosition
|
|
853
|
+
| Globals
|
|
854
|
+
| (string & {})
|
|
855
|
+
export type AlignmentBaseline =
|
|
856
|
+
| 'baseline'
|
|
857
|
+
| 'alphabetic'
|
|
858
|
+
| 'ideographic'
|
|
859
|
+
| 'middle'
|
|
860
|
+
| 'central'
|
|
861
|
+
| 'mathematical'
|
|
862
|
+
| 'text-before-edge'
|
|
863
|
+
| 'text-after-edge'
|
|
864
|
+
| Globals
|
|
865
|
+
| (string & {})
|
|
866
|
+
export type All =
|
|
867
|
+
| 'initial'
|
|
868
|
+
| 'inherit'
|
|
869
|
+
| 'unset'
|
|
870
|
+
| 'revert'
|
|
871
|
+
| 'revert-layer'
|
|
872
|
+
| Globals
|
|
873
|
+
| (string & {})
|
|
874
|
+
export type AnchorName = 'none' | Globals | (string & {})
|
|
875
|
+
export type AnchorScope = 'none' | 'all' | Globals | (string & {})
|
|
876
|
+
export type AnimationComposition =
|
|
877
|
+
| TSingleAnimationComposition
|
|
878
|
+
| Globals
|
|
879
|
+
| (string & {})
|
|
639
880
|
export type AnimationDelay = Globals | (string & {})
|
|
640
|
-
export type AnimationDirection =
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
export type
|
|
645
|
-
export type
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
export type
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
export type
|
|
881
|
+
export type AnimationDirection =
|
|
882
|
+
| TSingleAnimationDirection
|
|
883
|
+
| Globals
|
|
884
|
+
| (string & {})
|
|
885
|
+
export type AnimationDuration = 'auto' | Globals | (string & {})
|
|
886
|
+
export type AnimationFillMode =
|
|
887
|
+
| TSingleAnimationFillMode
|
|
888
|
+
| Globals
|
|
889
|
+
| (string & {})
|
|
890
|
+
export type AnimationIterationCount =
|
|
891
|
+
| TSingleAnimationIterationCount
|
|
892
|
+
| Globals
|
|
893
|
+
| (string & {})
|
|
894
|
+
export type AnimationName = 'none' | TKeyframesName | Globals | (string & {})
|
|
895
|
+
export type AnimationPlayState =
|
|
896
|
+
| TSingleAnimationPlayState
|
|
897
|
+
| Globals
|
|
898
|
+
| (string & {})
|
|
899
|
+
export type AnimationRangeEnd =
|
|
900
|
+
| 'normal'
|
|
901
|
+
| TLengthPercentage
|
|
902
|
+
| TTimelineRangeName
|
|
903
|
+
| TLengthPercentage
|
|
904
|
+
| Globals
|
|
905
|
+
| (string & {})
|
|
906
|
+
export type AnimationRangeStart =
|
|
907
|
+
| 'normal'
|
|
908
|
+
| TLengthPercentage
|
|
909
|
+
| TTimelineRangeName
|
|
910
|
+
| TLengthPercentage
|
|
911
|
+
| Globals
|
|
912
|
+
| (string & {})
|
|
913
|
+
export type AnimationTimeline =
|
|
914
|
+
| TSingleAnimationTimeline
|
|
915
|
+
| Globals
|
|
916
|
+
| (string & {})
|
|
917
|
+
export type AnimationTimingFunction =
|
|
918
|
+
| TEasingFunction
|
|
919
|
+
| Globals
|
|
920
|
+
| (string & {})
|
|
921
|
+
export type Appearance =
|
|
922
|
+
| 'none'
|
|
923
|
+
| 'auto'
|
|
924
|
+
| TCompatAuto
|
|
925
|
+
| TCompatSpecial
|
|
926
|
+
| Globals
|
|
927
|
+
| (string & {})
|
|
928
|
+
export type AspectRatio = 'auto' | TRatio | Globals | (string & {})
|
|
929
|
+
export type BackdropFilter =
|
|
930
|
+
| 'none'
|
|
931
|
+
| TFilterValueList
|
|
932
|
+
| Globals
|
|
933
|
+
| (string & {})
|
|
934
|
+
export type BackfaceVisibility =
|
|
935
|
+
| 'visible'
|
|
936
|
+
| 'hidden'
|
|
937
|
+
| Globals
|
|
938
|
+
| (string & {})
|
|
654
939
|
export type BackgroundAttachment = TAttachment | Globals | (string & {})
|
|
655
940
|
export type BackgroundBlendMode = TBlendMode | Globals | (string & {})
|
|
656
941
|
export type BackgroundClip = TBgClip | Globals | (string & {})
|
|
657
942
|
export type BackgroundColor = TColor | Globals | (string & {})
|
|
658
943
|
export type BackgroundImage = TBgImage | Globals | (string & {})
|
|
659
944
|
export type BackgroundOrigin = TVisualBox | Globals | (string & {})
|
|
660
|
-
export type BackgroundPositionX =
|
|
661
|
-
|
|
945
|
+
export type BackgroundPositionX =
|
|
946
|
+
| 'center'
|
|
947
|
+
| 'left'
|
|
948
|
+
| 'right'
|
|
949
|
+
| 'x-start'
|
|
950
|
+
| 'x-end'
|
|
951
|
+
| TLengthPercentage
|
|
952
|
+
| Globals
|
|
953
|
+
| (string & {})
|
|
954
|
+
export type BackgroundPositionY =
|
|
955
|
+
| 'center'
|
|
956
|
+
| 'top'
|
|
957
|
+
| 'bottom'
|
|
958
|
+
| 'y-start'
|
|
959
|
+
| 'y-end'
|
|
960
|
+
| TLengthPercentage
|
|
961
|
+
| Globals
|
|
962
|
+
| (string & {})
|
|
662
963
|
export type BackgroundRepeat = TRepeatStyle | Globals | (string & {})
|
|
663
964
|
export type BackgroundSize = TBgSize | Globals | (string & {})
|
|
664
|
-
export type BaselineShift =
|
|
965
|
+
export type BaselineShift =
|
|
966
|
+
| TLengthPercentage
|
|
967
|
+
| 'sub'
|
|
968
|
+
| 'super'
|
|
969
|
+
| 'baseline'
|
|
970
|
+
| Globals
|
|
971
|
+
| (string & {})
|
|
665
972
|
export type BlockSize = Property.Width | Globals | (string & {})
|
|
666
|
-
export type BorderBlockColor =
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
export type
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
export type
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
973
|
+
export type BorderBlockColor =
|
|
974
|
+
| Property.BorderTopColor
|
|
975
|
+
| Globals
|
|
976
|
+
| (string & {})
|
|
977
|
+
export type BorderBlockEndColor =
|
|
978
|
+
| Property.BorderTopColor
|
|
979
|
+
| Globals
|
|
980
|
+
| (string & {})
|
|
981
|
+
export type BorderBlockEndStyle =
|
|
982
|
+
| Property.BorderTopStyle
|
|
983
|
+
| Globals
|
|
984
|
+
| (string & {})
|
|
985
|
+
export type BorderBlockEndWidth =
|
|
986
|
+
| Property.BorderTopWidth
|
|
987
|
+
| Globals
|
|
988
|
+
| (string & {})
|
|
989
|
+
export type BorderBlockStartColor =
|
|
990
|
+
| Property.BorderTopColor
|
|
991
|
+
| Globals
|
|
992
|
+
| (string & {})
|
|
993
|
+
export type BorderBlockStartStyle =
|
|
994
|
+
| Property.BorderTopStyle
|
|
995
|
+
| Globals
|
|
996
|
+
| (string & {})
|
|
997
|
+
export type BorderBlockStartWidth =
|
|
998
|
+
| Property.BorderTopWidth
|
|
999
|
+
| Globals
|
|
1000
|
+
| (string & {})
|
|
1001
|
+
export type BorderBlockStyle =
|
|
1002
|
+
| Property.BorderTopStyle
|
|
1003
|
+
| Globals
|
|
1004
|
+
| (string & {})
|
|
1005
|
+
export type BorderBlockWidth =
|
|
1006
|
+
| Property.BorderTopWidth
|
|
1007
|
+
| Globals
|
|
1008
|
+
| (string & {})
|
|
1009
|
+
export type BorderBottomColor =
|
|
1010
|
+
| Property.BorderTopColor
|
|
1011
|
+
| Globals
|
|
1012
|
+
| (string & {})
|
|
1013
|
+
export type BorderBottomLeftRadius =
|
|
1014
|
+
| TLengthPercentage
|
|
1015
|
+
| Globals
|
|
1016
|
+
| (string & {})
|
|
1017
|
+
export type BorderBottomRightRadius =
|
|
1018
|
+
| TLengthPercentage
|
|
1019
|
+
| Globals
|
|
1020
|
+
| (string & {})
|
|
678
1021
|
export type BorderBottomStyle = TLineStyle | Globals | (string & {})
|
|
679
1022
|
export type BorderBottomWidth = TLineWidth | Globals | (string & {})
|
|
680
|
-
export type BorderCollapse =
|
|
681
|
-
export type BorderEndEndRadius =
|
|
682
|
-
|
|
1023
|
+
export type BorderCollapse = 'separate' | 'collapse' | Globals | (string & {})
|
|
1024
|
+
export type BorderEndEndRadius =
|
|
1025
|
+
| Property.BorderTopLeftRadius
|
|
1026
|
+
| Globals
|
|
1027
|
+
| (string & {})
|
|
1028
|
+
export type BorderEndStartRadius =
|
|
1029
|
+
| Property.BorderTopLeftRadius
|
|
1030
|
+
| Globals
|
|
1031
|
+
| (string & {})
|
|
683
1032
|
export type BorderImageOutset = number | Globals | (string & {})
|
|
684
|
-
export type BorderImageRepeat =
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
export type
|
|
692
|
-
export type
|
|
693
|
-
export type
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
1033
|
+
export type BorderImageRepeat =
|
|
1034
|
+
| 'stretch'
|
|
1035
|
+
| 'repeat'
|
|
1036
|
+
| 'round'
|
|
1037
|
+
| 'space'
|
|
1038
|
+
| Globals
|
|
1039
|
+
| (string & {})
|
|
1040
|
+
export type BorderImageSlice = number | 'fill' | Globals | (string & {})
|
|
1041
|
+
export type BorderImageSource = 'none' | TImage | Globals | (string & {})
|
|
1042
|
+
export type BorderImageWidth =
|
|
1043
|
+
| TLengthPercentage
|
|
1044
|
+
| number
|
|
1045
|
+
| 'auto'
|
|
1046
|
+
| Globals
|
|
1047
|
+
| (string & {})
|
|
1048
|
+
export type BorderInlineColor =
|
|
1049
|
+
| Property.BorderTopColor
|
|
1050
|
+
| Globals
|
|
1051
|
+
| (string & {})
|
|
1052
|
+
export type BorderInlineEndColor =
|
|
1053
|
+
| Property.BorderTopColor
|
|
1054
|
+
| Globals
|
|
1055
|
+
| (string & {})
|
|
1056
|
+
export type BorderInlineEndStyle =
|
|
1057
|
+
| Property.BorderTopStyle
|
|
1058
|
+
| Globals
|
|
1059
|
+
| (string & {})
|
|
1060
|
+
export type BorderInlineEndWidth =
|
|
1061
|
+
| Property.BorderTopWidth
|
|
1062
|
+
| Globals
|
|
1063
|
+
| (string & {})
|
|
1064
|
+
export type BorderInlineStartColor =
|
|
1065
|
+
| Property.BorderTopColor
|
|
1066
|
+
| Globals
|
|
1067
|
+
| (string & {})
|
|
1068
|
+
export type BorderInlineStartStyle =
|
|
1069
|
+
| Property.BorderTopStyle
|
|
1070
|
+
| Globals
|
|
1071
|
+
| (string & {})
|
|
1072
|
+
export type BorderInlineStartWidth =
|
|
1073
|
+
| Property.BorderTopWidth
|
|
1074
|
+
| Globals
|
|
1075
|
+
| (string & {})
|
|
1076
|
+
export type BorderInlineStyle =
|
|
1077
|
+
| Property.BorderTopStyle
|
|
1078
|
+
| Globals
|
|
1079
|
+
| (string & {})
|
|
1080
|
+
export type BorderInlineWidth =
|
|
1081
|
+
| Property.BorderTopWidth
|
|
1082
|
+
| Globals
|
|
1083
|
+
| (string & {})
|
|
697
1084
|
export type BorderLeftColor = TColor | Globals | (string & {})
|
|
698
1085
|
export type BorderLeftStyle = TLineStyle | Globals | (string & {})
|
|
699
1086
|
export type BorderLeftWidth = TLineWidth | Globals | (string & {})
|
|
@@ -701,109 +1088,535 @@ export namespace Property {
|
|
|
701
1088
|
export type BorderRightStyle = TLineStyle | Globals | (string & {})
|
|
702
1089
|
export type BorderRightWidth = TLineWidth | Globals | (string & {})
|
|
703
1090
|
export type BorderSpacing = number | Globals | (string & {})
|
|
704
|
-
export type BorderStartEndRadius =
|
|
705
|
-
|
|
1091
|
+
export type BorderStartEndRadius =
|
|
1092
|
+
| Property.BorderTopLeftRadius
|
|
1093
|
+
| Globals
|
|
1094
|
+
| (string & {})
|
|
1095
|
+
export type BorderStartStartRadius =
|
|
1096
|
+
| Property.BorderTopLeftRadius
|
|
1097
|
+
| Globals
|
|
1098
|
+
| (string & {})
|
|
706
1099
|
export type BorderTopColor = TColor | Globals | (string & {})
|
|
707
1100
|
export type BorderTopLeftRadius = TLengthPercentage | Globals | (string & {})
|
|
708
1101
|
export type BorderTopRightRadius = TLengthPercentage | Globals | (string & {})
|
|
709
1102
|
export type BorderTopStyle = TLineStyle | Globals | (string & {})
|
|
710
1103
|
export type BorderTopWidth = TLineWidth | Globals | (string & {})
|
|
711
|
-
export type Bottom =
|
|
712
|
-
export type
|
|
713
|
-
|
|
714
|
-
|
|
1104
|
+
export type Bottom = 'auto' | TLengthPercentage | Globals | (string & {})
|
|
1105
|
+
export type WebkitBoxAlign =
|
|
1106
|
+
| 'start'
|
|
1107
|
+
| 'center'
|
|
1108
|
+
| 'end'
|
|
1109
|
+
| 'baseline'
|
|
1110
|
+
| 'stretch'
|
|
1111
|
+
| Globals
|
|
1112
|
+
| (string & {})
|
|
1113
|
+
export type MozBoxAlign =
|
|
1114
|
+
| 'start'
|
|
1115
|
+
| 'center'
|
|
1116
|
+
| 'end'
|
|
1117
|
+
| 'baseline'
|
|
1118
|
+
| 'stretch'
|
|
1119
|
+
| Globals
|
|
1120
|
+
| (string & {})
|
|
1121
|
+
export type BoxAlign =
|
|
1122
|
+
| 'start'
|
|
1123
|
+
| 'center'
|
|
1124
|
+
| 'end'
|
|
1125
|
+
| 'baseline'
|
|
1126
|
+
| 'stretch'
|
|
1127
|
+
| Globals
|
|
1128
|
+
| (string & {})
|
|
1129
|
+
export type BoxDecorationBreak = 'slice' | 'clone' | Globals | (string & {})
|
|
1130
|
+
export type WebkitBoxDirection =
|
|
1131
|
+
| 'normal'
|
|
1132
|
+
| 'reverse'
|
|
1133
|
+
| 'inherit'
|
|
1134
|
+
| Globals
|
|
1135
|
+
| (string & {})
|
|
1136
|
+
export type MozBoxDirection =
|
|
1137
|
+
| 'normal'
|
|
1138
|
+
| 'reverse'
|
|
1139
|
+
| 'inherit'
|
|
1140
|
+
| Globals
|
|
1141
|
+
| (string & {})
|
|
1142
|
+
export type BoxDirection =
|
|
1143
|
+
| 'normal'
|
|
1144
|
+
| 'reverse'
|
|
1145
|
+
| 'inherit'
|
|
1146
|
+
| Globals
|
|
1147
|
+
| (string & {})
|
|
1148
|
+
export type WebkitBoxFlex = number | Globals | (string & {})
|
|
1149
|
+
export type MozBoxFlex = number | Globals | (string & {})
|
|
715
1150
|
export type BoxFlex = number | Globals | (string & {})
|
|
1151
|
+
export type WebkitBoxFlexGroup = number | Globals | (string & {})
|
|
1152
|
+
export type MozBoxFlexGroup = number | Globals | (string & {})
|
|
716
1153
|
export type BoxFlexGroup = number | Globals | (string & {})
|
|
717
|
-
export type
|
|
1154
|
+
export type WebkitBoxLines = 'single' | 'multiple' | Globals | (string & {})
|
|
1155
|
+
export type MozBoxLines = 'single' | 'multiple' | Globals | (string & {})
|
|
1156
|
+
export type BoxLines = 'single' | 'multiple' | Globals | (string & {})
|
|
1157
|
+
export type WebkitBoxOrdinalGroup = number | Globals | (string & {})
|
|
1158
|
+
export type MozBoxOrdinalGroup = number | Globals | (string & {})
|
|
718
1159
|
export type BoxOrdinalGroup = number | Globals | (string & {})
|
|
719
|
-
export type
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
export type
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
1160
|
+
export type WebkitBoxOrient =
|
|
1161
|
+
| 'horizontal'
|
|
1162
|
+
| 'vertical'
|
|
1163
|
+
| 'inline-axis'
|
|
1164
|
+
| 'block-axis'
|
|
1165
|
+
| 'inherit'
|
|
1166
|
+
| Globals
|
|
1167
|
+
| (string & {})
|
|
1168
|
+
export type MozBoxOrient =
|
|
1169
|
+
| 'horizontal'
|
|
1170
|
+
| 'vertical'
|
|
1171
|
+
| 'inline-axis'
|
|
1172
|
+
| 'block-axis'
|
|
1173
|
+
| 'inherit'
|
|
1174
|
+
| Globals
|
|
1175
|
+
| (string & {})
|
|
1176
|
+
export type BoxOrient =
|
|
1177
|
+
| 'horizontal'
|
|
1178
|
+
| 'vertical'
|
|
1179
|
+
| 'inline-axis'
|
|
1180
|
+
| 'block-axis'
|
|
1181
|
+
| 'inherit'
|
|
1182
|
+
| Globals
|
|
1183
|
+
| (string & {})
|
|
1184
|
+
export type WebkitBoxPack =
|
|
1185
|
+
| 'start'
|
|
1186
|
+
| 'center'
|
|
1187
|
+
| 'end'
|
|
1188
|
+
| 'justify'
|
|
1189
|
+
| Globals
|
|
1190
|
+
| (string & {})
|
|
1191
|
+
export type MozBoxPack =
|
|
1192
|
+
| 'start'
|
|
1193
|
+
| 'center'
|
|
1194
|
+
| 'end'
|
|
1195
|
+
| 'justify'
|
|
1196
|
+
| Globals
|
|
1197
|
+
| (string & {})
|
|
1198
|
+
export type BoxPack =
|
|
1199
|
+
| 'start'
|
|
1200
|
+
| 'center'
|
|
1201
|
+
| 'end'
|
|
1202
|
+
| 'justify'
|
|
1203
|
+
| Globals
|
|
1204
|
+
| (string & {})
|
|
1205
|
+
export type BoxShadow = 'none' | TShadow | Globals | (string & {})
|
|
1206
|
+
export type BoxSizing = 'content-box' | 'border-box' | Globals | (string & {})
|
|
1207
|
+
export type BreakAfter =
|
|
1208
|
+
| 'auto'
|
|
1209
|
+
| 'avoid'
|
|
1210
|
+
| 'always'
|
|
1211
|
+
| 'all'
|
|
1212
|
+
| 'avoid-page'
|
|
1213
|
+
| 'page'
|
|
1214
|
+
| 'left'
|
|
1215
|
+
| 'right'
|
|
1216
|
+
| 'recto'
|
|
1217
|
+
| 'verso'
|
|
1218
|
+
| 'avoid-column'
|
|
1219
|
+
| 'column'
|
|
1220
|
+
| 'avoid-region'
|
|
1221
|
+
| 'region'
|
|
1222
|
+
| Globals
|
|
1223
|
+
| (string & {})
|
|
1224
|
+
export type BreakBefore =
|
|
1225
|
+
| 'auto'
|
|
1226
|
+
| 'avoid'
|
|
1227
|
+
| 'always'
|
|
1228
|
+
| 'all'
|
|
1229
|
+
| 'avoid-page'
|
|
1230
|
+
| 'page'
|
|
1231
|
+
| 'left'
|
|
1232
|
+
| 'right'
|
|
1233
|
+
| 'recto'
|
|
1234
|
+
| 'verso'
|
|
1235
|
+
| 'avoid-column'
|
|
1236
|
+
| 'column'
|
|
1237
|
+
| 'avoid-region'
|
|
1238
|
+
| 'region'
|
|
1239
|
+
| Globals
|
|
1240
|
+
| (string & {})
|
|
1241
|
+
export type BreakInside =
|
|
1242
|
+
| 'auto'
|
|
1243
|
+
| 'avoid'
|
|
1244
|
+
| 'avoid-page'
|
|
1245
|
+
| 'avoid-column'
|
|
1246
|
+
| 'avoid-region'
|
|
1247
|
+
| Globals
|
|
1248
|
+
| (string & {})
|
|
1249
|
+
export type CaptionSide = 'top' | 'bottom' | Globals | (string & {})
|
|
1250
|
+
export type CaretColor = 'auto' | TColor | Globals | (string & {})
|
|
1251
|
+
export type CaretShape =
|
|
1252
|
+
| 'auto'
|
|
1253
|
+
| 'bar'
|
|
1254
|
+
| 'block'
|
|
1255
|
+
| 'underscore'
|
|
1256
|
+
| Globals
|
|
1257
|
+
| (string & {})
|
|
1258
|
+
export type Clear =
|
|
1259
|
+
| 'none'
|
|
1260
|
+
| 'left'
|
|
1261
|
+
| 'right'
|
|
1262
|
+
| 'both'
|
|
1263
|
+
| 'inline-start'
|
|
1264
|
+
| 'inline-end'
|
|
1265
|
+
| Globals
|
|
1266
|
+
| (string & {})
|
|
1267
|
+
export type Clip = TShape | 'auto' | Globals | (string & {})
|
|
1268
|
+
export type ClipPath =
|
|
1269
|
+
| TClipSource
|
|
1270
|
+
| TBasicShape
|
|
1271
|
+
| TGeometryBox
|
|
1272
|
+
| 'none'
|
|
1273
|
+
| Globals
|
|
1274
|
+
| (string & {})
|
|
1275
|
+
export type ClipRule = 'nonzero' | 'evenodd' | Globals | (string & {})
|
|
733
1276
|
export type Color = TColor | Globals | (string & {})
|
|
734
|
-
export type ColorInterpolationFilters =
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
1277
|
+
export type ColorInterpolationFilters =
|
|
1278
|
+
| 'auto'
|
|
1279
|
+
| 'sRGB'
|
|
1280
|
+
| 'linearRGB'
|
|
1281
|
+
| Globals
|
|
1282
|
+
| (string & {})
|
|
1283
|
+
export type ColorScheme =
|
|
1284
|
+
| 'normal'
|
|
1285
|
+
| 'light'
|
|
1286
|
+
| 'dark'
|
|
1287
|
+
| 'only'
|
|
1288
|
+
| Globals
|
|
1289
|
+
| (string & {})
|
|
1290
|
+
export type ColumnCount = number | 'auto' | Globals | (string & {})
|
|
1291
|
+
export type ColumnFill = 'auto' | 'balance' | Globals | (string & {})
|
|
1292
|
+
export type ColumnGap = 'normal' | TLengthPercentage | Globals | (string & {})
|
|
739
1293
|
export type ColumnRuleColor = TColor | Globals | (string & {})
|
|
740
1294
|
export type ColumnRuleStyle = Property.BorderStyle | Globals | (string & {})
|
|
741
1295
|
export type ColumnRuleWidth = Property.BorderWidth | Globals | (string & {})
|
|
742
|
-
export type ColumnSpan =
|
|
743
|
-
export type ColumnWidth = number |
|
|
744
|
-
export type Contain =
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
export type
|
|
1296
|
+
export type ColumnSpan = 'none' | 'all' | Globals | (string & {})
|
|
1297
|
+
export type ColumnWidth = number | 'auto' | Globals | (string & {})
|
|
1298
|
+
export type Contain =
|
|
1299
|
+
| 'none'
|
|
1300
|
+
| 'strict'
|
|
1301
|
+
| 'content'
|
|
1302
|
+
| 'size'
|
|
1303
|
+
| 'inline-size'
|
|
1304
|
+
| 'layout'
|
|
1305
|
+
| 'style'
|
|
1306
|
+
| 'paint'
|
|
1307
|
+
| Globals
|
|
1308
|
+
| (string & {})
|
|
1309
|
+
export type ContainIntrinsicBlockSize =
|
|
1310
|
+
| 'auto'
|
|
1311
|
+
| 'none'
|
|
1312
|
+
| number
|
|
1313
|
+
| Globals
|
|
1314
|
+
| (string & {})
|
|
1315
|
+
export type ContainIntrinsicHeight =
|
|
1316
|
+
| 'auto'
|
|
1317
|
+
| 'none'
|
|
1318
|
+
| number
|
|
1319
|
+
| Globals
|
|
1320
|
+
| (string & {})
|
|
1321
|
+
export type ContainIntrinsicInlineSize =
|
|
1322
|
+
| 'auto'
|
|
1323
|
+
| 'none'
|
|
1324
|
+
| number
|
|
1325
|
+
| Globals
|
|
1326
|
+
| (string & {})
|
|
1327
|
+
export type ContainIntrinsicWidth =
|
|
1328
|
+
| 'auto'
|
|
1329
|
+
| 'none'
|
|
1330
|
+
| number
|
|
1331
|
+
| Globals
|
|
1332
|
+
| (string & {})
|
|
1333
|
+
export type ContainerName = 'none' | Globals | (string & {})
|
|
1334
|
+
export type ContainerType =
|
|
1335
|
+
| 'normal'
|
|
1336
|
+
| 'size'
|
|
1337
|
+
| 'inline-size'
|
|
1338
|
+
| 'scroll-state'
|
|
1339
|
+
| Globals
|
|
1340
|
+
| (string & {})
|
|
1341
|
+
export type Content =
|
|
1342
|
+
| 'normal'
|
|
1343
|
+
| 'none'
|
|
1344
|
+
| TContentReplacement
|
|
1345
|
+
| TContentList
|
|
1346
|
+
| (string & {})
|
|
1347
|
+
| TCounter
|
|
1348
|
+
| Globals
|
|
1349
|
+
| (string & {})
|
|
1350
|
+
export type ContentVisibility =
|
|
1351
|
+
| 'visible'
|
|
1352
|
+
| 'auto'
|
|
1353
|
+
| 'hidden'
|
|
1354
|
+
| Globals
|
|
1355
|
+
| (string & {})
|
|
1356
|
+
export type CounterIncrement =
|
|
1357
|
+
| TCounterName
|
|
1358
|
+
| number
|
|
1359
|
+
| 'none'
|
|
1360
|
+
| Globals
|
|
1361
|
+
| (string & {})
|
|
1362
|
+
export type CounterReset =
|
|
1363
|
+
| TCounterName
|
|
1364
|
+
| number
|
|
1365
|
+
| TReversedCounterName
|
|
1366
|
+
| number
|
|
1367
|
+
| 'none'
|
|
1368
|
+
| Globals
|
|
1369
|
+
| (string & {})
|
|
1370
|
+
export type CounterSet =
|
|
1371
|
+
| TCounterName
|
|
1372
|
+
| number
|
|
1373
|
+
| 'none'
|
|
1374
|
+
| Globals
|
|
1375
|
+
| (string & {})
|
|
756
1376
|
export type Cursor = TCursorPredefined | Globals | (string & {})
|
|
757
1377
|
export type Cx = number | Globals | (string & {})
|
|
758
1378
|
export type Cy = number | Globals | (string & {})
|
|
759
|
-
export type D =
|
|
760
|
-
export type Direction =
|
|
761
|
-
export type Display =
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
1379
|
+
export type D = 'none' | (string & {}) | Globals | (string & {})
|
|
1380
|
+
export type Direction = 'ltr' | 'rtl' | Globals | (string & {})
|
|
1381
|
+
export type Display =
|
|
1382
|
+
| TDisplayOutside
|
|
1383
|
+
| TDisplayInside
|
|
1384
|
+
| TDisplayListitem
|
|
1385
|
+
| TDisplayInternal
|
|
1386
|
+
| TDisplayBox
|
|
1387
|
+
| TDisplayLegacy
|
|
1388
|
+
| Globals
|
|
1389
|
+
| (string & {})
|
|
1390
|
+
export type DominantBaseline =
|
|
1391
|
+
| 'auto'
|
|
1392
|
+
| 'text-bottom'
|
|
1393
|
+
| 'alphabetic'
|
|
1394
|
+
| 'ideographic'
|
|
1395
|
+
| 'middle'
|
|
1396
|
+
| 'central'
|
|
1397
|
+
| 'mathematical'
|
|
1398
|
+
| 'hanging'
|
|
1399
|
+
| 'text-top'
|
|
1400
|
+
| Globals
|
|
1401
|
+
| (string & {})
|
|
1402
|
+
export type EmptyCells = 'show' | 'hide' | Globals | (string & {})
|
|
1403
|
+
export type FieldSizing = 'content' | 'fixed' | Globals | (string & {})
|
|
765
1404
|
export type Fill = TPaint | Globals | (string & {})
|
|
766
1405
|
export type FillOpacity = Property.Opacity | Globals | (string & {})
|
|
767
|
-
export type FillRule =
|
|
768
|
-
export type Filter =
|
|
769
|
-
export type FlexBasis =
|
|
770
|
-
export type FlexDirection =
|
|
1406
|
+
export type FillRule = 'nonzero' | 'evenodd' | Globals | (string & {})
|
|
1407
|
+
export type Filter = 'none' | TFilterValueList | Globals | (string & {})
|
|
1408
|
+
export type FlexBasis = 'content' | Property.Width | Globals | (string & {})
|
|
1409
|
+
export type FlexDirection =
|
|
1410
|
+
| 'row'
|
|
1411
|
+
| 'row-reverse'
|
|
1412
|
+
| 'column'
|
|
1413
|
+
| 'column-reverse'
|
|
1414
|
+
| Globals
|
|
1415
|
+
| (string & {})
|
|
771
1416
|
export type FlexGrow = number | Globals | (string & {})
|
|
772
1417
|
export type FlexShrink = number | Globals | (string & {})
|
|
773
|
-
export type FlexWrap =
|
|
774
|
-
|
|
1418
|
+
export type FlexWrap =
|
|
1419
|
+
| 'nowrap'
|
|
1420
|
+
| 'wrap'
|
|
1421
|
+
| 'wrap-reverse'
|
|
1422
|
+
| Globals
|
|
1423
|
+
| (string & {})
|
|
1424
|
+
export type Float =
|
|
1425
|
+
| 'left'
|
|
1426
|
+
| 'right'
|
|
1427
|
+
| 'none'
|
|
1428
|
+
| 'inline-start'
|
|
1429
|
+
| 'inline-end'
|
|
1430
|
+
| Globals
|
|
1431
|
+
| (string & {})
|
|
775
1432
|
export type FloodColor = TColor | Globals | (string & {})
|
|
776
1433
|
export type FloodOpacity = Property.Opacity | Globals | (string & {})
|
|
777
|
-
export type FontFamily =
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
export type
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
1434
|
+
export type FontFamily =
|
|
1435
|
+
| TFamilyName
|
|
1436
|
+
| TGenericFamily
|
|
1437
|
+
| Globals
|
|
1438
|
+
| (string & {})
|
|
1439
|
+
export type FontFeatureSettings =
|
|
1440
|
+
| 'normal'
|
|
1441
|
+
| TFeatureTagValue
|
|
1442
|
+
| Globals
|
|
1443
|
+
| (string & {})
|
|
1444
|
+
export type FontKerning = 'auto' | 'normal' | 'none' | Globals | (string & {})
|
|
1445
|
+
export type FontLanguageOverride =
|
|
1446
|
+
| 'normal'
|
|
1447
|
+
| (string & {})
|
|
1448
|
+
| Globals
|
|
1449
|
+
| (string & {})
|
|
1450
|
+
export type FontOpticalSizing = 'auto' | 'none' | Globals | (string & {})
|
|
1451
|
+
export type FontPalette =
|
|
1452
|
+
| 'normal'
|
|
1453
|
+
| 'light'
|
|
1454
|
+
| 'dark'
|
|
1455
|
+
| TPaletteIdentifier
|
|
1456
|
+
| Globals
|
|
1457
|
+
| (string & {})
|
|
1458
|
+
export type FontSize =
|
|
1459
|
+
| TAbsoluteSize
|
|
1460
|
+
| TRelativeSize
|
|
1461
|
+
| TLengthPercentage
|
|
1462
|
+
| 'math'
|
|
1463
|
+
| Globals
|
|
1464
|
+
| (string & {})
|
|
1465
|
+
export type FontSizeAdjust =
|
|
1466
|
+
| 'none'
|
|
1467
|
+
| 'ex-height'
|
|
1468
|
+
| 'cap-height'
|
|
1469
|
+
| 'ch-width'
|
|
1470
|
+
| 'ic-width'
|
|
1471
|
+
| 'ic-height'
|
|
1472
|
+
| 'from-font'
|
|
1473
|
+
| number
|
|
1474
|
+
| Globals
|
|
1475
|
+
| (string & {})
|
|
1476
|
+
export type FontSmooth =
|
|
1477
|
+
| 'auto'
|
|
1478
|
+
| 'never'
|
|
1479
|
+
| 'always'
|
|
1480
|
+
| TAbsoluteSize
|
|
1481
|
+
| number
|
|
1482
|
+
| Globals
|
|
1483
|
+
| (string & {})
|
|
786
1484
|
export type FontStretch = TFontStretchAbsolute | Globals | (string & {})
|
|
787
|
-
export type FontStyle =
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
export type
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
export type
|
|
802
|
-
export type
|
|
803
|
-
export type
|
|
804
|
-
export type
|
|
1485
|
+
export type FontStyle =
|
|
1486
|
+
| 'normal'
|
|
1487
|
+
| 'italic'
|
|
1488
|
+
| 'oblique'
|
|
1489
|
+
| Globals
|
|
1490
|
+
| (string & {})
|
|
1491
|
+
export type FontSynthesis =
|
|
1492
|
+
| 'none'
|
|
1493
|
+
| 'weight'
|
|
1494
|
+
| 'style'
|
|
1495
|
+
| 'small-caps'
|
|
1496
|
+
| 'position'
|
|
1497
|
+
| Globals
|
|
1498
|
+
| (string & {})
|
|
1499
|
+
export type FontSynthesisPosition = 'auto' | 'none' | Globals | (string & {})
|
|
1500
|
+
export type FontSynthesisSmallCaps = 'auto' | 'none' | Globals | (string & {})
|
|
1501
|
+
export type FontSynthesisStyle = 'auto' | 'none' | Globals | (string & {})
|
|
1502
|
+
export type FontSynthesisWeight = 'auto' | 'none' | Globals | (string & {})
|
|
1503
|
+
export type FontVariant =
|
|
1504
|
+
| 'normal'
|
|
1505
|
+
| 'none'
|
|
1506
|
+
| TCommonLigValues
|
|
1507
|
+
| TDiscretionaryLigValues
|
|
1508
|
+
| THistoricalLigValues
|
|
1509
|
+
| TContextualAltValues
|
|
1510
|
+
| TFeatureValueName
|
|
1511
|
+
| 'historical-forms'
|
|
1512
|
+
| 'small-caps'
|
|
1513
|
+
| 'all-small-caps'
|
|
1514
|
+
| 'petite-caps'
|
|
1515
|
+
| 'all-petite-caps'
|
|
1516
|
+
| 'unicase'
|
|
1517
|
+
| 'titling-caps'
|
|
1518
|
+
| TNumericFigureValues
|
|
1519
|
+
| TNumericSpacingValues
|
|
1520
|
+
| TNumericFractionValues
|
|
1521
|
+
| 'ordinal'
|
|
1522
|
+
| 'slashed-zero'
|
|
1523
|
+
| TEastAsianVariantValues
|
|
1524
|
+
| TEastAsianWidthValues
|
|
1525
|
+
| 'ruby'
|
|
1526
|
+
| Globals
|
|
1527
|
+
| (string & {})
|
|
1528
|
+
export type FontVariantAlternates =
|
|
1529
|
+
| 'normal'
|
|
1530
|
+
| TFeatureValueName
|
|
1531
|
+
| 'historical-forms'
|
|
1532
|
+
| Globals
|
|
1533
|
+
| (string & {})
|
|
1534
|
+
export type FontVariantCaps =
|
|
1535
|
+
| 'normal'
|
|
1536
|
+
| 'small-caps'
|
|
1537
|
+
| 'all-small-caps'
|
|
1538
|
+
| 'petite-caps'
|
|
1539
|
+
| 'all-petite-caps'
|
|
1540
|
+
| 'unicase'
|
|
1541
|
+
| 'titling-caps'
|
|
1542
|
+
| Globals
|
|
1543
|
+
| (string & {})
|
|
1544
|
+
export type FontVariantEastAsian =
|
|
1545
|
+
| 'normal'
|
|
1546
|
+
| TEastAsianVariantValues
|
|
1547
|
+
| TEastAsianWidthValues
|
|
1548
|
+
| 'ruby'
|
|
1549
|
+
| Globals
|
|
1550
|
+
| (string & {})
|
|
1551
|
+
export type FontVariantEmoji =
|
|
1552
|
+
| 'normal'
|
|
1553
|
+
| 'text'
|
|
1554
|
+
| 'emoji'
|
|
1555
|
+
| 'unicode'
|
|
1556
|
+
| Globals
|
|
1557
|
+
| (string & {})
|
|
1558
|
+
export type FontVariantLigatures =
|
|
1559
|
+
| 'normal'
|
|
1560
|
+
| 'none'
|
|
1561
|
+
| TCommonLigValues
|
|
1562
|
+
| TDiscretionaryLigValues
|
|
1563
|
+
| THistoricalLigValues
|
|
1564
|
+
| TContextualAltValues
|
|
1565
|
+
| Globals
|
|
1566
|
+
| (string & {})
|
|
1567
|
+
export type FontVariantNumeric =
|
|
1568
|
+
| 'normal'
|
|
1569
|
+
| TNumericFigureValues
|
|
1570
|
+
| TNumericSpacingValues
|
|
1571
|
+
| TNumericFractionValues
|
|
1572
|
+
| 'ordinal'
|
|
1573
|
+
| 'slashed-zero'
|
|
1574
|
+
| Globals
|
|
1575
|
+
| (string & {})
|
|
1576
|
+
export type FontVariantPosition =
|
|
1577
|
+
| 'normal'
|
|
1578
|
+
| 'sub'
|
|
1579
|
+
| 'super'
|
|
1580
|
+
| Globals
|
|
1581
|
+
| (string & {})
|
|
1582
|
+
export type FontVariationSettings =
|
|
1583
|
+
| 'normal'
|
|
1584
|
+
| (string & {})
|
|
1585
|
+
| number
|
|
1586
|
+
| Globals
|
|
1587
|
+
| (string & {})
|
|
1588
|
+
export type FontWeight =
|
|
1589
|
+
| TFontWeightAbsolute
|
|
1590
|
+
| 'bolder'
|
|
1591
|
+
| 'lighter'
|
|
1592
|
+
| Globals
|
|
1593
|
+
| (string & {})
|
|
1594
|
+
export type FontWidth =
|
|
1595
|
+
| 'normal'
|
|
1596
|
+
| number
|
|
1597
|
+
| 'ultra-condensed'
|
|
1598
|
+
| 'extra-condensed'
|
|
1599
|
+
| 'condensed'
|
|
1600
|
+
| 'semi-condensed'
|
|
1601
|
+
| 'semi-expanded'
|
|
1602
|
+
| 'expanded'
|
|
1603
|
+
| 'extra-expanded'
|
|
1604
|
+
| 'ultra-expanded'
|
|
1605
|
+
| Globals
|
|
1606
|
+
| (string & {})
|
|
1607
|
+
export type ForcedColorAdjust =
|
|
1608
|
+
| 'auto'
|
|
1609
|
+
| 'none'
|
|
1610
|
+
| 'preserve-parent-color'
|
|
1611
|
+
| Globals
|
|
1612
|
+
| (string & {})
|
|
805
1613
|
export type GridAutoColumns = TTrackSize | Globals | (string & {})
|
|
806
|
-
export type GridAutoFlow =
|
|
1614
|
+
export type GridAutoFlow =
|
|
1615
|
+
| 'row'
|
|
1616
|
+
| 'column'
|
|
1617
|
+
| 'dense'
|
|
1618
|
+
| Globals
|
|
1619
|
+
| (string & {})
|
|
807
1620
|
export type GridAutoRows = TTrackSize | Globals | (string & {})
|
|
808
1621
|
export type GridColumnEnd = TGridLine | Globals | (string & {})
|
|
809
1622
|
export type GridColumnGap = TLengthPercentage | Globals | (string & {})
|
|
@@ -811,61 +1624,193 @@ export namespace Property {
|
|
|
811
1624
|
export type GridRowEnd = TGridLine | Globals | (string & {})
|
|
812
1625
|
export type GridRowGap = TLengthPercentage | Globals | (string & {})
|
|
813
1626
|
export type GridRowStart = TGridLine | Globals | (string & {})
|
|
814
|
-
export type GridTemplateAreas =
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
export type
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
export type
|
|
1627
|
+
export type GridTemplateAreas =
|
|
1628
|
+
| 'none'
|
|
1629
|
+
| (string & {})
|
|
1630
|
+
| Globals
|
|
1631
|
+
| (string & {})
|
|
1632
|
+
export type GridTemplateColumns =
|
|
1633
|
+
| 'none'
|
|
1634
|
+
| TTrackList
|
|
1635
|
+
| TAutoTrackList
|
|
1636
|
+
| 'subgrid'
|
|
1637
|
+
| TLineNameList
|
|
1638
|
+
| Globals
|
|
1639
|
+
| (string & {})
|
|
1640
|
+
export type GridTemplateRows =
|
|
1641
|
+
| 'none'
|
|
1642
|
+
| TTrackList
|
|
1643
|
+
| TAutoTrackList
|
|
1644
|
+
| 'subgrid'
|
|
1645
|
+
| TLineNameList
|
|
1646
|
+
| Globals
|
|
1647
|
+
| (string & {})
|
|
1648
|
+
export type HangingPunctuation =
|
|
1649
|
+
| 'none'
|
|
1650
|
+
| 'first'
|
|
1651
|
+
| 'force-end'
|
|
1652
|
+
| 'allow-end'
|
|
1653
|
+
| 'last'
|
|
1654
|
+
| Globals
|
|
1655
|
+
| (string & {})
|
|
1656
|
+
export type Height =
|
|
1657
|
+
| 'auto'
|
|
1658
|
+
| TLengthPercentage
|
|
1659
|
+
| 'min-content'
|
|
1660
|
+
| 'max-content'
|
|
1661
|
+
| 'fit-content'
|
|
1662
|
+
| Globals
|
|
1663
|
+
| (string & {})
|
|
1664
|
+
export type HyphenateCharacter =
|
|
1665
|
+
| 'auto'
|
|
1666
|
+
| (string & {})
|
|
1667
|
+
| Globals
|
|
1668
|
+
| (string & {})
|
|
1669
|
+
export type HyphenateLimitChars = 'auto' | number | Globals | (string & {})
|
|
1670
|
+
export type Hyphens = 'none' | 'manual' | 'auto' | Globals | (string & {})
|
|
1671
|
+
export type ImageOrientation = 'from-image' | 'flip' | Globals | (string & {})
|
|
1672
|
+
export type ImageRendering =
|
|
1673
|
+
| 'auto'
|
|
1674
|
+
| 'crisp-edges'
|
|
1675
|
+
| 'pixelated'
|
|
1676
|
+
| 'smooth'
|
|
1677
|
+
| Globals
|
|
1678
|
+
| (string & {})
|
|
1679
|
+
export type ImageResolution = 'from-image' | 'snap' | Globals | (string & {})
|
|
1680
|
+
export type ImeMode =
|
|
1681
|
+
| 'auto'
|
|
1682
|
+
| 'normal'
|
|
1683
|
+
| 'active'
|
|
1684
|
+
| 'inactive'
|
|
1685
|
+
| 'disabled'
|
|
1686
|
+
| Globals
|
|
1687
|
+
| (string & {})
|
|
1688
|
+
export type InitialLetter = 'normal' | number | Globals | (string & {})
|
|
1689
|
+
export type InitialLetterAlign =
|
|
1690
|
+
| 'auto'
|
|
1691
|
+
| 'alphabetic'
|
|
1692
|
+
| 'hanging'
|
|
1693
|
+
| 'ideographic'
|
|
1694
|
+
| Globals
|
|
1695
|
+
| (string & {})
|
|
828
1696
|
export type InlineSize = Property.Width | Globals | (string & {})
|
|
829
1697
|
export type InsetBlockEnd = Property.Top | Globals | (string & {})
|
|
830
1698
|
export type InsetBlockStart = Property.Top | Globals | (string & {})
|
|
831
1699
|
export type InsetInlineEnd = Property.Top | Globals | (string & {})
|
|
832
1700
|
export type InsetInlineStart = Property.Top | Globals | (string & {})
|
|
833
|
-
export type InterpolateSize =
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
export type
|
|
839
|
-
export type
|
|
840
|
-
|
|
1701
|
+
export type InterpolateSize =
|
|
1702
|
+
| 'numeric-only'
|
|
1703
|
+
| 'allow-keywords'
|
|
1704
|
+
| Globals
|
|
1705
|
+
| (string & {})
|
|
1706
|
+
export type Isolation = 'auto' | 'isolate' | Globals | (string & {})
|
|
1707
|
+
export type JustifyContent =
|
|
1708
|
+
| 'normal'
|
|
1709
|
+
| TContentDistribution
|
|
1710
|
+
| TOverflowPosition
|
|
1711
|
+
| TContentPosition
|
|
1712
|
+
| 'left'
|
|
1713
|
+
| 'right'
|
|
1714
|
+
| Globals
|
|
1715
|
+
| (string & {})
|
|
1716
|
+
export type JustifyItems =
|
|
1717
|
+
| 'normal'
|
|
1718
|
+
| 'stretch'
|
|
1719
|
+
| TBaselinePosition
|
|
1720
|
+
| TOverflowPosition
|
|
1721
|
+
| TSelfPosition
|
|
1722
|
+
| 'left'
|
|
1723
|
+
| 'right'
|
|
1724
|
+
| 'legacy'
|
|
1725
|
+
| 'legacy'
|
|
1726
|
+
| 'left'
|
|
1727
|
+
| 'right'
|
|
1728
|
+
| 'center'
|
|
1729
|
+
| 'anchor-center'
|
|
1730
|
+
| Globals
|
|
1731
|
+
| (string & {})
|
|
1732
|
+
export type JustifySelf =
|
|
1733
|
+
| 'auto'
|
|
1734
|
+
| 'normal'
|
|
1735
|
+
| 'stretch'
|
|
1736
|
+
| TBaselinePosition
|
|
1737
|
+
| TOverflowPosition
|
|
1738
|
+
| TSelfPosition
|
|
1739
|
+
| 'left'
|
|
1740
|
+
| 'right'
|
|
1741
|
+
| 'anchor-center'
|
|
1742
|
+
| Globals
|
|
1743
|
+
| (string & {})
|
|
1744
|
+
export type JustifyTracks =
|
|
1745
|
+
| 'normal'
|
|
1746
|
+
| TContentDistribution
|
|
1747
|
+
| TOverflowPosition
|
|
1748
|
+
| TContentPosition
|
|
1749
|
+
| 'left'
|
|
1750
|
+
| 'right'
|
|
1751
|
+
| Globals
|
|
1752
|
+
| (string & {})
|
|
1753
|
+
export type Left = 'auto' | TLengthPercentage | Globals | (string & {})
|
|
1754
|
+
export type LetterSpacing = 'normal' | number | Globals | (string & {})
|
|
841
1755
|
export type LightingColor = TColor | Globals | (string & {})
|
|
842
|
-
export type LineBreak =
|
|
843
|
-
|
|
844
|
-
|
|
1756
|
+
export type LineBreak =
|
|
1757
|
+
| 'auto'
|
|
1758
|
+
| 'loose'
|
|
1759
|
+
| 'normal'
|
|
1760
|
+
| 'strict'
|
|
1761
|
+
| 'anywhere'
|
|
1762
|
+
| Globals
|
|
1763
|
+
| (string & {})
|
|
1764
|
+
export type LineClamp = 'none' | number | Globals | (string & {})
|
|
1765
|
+
export type LineHeight = 'normal' | number | Globals | (string & {})
|
|
845
1766
|
export type LineHeightStep = number | Globals | (string & {})
|
|
846
|
-
export type ListStyleImage = TImage |
|
|
847
|
-
export type ListStylePosition =
|
|
848
|
-
export type ListStyleType =
|
|
1767
|
+
export type ListStyleImage = TImage | 'none' | Globals | (string & {})
|
|
1768
|
+
export type ListStylePosition = 'inside' | 'outside' | Globals | (string & {})
|
|
1769
|
+
export type ListStyleType =
|
|
1770
|
+
| TCounterStyle
|
|
1771
|
+
| (string & {})
|
|
1772
|
+
| 'none'
|
|
1773
|
+
| Globals
|
|
1774
|
+
| (string & {})
|
|
849
1775
|
export type MarginBlockEnd = Property.MarginTop | Globals | (string & {})
|
|
850
1776
|
export type MarginBlockStart = Property.MarginTop | Globals | (string & {})
|
|
851
|
-
export type MarginBottom =
|
|
1777
|
+
export type MarginBottom =
|
|
1778
|
+
| TLengthPercentage
|
|
1779
|
+
| 'auto'
|
|
1780
|
+
| Globals
|
|
1781
|
+
| (string & {})
|
|
852
1782
|
export type MarginInlineEnd = Property.MarginTop | Globals | (string & {})
|
|
853
1783
|
export type MarginInlineStart = Property.MarginTop | Globals | (string & {})
|
|
854
|
-
export type MarginLeft = TLengthPercentage |
|
|
855
|
-
export type MarginRight = TLengthPercentage |
|
|
856
|
-
export type MarginTop = TLengthPercentage |
|
|
857
|
-
export type MarginTrim =
|
|
858
|
-
export type Marker =
|
|
859
|
-
export type MarkerEnd =
|
|
860
|
-
export type MarkerMid =
|
|
861
|
-
export type MarkerStart =
|
|
862
|
-
export type MaskBorderMode =
|
|
1784
|
+
export type MarginLeft = TLengthPercentage | 'auto' | Globals | (string & {})
|
|
1785
|
+
export type MarginRight = TLengthPercentage | 'auto' | Globals | (string & {})
|
|
1786
|
+
export type MarginTop = TLengthPercentage | 'auto' | Globals | (string & {})
|
|
1787
|
+
export type MarginTrim = 'none' | 'in-flow' | 'all' | Globals | (string & {})
|
|
1788
|
+
export type Marker = 'none' | Globals | (string & {})
|
|
1789
|
+
export type MarkerEnd = 'none' | Globals | (string & {})
|
|
1790
|
+
export type MarkerMid = 'none' | Globals | (string & {})
|
|
1791
|
+
export type MarkerStart = 'none' | Globals | (string & {})
|
|
1792
|
+
export type MaskBorderMode = 'luminance' | 'alpha' | Globals | (string & {})
|
|
863
1793
|
export type MaskBorderOutset = number | Globals | (string & {})
|
|
864
|
-
export type MaskBorderRepeat =
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
1794
|
+
export type MaskBorderRepeat =
|
|
1795
|
+
| 'stretch'
|
|
1796
|
+
| 'repeat'
|
|
1797
|
+
| 'round'
|
|
1798
|
+
| 'space'
|
|
1799
|
+
| Globals
|
|
1800
|
+
| (string & {})
|
|
1801
|
+
export type MaskBorderSlice =
|
|
1802
|
+
| TNumberPercentage
|
|
1803
|
+
| 'fill'
|
|
1804
|
+
| Globals
|
|
1805
|
+
| (string & {})
|
|
1806
|
+
export type MaskBorderSource = 'none' | TImage | Globals | (string & {})
|
|
1807
|
+
export type MaskBorderWidth =
|
|
1808
|
+
| TLengthPercentage
|
|
1809
|
+
| number
|
|
1810
|
+
| 'auto'
|
|
1811
|
+
| Globals
|
|
1812
|
+
| (string & {})
|
|
1813
|
+
export type MaskClip = TCoordBox | 'no-clip' | Globals | (string & {})
|
|
869
1814
|
export type MaskComposite = TCompositingOperator | Globals | (string & {})
|
|
870
1815
|
export type MaskImage = TMaskReference | Globals | (string & {})
|
|
871
1816
|
export type MaskMode = TMaskingMode | Globals | (string & {})
|
|
@@ -873,49 +1818,171 @@ export namespace Property {
|
|
|
873
1818
|
export type MaskPosition = TPosition | Globals | (string & {})
|
|
874
1819
|
export type MaskRepeat = TRepeatStyle | Globals | (string & {})
|
|
875
1820
|
export type MaskSize = TBgSize | Globals | (string & {})
|
|
876
|
-
export type MaskType =
|
|
877
|
-
export type MasonryAutoFlow =
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
1821
|
+
export type MaskType = 'luminance' | 'alpha' | Globals | (string & {})
|
|
1822
|
+
export type MasonryAutoFlow =
|
|
1823
|
+
| 'pack'
|
|
1824
|
+
| 'next'
|
|
1825
|
+
| 'definite-first'
|
|
1826
|
+
| 'ordered'
|
|
1827
|
+
| Globals
|
|
1828
|
+
| (string & {})
|
|
1829
|
+
export type MathDepth = 'auto-add' | number | Globals | (string & {})
|
|
1830
|
+
export type MathShift = 'normal' | 'compact' | Globals | (string & {})
|
|
1831
|
+
export type MathStyle = 'normal' | 'compact' | Globals | (string & {})
|
|
881
1832
|
export type MaxBlockSize = Property.MaxWidth | Globals | (string & {})
|
|
882
|
-
export type MaxHeight =
|
|
1833
|
+
export type MaxHeight =
|
|
1834
|
+
| 'none'
|
|
1835
|
+
| TLengthPercentage
|
|
1836
|
+
| 'min-content'
|
|
1837
|
+
| 'max-content'
|
|
1838
|
+
| 'fit-content'
|
|
1839
|
+
| Globals
|
|
1840
|
+
| (string & {})
|
|
883
1841
|
export type MaxInlineSize = Property.MaxWidth | Globals | (string & {})
|
|
884
|
-
export type MaxLines =
|
|
885
|
-
export type MaxWidth =
|
|
1842
|
+
export type MaxLines = 'none' | number | Globals | (string & {})
|
|
1843
|
+
export type MaxWidth =
|
|
1844
|
+
| 'none'
|
|
1845
|
+
| TLengthPercentage
|
|
1846
|
+
| 'min-content'
|
|
1847
|
+
| 'max-content'
|
|
1848
|
+
| 'fit-content'
|
|
1849
|
+
| Globals
|
|
1850
|
+
| (string & {})
|
|
886
1851
|
export type MinBlockSize = Property.MinWidth | Globals | (string & {})
|
|
887
|
-
export type MinHeight =
|
|
1852
|
+
export type MinHeight =
|
|
1853
|
+
| 'auto'
|
|
1854
|
+
| TLengthPercentage
|
|
1855
|
+
| 'min-content'
|
|
1856
|
+
| 'max-content'
|
|
1857
|
+
| 'fit-content'
|
|
1858
|
+
| Globals
|
|
1859
|
+
| (string & {})
|
|
888
1860
|
export type MinInlineSize = Property.MinWidth | Globals | (string & {})
|
|
889
|
-
export type MinWidth =
|
|
890
|
-
|
|
891
|
-
|
|
1861
|
+
export type MinWidth =
|
|
1862
|
+
| 'auto'
|
|
1863
|
+
| TLengthPercentage
|
|
1864
|
+
| 'min-content'
|
|
1865
|
+
| 'max-content'
|
|
1866
|
+
| 'fit-content'
|
|
1867
|
+
| Globals
|
|
1868
|
+
| (string & {})
|
|
1869
|
+
export type MixBlendMode =
|
|
1870
|
+
| TBlendMode
|
|
1871
|
+
| 'plus-darker'
|
|
1872
|
+
| 'plus-lighter'
|
|
1873
|
+
| Globals
|
|
1874
|
+
| (string & {})
|
|
1875
|
+
export type ObjectFit =
|
|
1876
|
+
| 'fill'
|
|
1877
|
+
| 'contain'
|
|
1878
|
+
| 'cover'
|
|
1879
|
+
| 'none'
|
|
1880
|
+
| 'scale-down'
|
|
1881
|
+
| Globals
|
|
1882
|
+
| (string & {})
|
|
892
1883
|
export type ObjectPosition = TPosition | Globals | (string & {})
|
|
893
|
-
export type ObjectViewBox =
|
|
894
|
-
export type OffsetAnchor =
|
|
1884
|
+
export type ObjectViewBox = 'none' | TBasicShapeRect | Globals | (string & {})
|
|
1885
|
+
export type OffsetAnchor = 'auto' | TPosition | Globals | (string & {})
|
|
895
1886
|
export type OffsetDistance = TLengthPercentage | Globals | (string & {})
|
|
896
|
-
export type OffsetPath =
|
|
897
|
-
|
|
898
|
-
|
|
1887
|
+
export type OffsetPath =
|
|
1888
|
+
| 'none'
|
|
1889
|
+
| TOffsetPath
|
|
1890
|
+
| TCoordBox
|
|
1891
|
+
| Globals
|
|
1892
|
+
| (string & {})
|
|
1893
|
+
export type OffsetPosition =
|
|
1894
|
+
| 'normal'
|
|
1895
|
+
| 'auto'
|
|
1896
|
+
| TPosition
|
|
1897
|
+
| Globals
|
|
1898
|
+
| (string & {})
|
|
1899
|
+
export type OffsetRotate = 'auto' | 'reverse' | Globals | (string & {})
|
|
899
1900
|
export type Opacity = TOpacityValue | Globals | (string & {})
|
|
900
1901
|
export type Order = number | Globals | (string & {})
|
|
901
1902
|
export type Orphans = number | Globals | (string & {})
|
|
902
|
-
export type OutlineColor =
|
|
1903
|
+
export type OutlineColor = 'auto' | TColor | Globals | (string & {})
|
|
903
1904
|
export type OutlineOffset = number | Globals | (string & {})
|
|
904
|
-
export type OutlineStyle =
|
|
1905
|
+
export type OutlineStyle =
|
|
1906
|
+
| 'auto'
|
|
1907
|
+
| TOutlineLineStyle
|
|
1908
|
+
| Globals
|
|
1909
|
+
| (string & {})
|
|
905
1910
|
export type OutlineWidth = TLineWidth | Globals | (string & {})
|
|
906
|
-
export type OverflowAnchor =
|
|
907
|
-
export type OverflowBlock =
|
|
908
|
-
|
|
1911
|
+
export type OverflowAnchor = 'auto' | 'none' | Globals | (string & {})
|
|
1912
|
+
export type OverflowBlock =
|
|
1913
|
+
| 'visible'
|
|
1914
|
+
| 'hidden'
|
|
1915
|
+
| 'clip'
|
|
1916
|
+
| 'scroll'
|
|
1917
|
+
| 'auto'
|
|
1918
|
+
| Globals
|
|
1919
|
+
| (string & {})
|
|
1920
|
+
export type MozOverflowClipBox =
|
|
1921
|
+
| 'padding-box'
|
|
1922
|
+
| 'content-box'
|
|
1923
|
+
| Globals
|
|
1924
|
+
| (string & {})
|
|
1925
|
+
export type OverflowClipBox =
|
|
1926
|
+
| 'padding-box'
|
|
1927
|
+
| 'content-box'
|
|
1928
|
+
| Globals
|
|
1929
|
+
| (string & {})
|
|
909
1930
|
export type OverflowClipMargin = TVisualBox | number | Globals | (string & {})
|
|
910
|
-
export type OverflowInline =
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
export type
|
|
1931
|
+
export type OverflowInline =
|
|
1932
|
+
| 'visible'
|
|
1933
|
+
| 'hidden'
|
|
1934
|
+
| 'clip'
|
|
1935
|
+
| 'scroll'
|
|
1936
|
+
| 'auto'
|
|
1937
|
+
| Globals
|
|
1938
|
+
| (string & {})
|
|
1939
|
+
export type OverflowWrap =
|
|
1940
|
+
| 'normal'
|
|
1941
|
+
| 'break-word'
|
|
1942
|
+
| 'anywhere'
|
|
1943
|
+
| Globals
|
|
1944
|
+
| (string & {})
|
|
1945
|
+
export type OverflowX =
|
|
1946
|
+
| 'visible'
|
|
1947
|
+
| 'hidden'
|
|
1948
|
+
| 'clip'
|
|
1949
|
+
| 'scroll'
|
|
1950
|
+
| 'auto'
|
|
1951
|
+
| Globals
|
|
1952
|
+
| (string & {})
|
|
1953
|
+
export type OverflowY =
|
|
1954
|
+
| 'visible'
|
|
1955
|
+
| 'hidden'
|
|
1956
|
+
| 'clip'
|
|
1957
|
+
| 'scroll'
|
|
1958
|
+
| 'auto'
|
|
1959
|
+
| Globals
|
|
1960
|
+
| (string & {})
|
|
1961
|
+
export type Overlay = 'none' | 'auto' | Globals | (string & {})
|
|
1962
|
+
export type OverscrollBehaviorBlock =
|
|
1963
|
+
| 'contain'
|
|
1964
|
+
| 'none'
|
|
1965
|
+
| 'auto'
|
|
1966
|
+
| Globals
|
|
1967
|
+
| (string & {})
|
|
1968
|
+
export type OverscrollBehaviorInline =
|
|
1969
|
+
| 'contain'
|
|
1970
|
+
| 'none'
|
|
1971
|
+
| 'auto'
|
|
1972
|
+
| Globals
|
|
1973
|
+
| (string & {})
|
|
1974
|
+
export type OverscrollBehaviorX =
|
|
1975
|
+
| 'contain'
|
|
1976
|
+
| 'none'
|
|
1977
|
+
| 'auto'
|
|
1978
|
+
| Globals
|
|
1979
|
+
| (string & {})
|
|
1980
|
+
export type OverscrollBehaviorY =
|
|
1981
|
+
| 'contain'
|
|
1982
|
+
| 'none'
|
|
1983
|
+
| 'auto'
|
|
1984
|
+
| Globals
|
|
1985
|
+
| (string & {})
|
|
919
1986
|
export type PaddingBlockEnd = Property.PaddingTop | Globals | (string & {})
|
|
920
1987
|
export type PaddingBlockStart = Property.PaddingTop | Globals | (string & {})
|
|
921
1988
|
export type PaddingBottom = TLengthPercentage | Globals | (string & {})
|
|
@@ -924,36 +1991,123 @@ export namespace Property {
|
|
|
924
1991
|
export type PaddingLeft = TLengthPercentage | Globals | (string & {})
|
|
925
1992
|
export type PaddingRight = TLengthPercentage | Globals | (string & {})
|
|
926
1993
|
export type PaddingTop = TLengthPercentage | Globals | (string & {})
|
|
927
|
-
export type Page =
|
|
928
|
-
export type PageBreakAfter =
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
1994
|
+
export type Page = 'auto' | Globals | (string & {})
|
|
1995
|
+
export type PageBreakAfter =
|
|
1996
|
+
| 'auto'
|
|
1997
|
+
| 'always'
|
|
1998
|
+
| 'avoid'
|
|
1999
|
+
| 'left'
|
|
2000
|
+
| 'right'
|
|
2001
|
+
| 'recto'
|
|
2002
|
+
| 'verso'
|
|
2003
|
+
| Globals
|
|
2004
|
+
| (string & {})
|
|
2005
|
+
export type PageBreakBefore =
|
|
2006
|
+
| 'auto'
|
|
2007
|
+
| 'always'
|
|
2008
|
+
| 'avoid'
|
|
2009
|
+
| 'left'
|
|
2010
|
+
| 'right'
|
|
2011
|
+
| 'recto'
|
|
2012
|
+
| 'verso'
|
|
2013
|
+
| Globals
|
|
2014
|
+
| (string & {})
|
|
2015
|
+
export type PageBreakInside = 'auto' | 'avoid' | Globals | (string & {})
|
|
2016
|
+
export type PaintOrder =
|
|
2017
|
+
| 'normal'
|
|
2018
|
+
| 'fill'
|
|
2019
|
+
| 'stroke'
|
|
2020
|
+
| 'markers'
|
|
2021
|
+
| Globals
|
|
2022
|
+
| (string & {})
|
|
2023
|
+
export type Perspective = 'none' | number | Globals | (string & {})
|
|
933
2024
|
export type PerspectiveOrigin = TPosition | Globals | (string & {})
|
|
934
|
-
export type PointerEvents =
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
2025
|
+
export type PointerEvents =
|
|
2026
|
+
| 'auto'
|
|
2027
|
+
| 'none'
|
|
2028
|
+
| 'visiblePainted'
|
|
2029
|
+
| 'visibleFill'
|
|
2030
|
+
| 'visibleStroke'
|
|
2031
|
+
| 'visible'
|
|
2032
|
+
| 'painted'
|
|
2033
|
+
| 'fill'
|
|
2034
|
+
| 'stroke'
|
|
2035
|
+
| 'all'
|
|
2036
|
+
| 'inherit'
|
|
2037
|
+
| Globals
|
|
2038
|
+
| (string & {})
|
|
2039
|
+
export type Position =
|
|
2040
|
+
| 'static'
|
|
2041
|
+
| 'relative'
|
|
2042
|
+
| 'absolute'
|
|
2043
|
+
| 'sticky'
|
|
2044
|
+
| 'fixed'
|
|
2045
|
+
| Globals
|
|
2046
|
+
| (string & {})
|
|
2047
|
+
export type PositionAnchor = 'auto' | TAnchorName | Globals | (string & {})
|
|
2048
|
+
export type PositionArea = 'none' | TPositionArea | Globals | (string & {})
|
|
2049
|
+
export type PositionTryFallbacks =
|
|
2050
|
+
| 'none'
|
|
2051
|
+
| TTryTactic
|
|
2052
|
+
| Property.PositionArea
|
|
2053
|
+
| Globals
|
|
2054
|
+
| (string & {})
|
|
2055
|
+
export type PositionTryOrder = 'normal' | TTrySize | Globals | (string & {})
|
|
2056
|
+
export type PositionVisibility =
|
|
2057
|
+
| 'always'
|
|
2058
|
+
| 'anchors-valid'
|
|
2059
|
+
| 'anchors-visible'
|
|
2060
|
+
| 'no-overflow'
|
|
2061
|
+
| Globals
|
|
2062
|
+
| (string & {})
|
|
2063
|
+
export type PrintColorAdjust = 'economy' | 'exact' | Globals | (string & {})
|
|
2064
|
+
export type Quotes = 'none' | 'auto' | (string & {}) | Globals | (string & {})
|
|
943
2065
|
export type R = number | Globals | (string & {})
|
|
944
|
-
export type Resize =
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
2066
|
+
export type Resize =
|
|
2067
|
+
| 'none'
|
|
2068
|
+
| 'both'
|
|
2069
|
+
| 'horizontal'
|
|
2070
|
+
| 'vertical'
|
|
2071
|
+
| 'block'
|
|
2072
|
+
| 'inline'
|
|
2073
|
+
| Globals
|
|
2074
|
+
| (string & {})
|
|
2075
|
+
export type Right = 'auto' | TLengthPercentage | Globals | (string & {})
|
|
2076
|
+
export type Rotate =
|
|
2077
|
+
| 'none'
|
|
2078
|
+
| 'x'
|
|
2079
|
+
| 'y'
|
|
2080
|
+
| 'z'
|
|
2081
|
+
| number
|
|
2082
|
+
| Globals
|
|
2083
|
+
| (string & {})
|
|
2084
|
+
export type RowGap = 'normal' | TLengthPercentage | Globals | (string & {})
|
|
2085
|
+
export type RubyAlign =
|
|
2086
|
+
| 'start'
|
|
2087
|
+
| 'center'
|
|
2088
|
+
| 'space-between'
|
|
2089
|
+
| 'space-around'
|
|
2090
|
+
| Globals
|
|
2091
|
+
| (string & {})
|
|
2092
|
+
export type RubyMerge =
|
|
2093
|
+
| 'separate'
|
|
2094
|
+
| 'collapse'
|
|
2095
|
+
| 'auto'
|
|
2096
|
+
| Globals
|
|
2097
|
+
| (string & {})
|
|
2098
|
+
export type RubyOverhang = 'auto' | 'none' | Globals | (string & {})
|
|
2099
|
+
export type RubyPosition =
|
|
2100
|
+
| 'alternate'
|
|
2101
|
+
| 'over'
|
|
2102
|
+
| 'under'
|
|
2103
|
+
| 'inter-character'
|
|
2104
|
+
| Globals
|
|
2105
|
+
| (string & {})
|
|
952
2106
|
export type Rx = number | Globals | (string & {})
|
|
953
2107
|
export type Ry = number | Globals | (string & {})
|
|
954
|
-
export type Scale =
|
|
955
|
-
export type ScrollBehavior =
|
|
956
|
-
export type ScrollInitialTarget =
|
|
2108
|
+
export type Scale = 'none' | number | Globals | (string & {})
|
|
2109
|
+
export type ScrollBehavior = 'auto' | 'smooth' | Globals | (string & {})
|
|
2110
|
+
export type ScrollInitialTarget = 'none' | 'nearest' | Globals | (string & {})
|
|
957
2111
|
export type ScrollMarginBlockEnd = number | Globals | (string & {})
|
|
958
2112
|
export type ScrollMarginBlockStart = number | Globals | (string & {})
|
|
959
2113
|
export type ScrollMarginBottom = number | Globals | (string & {})
|
|
@@ -962,208 +2116,879 @@ export namespace Property {
|
|
|
962
2116
|
export type ScrollMarginLeft = number | Globals | (string & {})
|
|
963
2117
|
export type ScrollMarginRight = number | Globals | (string & {})
|
|
964
2118
|
export type ScrollMarginTop = number | Globals | (string & {})
|
|
965
|
-
export type ScrollPaddingBlockEnd =
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
export type
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
2119
|
+
export type ScrollPaddingBlockEnd =
|
|
2120
|
+
| 'auto'
|
|
2121
|
+
| TLengthPercentage
|
|
2122
|
+
| Globals
|
|
2123
|
+
| (string & {})
|
|
2124
|
+
export type ScrollPaddingBlockStart =
|
|
2125
|
+
| 'auto'
|
|
2126
|
+
| TLengthPercentage
|
|
2127
|
+
| Globals
|
|
2128
|
+
| (string & {})
|
|
2129
|
+
export type ScrollPaddingBottom =
|
|
2130
|
+
| 'auto'
|
|
2131
|
+
| TLengthPercentage
|
|
2132
|
+
| Globals
|
|
2133
|
+
| (string & {})
|
|
2134
|
+
export type ScrollPaddingInlineEnd =
|
|
2135
|
+
| 'auto'
|
|
2136
|
+
| TLengthPercentage
|
|
2137
|
+
| Globals
|
|
2138
|
+
| (string & {})
|
|
2139
|
+
export type ScrollPaddingInlineStart =
|
|
2140
|
+
| 'auto'
|
|
2141
|
+
| TLengthPercentage
|
|
2142
|
+
| Globals
|
|
2143
|
+
| (string & {})
|
|
2144
|
+
export type ScrollPaddingLeft =
|
|
2145
|
+
| 'auto'
|
|
2146
|
+
| TLengthPercentage
|
|
2147
|
+
| Globals
|
|
2148
|
+
| (string & {})
|
|
2149
|
+
export type ScrollPaddingRight =
|
|
2150
|
+
| 'auto'
|
|
2151
|
+
| TLengthPercentage
|
|
2152
|
+
| Globals
|
|
2153
|
+
| (string & {})
|
|
2154
|
+
export type ScrollPaddingTop =
|
|
2155
|
+
| 'auto'
|
|
2156
|
+
| TLengthPercentage
|
|
2157
|
+
| Globals
|
|
2158
|
+
| (string & {})
|
|
2159
|
+
export type ScrollSnapAlign =
|
|
2160
|
+
| 'none'
|
|
2161
|
+
| 'start'
|
|
2162
|
+
| 'end'
|
|
2163
|
+
| 'center'
|
|
2164
|
+
| Globals
|
|
2165
|
+
| (string & {})
|
|
2166
|
+
export type ScrollSnapCoordinate =
|
|
2167
|
+
| 'none'
|
|
2168
|
+
| TPosition
|
|
2169
|
+
| Globals
|
|
2170
|
+
| (string & {})
|
|
975
2171
|
export type ScrollSnapDestination = TPosition | Globals | (string & {})
|
|
976
|
-
export type ScrollSnapPointsX =
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
export type
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
export type
|
|
2172
|
+
export type ScrollSnapPointsX =
|
|
2173
|
+
| 'none'
|
|
2174
|
+
| TLengthPercentage
|
|
2175
|
+
| Globals
|
|
2176
|
+
| (string & {})
|
|
2177
|
+
export type ScrollSnapPointsY =
|
|
2178
|
+
| 'none'
|
|
2179
|
+
| TLengthPercentage
|
|
2180
|
+
| Globals
|
|
2181
|
+
| (string & {})
|
|
2182
|
+
export type ScrollSnapStop = 'normal' | 'always' | Globals | (string & {})
|
|
2183
|
+
export type ScrollSnapType =
|
|
2184
|
+
| 'none'
|
|
2185
|
+
| 'x'
|
|
2186
|
+
| 'y'
|
|
2187
|
+
| 'block'
|
|
2188
|
+
| 'inline'
|
|
2189
|
+
| 'both'
|
|
2190
|
+
| 'mandatory'
|
|
2191
|
+
| 'proximity'
|
|
2192
|
+
| Globals
|
|
2193
|
+
| (string & {})
|
|
2194
|
+
export type ScrollSnapTypeX =
|
|
2195
|
+
| 'none'
|
|
2196
|
+
| 'mandatory'
|
|
2197
|
+
| 'proximity'
|
|
2198
|
+
| Globals
|
|
2199
|
+
| (string & {})
|
|
2200
|
+
export type ScrollSnapTypeY =
|
|
2201
|
+
| 'none'
|
|
2202
|
+
| 'mandatory'
|
|
2203
|
+
| 'proximity'
|
|
2204
|
+
| Globals
|
|
2205
|
+
| (string & {})
|
|
2206
|
+
export type ScrollTimelineAxis =
|
|
2207
|
+
| 'block'
|
|
2208
|
+
| 'inline'
|
|
2209
|
+
| 'x'
|
|
2210
|
+
| 'y'
|
|
2211
|
+
| Globals
|
|
2212
|
+
| (string & {})
|
|
2213
|
+
export type ScrollTimelineName = 'none' | Globals | (string & {})
|
|
2214
|
+
export type ScrollbarColor = 'auto' | TColor | Globals | (string & {})
|
|
2215
|
+
export type ScrollbarGutter =
|
|
2216
|
+
| 'auto'
|
|
2217
|
+
| 'stable'
|
|
2218
|
+
| 'both-edges'
|
|
2219
|
+
| Globals
|
|
2220
|
+
| (string & {})
|
|
2221
|
+
export type ScrollbarWidth =
|
|
2222
|
+
| 'auto'
|
|
2223
|
+
| 'thin'
|
|
2224
|
+
| 'none'
|
|
2225
|
+
| Globals
|
|
2226
|
+
| (string & {})
|
|
987
2227
|
export type ShapeImageThreshold = TOpacityValue | Globals | (string & {})
|
|
988
2228
|
export type ShapeMargin = TLengthPercentage | Globals | (string & {})
|
|
989
|
-
export type ShapeOutside =
|
|
990
|
-
|
|
991
|
-
|
|
2229
|
+
export type ShapeOutside =
|
|
2230
|
+
| 'none'
|
|
2231
|
+
| TShapeBox
|
|
2232
|
+
| TBasicShape
|
|
2233
|
+
| TImage
|
|
2234
|
+
| Globals
|
|
2235
|
+
| (string & {})
|
|
2236
|
+
export type ShapeRendering =
|
|
2237
|
+
| 'auto'
|
|
2238
|
+
| 'optimizeSpeed'
|
|
2239
|
+
| 'crispEdges'
|
|
2240
|
+
| 'geometricPrecision'
|
|
2241
|
+
| Globals
|
|
2242
|
+
| (string & {})
|
|
2243
|
+
export type SpeakAs =
|
|
2244
|
+
| 'normal'
|
|
2245
|
+
| 'spell-out'
|
|
2246
|
+
| 'digits'
|
|
2247
|
+
| 'literal-punctuation'
|
|
2248
|
+
| 'no-punctuation'
|
|
2249
|
+
| Globals
|
|
2250
|
+
| (string & {})
|
|
992
2251
|
export type StopColor = Property.Color | Globals | (string & {})
|
|
993
2252
|
export type StopOpacity = Property.Opacity | Globals | (string & {})
|
|
994
2253
|
export type Stroke = TPaint | Globals | (string & {})
|
|
995
2254
|
export type StrokeColor = TColor | Globals | (string & {})
|
|
996
|
-
export type StrokeDasharray =
|
|
997
|
-
export type StrokeDashoffset =
|
|
998
|
-
|
|
999
|
-
|
|
2255
|
+
export type StrokeDasharray = 'none' | TDasharray | Globals | (string & {})
|
|
2256
|
+
export type StrokeDashoffset =
|
|
2257
|
+
| TLengthPercentage
|
|
2258
|
+
| number
|
|
2259
|
+
| Globals
|
|
2260
|
+
| (string & {})
|
|
2261
|
+
export type StrokeLinecap =
|
|
2262
|
+
| 'butt'
|
|
2263
|
+
| 'round'
|
|
2264
|
+
| 'square'
|
|
2265
|
+
| Globals
|
|
2266
|
+
| (string & {})
|
|
2267
|
+
export type StrokeLinejoin =
|
|
2268
|
+
| 'miter'
|
|
2269
|
+
| 'miter-clip'
|
|
2270
|
+
| 'round'
|
|
2271
|
+
| 'bevel'
|
|
2272
|
+
| 'arcs'
|
|
2273
|
+
| Globals
|
|
2274
|
+
| (string & {})
|
|
1000
2275
|
export type StrokeMiterlimit = number | Globals | (string & {})
|
|
1001
2276
|
export type StrokeOpacity = Property.Opacity | Globals | (string & {})
|
|
1002
2277
|
export type StrokeWidth = TLengthPercentage | number | Globals | (string & {})
|
|
1003
2278
|
export type TabSize = number | Globals | (string & {})
|
|
1004
|
-
export type TableLayout =
|
|
1005
|
-
export type TextAlign =
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
2279
|
+
export type TableLayout = 'auto' | 'fixed' | Globals | (string & {})
|
|
2280
|
+
export type TextAlign =
|
|
2281
|
+
| 'start'
|
|
2282
|
+
| 'end'
|
|
2283
|
+
| 'left'
|
|
2284
|
+
| 'right'
|
|
2285
|
+
| 'center'
|
|
2286
|
+
| 'justify'
|
|
2287
|
+
| 'match-parent'
|
|
2288
|
+
| Globals
|
|
2289
|
+
| (string & {})
|
|
2290
|
+
export type TextAlignLast =
|
|
2291
|
+
| 'auto'
|
|
2292
|
+
| 'start'
|
|
2293
|
+
| 'end'
|
|
2294
|
+
| 'left'
|
|
2295
|
+
| 'right'
|
|
2296
|
+
| 'center'
|
|
2297
|
+
| 'justify'
|
|
2298
|
+
| Globals
|
|
2299
|
+
| (string & {})
|
|
2300
|
+
export type TextAnchor = 'start' | 'middle' | 'end' | Globals | (string & {})
|
|
2301
|
+
export type TextAutospace = 'normal' | 'auto' | Globals | (string & {})
|
|
2302
|
+
export type TextBox =
|
|
2303
|
+
| 'normal'
|
|
2304
|
+
| Property.TextBoxTrim
|
|
2305
|
+
| Property.TextBoxEdge
|
|
2306
|
+
| Globals
|
|
2307
|
+
| (string & {})
|
|
2308
|
+
export type TextBoxEdge = 'auto' | TTextEdge | Globals | (string & {})
|
|
2309
|
+
export type TextBoxTrim =
|
|
2310
|
+
| 'none'
|
|
2311
|
+
| 'trim-start'
|
|
2312
|
+
| 'trim-end'
|
|
2313
|
+
| 'trim-both'
|
|
2314
|
+
| Globals
|
|
2315
|
+
| (string & {})
|
|
2316
|
+
export type TextCombineUpright =
|
|
2317
|
+
| 'none'
|
|
2318
|
+
| 'all'
|
|
2319
|
+
| 'digits'
|
|
2320
|
+
| number
|
|
2321
|
+
| Globals
|
|
2322
|
+
| (string & {})
|
|
1013
2323
|
export type TextDecorationColor = TColor | Globals | (string & {})
|
|
1014
|
-
export type TextDecorationLine =
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
2324
|
+
export type TextDecorationLine =
|
|
2325
|
+
| 'none'
|
|
2326
|
+
| 'underline'
|
|
2327
|
+
| 'overline'
|
|
2328
|
+
| 'line-through'
|
|
2329
|
+
| 'blink'
|
|
2330
|
+
| 'spelling-error'
|
|
2331
|
+
| 'grammar-error'
|
|
2332
|
+
| Globals
|
|
2333
|
+
| (string & {})
|
|
2334
|
+
export type TextDecorationSkip =
|
|
2335
|
+
| 'none'
|
|
2336
|
+
| 'objects'
|
|
2337
|
+
| 'spaces'
|
|
2338
|
+
| 'leading-spaces'
|
|
2339
|
+
| 'trailing-spaces'
|
|
2340
|
+
| 'edges'
|
|
2341
|
+
| 'box-decoration'
|
|
2342
|
+
| Globals
|
|
2343
|
+
| (string & {})
|
|
2344
|
+
export type TextDecorationSkipInk =
|
|
2345
|
+
| 'auto'
|
|
2346
|
+
| 'all'
|
|
2347
|
+
| 'none'
|
|
2348
|
+
| Globals
|
|
2349
|
+
| (string & {})
|
|
2350
|
+
export type TextDecorationStyle =
|
|
2351
|
+
| 'solid'
|
|
2352
|
+
| 'double'
|
|
2353
|
+
| 'dotted'
|
|
2354
|
+
| 'dashed'
|
|
2355
|
+
| 'wavy'
|
|
2356
|
+
| Globals
|
|
2357
|
+
| (string & {})
|
|
2358
|
+
export type TextDecorationThickness =
|
|
2359
|
+
| 'auto'
|
|
2360
|
+
| 'from-font'
|
|
2361
|
+
| number
|
|
2362
|
+
| Globals
|
|
2363
|
+
| (string & {})
|
|
1019
2364
|
export type TextEmphasisColor = TColor | Globals | (string & {})
|
|
1020
|
-
export type TextEmphasisPosition =
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
export type
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
export type
|
|
1041
|
-
|
|
1042
|
-
|
|
2365
|
+
export type TextEmphasisPosition =
|
|
2366
|
+
| 'auto'
|
|
2367
|
+
| 'over'
|
|
2368
|
+
| 'under'
|
|
2369
|
+
| 'right'
|
|
2370
|
+
| 'left'
|
|
2371
|
+
| Globals
|
|
2372
|
+
| (string & {})
|
|
2373
|
+
export type TextEmphasisStyle =
|
|
2374
|
+
| 'none'
|
|
2375
|
+
| 'filled'
|
|
2376
|
+
| 'open'
|
|
2377
|
+
| 'dot'
|
|
2378
|
+
| 'circle'
|
|
2379
|
+
| 'double-circle'
|
|
2380
|
+
| 'triangle'
|
|
2381
|
+
| 'sesame'
|
|
2382
|
+
| (string & {})
|
|
2383
|
+
| Globals
|
|
2384
|
+
| (string & {})
|
|
2385
|
+
export type TextIndent =
|
|
2386
|
+
| TLengthPercentage
|
|
2387
|
+
| 'hanging'
|
|
2388
|
+
| 'each-line'
|
|
2389
|
+
| Globals
|
|
2390
|
+
| (string & {})
|
|
2391
|
+
export type TextJustify =
|
|
2392
|
+
| 'auto'
|
|
2393
|
+
| 'inter-character'
|
|
2394
|
+
| 'inter-word'
|
|
2395
|
+
| 'none'
|
|
2396
|
+
| Globals
|
|
2397
|
+
| (string & {})
|
|
2398
|
+
export type TextOrientation =
|
|
2399
|
+
| 'mixed'
|
|
2400
|
+
| 'upright'
|
|
2401
|
+
| 'sideways'
|
|
2402
|
+
| Globals
|
|
2403
|
+
| (string & {})
|
|
2404
|
+
export type TextOverflow =
|
|
2405
|
+
| 'clip'
|
|
2406
|
+
| 'ellipsis'
|
|
2407
|
+
| (string & {})
|
|
2408
|
+
| Globals
|
|
2409
|
+
| (string & {})
|
|
2410
|
+
export type TextRendering =
|
|
2411
|
+
| 'auto'
|
|
2412
|
+
| 'optimizeSpeed'
|
|
2413
|
+
| 'optimizeLegibility'
|
|
2414
|
+
| 'geometricPrecision'
|
|
2415
|
+
| Globals
|
|
2416
|
+
| (string & {})
|
|
2417
|
+
export type TextShadow = 'none' | TShadowT | Globals | (string & {})
|
|
2418
|
+
export type TextSizeAdjust =
|
|
2419
|
+
| 'none'
|
|
2420
|
+
| 'auto'
|
|
2421
|
+
| number
|
|
2422
|
+
| Globals
|
|
2423
|
+
| (string & {})
|
|
2424
|
+
export type TextSpacingTrim =
|
|
2425
|
+
| 'space-all'
|
|
2426
|
+
| 'normal'
|
|
2427
|
+
| 'space-first'
|
|
2428
|
+
| 'trim-start'
|
|
2429
|
+
| Globals
|
|
2430
|
+
| (string & {})
|
|
2431
|
+
export type TextTransform =
|
|
2432
|
+
| 'none'
|
|
2433
|
+
| 'capitalize'
|
|
2434
|
+
| 'uppercase'
|
|
2435
|
+
| 'lowercase'
|
|
2436
|
+
| 'full-width'
|
|
2437
|
+
| 'full-size-kana'
|
|
2438
|
+
| 'math-auto'
|
|
2439
|
+
| Globals
|
|
2440
|
+
| (string & {})
|
|
2441
|
+
export type TextUnderlineOffset = 'auto' | number | Globals | (string & {})
|
|
2442
|
+
export type TextUnderlinePosition =
|
|
2443
|
+
| 'auto'
|
|
2444
|
+
| 'from-font'
|
|
2445
|
+
| 'under'
|
|
2446
|
+
| 'left'
|
|
2447
|
+
| 'right'
|
|
2448
|
+
| Globals
|
|
2449
|
+
| (string & {})
|
|
2450
|
+
export type TextWrapMode = 'wrap' | 'nowrap' | Globals | (string & {})
|
|
2451
|
+
export type TextWrapStyle =
|
|
2452
|
+
| 'auto'
|
|
2453
|
+
| 'balance'
|
|
2454
|
+
| 'stable'
|
|
2455
|
+
| 'pretty'
|
|
2456
|
+
| Globals
|
|
2457
|
+
| (string & {})
|
|
2458
|
+
export type TimelineScope = 'none' | Globals | (string & {})
|
|
2459
|
+
export type Top = 'auto' | TLengthPercentage | Globals | (string & {})
|
|
2460
|
+
export type TouchAction =
|
|
2461
|
+
| 'auto'
|
|
2462
|
+
| 'none'
|
|
2463
|
+
| 'pan-x'
|
|
2464
|
+
| 'pan-left'
|
|
2465
|
+
| 'pan-right'
|
|
2466
|
+
| 'pan-y'
|
|
2467
|
+
| 'pan-up'
|
|
2468
|
+
| 'pan-down'
|
|
2469
|
+
| 'pinch-zoom'
|
|
2470
|
+
| 'manipulation'
|
|
2471
|
+
| Globals
|
|
2472
|
+
| (string & {})
|
|
2473
|
+
export type Transform = 'none' | TTransformList | Globals | (string & {})
|
|
2474
|
+
export type TransformBox =
|
|
2475
|
+
| 'content-box'
|
|
2476
|
+
| 'border-box'
|
|
2477
|
+
| 'fill-box'
|
|
2478
|
+
| 'stroke-box'
|
|
2479
|
+
| 'view-box'
|
|
2480
|
+
| Globals
|
|
2481
|
+
| (string & {})
|
|
2482
|
+
export type TransformOrigin =
|
|
2483
|
+
| TLengthPercentage
|
|
2484
|
+
| 'left'
|
|
2485
|
+
| 'center'
|
|
2486
|
+
| 'right'
|
|
2487
|
+
| 'top'
|
|
2488
|
+
| 'bottom'
|
|
2489
|
+
| TLengthPercentage
|
|
2490
|
+
| 'left'
|
|
2491
|
+
| 'center'
|
|
2492
|
+
| 'right'
|
|
2493
|
+
| TLengthPercentage
|
|
2494
|
+
| 'top'
|
|
2495
|
+
| 'center'
|
|
2496
|
+
| 'bottom'
|
|
2497
|
+
| number
|
|
2498
|
+
| Globals
|
|
2499
|
+
| (string & {})
|
|
2500
|
+
export type TransformStyle = 'flat' | 'preserve-3d' | Globals | (string & {})
|
|
2501
|
+
export type TransitionBehavior =
|
|
2502
|
+
| TTransitionBehaviorValue
|
|
2503
|
+
| Globals
|
|
2504
|
+
| (string & {})
|
|
1043
2505
|
export type TransitionDelay = Globals | (string & {})
|
|
1044
2506
|
export type TransitionDuration = Globals | (string & {})
|
|
1045
|
-
export type TransitionProperty =
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
export type
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
export type
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
2507
|
+
export type TransitionProperty =
|
|
2508
|
+
| 'none'
|
|
2509
|
+
| TSingleTransitionProperty
|
|
2510
|
+
| Globals
|
|
2511
|
+
| (string & {})
|
|
2512
|
+
export type TransitionTimingFunction =
|
|
2513
|
+
| TEasingFunction
|
|
2514
|
+
| Globals
|
|
2515
|
+
| (string & {})
|
|
2516
|
+
export type Translate =
|
|
2517
|
+
| 'none'
|
|
2518
|
+
| TLengthPercentage
|
|
2519
|
+
| TLengthPercentage
|
|
2520
|
+
| number
|
|
2521
|
+
| Globals
|
|
2522
|
+
| (string & {})
|
|
2523
|
+
export type UnicodeBidi =
|
|
2524
|
+
| 'normal'
|
|
2525
|
+
| 'embed'
|
|
2526
|
+
| 'isolate'
|
|
2527
|
+
| 'bidi-override'
|
|
2528
|
+
| 'isolate-override'
|
|
2529
|
+
| 'plaintext'
|
|
2530
|
+
| Globals
|
|
2531
|
+
| (string & {})
|
|
2532
|
+
export type UserSelect =
|
|
2533
|
+
| 'auto'
|
|
2534
|
+
| 'text'
|
|
2535
|
+
| 'none'
|
|
2536
|
+
| 'all'
|
|
2537
|
+
| Globals
|
|
2538
|
+
| (string & {})
|
|
2539
|
+
export type VectorEffect =
|
|
2540
|
+
| 'none'
|
|
2541
|
+
| 'non-scaling-stroke'
|
|
2542
|
+
| 'non-scaling-size'
|
|
2543
|
+
| 'non-rotation'
|
|
2544
|
+
| 'fixed-position'
|
|
2545
|
+
| Globals
|
|
2546
|
+
| (string & {})
|
|
2547
|
+
export type VerticalAlign =
|
|
2548
|
+
| 'baseline'
|
|
2549
|
+
| 'sub'
|
|
2550
|
+
| 'super'
|
|
2551
|
+
| 'text-top'
|
|
2552
|
+
| 'text-bottom'
|
|
2553
|
+
| 'middle'
|
|
2554
|
+
| 'top'
|
|
2555
|
+
| 'bottom'
|
|
2556
|
+
| number
|
|
2557
|
+
| Globals
|
|
2558
|
+
| (string & {})
|
|
2559
|
+
export type ViewTimelineAxis =
|
|
2560
|
+
| 'block'
|
|
2561
|
+
| 'inline'
|
|
2562
|
+
| 'x'
|
|
2563
|
+
| 'y'
|
|
2564
|
+
| Globals
|
|
2565
|
+
| (string & {})
|
|
2566
|
+
export type ViewTimelineInset =
|
|
2567
|
+
| 'auto'
|
|
2568
|
+
| TLengthPercentage
|
|
2569
|
+
| Globals
|
|
2570
|
+
| (string & {})
|
|
2571
|
+
export type ViewTimelineName = 'none' | Globals | (string & {})
|
|
2572
|
+
export type ViewTransitionClass = 'none' | Globals | (string & {})
|
|
2573
|
+
export type ViewTransitionName =
|
|
2574
|
+
| 'none'
|
|
2575
|
+
| 'match-element'
|
|
2576
|
+
| Globals
|
|
2577
|
+
| (string & {})
|
|
2578
|
+
export type Visibility =
|
|
2579
|
+
| 'visible'
|
|
2580
|
+
| 'hidden'
|
|
2581
|
+
| 'collapse'
|
|
2582
|
+
| Globals
|
|
2583
|
+
| (string & {})
|
|
2584
|
+
export type WhiteSpace =
|
|
2585
|
+
| 'normal'
|
|
2586
|
+
| 'pre'
|
|
2587
|
+
| 'pre-wrap'
|
|
2588
|
+
| 'pre-line'
|
|
2589
|
+
| Property.WhiteSpaceCollapse
|
|
2590
|
+
| Property.TextWrapMode
|
|
2591
|
+
| Globals
|
|
2592
|
+
| (string & {})
|
|
2593
|
+
export type WhiteSpaceCollapse =
|
|
2594
|
+
| 'collapse'
|
|
2595
|
+
| 'preserve'
|
|
2596
|
+
| 'preserve-breaks'
|
|
2597
|
+
| 'preserve-spaces'
|
|
2598
|
+
| 'break-spaces'
|
|
2599
|
+
| Globals
|
|
2600
|
+
| (string & {})
|
|
1060
2601
|
export type Widows = number | Globals | (string & {})
|
|
1061
|
-
export type Width =
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
2602
|
+
export type Width =
|
|
2603
|
+
| 'auto'
|
|
2604
|
+
| TLengthPercentage
|
|
2605
|
+
| 'min-content'
|
|
2606
|
+
| 'max-content'
|
|
2607
|
+
| 'fit-content'
|
|
2608
|
+
| Globals
|
|
2609
|
+
| (string & {})
|
|
2610
|
+
export type WillChange =
|
|
2611
|
+
| 'auto'
|
|
2612
|
+
| TAnimateableFeature
|
|
2613
|
+
| Globals
|
|
2614
|
+
| (string & {})
|
|
2615
|
+
export type WordBreak =
|
|
2616
|
+
| 'normal'
|
|
2617
|
+
| 'break-all'
|
|
2618
|
+
| 'keep-all'
|
|
2619
|
+
| 'break-word'
|
|
2620
|
+
| 'auto-phrase'
|
|
2621
|
+
| Globals
|
|
2622
|
+
| (string & {})
|
|
2623
|
+
export type WordSpacing = 'normal' | number | Globals | (string & {})
|
|
2624
|
+
export type WordWrap = 'normal' | 'break-word' | Globals | (string & {})
|
|
2625
|
+
export type WritingMode =
|
|
2626
|
+
| 'horizontal-tb'
|
|
2627
|
+
| 'vertical-rl'
|
|
2628
|
+
| 'vertical-lr'
|
|
2629
|
+
| 'sideways-rl'
|
|
2630
|
+
| 'sideways-lr'
|
|
2631
|
+
| Globals
|
|
2632
|
+
| (string & {})
|
|
1067
2633
|
export type X = number | Globals | (string & {})
|
|
1068
2634
|
export type Y = number | Globals | (string & {})
|
|
1069
|
-
export type ZIndex =
|
|
1070
|
-
export type Zoom =
|
|
2635
|
+
export type ZIndex = 'auto' | number | Globals | (string & {})
|
|
2636
|
+
export type Zoom = 'normal' | 'reset' | number | Globals | (string & {})
|
|
1071
2637
|
export type Animation = TSingleAnimation | Globals | (string & {})
|
|
1072
|
-
export type AnimationRange =
|
|
2638
|
+
export type AnimationRange =
|
|
2639
|
+
| Property.AnimationRangeStart
|
|
2640
|
+
| Property.AnimationRangeEnd
|
|
2641
|
+
| Globals
|
|
2642
|
+
| (string & {})
|
|
1073
2643
|
export type Background = TBgLayer | TFinalBgLayer | Globals | (string & {})
|
|
1074
2644
|
export type BackgroundPosition = TBgPosition | Globals | (string & {})
|
|
1075
|
-
export type Border =
|
|
2645
|
+
export type Border =
|
|
2646
|
+
| TLineWidth
|
|
2647
|
+
| TLineStyle
|
|
2648
|
+
| TColor
|
|
2649
|
+
| Globals
|
|
2650
|
+
| (string & {})
|
|
1076
2651
|
export type BorderBlock = Property.BorderBlockStart | Globals | (string & {})
|
|
1077
|
-
export type BorderBlockEnd =
|
|
1078
|
-
|
|
1079
|
-
|
|
2652
|
+
export type BorderBlockEnd =
|
|
2653
|
+
| Property.BorderTopWidth
|
|
2654
|
+
| Property.BorderTopStyle
|
|
2655
|
+
| TColor
|
|
2656
|
+
| Globals
|
|
2657
|
+
| (string & {})
|
|
2658
|
+
export type BorderBlockStart =
|
|
2659
|
+
| Property.BorderTopWidth
|
|
2660
|
+
| Property.BorderTopStyle
|
|
2661
|
+
| TColor
|
|
2662
|
+
| Globals
|
|
2663
|
+
| (string & {})
|
|
2664
|
+
export type BorderBottom =
|
|
2665
|
+
| TLineWidth
|
|
2666
|
+
| TLineStyle
|
|
2667
|
+
| TColor
|
|
2668
|
+
| Globals
|
|
2669
|
+
| (string & {})
|
|
1080
2670
|
export type BorderColor = TColor | Globals | (string & {})
|
|
1081
|
-
export type BorderImage =
|
|
2671
|
+
export type BorderImage =
|
|
2672
|
+
| Property.BorderImageSource
|
|
2673
|
+
| Property.BorderImageSlice
|
|
2674
|
+
| Property.BorderImageWidth
|
|
2675
|
+
| Property.BorderImageWidth
|
|
2676
|
+
| Property.BorderImageOutset
|
|
2677
|
+
| Property.BorderImageRepeat
|
|
2678
|
+
| Globals
|
|
2679
|
+
| (string & {})
|
|
1082
2680
|
export type BorderInline = Property.BorderBlockStart | Globals | (string & {})
|
|
1083
|
-
export type BorderInlineEnd =
|
|
1084
|
-
|
|
1085
|
-
|
|
2681
|
+
export type BorderInlineEnd =
|
|
2682
|
+
| Property.BorderTopWidth
|
|
2683
|
+
| Property.BorderTopStyle
|
|
2684
|
+
| TColor
|
|
2685
|
+
| Globals
|
|
2686
|
+
| (string & {})
|
|
2687
|
+
export type BorderInlineStart =
|
|
2688
|
+
| Property.BorderTopWidth
|
|
2689
|
+
| Property.BorderTopStyle
|
|
2690
|
+
| TColor
|
|
2691
|
+
| Globals
|
|
2692
|
+
| (string & {})
|
|
2693
|
+
export type BorderLeft =
|
|
2694
|
+
| TLineWidth
|
|
2695
|
+
| TLineStyle
|
|
2696
|
+
| TColor
|
|
2697
|
+
| Globals
|
|
2698
|
+
| (string & {})
|
|
1086
2699
|
export type BorderRadius = TLengthPercentage | Globals | (string & {})
|
|
1087
|
-
export type BorderRight =
|
|
2700
|
+
export type BorderRight =
|
|
2701
|
+
| TLineWidth
|
|
2702
|
+
| TLineStyle
|
|
2703
|
+
| TColor
|
|
2704
|
+
| Globals
|
|
2705
|
+
| (string & {})
|
|
1088
2706
|
export type BorderStyle = TLineStyle | Globals | (string & {})
|
|
1089
|
-
export type BorderTop =
|
|
2707
|
+
export type BorderTop =
|
|
2708
|
+
| TLineWidth
|
|
2709
|
+
| TLineStyle
|
|
2710
|
+
| TColor
|
|
2711
|
+
| Globals
|
|
2712
|
+
| (string & {})
|
|
1090
2713
|
export type BorderWidth = TLineWidth | Globals | (string & {})
|
|
1091
|
-
export type Caret =
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
export type
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
2714
|
+
export type Caret =
|
|
2715
|
+
| Property.CaretColor
|
|
2716
|
+
| Property.CaretShape
|
|
2717
|
+
| Globals
|
|
2718
|
+
| (string & {})
|
|
2719
|
+
export type ColumnRule =
|
|
2720
|
+
| Property.ColumnRuleWidth
|
|
2721
|
+
| Property.ColumnRuleStyle
|
|
2722
|
+
| Property.ColumnRuleColor
|
|
2723
|
+
| Globals
|
|
2724
|
+
| (string & {})
|
|
2725
|
+
export type Columns =
|
|
2726
|
+
| Property.ColumnWidth
|
|
2727
|
+
| Property.ColumnCount
|
|
2728
|
+
| Globals
|
|
2729
|
+
| (string & {})
|
|
2730
|
+
export type ContainIntrinsicSize =
|
|
2731
|
+
| 'auto'
|
|
2732
|
+
| 'none'
|
|
2733
|
+
| number
|
|
2734
|
+
| Globals
|
|
2735
|
+
| (string & {})
|
|
2736
|
+
export type Container =
|
|
2737
|
+
| Property.ContainerName
|
|
2738
|
+
| Property.ContainerType
|
|
2739
|
+
| Globals
|
|
2740
|
+
| (string & {})
|
|
2741
|
+
export type Flex =
|
|
2742
|
+
| 'none'
|
|
2743
|
+
| Property.FlexGrow
|
|
2744
|
+
| Property.FlexShrink
|
|
2745
|
+
| Property.FlexBasis
|
|
2746
|
+
| Globals
|
|
2747
|
+
| (string & {})
|
|
2748
|
+
export type FlexFlow =
|
|
2749
|
+
| Property.FlexDirection
|
|
2750
|
+
| Property.FlexWrap
|
|
2751
|
+
| Globals
|
|
2752
|
+
| (string & {})
|
|
2753
|
+
export type Font =
|
|
2754
|
+
| Property.FontStyle
|
|
2755
|
+
| TFontVariantCss2
|
|
2756
|
+
| Property.FontWeight
|
|
2757
|
+
| TFontWidthCss3
|
|
2758
|
+
| Property.FontSize
|
|
2759
|
+
| Property.LineHeight
|
|
2760
|
+
| Property.FontFamily
|
|
2761
|
+
| TSystemFamilyName
|
|
2762
|
+
| Globals
|
|
2763
|
+
| (string & {})
|
|
2764
|
+
export type Gap =
|
|
2765
|
+
| Property.RowGap
|
|
2766
|
+
| Property.ColumnGap
|
|
2767
|
+
| Globals
|
|
2768
|
+
| (string & {})
|
|
2769
|
+
export type Grid =
|
|
2770
|
+
| Property.GridTemplate
|
|
2771
|
+
| Property.GridTemplateRows
|
|
2772
|
+
| 'auto-flow'
|
|
2773
|
+
| 'dense'
|
|
2774
|
+
| Property.GridAutoColumns
|
|
2775
|
+
| 'auto-flow'
|
|
2776
|
+
| 'dense'
|
|
2777
|
+
| Property.GridAutoRows
|
|
2778
|
+
| Property.GridTemplateColumns
|
|
2779
|
+
| Globals
|
|
2780
|
+
| (string & {})
|
|
1101
2781
|
export type GridArea = TGridLine | Globals | (string & {})
|
|
1102
2782
|
export type GridColumn = TGridLine | Globals | (string & {})
|
|
1103
|
-
export type GridGap =
|
|
2783
|
+
export type GridGap =
|
|
2784
|
+
| Property.GridRowGap
|
|
2785
|
+
| Property.GridColumnGap
|
|
2786
|
+
| Globals
|
|
2787
|
+
| (string & {})
|
|
1104
2788
|
export type GridRow = TGridLine | Globals | (string & {})
|
|
1105
|
-
export type GridTemplate =
|
|
2789
|
+
export type GridTemplate =
|
|
2790
|
+
| 'none'
|
|
2791
|
+
| Property.GridTemplateRows
|
|
2792
|
+
| Property.GridTemplateColumns
|
|
2793
|
+
| TLineNames
|
|
2794
|
+
| (string & {})
|
|
2795
|
+
| TTrackSize
|
|
2796
|
+
| TExplicitTrackList
|
|
2797
|
+
| Globals
|
|
2798
|
+
| (string & {})
|
|
1106
2799
|
export type Inset = Property.Top | Globals | (string & {})
|
|
1107
2800
|
export type InsetBlock = Property.Top | Globals | (string & {})
|
|
1108
2801
|
export type InsetInline = Property.Top | Globals | (string & {})
|
|
1109
|
-
export type ListStyle =
|
|
2802
|
+
export type ListStyle =
|
|
2803
|
+
| Property.ListStyleType
|
|
2804
|
+
| Property.ListStylePosition
|
|
2805
|
+
| Property.ListStyleImage
|
|
2806
|
+
| Globals
|
|
2807
|
+
| (string & {})
|
|
1110
2808
|
export type Margin = Property.MarginTop | Globals | (string & {})
|
|
1111
2809
|
export type MarginBlock = Property.MarginTop | Globals | (string & {})
|
|
1112
2810
|
export type MarginInline = Property.MarginTop | Globals | (string & {})
|
|
1113
2811
|
export type Mask = TMaskLayer | Globals | (string & {})
|
|
1114
|
-
export type MaskBorder =
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
2812
|
+
export type MaskBorder =
|
|
2813
|
+
| Property.MaskBorderSource
|
|
2814
|
+
| Property.MaskBorderSlice
|
|
2815
|
+
| Property.MaskBorderWidth
|
|
2816
|
+
| Property.MaskBorderOutset
|
|
2817
|
+
| Property.MaskBorderRepeat
|
|
2818
|
+
| Property.MaskBorderMode
|
|
2819
|
+
| Globals
|
|
2820
|
+
| (string & {})
|
|
2821
|
+
export type Offset =
|
|
2822
|
+
| Property.OffsetPosition
|
|
2823
|
+
| Property.OffsetPath
|
|
2824
|
+
| Property.OffsetDistance
|
|
2825
|
+
| Property.OffsetRotate
|
|
2826
|
+
| Property.OffsetAnchor
|
|
2827
|
+
| Globals
|
|
2828
|
+
| (string & {})
|
|
2829
|
+
export type Outline =
|
|
2830
|
+
| Property.OutlineWidth
|
|
2831
|
+
| Property.OutlineStyle
|
|
2832
|
+
| Property.OutlineColor
|
|
2833
|
+
| Globals
|
|
2834
|
+
| (string & {})
|
|
2835
|
+
export type Overflow =
|
|
2836
|
+
| 'visible'
|
|
2837
|
+
| 'hidden'
|
|
2838
|
+
| 'clip'
|
|
2839
|
+
| 'scroll'
|
|
2840
|
+
| 'auto'
|
|
2841
|
+
| Globals
|
|
2842
|
+
| (string & {})
|
|
2843
|
+
export type OverscrollBehavior =
|
|
2844
|
+
| 'contain'
|
|
2845
|
+
| 'none'
|
|
2846
|
+
| 'auto'
|
|
2847
|
+
| Globals
|
|
2848
|
+
| (string & {})
|
|
1119
2849
|
export type Padding = Property.PaddingTop | Globals | (string & {})
|
|
1120
2850
|
export type PaddingBlock = Property.PaddingTop | Globals | (string & {})
|
|
1121
2851
|
export type PaddingInline = Property.PaddingTop | Globals | (string & {})
|
|
1122
|
-
export type PlaceContent =
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
2852
|
+
export type PlaceContent =
|
|
2853
|
+
| Property.AlignContent
|
|
2854
|
+
| Property.JustifyContent
|
|
2855
|
+
| Globals
|
|
2856
|
+
| (string & {})
|
|
2857
|
+
export type PlaceItems =
|
|
2858
|
+
| Property.AlignItems
|
|
2859
|
+
| Property.JustifyItems
|
|
2860
|
+
| Globals
|
|
2861
|
+
| (string & {})
|
|
2862
|
+
export type PlaceSelf =
|
|
2863
|
+
| Property.AlignSelf
|
|
2864
|
+
| Property.JustifySelf
|
|
2865
|
+
| Globals
|
|
2866
|
+
| (string & {})
|
|
2867
|
+
export type PositionTry =
|
|
2868
|
+
| Property.PositionTryOrder
|
|
2869
|
+
| Property.PositionTryFallbacks
|
|
2870
|
+
| Globals
|
|
2871
|
+
| (string & {})
|
|
1126
2872
|
export type ScrollMargin = number | Globals | (string & {})
|
|
1127
2873
|
export type ScrollMarginBlock = number | Globals | (string & {})
|
|
1128
2874
|
export type ScrollMarginInline = number | Globals | (string & {})
|
|
1129
|
-
export type ScrollPadding =
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
export type
|
|
1135
|
-
|
|
2875
|
+
export type ScrollPadding =
|
|
2876
|
+
| 'auto'
|
|
2877
|
+
| TLengthPercentage
|
|
2878
|
+
| Globals
|
|
2879
|
+
| (string & {})
|
|
2880
|
+
export type ScrollPaddingBlock =
|
|
2881
|
+
| 'auto'
|
|
2882
|
+
| TLengthPercentage
|
|
2883
|
+
| Globals
|
|
2884
|
+
| (string & {})
|
|
2885
|
+
export type ScrollPaddingInline =
|
|
2886
|
+
| 'auto'
|
|
2887
|
+
| TLengthPercentage
|
|
2888
|
+
| Globals
|
|
2889
|
+
| (string & {})
|
|
2890
|
+
export type ScrollTimeline =
|
|
2891
|
+
| Property.ScrollTimelineName
|
|
2892
|
+
| Property.ScrollTimelineAxis
|
|
2893
|
+
| Globals
|
|
2894
|
+
| (string & {})
|
|
2895
|
+
export type TextDecoration =
|
|
2896
|
+
| Property.TextDecorationLine
|
|
2897
|
+
| Property.TextDecorationStyle
|
|
2898
|
+
| Property.TextDecorationColor
|
|
2899
|
+
| Property.TextDecorationThickness
|
|
2900
|
+
| Globals
|
|
2901
|
+
| (string & {})
|
|
2902
|
+
export type TextEmphasis =
|
|
2903
|
+
| Property.TextEmphasisStyle
|
|
2904
|
+
| Property.TextEmphasisColor
|
|
2905
|
+
| Globals
|
|
2906
|
+
| (string & {})
|
|
2907
|
+
export type TextWrap =
|
|
2908
|
+
| Property.TextWrapMode
|
|
2909
|
+
| Property.TextWrapStyle
|
|
2910
|
+
| Globals
|
|
2911
|
+
| (string & {})
|
|
1136
2912
|
export type Transition = TSingleTransition | Globals | (string & {})
|
|
1137
|
-
export type ViewTimeline =
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
2913
|
+
export type ViewTimeline =
|
|
2914
|
+
| Property.ViewTimelineName
|
|
2915
|
+
| Property.ViewTimelineAxis
|
|
2916
|
+
| Property.ViewTimelineInset
|
|
2917
|
+
| Globals
|
|
2918
|
+
| (string & {})
|
|
2919
|
+
export type MsAccelerator = 'false' | 'true' | Globals | (string & {})
|
|
2920
|
+
export type MsBlockProgression =
|
|
2921
|
+
| 'tb'
|
|
2922
|
+
| 'rl'
|
|
2923
|
+
| 'bt'
|
|
2924
|
+
| 'lr'
|
|
2925
|
+
| Globals
|
|
2926
|
+
| (string & {})
|
|
2927
|
+
export type MsContentZoomChaining =
|
|
2928
|
+
| 'none'
|
|
2929
|
+
| 'chained'
|
|
2930
|
+
| Globals
|
|
2931
|
+
| (string & {})
|
|
1141
2932
|
export type MsContentZoomLimitMax = number | Globals | (string & {})
|
|
1142
2933
|
export type MsContentZoomLimitMin = number | Globals | (string & {})
|
|
1143
2934
|
export type MsContentZoomSnapPoints = number | Globals | (string & {})
|
|
1144
|
-
export type MsContentZoomSnapType =
|
|
1145
|
-
|
|
2935
|
+
export type MsContentZoomSnapType =
|
|
2936
|
+
| 'none'
|
|
2937
|
+
| 'proximity'
|
|
2938
|
+
| 'mandatory'
|
|
2939
|
+
| Globals
|
|
2940
|
+
| (string & {})
|
|
2941
|
+
export type MsContentZooming = 'none' | 'zoom' | Globals | (string & {})
|
|
1146
2942
|
export type MsFilter = (string & {}) | Globals | (string & {})
|
|
1147
|
-
export type MsFlowFrom =
|
|
1148
|
-
export type MsFlowInto =
|
|
1149
|
-
export type MsGridColumns =
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
2943
|
+
export type MsFlowFrom = 'none' | Globals | (string & {})
|
|
2944
|
+
export type MsFlowInto = 'none' | Globals | (string & {})
|
|
2945
|
+
export type MsGridColumns =
|
|
2946
|
+
| 'none'
|
|
2947
|
+
| TTrackList
|
|
2948
|
+
| TAutoTrackList
|
|
2949
|
+
| Globals
|
|
2950
|
+
| (string & {})
|
|
2951
|
+
export type MsGridRows =
|
|
2952
|
+
| 'none'
|
|
2953
|
+
| TTrackList
|
|
2954
|
+
| TAutoTrackList
|
|
2955
|
+
| Globals
|
|
2956
|
+
| (string & {})
|
|
2957
|
+
export type MsHighContrastAdjust = 'auto' | 'none' | Globals | (string & {})
|
|
2958
|
+
export type MsHyphenateLimitChars = 'auto' | number | Globals | (string & {})
|
|
2959
|
+
export type MsHyphenateLimitLines =
|
|
2960
|
+
| 'no-limit'
|
|
2961
|
+
| number
|
|
2962
|
+
| Globals
|
|
2963
|
+
| (string & {})
|
|
1154
2964
|
export type MsHyphenateLimitZone = number | Globals | (string & {})
|
|
1155
|
-
export type MsImeAlign =
|
|
1156
|
-
export type MsOverflowStyle =
|
|
1157
|
-
|
|
1158
|
-
|
|
2965
|
+
export type MsImeAlign = 'auto' | 'after' | Globals | (string & {})
|
|
2966
|
+
export type MsOverflowStyle =
|
|
2967
|
+
| 'auto'
|
|
2968
|
+
| 'none'
|
|
2969
|
+
| 'scrollbar'
|
|
2970
|
+
| '-ms-autohiding-scrollbar'
|
|
2971
|
+
| Globals
|
|
2972
|
+
| (string & {})
|
|
2973
|
+
export type MsScrollChaining = 'chained' | 'none' | Globals | (string & {})
|
|
2974
|
+
export type MsScrollLimitXMax = 'auto' | number | Globals | (string & {})
|
|
1159
2975
|
export type MsScrollLimitXMin = number | Globals | (string & {})
|
|
1160
|
-
export type MsScrollLimitYMax =
|
|
2976
|
+
export type MsScrollLimitYMax = 'auto' | number | Globals | (string & {})
|
|
1161
2977
|
export type MsScrollLimitYMin = number | Globals | (string & {})
|
|
1162
|
-
export type MsScrollRails =
|
|
2978
|
+
export type MsScrollRails = 'none' | 'railed' | Globals | (string & {})
|
|
1163
2979
|
export type MsScrollSnapPointsX = TLengthPercentage | Globals | (string & {})
|
|
1164
2980
|
export type MsScrollSnapPointsY = TLengthPercentage | Globals | (string & {})
|
|
1165
|
-
export type MsScrollSnapType =
|
|
1166
|
-
|
|
2981
|
+
export type MsScrollSnapType =
|
|
2982
|
+
| 'none'
|
|
2983
|
+
| 'proximity'
|
|
2984
|
+
| 'mandatory'
|
|
2985
|
+
| Globals
|
|
2986
|
+
| (string & {})
|
|
2987
|
+
export type MsScrollTranslation =
|
|
2988
|
+
| 'none'
|
|
2989
|
+
| 'vertical-to-horizontal'
|
|
2990
|
+
| Globals
|
|
2991
|
+
| (string & {})
|
|
1167
2992
|
export type MsScrollbar3dlightColor = TColor | Globals | (string & {})
|
|
1168
2993
|
export type MsScrollbarArrowColor = TColor | Globals | (string & {})
|
|
1169
2994
|
export type MsScrollbarBaseColor = TColor | Globals | (string & {})
|
|
@@ -1172,331 +2997,1697 @@ export namespace Property {
|
|
|
1172
2997
|
export type MsScrollbarHighlightColor = TColor | Globals | (string & {})
|
|
1173
2998
|
export type MsScrollbarShadowColor = TColor | Globals | (string & {})
|
|
1174
2999
|
export type MsScrollbarTrackColor = TColor | Globals | (string & {})
|
|
1175
|
-
export type MsTextAutospace =
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
3000
|
+
export type MsTextAutospace =
|
|
3001
|
+
| 'none'
|
|
3002
|
+
| 'ideograph-alpha'
|
|
3003
|
+
| 'ideograph-numeric'
|
|
3004
|
+
| 'ideograph-parenthesis'
|
|
3005
|
+
| 'ideograph-space'
|
|
3006
|
+
| Globals
|
|
3007
|
+
| (string & {})
|
|
3008
|
+
export type MsTouchSelect = 'grippers' | 'none' | Globals | (string & {})
|
|
3009
|
+
export type MsUserSelect =
|
|
3010
|
+
| 'none'
|
|
3011
|
+
| 'element'
|
|
3012
|
+
| 'text'
|
|
3013
|
+
| Globals
|
|
3014
|
+
| (string & {})
|
|
3015
|
+
export type MsWrapFlow =
|
|
3016
|
+
| 'auto'
|
|
3017
|
+
| 'both'
|
|
3018
|
+
| 'start'
|
|
3019
|
+
| 'end'
|
|
3020
|
+
| 'maximum'
|
|
3021
|
+
| 'clear'
|
|
3022
|
+
| Globals
|
|
3023
|
+
| (string & {})
|
|
1179
3024
|
export type MsWrapMargin = number | Globals | (string & {})
|
|
1180
|
-
export type MsWrapThrough =
|
|
1181
|
-
export type MozAppearance =
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
3025
|
+
export type MsWrapThrough = 'wrap' | 'none' | Globals | (string & {})
|
|
3026
|
+
export type MozAppearance =
|
|
3027
|
+
| 'none'
|
|
3028
|
+
| 'button'
|
|
3029
|
+
| 'button-arrow-down'
|
|
3030
|
+
| 'button-arrow-next'
|
|
3031
|
+
| 'button-arrow-previous'
|
|
3032
|
+
| 'button-arrow-up'
|
|
3033
|
+
| 'button-bevel'
|
|
3034
|
+
| 'button-focus'
|
|
3035
|
+
| 'caret'
|
|
3036
|
+
| 'checkbox'
|
|
3037
|
+
| 'checkbox-container'
|
|
3038
|
+
| 'checkbox-label'
|
|
3039
|
+
| 'checkmenuitem'
|
|
3040
|
+
| 'dualbutton'
|
|
3041
|
+
| 'groupbox'
|
|
3042
|
+
| 'listbox'
|
|
3043
|
+
| 'listitem'
|
|
3044
|
+
| 'menuarrow'
|
|
3045
|
+
| 'menubar'
|
|
3046
|
+
| 'menucheckbox'
|
|
3047
|
+
| 'menuimage'
|
|
3048
|
+
| 'menuitem'
|
|
3049
|
+
| 'menuitemtext'
|
|
3050
|
+
| 'menulist'
|
|
3051
|
+
| 'menulist-button'
|
|
3052
|
+
| 'menulist-text'
|
|
3053
|
+
| 'menulist-textfield'
|
|
3054
|
+
| 'menupopup'
|
|
3055
|
+
| 'menuradio'
|
|
3056
|
+
| 'menuseparator'
|
|
3057
|
+
| 'meterbar'
|
|
3058
|
+
| 'meterchunk'
|
|
3059
|
+
| 'progressbar'
|
|
3060
|
+
| 'progressbar-vertical'
|
|
3061
|
+
| 'progresschunk'
|
|
3062
|
+
| 'progresschunk-vertical'
|
|
3063
|
+
| 'radio'
|
|
3064
|
+
| 'radio-container'
|
|
3065
|
+
| 'radio-label'
|
|
3066
|
+
| 'radiomenuitem'
|
|
3067
|
+
| 'range'
|
|
3068
|
+
| 'range-thumb'
|
|
3069
|
+
| 'resizer'
|
|
3070
|
+
| 'resizerpanel'
|
|
3071
|
+
| 'scale-horizontal'
|
|
3072
|
+
| 'scalethumbend'
|
|
3073
|
+
| 'scalethumb-horizontal'
|
|
3074
|
+
| 'scalethumbstart'
|
|
3075
|
+
| 'scalethumbtick'
|
|
3076
|
+
| 'scalethumb-vertical'
|
|
3077
|
+
| 'scale-vertical'
|
|
3078
|
+
| 'scrollbarbutton-down'
|
|
3079
|
+
| 'scrollbarbutton-left'
|
|
3080
|
+
| 'scrollbarbutton-right'
|
|
3081
|
+
| 'scrollbarbutton-up'
|
|
3082
|
+
| 'scrollbarthumb-horizontal'
|
|
3083
|
+
| 'scrollbarthumb-vertical'
|
|
3084
|
+
| 'scrollbartrack-horizontal'
|
|
3085
|
+
| 'scrollbartrack-vertical'
|
|
3086
|
+
| 'searchfield'
|
|
3087
|
+
| 'separator'
|
|
3088
|
+
| 'sheet'
|
|
3089
|
+
| 'spinner'
|
|
3090
|
+
| 'spinner-downbutton'
|
|
3091
|
+
| 'spinner-textfield'
|
|
3092
|
+
| 'spinner-upbutton'
|
|
3093
|
+
| 'splitter'
|
|
3094
|
+
| 'statusbar'
|
|
3095
|
+
| 'statusbarpanel'
|
|
3096
|
+
| 'tab'
|
|
3097
|
+
| 'tabpanel'
|
|
3098
|
+
| 'tabpanels'
|
|
3099
|
+
| 'tab-scroll-arrow-back'
|
|
3100
|
+
| 'tab-scroll-arrow-forward'
|
|
3101
|
+
| 'textfield'
|
|
3102
|
+
| 'textfield-multiline'
|
|
3103
|
+
| 'toolbar'
|
|
3104
|
+
| 'toolbarbutton'
|
|
3105
|
+
| 'toolbarbutton-dropdown'
|
|
3106
|
+
| 'toolbargripper'
|
|
3107
|
+
| 'toolbox'
|
|
3108
|
+
| 'tooltip'
|
|
3109
|
+
| 'treeheader'
|
|
3110
|
+
| 'treeheadercell'
|
|
3111
|
+
| 'treeheadersortarrow'
|
|
3112
|
+
| 'treeitem'
|
|
3113
|
+
| 'treeline'
|
|
3114
|
+
| 'treetwisty'
|
|
3115
|
+
| 'treetwistyopen'
|
|
3116
|
+
| 'treeview'
|
|
3117
|
+
| '-moz-mac-unified-toolbar'
|
|
3118
|
+
| '-moz-win-borderless-glass'
|
|
3119
|
+
| '-moz-win-browsertabbar-toolbox'
|
|
3120
|
+
| '-moz-win-communicationstext'
|
|
3121
|
+
| '-moz-win-communications-toolbox'
|
|
3122
|
+
| '-moz-win-exclude-glass'
|
|
3123
|
+
| '-moz-win-glass'
|
|
3124
|
+
| '-moz-win-mediatext'
|
|
3125
|
+
| '-moz-win-media-toolbox'
|
|
3126
|
+
| '-moz-window-button-box'
|
|
3127
|
+
| '-moz-window-button-box-maximized'
|
|
3128
|
+
| '-moz-window-button-close'
|
|
3129
|
+
| '-moz-window-button-maximize'
|
|
3130
|
+
| '-moz-window-button-minimize'
|
|
3131
|
+
| '-moz-window-button-restore'
|
|
3132
|
+
| '-moz-window-frame-bottom'
|
|
3133
|
+
| '-moz-window-frame-left'
|
|
3134
|
+
| '-moz-window-frame-right'
|
|
3135
|
+
| '-moz-window-titlebar'
|
|
3136
|
+
| '-moz-window-titlebar-maximized'
|
|
3137
|
+
| Globals
|
|
3138
|
+
| (string & {})
|
|
3139
|
+
export type MozBinding = 'none' | Globals | (string & {})
|
|
3140
|
+
export type MozBorderBottomColors = TColor | 'none' | Globals | (string & {})
|
|
3141
|
+
export type MozBorderLeftColors = TColor | 'none' | Globals | (string & {})
|
|
3142
|
+
export type MozBorderRightColors = TColor | 'none' | Globals | (string & {})
|
|
3143
|
+
export type MozBorderTopColors = TColor | 'none' | Globals | (string & {})
|
|
3144
|
+
export type MozContextProperties =
|
|
3145
|
+
| 'none'
|
|
3146
|
+
| 'fill'
|
|
3147
|
+
| 'fill-opacity'
|
|
3148
|
+
| 'stroke'
|
|
3149
|
+
| 'stroke-opacity'
|
|
3150
|
+
| Globals
|
|
3151
|
+
| (string & {})
|
|
3152
|
+
export type MozFloatEdge =
|
|
3153
|
+
| 'border-box'
|
|
3154
|
+
| 'content-box'
|
|
3155
|
+
| 'margin-box'
|
|
3156
|
+
| 'padding-box'
|
|
3157
|
+
| Globals
|
|
3158
|
+
| (string & {})
|
|
3159
|
+
export type MozForceBrokenImageIcon = '0' | '1' | Globals | (string & {})
|
|
3160
|
+
export type MozOrient =
|
|
3161
|
+
| 'inline'
|
|
3162
|
+
| 'block'
|
|
3163
|
+
| 'horizontal'
|
|
3164
|
+
| 'vertical'
|
|
3165
|
+
| Globals
|
|
3166
|
+
| (string & {})
|
|
3167
|
+
export type MozOutlineRadiusBottomleft =
|
|
3168
|
+
| TOutlineRadius
|
|
3169
|
+
| Globals
|
|
3170
|
+
| (string & {})
|
|
3171
|
+
export type MozOutlineRadiusBottomright =
|
|
3172
|
+
| TOutlineRadius
|
|
3173
|
+
| Globals
|
|
3174
|
+
| (string & {})
|
|
1193
3175
|
export type MozOutlineRadiusTopleft = TOutlineRadius | Globals | (string & {})
|
|
1194
|
-
export type MozOutlineRadiusTopright =
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
export type
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
3176
|
+
export type MozOutlineRadiusTopright =
|
|
3177
|
+
| TOutlineRadius
|
|
3178
|
+
| Globals
|
|
3179
|
+
| (string & {})
|
|
3180
|
+
export type MozStackSizing =
|
|
3181
|
+
| 'ignore'
|
|
3182
|
+
| 'stretch-to-fit'
|
|
3183
|
+
| Globals
|
|
3184
|
+
| (string & {})
|
|
3185
|
+
export type MozTextBlink = 'none' | 'blink' | Globals | (string & {})
|
|
3186
|
+
export type MozUserFocus =
|
|
3187
|
+
| 'ignore'
|
|
3188
|
+
| 'normal'
|
|
3189
|
+
| 'select-after'
|
|
3190
|
+
| 'select-before'
|
|
3191
|
+
| 'select-menu'
|
|
3192
|
+
| 'select-same'
|
|
3193
|
+
| 'select-all'
|
|
3194
|
+
| 'none'
|
|
3195
|
+
| Globals
|
|
3196
|
+
| (string & {})
|
|
3197
|
+
export type MozUserInput =
|
|
3198
|
+
| 'auto'
|
|
3199
|
+
| 'none'
|
|
3200
|
+
| 'enabled'
|
|
3201
|
+
| 'disabled'
|
|
3202
|
+
| Globals
|
|
3203
|
+
| (string & {})
|
|
3204
|
+
export type MozUserModify =
|
|
3205
|
+
| 'read-only'
|
|
3206
|
+
| 'read-write'
|
|
3207
|
+
| 'write-only'
|
|
3208
|
+
| Globals
|
|
3209
|
+
| (string & {})
|
|
3210
|
+
export type MozWindowDragging = 'drag' | 'no-drag' | Globals | (string & {})
|
|
3211
|
+
export type MozWindowShadow =
|
|
3212
|
+
| 'default'
|
|
3213
|
+
| 'menu'
|
|
3214
|
+
| 'tooltip'
|
|
3215
|
+
| 'sheet'
|
|
3216
|
+
| 'none'
|
|
3217
|
+
| Globals
|
|
3218
|
+
| (string & {})
|
|
3219
|
+
export type WebkitAppearance =
|
|
3220
|
+
| 'none'
|
|
3221
|
+
| 'button'
|
|
3222
|
+
| 'button-bevel'
|
|
3223
|
+
| 'caret'
|
|
3224
|
+
| 'checkbox'
|
|
3225
|
+
| 'default-button'
|
|
3226
|
+
| 'inner-spin-button'
|
|
3227
|
+
| 'listbox'
|
|
3228
|
+
| 'listitem'
|
|
3229
|
+
| 'media-controls-background'
|
|
3230
|
+
| 'media-controls-fullscreen-background'
|
|
3231
|
+
| 'media-current-time-display'
|
|
3232
|
+
| 'media-enter-fullscreen-button'
|
|
3233
|
+
| 'media-exit-fullscreen-button'
|
|
3234
|
+
| 'media-fullscreen-button'
|
|
3235
|
+
| 'media-mute-button'
|
|
3236
|
+
| 'media-overlay-play-button'
|
|
3237
|
+
| 'media-play-button'
|
|
3238
|
+
| 'media-seek-back-button'
|
|
3239
|
+
| 'media-seek-forward-button'
|
|
3240
|
+
| 'media-slider'
|
|
3241
|
+
| 'media-sliderthumb'
|
|
3242
|
+
| 'media-time-remaining-display'
|
|
3243
|
+
| 'media-toggle-closed-captions-button'
|
|
3244
|
+
| 'media-volume-slider'
|
|
3245
|
+
| 'media-volume-slider-container'
|
|
3246
|
+
| 'media-volume-sliderthumb'
|
|
3247
|
+
| 'menulist'
|
|
3248
|
+
| 'menulist-button'
|
|
3249
|
+
| 'menulist-text'
|
|
3250
|
+
| 'menulist-textfield'
|
|
3251
|
+
| 'meter'
|
|
3252
|
+
| 'progress-bar'
|
|
3253
|
+
| 'progress-bar-value'
|
|
3254
|
+
| 'push-button'
|
|
3255
|
+
| 'radio'
|
|
3256
|
+
| 'searchfield'
|
|
3257
|
+
| 'searchfield-cancel-button'
|
|
3258
|
+
| 'searchfield-decoration'
|
|
3259
|
+
| 'searchfield-results-button'
|
|
3260
|
+
| 'searchfield-results-decoration'
|
|
3261
|
+
| 'slider-horizontal'
|
|
3262
|
+
| 'slider-vertical'
|
|
3263
|
+
| 'sliderthumb-horizontal'
|
|
3264
|
+
| 'sliderthumb-vertical'
|
|
3265
|
+
| 'square-button'
|
|
3266
|
+
| 'textarea'
|
|
3267
|
+
| 'textfield'
|
|
3268
|
+
| '-apple-pay-button'
|
|
3269
|
+
| Globals
|
|
3270
|
+
| (string & {})
|
|
1203
3271
|
export type WebkitBorderBeforeColor = TColor | Globals | (string & {})
|
|
1204
|
-
export type WebkitBorderBeforeStyle =
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
3272
|
+
export type WebkitBorderBeforeStyle =
|
|
3273
|
+
| Property.BorderStyle
|
|
3274
|
+
| Globals
|
|
3275
|
+
| (string & {})
|
|
3276
|
+
export type WebkitBorderBeforeWidth =
|
|
3277
|
+
| Property.BorderWidth
|
|
3278
|
+
| Globals
|
|
3279
|
+
| (string & {})
|
|
3280
|
+
export type WebkitBoxReflect =
|
|
3281
|
+
| 'above'
|
|
3282
|
+
| 'below'
|
|
3283
|
+
| 'right'
|
|
3284
|
+
| 'left'
|
|
3285
|
+
| number
|
|
3286
|
+
| TImage
|
|
3287
|
+
| Globals
|
|
3288
|
+
| (string & {})
|
|
3289
|
+
export type WebkitLineClamp = 'none' | number | Globals | (string & {})
|
|
1208
3290
|
export type WebkitMaskAttachment = TAttachment | Globals | (string & {})
|
|
1209
|
-
export type WebkitMaskClip =
|
|
3291
|
+
export type WebkitMaskClip =
|
|
3292
|
+
| TCoordBox
|
|
3293
|
+
| 'no-clip'
|
|
3294
|
+
| 'border'
|
|
3295
|
+
| 'padding'
|
|
3296
|
+
| 'content'
|
|
3297
|
+
| 'text'
|
|
3298
|
+
| Globals
|
|
3299
|
+
| (string & {})
|
|
1210
3300
|
export type WebkitMaskComposite = TCompositeStyle | Globals | (string & {})
|
|
1211
3301
|
export type WebkitMaskImage = TMaskReference | Globals | (string & {})
|
|
1212
|
-
export type WebkitMaskOrigin =
|
|
3302
|
+
export type WebkitMaskOrigin =
|
|
3303
|
+
| TCoordBox
|
|
3304
|
+
| 'border'
|
|
3305
|
+
| 'padding'
|
|
3306
|
+
| 'content'
|
|
3307
|
+
| Globals
|
|
3308
|
+
| (string & {})
|
|
1213
3309
|
export type WebkitMaskPosition = TPosition | Globals | (string & {})
|
|
1214
|
-
export type WebkitMaskPositionX =
|
|
1215
|
-
|
|
3310
|
+
export type WebkitMaskPositionX =
|
|
3311
|
+
| TLengthPercentage
|
|
3312
|
+
| 'left'
|
|
3313
|
+
| 'center'
|
|
3314
|
+
| 'right'
|
|
3315
|
+
| Globals
|
|
3316
|
+
| (string & {})
|
|
3317
|
+
export type WebkitMaskPositionY =
|
|
3318
|
+
| TLengthPercentage
|
|
3319
|
+
| 'top'
|
|
3320
|
+
| 'center'
|
|
3321
|
+
| 'bottom'
|
|
3322
|
+
| Globals
|
|
3323
|
+
| (string & {})
|
|
1216
3324
|
export type WebkitMaskRepeat = TRepeatStyle | Globals | (string & {})
|
|
1217
|
-
export type WebkitMaskRepeatX =
|
|
1218
|
-
|
|
3325
|
+
export type WebkitMaskRepeatX =
|
|
3326
|
+
| 'repeat'
|
|
3327
|
+
| 'no-repeat'
|
|
3328
|
+
| 'space'
|
|
3329
|
+
| 'round'
|
|
3330
|
+
| Globals
|
|
3331
|
+
| (string & {})
|
|
3332
|
+
export type WebkitMaskRepeatY =
|
|
3333
|
+
| 'repeat'
|
|
3334
|
+
| 'no-repeat'
|
|
3335
|
+
| 'space'
|
|
3336
|
+
| 'round'
|
|
3337
|
+
| Globals
|
|
3338
|
+
| (string & {})
|
|
1219
3339
|
export type WebkitMaskSize = TBgSize | Globals | (string & {})
|
|
1220
|
-
export type WebkitOverflowScrolling =
|
|
3340
|
+
export type WebkitOverflowScrolling =
|
|
3341
|
+
| 'auto'
|
|
3342
|
+
| 'touch'
|
|
3343
|
+
| Globals
|
|
3344
|
+
| (string & {})
|
|
1221
3345
|
export type WebkitTapHighlightColor = TColor | Globals | (string & {})
|
|
1222
3346
|
export type WebkitTextFillColor = TColor | Globals | (string & {})
|
|
1223
3347
|
export type WebkitTextStrokeColor = TColor | Globals | (string & {})
|
|
1224
3348
|
export type WebkitTextStrokeWidth = number | Globals | (string & {})
|
|
1225
|
-
export type WebkitTouchCallout =
|
|
1226
|
-
export type WebkitUserModify =
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
export type
|
|
3349
|
+
export type WebkitTouchCallout = 'default' | 'none' | Globals | (string & {})
|
|
3350
|
+
export type WebkitUserModify =
|
|
3351
|
+
| 'read-only'
|
|
3352
|
+
| 'read-write'
|
|
3353
|
+
| 'read-write-plaintext-only'
|
|
3354
|
+
| Globals
|
|
3355
|
+
| (string & {})
|
|
3356
|
+
export type WebkitUserSelect =
|
|
3357
|
+
| 'auto'
|
|
3358
|
+
| 'text'
|
|
3359
|
+
| 'none'
|
|
3360
|
+
| 'all'
|
|
3361
|
+
| Globals
|
|
3362
|
+
| (string & {})
|
|
3363
|
+
export type MsContentZoomLimit =
|
|
3364
|
+
| Property.MsContentZoomLimitMin
|
|
3365
|
+
| Property.MsContentZoomLimitMax
|
|
3366
|
+
| Globals
|
|
3367
|
+
| (string & {})
|
|
3368
|
+
export type MsContentZoomSnap =
|
|
3369
|
+
| Property.MsContentZoomSnapType
|
|
3370
|
+
| Property.MsContentZoomSnapPoints
|
|
3371
|
+
| Globals
|
|
3372
|
+
| (string & {})
|
|
3373
|
+
export type MsScrollLimit =
|
|
3374
|
+
| Property.MsScrollLimitXMin
|
|
3375
|
+
| Property.MsScrollLimitYMin
|
|
3376
|
+
| Property.MsScrollLimitXMax
|
|
3377
|
+
| Property.MsScrollLimitYMax
|
|
3378
|
+
| Globals
|
|
3379
|
+
| (string & {})
|
|
3380
|
+
export type MsScrollSnapX =
|
|
3381
|
+
| Property.MsScrollSnapType
|
|
3382
|
+
| Property.MsScrollSnapPointsX
|
|
3383
|
+
| Globals
|
|
3384
|
+
| (string & {})
|
|
3385
|
+
export type MsScrollSnapY =
|
|
3386
|
+
| Property.MsScrollSnapType
|
|
3387
|
+
| Property.MsScrollSnapPointsY
|
|
3388
|
+
| Globals
|
|
3389
|
+
| (string & {})
|
|
1233
3390
|
export type MozOutlineRadius = TOutlineRadius | Globals | (string & {})
|
|
1234
|
-
export type WebkitBorderBefore =
|
|
1235
|
-
|
|
3391
|
+
export type WebkitBorderBefore =
|
|
3392
|
+
| Property.BorderWidth
|
|
3393
|
+
| Property.BorderStyle
|
|
3394
|
+
| TColor
|
|
3395
|
+
| Globals
|
|
3396
|
+
| (string & {})
|
|
3397
|
+
export type WebkitMask =
|
|
3398
|
+
| TMaskReference
|
|
3399
|
+
| TPosition
|
|
3400
|
+
| TBgSize
|
|
3401
|
+
| TRepeatStyle
|
|
3402
|
+
| TVisualBox
|
|
3403
|
+
| 'border'
|
|
3404
|
+
| 'padding'
|
|
3405
|
+
| 'content'
|
|
3406
|
+
| 'text'
|
|
3407
|
+
| TVisualBox
|
|
3408
|
+
| 'border'
|
|
3409
|
+
| 'padding'
|
|
3410
|
+
| 'content'
|
|
3411
|
+
| Globals
|
|
3412
|
+
| (string & {})
|
|
1236
3413
|
export type WebkitTextStroke = number | TColor | Globals | (string & {})
|
|
1237
3414
|
}
|
|
1238
|
-
export type TAbsoluteSize =
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
export type
|
|
1249
|
-
export type
|
|
1250
|
-
export type
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
export type
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
export type
|
|
1273
|
-
export type
|
|
1274
|
-
export type
|
|
1275
|
-
export type
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
export type
|
|
1281
|
-
export type
|
|
1282
|
-
export type
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
export type
|
|
1291
|
-
export type
|
|
1292
|
-
export type
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
export type
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
export type
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
export type
|
|
1317
|
-
export type
|
|
1318
|
-
export type
|
|
1319
|
-
export type
|
|
1320
|
-
export type
|
|
1321
|
-
export type
|
|
1322
|
-
export type
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
export type
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
export type
|
|
1355
|
-
export type
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
export type
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
export type
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
export type
|
|
1388
|
-
export type
|
|
1389
|
-
export type
|
|
1390
|
-
export type
|
|
1391
|
-
export type
|
|
1392
|
-
export type
|
|
1393
|
-
export type
|
|
1394
|
-
export type
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
export type
|
|
1402
|
-
export type
|
|
1403
|
-
export type
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
export type
|
|
1411
|
-
export type
|
|
1412
|
-
export type
|
|
1413
|
-
export type
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
export type
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
export type
|
|
1424
|
-
export type
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
export type
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
export type
|
|
1440
|
-
export type
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
export type
|
|
1446
|
-
export type
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
export type
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
export type
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
export type
|
|
1472
|
-
export type
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
export type
|
|
1480
|
-
export type
|
|
1481
|
-
export type
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
export type
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
export type
|
|
1497
|
-
export type
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
3415
|
+
export type TAbsoluteSize =
|
|
3416
|
+
| 'xx-small'
|
|
3417
|
+
| 'x-small'
|
|
3418
|
+
| 'small'
|
|
3419
|
+
| 'medium'
|
|
3420
|
+
| 'large'
|
|
3421
|
+
| 'x-large'
|
|
3422
|
+
| 'xx-large'
|
|
3423
|
+
| 'xxx-large'
|
|
3424
|
+
| Globals
|
|
3425
|
+
export type TAlphaValue = number | Globals
|
|
3426
|
+
export type TAnchorName = Globals
|
|
3427
|
+
export type TAnchorSide =
|
|
3428
|
+
| 'inside'
|
|
3429
|
+
| 'outside'
|
|
3430
|
+
| 'top'
|
|
3431
|
+
| 'left'
|
|
3432
|
+
| 'right'
|
|
3433
|
+
| 'bottom'
|
|
3434
|
+
| 'start'
|
|
3435
|
+
| 'end'
|
|
3436
|
+
| 'self-start'
|
|
3437
|
+
| 'self-end'
|
|
3438
|
+
| number
|
|
3439
|
+
| 'center'
|
|
3440
|
+
| Globals
|
|
3441
|
+
export type TAnchorSize =
|
|
3442
|
+
| 'width'
|
|
3443
|
+
| 'height'
|
|
3444
|
+
| 'block'
|
|
3445
|
+
| 'inline'
|
|
3446
|
+
| 'self-block'
|
|
3447
|
+
| 'self-inline'
|
|
3448
|
+
| Globals
|
|
3449
|
+
export type TAnglePercentage = number | Globals
|
|
3450
|
+
export type TAngularColorHint = TAnglePercentage | Globals
|
|
3451
|
+
export type TAngularColorStop = TColor | TColorStopAngle | Globals
|
|
3452
|
+
export type TAngularColorStopList =
|
|
3453
|
+
| TAngularColorStop
|
|
3454
|
+
| TAngularColorHint
|
|
3455
|
+
| TAngularColorStop
|
|
3456
|
+
| Globals
|
|
3457
|
+
export type TAnimateableFeature = 'scroll-position' | 'contents' | Globals
|
|
3458
|
+
export type TAttachment = 'scroll' | 'fixed' | 'local' | Globals
|
|
3459
|
+
export type TAttrMatcher =
|
|
3460
|
+
| "'~'"
|
|
3461
|
+
| "'|'"
|
|
3462
|
+
| "'^'"
|
|
3463
|
+
| "'$'"
|
|
3464
|
+
| "'*'"
|
|
3465
|
+
| "'='"
|
|
3466
|
+
| Globals
|
|
3467
|
+
export type TAttrModifier = 'i' | 's' | Globals
|
|
3468
|
+
export type TAttrType = 'raw-string' | 'number' | Globals
|
|
3469
|
+
export type TAttributeSelector =
|
|
3470
|
+
| "'['"
|
|
3471
|
+
| TWqName
|
|
3472
|
+
| "']'"
|
|
3473
|
+
| "'['"
|
|
3474
|
+
| TWqName
|
|
3475
|
+
| TAttrMatcher
|
|
3476
|
+
| TAttrModifier
|
|
3477
|
+
| "']'"
|
|
3478
|
+
| Globals
|
|
3479
|
+
export type TAutoRepeat =
|
|
3480
|
+
| 'auto-fill'
|
|
3481
|
+
| 'auto-fit'
|
|
3482
|
+
| TLineNames
|
|
3483
|
+
| TFixedSize
|
|
3484
|
+
| TLineNames
|
|
3485
|
+
| Globals
|
|
3486
|
+
export type TAutoTrackList =
|
|
3487
|
+
| TLineNames
|
|
3488
|
+
| TFixedSize
|
|
3489
|
+
| TFixedRepeat
|
|
3490
|
+
| TLineNames
|
|
3491
|
+
| TAutoRepeat
|
|
3492
|
+
| Globals
|
|
3493
|
+
export type TAxis = 'block' | 'inline' | 'x' | 'y' | Globals
|
|
3494
|
+
export type TBaselinePosition = 'first' | 'last' | 'baseline' | Globals
|
|
3495
|
+
export type TBasicShape = Globals
|
|
3496
|
+
export type TBasicShapeRect = Globals
|
|
3497
|
+
export type TBgClip = TVisualBox | 'border-area' | 'text' | Globals
|
|
3498
|
+
export type TBgImage = TImage | 'none' | Globals
|
|
3499
|
+
export type TBgLayer =
|
|
3500
|
+
| TBgImage
|
|
3501
|
+
| TBgPosition
|
|
3502
|
+
| TBgSize
|
|
3503
|
+
| TRepeatStyle
|
|
3504
|
+
| TAttachment
|
|
3505
|
+
| TVisualBox
|
|
3506
|
+
| Globals
|
|
3507
|
+
export type TBgPosition =
|
|
3508
|
+
| 'left'
|
|
3509
|
+
| 'center'
|
|
3510
|
+
| 'right'
|
|
3511
|
+
| 'top'
|
|
3512
|
+
| 'bottom'
|
|
3513
|
+
| TLengthPercentage
|
|
3514
|
+
| 'left'
|
|
3515
|
+
| 'center'
|
|
3516
|
+
| 'right'
|
|
3517
|
+
| TLengthPercentage
|
|
3518
|
+
| 'top'
|
|
3519
|
+
| 'center'
|
|
3520
|
+
| 'bottom'
|
|
3521
|
+
| TLengthPercentage
|
|
3522
|
+
| 'center'
|
|
3523
|
+
| 'left'
|
|
3524
|
+
| 'right'
|
|
3525
|
+
| TLengthPercentage
|
|
3526
|
+
| 'center'
|
|
3527
|
+
| 'top'
|
|
3528
|
+
| 'bottom'
|
|
3529
|
+
| TLengthPercentage
|
|
3530
|
+
| Globals
|
|
3531
|
+
export type TBgSize = TLengthPercentage | 'auto' | 'cover' | 'contain' | Globals
|
|
3532
|
+
export type TBlendMode =
|
|
3533
|
+
| 'normal'
|
|
3534
|
+
| 'multiply'
|
|
3535
|
+
| 'screen'
|
|
3536
|
+
| 'overlay'
|
|
3537
|
+
| 'darken'
|
|
3538
|
+
| 'lighten'
|
|
3539
|
+
| 'color-dodge'
|
|
3540
|
+
| 'color-burn'
|
|
3541
|
+
| 'hard-light'
|
|
3542
|
+
| 'soft-light'
|
|
3543
|
+
| 'difference'
|
|
3544
|
+
| 'exclusion'
|
|
3545
|
+
| 'hue'
|
|
3546
|
+
| 'saturation'
|
|
3547
|
+
| 'color'
|
|
3548
|
+
| 'luminosity'
|
|
3549
|
+
| Globals
|
|
3550
|
+
export type TCalcConstant =
|
|
3551
|
+
| 'e'
|
|
3552
|
+
| 'pi'
|
|
3553
|
+
| 'infinity'
|
|
3554
|
+
| '-infinity'
|
|
3555
|
+
| 'NaN'
|
|
3556
|
+
| Globals
|
|
3557
|
+
export type TCalcProduct =
|
|
3558
|
+
| TCalcValue
|
|
3559
|
+
| "'*'"
|
|
3560
|
+
| TCalcValue
|
|
3561
|
+
| "'/'"
|
|
3562
|
+
| number
|
|
3563
|
+
| Globals
|
|
3564
|
+
export type TCalcSizeBasis = 'any' | TCalcSum | Globals
|
|
3565
|
+
export type TCalcSum = TCalcProduct | "'+'" | "'-'" | TCalcProduct | Globals
|
|
3566
|
+
export type TCalcValue = number | TCalcConstant | TCalcSum | Globals
|
|
3567
|
+
export type TCfFinalImage = TImage | TColor | Globals
|
|
3568
|
+
export type TCfMixingImage = number | TImage | Globals
|
|
3569
|
+
export type TClassSelector = "'.'" | Globals
|
|
3570
|
+
export type TClipSource = Globals
|
|
3571
|
+
export type TColor =
|
|
3572
|
+
| TColorBase
|
|
3573
|
+
| 'currentColor'
|
|
3574
|
+
| TSystemColor
|
|
3575
|
+
| TDeprecatedSystemColor
|
|
3576
|
+
| Globals
|
|
3577
|
+
| keyof CustomColors
|
|
3578
|
+
export type TColorBase = TColorFunction | TNamedColor | 'transparent' | Globals
|
|
3579
|
+
export type TColorFunction = Globals
|
|
3580
|
+
export type TColorInterpolationMethod =
|
|
3581
|
+
| 'in'
|
|
3582
|
+
| TRectangularColorSpace
|
|
3583
|
+
| TPolarColorSpace
|
|
3584
|
+
| THueInterpolationMethod
|
|
3585
|
+
| TCustomColorSpace
|
|
3586
|
+
| Globals
|
|
3587
|
+
export type TColorStop = TColorStopLength | TColorStopAngle | Globals
|
|
3588
|
+
export type TColorStopAngle = TAnglePercentage | Globals
|
|
3589
|
+
export type TColorStopLength = TLengthPercentage | Globals
|
|
3590
|
+
export type TColorStopList =
|
|
3591
|
+
| TLinearColorStop
|
|
3592
|
+
| TLinearColorHint
|
|
3593
|
+
| TLinearColorStop
|
|
3594
|
+
| Globals
|
|
3595
|
+
export type TColorspaceParams =
|
|
3596
|
+
| TCustomParams
|
|
3597
|
+
| TPredefinedRgbParams
|
|
3598
|
+
| TXyzParams
|
|
3599
|
+
| Globals
|
|
3600
|
+
export type TCombinator = "'>'" | "'+'" | "'~'" | "'||'" | Globals
|
|
3601
|
+
export type TCommonLigValues =
|
|
3602
|
+
| 'common-ligatures'
|
|
3603
|
+
| 'no-common-ligatures'
|
|
3604
|
+
| Globals
|
|
3605
|
+
export type TCompatAuto =
|
|
3606
|
+
| 'searchfield'
|
|
3607
|
+
| 'textarea'
|
|
3608
|
+
| 'checkbox'
|
|
3609
|
+
| 'radio'
|
|
3610
|
+
| 'menulist'
|
|
3611
|
+
| 'listbox'
|
|
3612
|
+
| 'meter'
|
|
3613
|
+
| 'progress-bar'
|
|
3614
|
+
| 'button'
|
|
3615
|
+
| Globals
|
|
3616
|
+
export type TCompatSpecial = 'textfield' | 'menulist-button' | Globals
|
|
3617
|
+
export type TComplexSelector =
|
|
3618
|
+
| TCompoundSelector
|
|
3619
|
+
| TCombinator
|
|
3620
|
+
| TCompoundSelector
|
|
3621
|
+
| Globals
|
|
3622
|
+
export type TComplexSelectorList = TComplexSelector | Globals
|
|
3623
|
+
export type TCompositeStyle =
|
|
3624
|
+
| 'clear'
|
|
3625
|
+
| 'copy'
|
|
3626
|
+
| 'source-over'
|
|
3627
|
+
| 'source-in'
|
|
3628
|
+
| 'source-out'
|
|
3629
|
+
| 'source-atop'
|
|
3630
|
+
| 'destination-over'
|
|
3631
|
+
| 'destination-in'
|
|
3632
|
+
| 'destination-out'
|
|
3633
|
+
| 'destination-atop'
|
|
3634
|
+
| 'xor'
|
|
3635
|
+
| Globals
|
|
3636
|
+
export type TCompositingOperator =
|
|
3637
|
+
| 'add'
|
|
3638
|
+
| 'subtract'
|
|
3639
|
+
| 'intersect'
|
|
3640
|
+
| 'exclude'
|
|
3641
|
+
| Globals
|
|
3642
|
+
export type TCompoundSelector =
|
|
3643
|
+
| TTypeSelector
|
|
3644
|
+
| TSubclassSelector
|
|
3645
|
+
| TPseudoElementSelector
|
|
3646
|
+
| TPseudoClassSelector
|
|
3647
|
+
| Globals
|
|
3648
|
+
export type TCompoundSelectorList = TCompoundSelector | Globals
|
|
3649
|
+
export type TConicGradientSyntax =
|
|
3650
|
+
| 'from'
|
|
3651
|
+
| 'at'
|
|
3652
|
+
| TPosition
|
|
3653
|
+
| TColorInterpolationMethod
|
|
3654
|
+
| TAngularColorStopList
|
|
3655
|
+
| Globals
|
|
3656
|
+
export type TContainerCondition = TContainerName | TContainerQuery | Globals
|
|
3657
|
+
export type TContainerName = Globals
|
|
3658
|
+
export type TContainerQuery =
|
|
3659
|
+
| 'not'
|
|
3660
|
+
| TQueryInParens
|
|
3661
|
+
| TQueryInParens
|
|
3662
|
+
| 'and'
|
|
3663
|
+
| TQueryInParens
|
|
3664
|
+
| 'or'
|
|
3665
|
+
| TQueryInParens
|
|
3666
|
+
| Globals
|
|
3667
|
+
export type TContentDistribution =
|
|
3668
|
+
| 'space-between'
|
|
3669
|
+
| 'space-around'
|
|
3670
|
+
| 'space-evenly'
|
|
3671
|
+
| 'stretch'
|
|
3672
|
+
| Globals
|
|
3673
|
+
export type TContentList = (string & {}) | TImage | TQuote | TCounter | Globals
|
|
3674
|
+
export type TContentPosition =
|
|
3675
|
+
| 'center'
|
|
3676
|
+
| 'start'
|
|
3677
|
+
| 'end'
|
|
3678
|
+
| 'flex-start'
|
|
3679
|
+
| 'flex-end'
|
|
3680
|
+
| Globals
|
|
3681
|
+
export type TContentReplacement = TImage | Globals
|
|
3682
|
+
export type TContextualAltValues = 'contextual' | 'no-contextual' | Globals
|
|
3683
|
+
export type TCoordBox = TPaintBox | 'view-box' | Globals
|
|
3684
|
+
export type TCounter = Globals
|
|
3685
|
+
export type TCounterName = Globals
|
|
3686
|
+
export type TCounterStyle = TCounterStyleName | Globals
|
|
3687
|
+
export type TCounterStyleName = Globals
|
|
3688
|
+
export type TCubicBezierEasingFunction =
|
|
3689
|
+
| 'ease'
|
|
3690
|
+
| 'ease-in'
|
|
3691
|
+
| 'ease-out'
|
|
3692
|
+
| 'ease-in-out'
|
|
3693
|
+
| Globals
|
|
3694
|
+
export type TCursorPredefined =
|
|
3695
|
+
| 'auto'
|
|
3696
|
+
| 'default'
|
|
3697
|
+
| 'none'
|
|
3698
|
+
| 'context-menu'
|
|
3699
|
+
| 'help'
|
|
3700
|
+
| 'pointer'
|
|
3701
|
+
| 'progress'
|
|
3702
|
+
| 'wait'
|
|
3703
|
+
| 'cell'
|
|
3704
|
+
| 'crosshair'
|
|
3705
|
+
| 'text'
|
|
3706
|
+
| 'vertical-text'
|
|
3707
|
+
| 'alias'
|
|
3708
|
+
| 'copy'
|
|
3709
|
+
| 'move'
|
|
3710
|
+
| 'no-drop'
|
|
3711
|
+
| 'not-allowed'
|
|
3712
|
+
| 'e-resize'
|
|
3713
|
+
| 'n-resize'
|
|
3714
|
+
| 'ne-resize'
|
|
3715
|
+
| 'nw-resize'
|
|
3716
|
+
| 's-resize'
|
|
3717
|
+
| 'se-resize'
|
|
3718
|
+
| 'sw-resize'
|
|
3719
|
+
| 'w-resize'
|
|
3720
|
+
| 'ew-resize'
|
|
3721
|
+
| 'ns-resize'
|
|
3722
|
+
| 'nesw-resize'
|
|
3723
|
+
| 'nwse-resize'
|
|
3724
|
+
| 'col-resize'
|
|
3725
|
+
| 'row-resize'
|
|
3726
|
+
| 'all-scroll'
|
|
3727
|
+
| 'zoom-in'
|
|
3728
|
+
| 'zoom-out'
|
|
3729
|
+
| 'grab'
|
|
3730
|
+
| 'grabbing'
|
|
3731
|
+
| Globals
|
|
3732
|
+
export type TCustomColorSpace = Globals
|
|
3733
|
+
export type TCustomParams = number | 'none' | Globals
|
|
3734
|
+
export type TDasharray = TLengthPercentage | number | Globals
|
|
3735
|
+
export type TDashndashdigitIdent = Globals
|
|
3736
|
+
export type TDeprecatedSystemColor =
|
|
3737
|
+
| 'ActiveBorder'
|
|
3738
|
+
| 'ActiveCaption'
|
|
3739
|
+
| 'AppWorkspace'
|
|
3740
|
+
| 'Background'
|
|
3741
|
+
| 'ButtonHighlight'
|
|
3742
|
+
| 'ButtonShadow'
|
|
3743
|
+
| 'CaptionText'
|
|
3744
|
+
| 'InactiveBorder'
|
|
3745
|
+
| 'InactiveCaption'
|
|
3746
|
+
| 'InactiveCaptionText'
|
|
3747
|
+
| 'InfoBackground'
|
|
3748
|
+
| 'InfoText'
|
|
3749
|
+
| 'Menu'
|
|
3750
|
+
| 'MenuText'
|
|
3751
|
+
| 'Scrollbar'
|
|
3752
|
+
| 'ThreeDDarkShadow'
|
|
3753
|
+
| 'ThreeDFace'
|
|
3754
|
+
| 'ThreeDHighlight'
|
|
3755
|
+
| 'ThreeDLightShadow'
|
|
3756
|
+
| 'ThreeDShadow'
|
|
3757
|
+
| 'Window'
|
|
3758
|
+
| 'WindowFrame'
|
|
3759
|
+
| 'WindowText'
|
|
3760
|
+
| Globals
|
|
3761
|
+
export type TDiscretionaryLigValues =
|
|
3762
|
+
| 'discretionary-ligatures'
|
|
3763
|
+
| 'no-discretionary-ligatures'
|
|
3764
|
+
| Globals
|
|
3765
|
+
export type TDisplayBox = 'contents' | 'none' | Globals
|
|
3766
|
+
export type TDisplayInside =
|
|
3767
|
+
| 'flow'
|
|
3768
|
+
| 'flow-root'
|
|
3769
|
+
| 'table'
|
|
3770
|
+
| 'flex'
|
|
3771
|
+
| 'grid'
|
|
3772
|
+
| 'ruby'
|
|
3773
|
+
| Globals
|
|
3774
|
+
export type TDisplayInternal =
|
|
3775
|
+
| 'table-row-group'
|
|
3776
|
+
| 'table-header-group'
|
|
3777
|
+
| 'table-footer-group'
|
|
3778
|
+
| 'table-row'
|
|
3779
|
+
| 'table-cell'
|
|
3780
|
+
| 'table-column-group'
|
|
3781
|
+
| 'table-column'
|
|
3782
|
+
| 'table-caption'
|
|
3783
|
+
| 'ruby-base'
|
|
3784
|
+
| 'ruby-text'
|
|
3785
|
+
| 'ruby-base-container'
|
|
3786
|
+
| 'ruby-text-container'
|
|
3787
|
+
| Globals
|
|
3788
|
+
export type TDisplayLegacy =
|
|
3789
|
+
| 'inline-block'
|
|
3790
|
+
| 'inline-list-item'
|
|
3791
|
+
| 'inline-table'
|
|
3792
|
+
| 'inline-flex'
|
|
3793
|
+
| 'inline-grid'
|
|
3794
|
+
| Globals
|
|
3795
|
+
export type TDisplayListitem =
|
|
3796
|
+
| TDisplayOutside
|
|
3797
|
+
| 'flow'
|
|
3798
|
+
| 'flow-root'
|
|
3799
|
+
| 'list-item'
|
|
3800
|
+
| Globals
|
|
3801
|
+
export type TDisplayOutside = 'block' | 'inline' | 'run-in' | Globals
|
|
3802
|
+
export type TEasingFunction =
|
|
3803
|
+
| TLinearEasingFunction
|
|
3804
|
+
| TCubicBezierEasingFunction
|
|
3805
|
+
| TStepEasingFunction
|
|
3806
|
+
| Globals
|
|
3807
|
+
export type TEastAsianVariantValues =
|
|
3808
|
+
| 'jis78'
|
|
3809
|
+
| 'jis83'
|
|
3810
|
+
| 'jis90'
|
|
3811
|
+
| 'jis04'
|
|
3812
|
+
| 'simplified'
|
|
3813
|
+
| 'traditional'
|
|
3814
|
+
| Globals
|
|
3815
|
+
export type TEastAsianWidthValues =
|
|
3816
|
+
| 'full-width'
|
|
3817
|
+
| 'proportional-width'
|
|
3818
|
+
| Globals
|
|
3819
|
+
export type TExplicitTrackList = TLineNames | TTrackSize | TLineNames | Globals
|
|
3820
|
+
export type TFamilyName = (string & {}) | Globals
|
|
3821
|
+
export type TFeatureTagValue = (string & {}) | number | 'on' | 'off' | Globals
|
|
3822
|
+
export type TFeatureValueBlock =
|
|
3823
|
+
| TFeatureType
|
|
3824
|
+
| "'{'"
|
|
3825
|
+
| TFeatureValueDeclarationList
|
|
3826
|
+
| "'}'"
|
|
3827
|
+
| Globals
|
|
3828
|
+
export type TFeatureValueBlockList = TFeatureValueBlock | Globals
|
|
3829
|
+
export type TFeatureValueDeclaration = number | Globals
|
|
3830
|
+
export type TFeatureValueDeclarationList = TFeatureValueDeclaration | Globals
|
|
3831
|
+
export type TFeatureValueName = Globals
|
|
3832
|
+
export type TFilterFunction = Globals
|
|
3833
|
+
export type TFilterValueList = TFilterFunction | Globals
|
|
3834
|
+
export type TFinalBgLayer =
|
|
3835
|
+
| TBgImage
|
|
3836
|
+
| TBgPosition
|
|
3837
|
+
| TBgSize
|
|
3838
|
+
| TRepeatStyle
|
|
3839
|
+
| TAttachment
|
|
3840
|
+
| TVisualBox
|
|
3841
|
+
| Property.BackgroundColor
|
|
3842
|
+
| Globals
|
|
3843
|
+
export type TFixedBreadth = TLengthPercentage | Globals
|
|
3844
|
+
export type TFixedRepeat =
|
|
3845
|
+
| number
|
|
3846
|
+
| TLineNames
|
|
3847
|
+
| TFixedSize
|
|
3848
|
+
| TLineNames
|
|
3849
|
+
| Globals
|
|
3850
|
+
export type TFixedSize =
|
|
3851
|
+
| TFixedBreadth
|
|
3852
|
+
| TFixedBreadth
|
|
3853
|
+
| TTrackBreadth
|
|
3854
|
+
| TInflexibleBreadth
|
|
3855
|
+
| TFixedBreadth
|
|
3856
|
+
| Globals
|
|
3857
|
+
export type TFontStretchAbsolute =
|
|
3858
|
+
| 'normal'
|
|
3859
|
+
| 'ultra-condensed'
|
|
3860
|
+
| 'extra-condensed'
|
|
3861
|
+
| 'condensed'
|
|
3862
|
+
| 'semi-condensed'
|
|
3863
|
+
| 'semi-expanded'
|
|
3864
|
+
| 'expanded'
|
|
3865
|
+
| 'extra-expanded'
|
|
3866
|
+
| 'ultra-expanded'
|
|
3867
|
+
| number
|
|
3868
|
+
| Globals
|
|
3869
|
+
export type TFontVariantCss2 = 'normal' | 'small-caps' | Globals
|
|
3870
|
+
export type TFontWeightAbsolute = 'normal' | 'bold' | number | Globals
|
|
3871
|
+
export type TFontWidthCss3 =
|
|
3872
|
+
| 'normal'
|
|
3873
|
+
| 'ultra-condensed'
|
|
3874
|
+
| 'extra-condensed'
|
|
3875
|
+
| 'condensed'
|
|
3876
|
+
| 'semi-condensed'
|
|
3877
|
+
| 'semi-expanded'
|
|
3878
|
+
| 'expanded'
|
|
3879
|
+
| 'extra-expanded'
|
|
3880
|
+
| 'ultra-expanded'
|
|
3881
|
+
| Globals
|
|
3882
|
+
export type TFormControlIdentifier = 'select' | Globals
|
|
3883
|
+
export type TFrequencyPercentage = number | Globals
|
|
3884
|
+
export type TGenericComplete =
|
|
3885
|
+
| 'serif'
|
|
3886
|
+
| 'sans-serif'
|
|
3887
|
+
| 'system-ui'
|
|
3888
|
+
| 'cursive'
|
|
3889
|
+
| 'fantasy'
|
|
3890
|
+
| 'math'
|
|
3891
|
+
| 'monospace'
|
|
3892
|
+
| Globals
|
|
3893
|
+
export type TGeneralEnclosed = Globals
|
|
3894
|
+
export type TGenericFamily =
|
|
3895
|
+
| TGenericComplete
|
|
3896
|
+
| TGenericIncomplete
|
|
3897
|
+
| 'emoji'
|
|
3898
|
+
| 'fangsong'
|
|
3899
|
+
| Globals
|
|
3900
|
+
export type TGenericIncomplete =
|
|
3901
|
+
| 'ui-serif'
|
|
3902
|
+
| 'ui-sans-serif'
|
|
3903
|
+
| 'ui-monospace'
|
|
3904
|
+
| 'ui-rounded'
|
|
3905
|
+
| Globals
|
|
3906
|
+
export type TGeometryBox =
|
|
3907
|
+
| TShapeBox
|
|
3908
|
+
| 'fill-box'
|
|
3909
|
+
| 'stroke-box'
|
|
3910
|
+
| 'view-box'
|
|
3911
|
+
| Globals
|
|
3912
|
+
export type TGradient = Globals
|
|
3913
|
+
export type TGridLine = 'auto' | number | 'span' | number | Globals
|
|
3914
|
+
export type THistoricalLigValues =
|
|
3915
|
+
| 'historical-ligatures'
|
|
3916
|
+
| 'no-historical-ligatures'
|
|
3917
|
+
| Globals
|
|
3918
|
+
export type THue = number | Globals
|
|
3919
|
+
export type THueInterpolationMethod =
|
|
3920
|
+
| 'shorter'
|
|
3921
|
+
| 'longer'
|
|
3922
|
+
| 'increasing'
|
|
3923
|
+
| 'decreasing'
|
|
3924
|
+
| 'hue'
|
|
3925
|
+
| Globals
|
|
3926
|
+
export type TIdSelector = Globals
|
|
3927
|
+
export type TImage = TGradient | Globals
|
|
3928
|
+
export type TImageSetOption = TImage | (string & {}) | (string & {}) | Globals
|
|
3929
|
+
export type TImageSrc = (string & {}) | Globals
|
|
3930
|
+
export type TImageTags = 'ltr' | 'rtl' | Globals
|
|
3931
|
+
export type TInflexibleBreadth =
|
|
3932
|
+
| TLengthPercentage
|
|
3933
|
+
| 'min-content'
|
|
3934
|
+
| 'max-content'
|
|
3935
|
+
| 'auto'
|
|
3936
|
+
| Globals
|
|
3937
|
+
export type TKeyframeBlock = TKeyframeSelector | Globals
|
|
3938
|
+
export type TKeyframeSelector =
|
|
3939
|
+
| 'from'
|
|
3940
|
+
| 'to'
|
|
3941
|
+
| number
|
|
3942
|
+
| TTimelineRangeName
|
|
3943
|
+
| number
|
|
3944
|
+
| Globals
|
|
3945
|
+
export type TKeyframesName = (string & {}) | Globals
|
|
3946
|
+
export type TLayerName = "'.'" | Globals
|
|
3947
|
+
export type TLeaderType = 'dotted' | 'solid' | 'space' | (string & {}) | Globals
|
|
3948
|
+
export type TLengthPercentage = number | Globals
|
|
3949
|
+
export type TLineNameList = TLineNames | TNameRepeat | Globals
|
|
3950
|
+
export type TLineNames = "'['" | "']'" | Globals
|
|
3951
|
+
export type TLineStyle =
|
|
3952
|
+
| 'none'
|
|
3953
|
+
| 'hidden'
|
|
3954
|
+
| 'dotted'
|
|
3955
|
+
| 'dashed'
|
|
3956
|
+
| 'solid'
|
|
3957
|
+
| 'double'
|
|
3958
|
+
| 'groove'
|
|
3959
|
+
| 'ridge'
|
|
3960
|
+
| 'inset'
|
|
3961
|
+
| 'outset'
|
|
3962
|
+
| Globals
|
|
3963
|
+
export type TLineWidth = number | 'thin' | 'medium' | 'thick' | Globals
|
|
3964
|
+
export type TLinearColorHint = TLengthPercentage | Globals
|
|
3965
|
+
export type TLinearColorStop = TColor | TColorStopLength | Globals
|
|
3966
|
+
export type TLinearEasingFunction = 'linear' | Globals
|
|
3967
|
+
export type TLinearGradientSyntax =
|
|
3968
|
+
| 'to'
|
|
3969
|
+
| TSideOrCorner
|
|
3970
|
+
| TColorInterpolationMethod
|
|
3971
|
+
| TColorStopList
|
|
3972
|
+
| Globals
|
|
3973
|
+
export type TMaskLayer =
|
|
3974
|
+
| TMaskReference
|
|
3975
|
+
| TPosition
|
|
3976
|
+
| TBgSize
|
|
3977
|
+
| TRepeatStyle
|
|
3978
|
+
| TGeometryBox
|
|
3979
|
+
| TGeometryBox
|
|
3980
|
+
| 'no-clip'
|
|
3981
|
+
| TCompositingOperator
|
|
3982
|
+
| TMaskingMode
|
|
3983
|
+
| Globals
|
|
3984
|
+
export type TMaskPosition =
|
|
3985
|
+
| TLengthPercentage
|
|
3986
|
+
| 'left'
|
|
3987
|
+
| 'center'
|
|
3988
|
+
| 'right'
|
|
3989
|
+
| TLengthPercentage
|
|
3990
|
+
| 'top'
|
|
3991
|
+
| 'center'
|
|
3992
|
+
| 'bottom'
|
|
3993
|
+
| Globals
|
|
3994
|
+
export type TMaskReference = 'none' | TImage | TMaskSource | Globals
|
|
3995
|
+
export type TMaskSource = Globals
|
|
3996
|
+
export type TMaskingMode = 'alpha' | 'luminance' | 'match-source' | Globals
|
|
3997
|
+
export type TMediaAnd = TMediaInParens | 'and' | TMediaInParens | Globals
|
|
3998
|
+
export type TMediaCondition =
|
|
3999
|
+
| TMediaNot
|
|
4000
|
+
| TMediaAnd
|
|
4001
|
+
| TMediaOr
|
|
4002
|
+
| TMediaInParens
|
|
4003
|
+
| Globals
|
|
4004
|
+
export type TMediaConditionWithoutOr =
|
|
4005
|
+
| TMediaNot
|
|
4006
|
+
| TMediaAnd
|
|
4007
|
+
| TMediaInParens
|
|
4008
|
+
| Globals
|
|
4009
|
+
export type TMediaFeature = TMfPlain | TMfBoolean | TMfRange | Globals
|
|
4010
|
+
export type TMediaInParens =
|
|
4011
|
+
| TMediaCondition
|
|
4012
|
+
| TMediaFeature
|
|
4013
|
+
| TGeneralEnclosed
|
|
4014
|
+
| Globals
|
|
4015
|
+
export type TMediaNot = 'not' | TMediaInParens | Globals
|
|
4016
|
+
export type TMediaOr = TMediaInParens | 'or' | TMediaInParens | Globals
|
|
4017
|
+
export type TMediaQuery =
|
|
4018
|
+
| TMediaCondition
|
|
4019
|
+
| 'not'
|
|
4020
|
+
| 'only'
|
|
4021
|
+
| TMediaType
|
|
4022
|
+
| 'and'
|
|
4023
|
+
| TMediaConditionWithoutOr
|
|
4024
|
+
| Globals
|
|
4025
|
+
export type TMediaQueryList = TMediaQuery | Globals
|
|
4026
|
+
export type TMediaType = Globals
|
|
4027
|
+
export type TMfBoolean = TMfName | Globals
|
|
4028
|
+
export type TMfName = Globals
|
|
4029
|
+
export type TMfPlain = TMfName | TMfValue | Globals
|
|
4030
|
+
export type TMfRange =
|
|
4031
|
+
| TMfName
|
|
4032
|
+
| "'<'"
|
|
4033
|
+
| "'>'"
|
|
4034
|
+
| "'='"
|
|
4035
|
+
| TMfValue
|
|
4036
|
+
| TMfValue
|
|
4037
|
+
| "'<'"
|
|
4038
|
+
| "'>'"
|
|
4039
|
+
| "'='"
|
|
4040
|
+
| TMfName
|
|
4041
|
+
| TMfValue
|
|
4042
|
+
| "'<'"
|
|
4043
|
+
| "'='"
|
|
4044
|
+
| TMfName
|
|
4045
|
+
| TMfValue
|
|
4046
|
+
| "'>'"
|
|
4047
|
+
| "'='"
|
|
4048
|
+
| TMfName
|
|
4049
|
+
| Globals
|
|
4050
|
+
export type TMfValue = number | TRatio | Globals
|
|
4051
|
+
export type TNDimension = Globals
|
|
4052
|
+
export type TNameRepeat = number | 'auto-fill' | TLineNames | Globals
|
|
4053
|
+
export type TNamedColor =
|
|
4054
|
+
| 'aliceblue'
|
|
4055
|
+
| 'antiquewhite'
|
|
4056
|
+
| 'aqua'
|
|
4057
|
+
| 'aquamarine'
|
|
4058
|
+
| 'azure'
|
|
4059
|
+
| 'beige'
|
|
4060
|
+
| 'bisque'
|
|
4061
|
+
| 'black'
|
|
4062
|
+
| 'blanchedalmond'
|
|
4063
|
+
| 'blue'
|
|
4064
|
+
| 'blueviolet'
|
|
4065
|
+
| 'brown'
|
|
4066
|
+
| 'burlywood'
|
|
4067
|
+
| 'cadetblue'
|
|
4068
|
+
| 'chartreuse'
|
|
4069
|
+
| 'chocolate'
|
|
4070
|
+
| 'coral'
|
|
4071
|
+
| 'cornflowerblue'
|
|
4072
|
+
| 'cornsilk'
|
|
4073
|
+
| 'crimson'
|
|
4074
|
+
| 'cyan'
|
|
4075
|
+
| 'darkblue'
|
|
4076
|
+
| 'darkcyan'
|
|
4077
|
+
| 'darkgoldenrod'
|
|
4078
|
+
| 'darkgray'
|
|
4079
|
+
| 'darkgreen'
|
|
4080
|
+
| 'darkgrey'
|
|
4081
|
+
| 'darkkhaki'
|
|
4082
|
+
| 'darkmagenta'
|
|
4083
|
+
| 'darkolivegreen'
|
|
4084
|
+
| 'darkorange'
|
|
4085
|
+
| 'darkorchid'
|
|
4086
|
+
| 'darkred'
|
|
4087
|
+
| 'darksalmon'
|
|
4088
|
+
| 'darkseagreen'
|
|
4089
|
+
| 'darkslateblue'
|
|
4090
|
+
| 'darkslategray'
|
|
4091
|
+
| 'darkslategrey'
|
|
4092
|
+
| 'darkturquoise'
|
|
4093
|
+
| 'darkviolet'
|
|
4094
|
+
| 'deeppink'
|
|
4095
|
+
| 'deepskyblue'
|
|
4096
|
+
| 'dimgray'
|
|
4097
|
+
| 'dimgrey'
|
|
4098
|
+
| 'dodgerblue'
|
|
4099
|
+
| 'firebrick'
|
|
4100
|
+
| 'floralwhite'
|
|
4101
|
+
| 'forestgreen'
|
|
4102
|
+
| 'fuchsia'
|
|
4103
|
+
| 'gainsboro'
|
|
4104
|
+
| 'ghostwhite'
|
|
4105
|
+
| 'gold'
|
|
4106
|
+
| 'goldenrod'
|
|
4107
|
+
| 'gray'
|
|
4108
|
+
| 'green'
|
|
4109
|
+
| 'greenyellow'
|
|
4110
|
+
| 'grey'
|
|
4111
|
+
| 'honeydew'
|
|
4112
|
+
| 'hotpink'
|
|
4113
|
+
| 'indianred'
|
|
4114
|
+
| 'indigo'
|
|
4115
|
+
| 'ivory'
|
|
4116
|
+
| 'khaki'
|
|
4117
|
+
| 'lavender'
|
|
4118
|
+
| 'lavenderblush'
|
|
4119
|
+
| 'lawngreen'
|
|
4120
|
+
| 'lemonchiffon'
|
|
4121
|
+
| 'lightblue'
|
|
4122
|
+
| 'lightcoral'
|
|
4123
|
+
| 'lightcyan'
|
|
4124
|
+
| 'lightgoldenrodyellow'
|
|
4125
|
+
| 'lightgray'
|
|
4126
|
+
| 'lightgreen'
|
|
4127
|
+
| 'lightgrey'
|
|
4128
|
+
| 'lightpink'
|
|
4129
|
+
| 'lightsalmon'
|
|
4130
|
+
| 'lightseagreen'
|
|
4131
|
+
| 'lightskyblue'
|
|
4132
|
+
| 'lightslategray'
|
|
4133
|
+
| 'lightslategrey'
|
|
4134
|
+
| 'lightsteelblue'
|
|
4135
|
+
| 'lightyellow'
|
|
4136
|
+
| 'lime'
|
|
4137
|
+
| 'limegreen'
|
|
4138
|
+
| 'linen'
|
|
4139
|
+
| 'magenta'
|
|
4140
|
+
| 'maroon'
|
|
4141
|
+
| 'mediumaquamarine'
|
|
4142
|
+
| 'mediumblue'
|
|
4143
|
+
| 'mediumorchid'
|
|
4144
|
+
| 'mediumpurple'
|
|
4145
|
+
| 'mediumseagreen'
|
|
4146
|
+
| 'mediumslateblue'
|
|
4147
|
+
| 'mediumspringgreen'
|
|
4148
|
+
| 'mediumturquoise'
|
|
4149
|
+
| 'mediumvioletred'
|
|
4150
|
+
| 'midnightblue'
|
|
4151
|
+
| 'mintcream'
|
|
4152
|
+
| 'mistyrose'
|
|
4153
|
+
| 'moccasin'
|
|
4154
|
+
| 'navajowhite'
|
|
4155
|
+
| 'navy'
|
|
4156
|
+
| 'oldlace'
|
|
4157
|
+
| 'olive'
|
|
4158
|
+
| 'olivedrab'
|
|
4159
|
+
| 'orange'
|
|
4160
|
+
| 'orangered'
|
|
4161
|
+
| 'orchid'
|
|
4162
|
+
| 'palegoldenrod'
|
|
4163
|
+
| 'palegreen'
|
|
4164
|
+
| 'paleturquoise'
|
|
4165
|
+
| 'palevioletred'
|
|
4166
|
+
| 'papayawhip'
|
|
4167
|
+
| 'peachpuff'
|
|
4168
|
+
| 'peru'
|
|
4169
|
+
| 'pink'
|
|
4170
|
+
| 'plum'
|
|
4171
|
+
| 'powderblue'
|
|
4172
|
+
| 'purple'
|
|
4173
|
+
| 'rebeccapurple'
|
|
4174
|
+
| 'red'
|
|
4175
|
+
| 'rosybrown'
|
|
4176
|
+
| 'royalblue'
|
|
4177
|
+
| 'saddlebrown'
|
|
4178
|
+
| 'salmon'
|
|
4179
|
+
| 'sandybrown'
|
|
4180
|
+
| 'seagreen'
|
|
4181
|
+
| 'seashell'
|
|
4182
|
+
| 'sienna'
|
|
4183
|
+
| 'silver'
|
|
4184
|
+
| 'skyblue'
|
|
4185
|
+
| 'slateblue'
|
|
4186
|
+
| 'slategray'
|
|
4187
|
+
| 'slategrey'
|
|
4188
|
+
| 'snow'
|
|
4189
|
+
| 'springgreen'
|
|
4190
|
+
| 'steelblue'
|
|
4191
|
+
| 'tan'
|
|
4192
|
+
| 'teal'
|
|
4193
|
+
| 'thistle'
|
|
4194
|
+
| 'tomato'
|
|
4195
|
+
| 'turquoise'
|
|
4196
|
+
| 'violet'
|
|
4197
|
+
| 'wheat'
|
|
4198
|
+
| 'white'
|
|
4199
|
+
| 'whitesmoke'
|
|
4200
|
+
| 'yellow'
|
|
4201
|
+
| 'yellowgreen'
|
|
4202
|
+
| Globals
|
|
4203
|
+
export type TNamespacePrefix = Globals
|
|
4204
|
+
export type TNdashDimension = Globals
|
|
4205
|
+
export type TNdashdigitDimension = Globals
|
|
4206
|
+
export type TNdashdigitIdent = Globals
|
|
4207
|
+
export type TNsPrefix = "'*'" | "'|'" | Globals
|
|
4208
|
+
export type TNumberPercentage = number | Globals
|
|
4209
|
+
export type TNumericFigureValues = 'lining-nums' | 'oldstyle-nums' | Globals
|
|
4210
|
+
export type TNumericFractionValues =
|
|
4211
|
+
| 'diagonal-fractions'
|
|
4212
|
+
| 'stacked-fractions'
|
|
4213
|
+
| Globals
|
|
4214
|
+
export type TNumericSpacingValues =
|
|
4215
|
+
| 'proportional-nums'
|
|
4216
|
+
| 'tabular-nums'
|
|
4217
|
+
| Globals
|
|
4218
|
+
export type TOffsetPath = TBasicShape | Globals
|
|
4219
|
+
export type TOpacityValue = number | Globals
|
|
4220
|
+
export type TOutlineLineStyle =
|
|
4221
|
+
| 'none'
|
|
4222
|
+
| 'dotted'
|
|
4223
|
+
| 'dashed'
|
|
4224
|
+
| 'solid'
|
|
4225
|
+
| 'double'
|
|
4226
|
+
| 'groove'
|
|
4227
|
+
| 'ridge'
|
|
4228
|
+
| 'inset'
|
|
4229
|
+
| 'outset'
|
|
4230
|
+
| Globals
|
|
4231
|
+
export type TOutlineRadius = number | Globals
|
|
4232
|
+
export type TOverflowPosition = 'unsafe' | 'safe' | Globals
|
|
4233
|
+
export type TPageBody = TPageBody | TPageMarginBox | TPageBody | Globals
|
|
4234
|
+
export type TPageMarginBox = TPageMarginBoxType | "'{'" | "'}'" | Globals
|
|
4235
|
+
export type TPageSelector = TPseudoPage | Globals
|
|
4236
|
+
export type TPageSelectorList = TPageSelector | Globals
|
|
4237
|
+
export type TPageSize =
|
|
4238
|
+
| 'A5'
|
|
4239
|
+
| 'A4'
|
|
4240
|
+
| 'A3'
|
|
4241
|
+
| 'B5'
|
|
4242
|
+
| 'B4'
|
|
4243
|
+
| 'JIS-B5'
|
|
4244
|
+
| 'JIS-B4'
|
|
4245
|
+
| 'letter'
|
|
4246
|
+
| 'legal'
|
|
4247
|
+
| 'ledger'
|
|
4248
|
+
| Globals
|
|
4249
|
+
export type TPaint =
|
|
4250
|
+
| 'none'
|
|
4251
|
+
| TColor
|
|
4252
|
+
| 'none'
|
|
4253
|
+
| TColor
|
|
4254
|
+
| 'context-fill'
|
|
4255
|
+
| 'context-stroke'
|
|
4256
|
+
| Globals
|
|
4257
|
+
export type TPaintBox = TVisualBox | 'fill-box' | 'stroke-box' | Globals
|
|
4258
|
+
export type TPaletteIdentifier = Globals
|
|
4259
|
+
export type TPolarColorSpace = 'hsl' | 'hwb' | 'lch' | 'oklch' | Globals
|
|
4260
|
+
export type TPosition =
|
|
4261
|
+
| 'left'
|
|
4262
|
+
| 'center'
|
|
4263
|
+
| 'right'
|
|
4264
|
+
| 'top'
|
|
4265
|
+
| 'center'
|
|
4266
|
+
| 'bottom'
|
|
4267
|
+
| 'left'
|
|
4268
|
+
| 'center'
|
|
4269
|
+
| 'right'
|
|
4270
|
+
| TLengthPercentage
|
|
4271
|
+
| 'top'
|
|
4272
|
+
| 'center'
|
|
4273
|
+
| 'bottom'
|
|
4274
|
+
| TLengthPercentage
|
|
4275
|
+
| 'left'
|
|
4276
|
+
| 'right'
|
|
4277
|
+
| TLengthPercentage
|
|
4278
|
+
| 'top'
|
|
4279
|
+
| 'bottom'
|
|
4280
|
+
| TLengthPercentage
|
|
4281
|
+
| Globals
|
|
4282
|
+
export type TPositionArea =
|
|
4283
|
+
| 'left'
|
|
4284
|
+
| 'center'
|
|
4285
|
+
| 'right'
|
|
4286
|
+
| 'span-left'
|
|
4287
|
+
| 'span-right'
|
|
4288
|
+
| 'x-start'
|
|
4289
|
+
| 'x-end'
|
|
4290
|
+
| 'span-x-start'
|
|
4291
|
+
| 'span-x-end'
|
|
4292
|
+
| 'x-self-start'
|
|
4293
|
+
| 'x-self-end'
|
|
4294
|
+
| 'span-x-self-start'
|
|
4295
|
+
| 'span-x-self-end'
|
|
4296
|
+
| 'span-all'
|
|
4297
|
+
| 'top'
|
|
4298
|
+
| 'center'
|
|
4299
|
+
| 'bottom'
|
|
4300
|
+
| 'span-top'
|
|
4301
|
+
| 'span-bottom'
|
|
4302
|
+
| 'y-start'
|
|
4303
|
+
| 'y-end'
|
|
4304
|
+
| 'span-y-start'
|
|
4305
|
+
| 'span-y-end'
|
|
4306
|
+
| 'y-self-start'
|
|
4307
|
+
| 'y-self-end'
|
|
4308
|
+
| 'span-y-self-start'
|
|
4309
|
+
| 'span-y-self-end'
|
|
4310
|
+
| 'span-all'
|
|
4311
|
+
| 'block-start'
|
|
4312
|
+
| 'center'
|
|
4313
|
+
| 'block-end'
|
|
4314
|
+
| 'span-block-start'
|
|
4315
|
+
| 'span-block-end'
|
|
4316
|
+
| 'span-all'
|
|
4317
|
+
| 'inline-start'
|
|
4318
|
+
| 'center'
|
|
4319
|
+
| 'inline-end'
|
|
4320
|
+
| 'span-inline-start'
|
|
4321
|
+
| 'span-inline-end'
|
|
4322
|
+
| 'span-all'
|
|
4323
|
+
| 'self-block-start'
|
|
4324
|
+
| 'center'
|
|
4325
|
+
| 'self-block-end'
|
|
4326
|
+
| 'span-self-block-start'
|
|
4327
|
+
| 'span-self-block-end'
|
|
4328
|
+
| 'span-all'
|
|
4329
|
+
| 'self-inline-start'
|
|
4330
|
+
| 'center'
|
|
4331
|
+
| 'self-inline-end'
|
|
4332
|
+
| 'span-self-inline-start'
|
|
4333
|
+
| 'span-self-inline-end'
|
|
4334
|
+
| 'span-all'
|
|
4335
|
+
| 'start'
|
|
4336
|
+
| 'center'
|
|
4337
|
+
| 'end'
|
|
4338
|
+
| 'span-start'
|
|
4339
|
+
| 'span-end'
|
|
4340
|
+
| 'span-all'
|
|
4341
|
+
| 'self-start'
|
|
4342
|
+
| 'center'
|
|
4343
|
+
| 'self-end'
|
|
4344
|
+
| 'span-self-start'
|
|
4345
|
+
| 'span-self-end'
|
|
4346
|
+
| 'span-all'
|
|
4347
|
+
| Globals
|
|
4348
|
+
export type TPredefinedRgb =
|
|
4349
|
+
| 'srgb'
|
|
4350
|
+
| 'srgb-linear'
|
|
4351
|
+
| 'display-p3'
|
|
4352
|
+
| 'a98-rgb'
|
|
4353
|
+
| 'prophoto-rgb'
|
|
4354
|
+
| 'rec2020'
|
|
4355
|
+
| Globals
|
|
4356
|
+
export type TPredefinedRgbParams = TPredefinedRgb | number | 'none' | Globals
|
|
4357
|
+
export type TPseudoClassSelector = "':'" | "':'" | "')'" | Globals
|
|
4358
|
+
export type TPseudoElementSelector = "':'" | TPseudoClassSelector | Globals
|
|
4359
|
+
export type TPseudoPage = 'left' | 'right' | 'first' | 'blank' | Globals
|
|
4360
|
+
export type TQueryInParens =
|
|
4361
|
+
| TContainerQuery
|
|
4362
|
+
| TSizeFeature
|
|
4363
|
+
| TStyleQuery
|
|
4364
|
+
| TScrollStateQuery
|
|
4365
|
+
| TGeneralEnclosed
|
|
4366
|
+
| Globals
|
|
4367
|
+
export type TQuote =
|
|
4368
|
+
| 'open-quote'
|
|
4369
|
+
| 'close-quote'
|
|
4370
|
+
| 'no-open-quote'
|
|
4371
|
+
| 'no-close-quote'
|
|
4372
|
+
| Globals
|
|
4373
|
+
export type TRadialExtent =
|
|
4374
|
+
| 'closest-corner'
|
|
4375
|
+
| 'closest-side'
|
|
4376
|
+
| 'farthest-corner'
|
|
4377
|
+
| 'farthest-side'
|
|
4378
|
+
| Globals
|
|
4379
|
+
export type TRadialGradientSyntax =
|
|
4380
|
+
| TRadialShape
|
|
4381
|
+
| TRadialSize
|
|
4382
|
+
| 'at'
|
|
4383
|
+
| TPosition
|
|
4384
|
+
| TColorInterpolationMethod
|
|
4385
|
+
| TColorStopList
|
|
4386
|
+
| Globals
|
|
4387
|
+
export type TRadialShape = 'circle' | 'ellipse' | Globals
|
|
4388
|
+
export type TRadialSize = TRadialExtent | number | TLengthPercentage | Globals
|
|
4389
|
+
export type TRatio = number | Globals
|
|
4390
|
+
export type TRaySize =
|
|
4391
|
+
| 'closest-side'
|
|
4392
|
+
| 'closest-corner'
|
|
4393
|
+
| 'farthest-side'
|
|
4394
|
+
| 'farthest-corner'
|
|
4395
|
+
| 'sides'
|
|
4396
|
+
| Globals
|
|
4397
|
+
export type TRectangularColorSpace =
|
|
4398
|
+
| 'srgb'
|
|
4399
|
+
| 'srgb-linear'
|
|
4400
|
+
| 'display-p3'
|
|
4401
|
+
| 'a98-rgb'
|
|
4402
|
+
| 'prophoto-rgb'
|
|
4403
|
+
| 'rec2020'
|
|
4404
|
+
| 'lab'
|
|
4405
|
+
| 'oklab'
|
|
4406
|
+
| 'xyz'
|
|
4407
|
+
| 'xyz-d50'
|
|
4408
|
+
| 'xyz-d65'
|
|
4409
|
+
| Globals
|
|
4410
|
+
export type TRelativeSelector = TCombinator | TComplexSelector | Globals
|
|
4411
|
+
export type TRelativeSelectorList = TRelativeSelector | Globals
|
|
4412
|
+
export type TRelativeSize = 'larger' | 'smaller' | Globals
|
|
4413
|
+
export type TRepeatStyle =
|
|
4414
|
+
| 'repeat-x'
|
|
4415
|
+
| 'repeat-y'
|
|
4416
|
+
| 'repeat'
|
|
4417
|
+
| 'space'
|
|
4418
|
+
| 'round'
|
|
4419
|
+
| 'no-repeat'
|
|
4420
|
+
| Globals
|
|
4421
|
+
export type TReversedCounterName = TCounterName | Globals
|
|
4422
|
+
export type TRoundingStrategy = 'nearest' | 'up' | 'down' | 'to-zero' | Globals
|
|
4423
|
+
export type TScopeEnd = TSelectorList | Globals
|
|
4424
|
+
export type TScopeStart = TSelectorList | Globals
|
|
4425
|
+
export type TScroller = 'root' | 'nearest' | 'self' | Globals
|
|
4426
|
+
export type TScrollStateFeature = TMediaQueryList | Globals
|
|
4427
|
+
export type TScrollStateInParens =
|
|
4428
|
+
| TScrollStateQuery
|
|
4429
|
+
| TScrollStateFeature
|
|
4430
|
+
| TGeneralEnclosed
|
|
4431
|
+
| Globals
|
|
4432
|
+
export type TScrollStateQuery =
|
|
4433
|
+
| 'not'
|
|
4434
|
+
| TScrollStateInParens
|
|
4435
|
+
| TScrollStateInParens
|
|
4436
|
+
| 'and'
|
|
4437
|
+
| TScrollStateInParens
|
|
4438
|
+
| 'or'
|
|
4439
|
+
| TScrollStateInParens
|
|
4440
|
+
| TScrollStateFeature
|
|
4441
|
+
| Globals
|
|
4442
|
+
export type TSelectorList = TComplexSelectorList | Globals
|
|
4443
|
+
export type TSelfPosition =
|
|
4444
|
+
| 'center'
|
|
4445
|
+
| 'start'
|
|
4446
|
+
| 'end'
|
|
4447
|
+
| 'self-start'
|
|
4448
|
+
| 'self-end'
|
|
4449
|
+
| 'flex-start'
|
|
4450
|
+
| 'flex-end'
|
|
4451
|
+
| Globals
|
|
4452
|
+
export type TShadow = 'inset' | number | TColor | Globals
|
|
4453
|
+
export type TShadowT = number | TColor | Globals
|
|
4454
|
+
export type TShape = Globals
|
|
4455
|
+
export type TShapeBox = TVisualBox | 'margin-box' | Globals
|
|
4456
|
+
export type TSideOrCorner = 'left' | 'right' | 'top' | 'bottom' | Globals
|
|
4457
|
+
export type TSignedInteger = Globals
|
|
4458
|
+
export type TSignlessInteger = Globals
|
|
4459
|
+
export type TSingleAnimation =
|
|
4460
|
+
| Property.AnimationDuration
|
|
4461
|
+
| TEasingFunction
|
|
4462
|
+
| Property.AnimationDelay
|
|
4463
|
+
| TSingleAnimationIterationCount
|
|
4464
|
+
| TSingleAnimationDirection
|
|
4465
|
+
| TSingleAnimationFillMode
|
|
4466
|
+
| TSingleAnimationPlayState
|
|
4467
|
+
| 'none'
|
|
4468
|
+
| TKeyframesName
|
|
4469
|
+
| TSingleAnimationTimeline
|
|
4470
|
+
| Globals
|
|
4471
|
+
export type TSingleAnimationComposition =
|
|
4472
|
+
| 'replace'
|
|
4473
|
+
| 'add'
|
|
4474
|
+
| 'accumulate'
|
|
4475
|
+
| Globals
|
|
4476
|
+
export type TSingleAnimationDirection =
|
|
4477
|
+
| 'normal'
|
|
4478
|
+
| 'reverse'
|
|
4479
|
+
| 'alternate'
|
|
4480
|
+
| 'alternate-reverse'
|
|
4481
|
+
| Globals
|
|
4482
|
+
export type TSingleAnimationFillMode =
|
|
4483
|
+
| 'none'
|
|
4484
|
+
| 'forwards'
|
|
4485
|
+
| 'backwards'
|
|
4486
|
+
| 'both'
|
|
4487
|
+
| Globals
|
|
4488
|
+
export type TSingleAnimationIterationCount = 'infinite' | number | Globals
|
|
4489
|
+
export type TSingleAnimationPlayState = 'running' | 'paused' | Globals
|
|
4490
|
+
export type TSingleAnimationTimeline = 'auto' | 'none' | Globals
|
|
4491
|
+
export type TSingleTransition =
|
|
4492
|
+
| 'none'
|
|
4493
|
+
| TSingleTransitionProperty
|
|
4494
|
+
| TEasingFunction
|
|
4495
|
+
| TTransitionBehaviorValue
|
|
4496
|
+
| Globals
|
|
4497
|
+
export type TSingleTransitionProperty = 'all' | Globals
|
|
4498
|
+
export type TSize =
|
|
4499
|
+
| 'closest-side'
|
|
4500
|
+
| 'farthest-side'
|
|
4501
|
+
| 'closest-corner'
|
|
4502
|
+
| 'farthest-corner'
|
|
4503
|
+
| number
|
|
4504
|
+
| TLengthPercentage
|
|
4505
|
+
| Globals
|
|
4506
|
+
export type TSizeFeature = TMediaQueryList | Globals
|
|
4507
|
+
export type TStepPosition =
|
|
4508
|
+
| 'jump-start'
|
|
4509
|
+
| 'jump-end'
|
|
4510
|
+
| 'jump-none'
|
|
4511
|
+
| 'jump-both'
|
|
4512
|
+
| 'start'
|
|
4513
|
+
| 'end'
|
|
4514
|
+
| Globals
|
|
4515
|
+
export type TStepEasingFunction = 'step-start' | 'step-end' | Globals
|
|
4516
|
+
export type TStyleFeature = Globals
|
|
4517
|
+
export type TStyleInParens =
|
|
4518
|
+
| TStyleQuery
|
|
4519
|
+
| TStyleFeature
|
|
4520
|
+
| TGeneralEnclosed
|
|
4521
|
+
| Globals
|
|
4522
|
+
export type TStyleQuery =
|
|
4523
|
+
| 'not'
|
|
4524
|
+
| TStyleInParens
|
|
4525
|
+
| TStyleInParens
|
|
4526
|
+
| 'and'
|
|
4527
|
+
| TStyleInParens
|
|
4528
|
+
| 'or'
|
|
4529
|
+
| TStyleInParens
|
|
4530
|
+
| TStyleFeature
|
|
4531
|
+
| Globals
|
|
4532
|
+
export type TSubclassSelector =
|
|
4533
|
+
| TIdSelector
|
|
4534
|
+
| TClassSelector
|
|
4535
|
+
| TAttributeSelector
|
|
4536
|
+
| TPseudoClassSelector
|
|
4537
|
+
| Globals
|
|
4538
|
+
export type TSupportsCondition =
|
|
4539
|
+
| 'not'
|
|
4540
|
+
| TSupportsInParens
|
|
4541
|
+
| TSupportsInParens
|
|
4542
|
+
| 'and'
|
|
4543
|
+
| TSupportsInParens
|
|
4544
|
+
| TSupportsInParens
|
|
4545
|
+
| 'or'
|
|
4546
|
+
| TSupportsInParens
|
|
4547
|
+
| Globals
|
|
4548
|
+
export type TSupportsDecl = Globals
|
|
4549
|
+
export type TSupportsFeature = TSupportsDecl | TSupportsSelectorFn | Globals
|
|
4550
|
+
export type TSupportsInParens =
|
|
4551
|
+
| TSupportsCondition
|
|
4552
|
+
| TSupportsFeature
|
|
4553
|
+
| TGeneralEnclosed
|
|
4554
|
+
| Globals
|
|
4555
|
+
export type TSupportsSelectorFn = TComplexSelector | Globals
|
|
4556
|
+
export type TSymbol = (string & {}) | TImage | Globals
|
|
4557
|
+
export type TSymbolsType =
|
|
4558
|
+
| 'cyclic'
|
|
4559
|
+
| 'numeric'
|
|
4560
|
+
| 'alphabetic'
|
|
4561
|
+
| 'symbolic'
|
|
4562
|
+
| 'fixed'
|
|
4563
|
+
| Globals
|
|
4564
|
+
export type TSystemColor =
|
|
4565
|
+
| 'AccentColor'
|
|
4566
|
+
| 'AccentColorText'
|
|
4567
|
+
| 'ActiveText'
|
|
4568
|
+
| 'ButtonBorder'
|
|
4569
|
+
| 'ButtonFace'
|
|
4570
|
+
| 'ButtonText'
|
|
4571
|
+
| 'Canvas'
|
|
4572
|
+
| 'CanvasText'
|
|
4573
|
+
| 'Field'
|
|
4574
|
+
| 'FieldText'
|
|
4575
|
+
| 'GrayText'
|
|
4576
|
+
| 'Highlight'
|
|
4577
|
+
| 'HighlightText'
|
|
4578
|
+
| 'LinkText'
|
|
4579
|
+
| 'Mark'
|
|
4580
|
+
| 'MarkText'
|
|
4581
|
+
| 'SelectedItem'
|
|
4582
|
+
| 'SelectedItemText'
|
|
4583
|
+
| 'VisitedText'
|
|
4584
|
+
| Globals
|
|
4585
|
+
export type TSystemFamilyName =
|
|
4586
|
+
| 'caption'
|
|
4587
|
+
| 'icon'
|
|
4588
|
+
| 'menu'
|
|
4589
|
+
| 'message-box'
|
|
4590
|
+
| 'small-caption'
|
|
4591
|
+
| 'status-bar'
|
|
4592
|
+
| Globals
|
|
4593
|
+
export type TTarget = Globals
|
|
4594
|
+
export type TTextEdge =
|
|
4595
|
+
| 'text'
|
|
4596
|
+
| 'cap'
|
|
4597
|
+
| 'ex'
|
|
4598
|
+
| 'ideographic'
|
|
4599
|
+
| 'ideographic-ink'
|
|
4600
|
+
| 'text'
|
|
4601
|
+
| 'alphabetic'
|
|
4602
|
+
| 'ideographic'
|
|
4603
|
+
| 'ideographic-ink'
|
|
4604
|
+
| Globals
|
|
4605
|
+
export type TTimePercentage = number | Globals
|
|
4606
|
+
export type TTimelineRangeName =
|
|
4607
|
+
| 'cover'
|
|
4608
|
+
| 'contain'
|
|
4609
|
+
| 'entry'
|
|
4610
|
+
| 'exit'
|
|
4611
|
+
| 'entry-crossing'
|
|
4612
|
+
| 'exit-crossing'
|
|
4613
|
+
| Globals
|
|
4614
|
+
export type TTrackBreadth =
|
|
4615
|
+
| TLengthPercentage
|
|
4616
|
+
| 'min-content'
|
|
4617
|
+
| 'max-content'
|
|
4618
|
+
| 'auto'
|
|
4619
|
+
| Globals
|
|
4620
|
+
export type TTrackList =
|
|
4621
|
+
| TLineNames
|
|
4622
|
+
| TTrackSize
|
|
4623
|
+
| TTrackRepeat
|
|
4624
|
+
| TLineNames
|
|
4625
|
+
| Globals
|
|
4626
|
+
export type TTrackRepeat =
|
|
4627
|
+
| number
|
|
4628
|
+
| TLineNames
|
|
4629
|
+
| TTrackSize
|
|
4630
|
+
| TLineNames
|
|
4631
|
+
| Globals
|
|
4632
|
+
export type TTrackSize =
|
|
4633
|
+
| TTrackBreadth
|
|
4634
|
+
| TInflexibleBreadth
|
|
4635
|
+
| TTrackBreadth
|
|
4636
|
+
| TLengthPercentage
|
|
4637
|
+
| Globals
|
|
4638
|
+
export type TTransformFunction = Globals
|
|
4639
|
+
export type TTransformList = TTransformFunction | Globals
|
|
4640
|
+
export type TTransitionBehaviorValue = 'normal' | 'allow-discrete' | Globals
|
|
4641
|
+
export type TTrySize =
|
|
4642
|
+
| 'most-width'
|
|
4643
|
+
| 'most-height'
|
|
4644
|
+
| 'most-block-size'
|
|
4645
|
+
| 'most-inline-size'
|
|
4646
|
+
| Globals
|
|
4647
|
+
export type TTryTactic = 'flip-block' | 'flip-inline' | 'flip-start' | Globals
|
|
4648
|
+
export type TTypeOrUnit =
|
|
4649
|
+
| 'string'
|
|
4650
|
+
| 'color'
|
|
4651
|
+
| 'url'
|
|
4652
|
+
| 'integer'
|
|
4653
|
+
| 'number'
|
|
4654
|
+
| 'length'
|
|
4655
|
+
| 'angle'
|
|
4656
|
+
| 'time'
|
|
4657
|
+
| 'frequency'
|
|
4658
|
+
| 'cap'
|
|
4659
|
+
| 'ch'
|
|
4660
|
+
| 'em'
|
|
4661
|
+
| 'ex'
|
|
4662
|
+
| 'ic'
|
|
4663
|
+
| 'lh'
|
|
4664
|
+
| 'rlh'
|
|
4665
|
+
| 'rem'
|
|
4666
|
+
| 'vb'
|
|
4667
|
+
| 'vi'
|
|
4668
|
+
| 'vw'
|
|
4669
|
+
| 'vh'
|
|
4670
|
+
| 'vmin'
|
|
4671
|
+
| 'vmax'
|
|
4672
|
+
| 'mm'
|
|
4673
|
+
| 'Q'
|
|
4674
|
+
| 'cm'
|
|
4675
|
+
| 'in'
|
|
4676
|
+
| 'pt'
|
|
4677
|
+
| 'pc'
|
|
4678
|
+
| 'px'
|
|
4679
|
+
| 'deg'
|
|
4680
|
+
| 'grad'
|
|
4681
|
+
| 'rad'
|
|
4682
|
+
| 'turn'
|
|
4683
|
+
| 'ms'
|
|
4684
|
+
| 's'
|
|
4685
|
+
| 'Hz'
|
|
4686
|
+
| 'kHz'
|
|
4687
|
+
| Globals
|
|
4688
|
+
export type TTypeSelector = TWqName | TNsPrefix | "'*'" | Globals
|
|
4689
|
+
export type TViewportLength = 'auto' | TLengthPercentage | Globals
|
|
4690
|
+
export type TVisualBox = 'content-box' | 'padding-box' | 'border-box' | Globals
|
|
4691
|
+
export type TWqName = TNsPrefix | Globals
|
|
4692
|
+
export type TXyz = 'xyz' | 'xyz-d50' | 'xyz-d65' | Globals
|
|
4693
|
+
export type TXyzParams = TXyz | number | 'none' | Globals
|