@infomaximum/ui-kit 0.17.4 → 0.18.1
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/dist/components/BaseTooltip/BaseTooltip.js +29 -32
- package/dist/components/BaseTooltip/hooks/useShowTooltipController.js +3 -2
- package/dist/components/Button/Button.styles.d.ts +50 -2
- package/dist/components/Button/Button.styles.js +43 -2
- package/dist/components/Button/Button.tokens.d.ts +15 -0
- package/dist/components/Button/Button.tokens.js +15 -0
- package/dist/components/Button/Button.types.d.ts +1 -1
- package/dist/components/Collapse/Collapse.d.ts +2 -0
- package/dist/components/Collapse/Collapse.js +49 -0
- package/dist/components/Collapse/Collapse.styles.d.ts +16 -0
- package/dist/components/Collapse/Collapse.styles.js +19 -0
- package/dist/components/Collapse/Collapse.tokens.d.ts +8 -0
- package/dist/components/Collapse/Collapse.tokens.js +9 -0
- package/dist/components/Collapse/Collapse.types.d.ts +49 -0
- package/dist/components/Collapse/components/CollapsePanel/CollapsePanel.d.ts +2 -0
- package/dist/components/Collapse/components/CollapsePanel/CollapsePanel.js +86 -0
- package/dist/components/Collapse/components/CollapsePanel/CollapsePanel.styles.d.ts +87 -0
- package/dist/components/Collapse/components/CollapsePanel/CollapsePanel.styles.js +102 -0
- package/dist/components/Collapse/components/CollapsePanel/CollapsePanel.types.d.ts +7 -0
- package/dist/components/Collapse/index.d.ts +2 -0
- package/dist/components/Dropdown/Dropdown.js +2 -1
- package/dist/components/Dropdown/components/Menu/Menu.js +7 -7
- package/dist/components/Input/Input.js +8 -7
- package/dist/components/Input/Input.styles.d.ts +15 -14
- package/dist/components/Input/Input.styles.js +48 -40
- package/dist/components/Input/Input.tokens.d.ts +3 -0
- package/dist/components/Input/Input.tokens.js +3 -0
- package/dist/components/Input/Input.types.d.ts +2 -1
- package/dist/components/Input/components/InputTextArea/InputTextArea.js +3 -3
- package/dist/components/Input/components/InputTextArea/InputTextArea.styles.d.ts +5 -4
- package/dist/components/Input/components/InputTextArea/InputTextArea.styles.js +2 -2
- package/dist/components/Input/components/InputTextArea/InputTextArea.types.d.ts +2 -1
- package/dist/components/InputNumber/InputNumber.js +7 -7
- package/dist/components/InputNumber/InputNumber.styles.d.ts +6 -5
- package/dist/components/InputNumber/InputNumber.styles.js +38 -34
- package/dist/components/InputNumber/InputNumber.tokens.d.ts +3 -0
- package/dist/components/InputNumber/InputNumber.tokens.js +3 -0
- package/dist/components/InputNumber/InputNumber.types.d.ts +2 -1
- package/dist/components/InternalPicker/pickers/RangePicker/RangePicker.js +5 -2
- package/dist/components/InternalPicker/pickers/RangePicker/RangePicker.types.d.ts +2 -2
- package/dist/components/InternalPicker/pickers/SinglePicker/SinglePicker.js +5 -2
- package/dist/components/InternalPicker/pickers/SinglePicker/SinglePicker.types.d.ts +2 -1
- package/dist/components/InternalPicker/styles/DatePanel.styles.d.ts +596 -596
- package/dist/components/InternalPicker/styles/Popup.styles.d.ts +627 -593
- package/dist/components/InternalPicker/styles/Popup.styles.js +36 -1
- package/dist/components/InternalPicker/styles/RangeSelector.styles.d.ts +12 -0
- package/dist/components/InternalPicker/styles/RangeSelector.styles.js +3 -0
- package/dist/components/InternalPicker/styles/SingleSelector.styles.d.ts +9 -0
- package/dist/components/InternalPicker/styles/SingleSelector.styles.js +9 -0
- package/dist/components/InternalPicker/tokens.d.ts +2 -0
- package/dist/components/InternalPicker/tokens.js +2 -0
- package/dist/components/Radio/components/RadioGroup/RadioGroup.js +7 -2
- package/dist/components/Radio/components/RadioGroup/RadioGroup.styles.d.ts +8 -1
- package/dist/components/Radio/components/RadioGroup/RadioGroup.styles.js +14 -4
- package/dist/components/Radio/components/RadioGroup/RadioGroup.types.d.ts +5 -0
- package/dist/components/Table/hooks/useTableVisualParamsChange/utils.d.ts +1 -1
- package/dist/components/Tabs/components/TabItem/TabItem.styles.d.ts +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -0
- package/package.json +1 -1
|
@@ -1,6 +1,40 @@
|
|
|
1
1
|
import { Theme } from '../../../themes';
|
|
2
2
|
import { PickerTokens } from '..';
|
|
3
3
|
export declare const getPopupStyle: (pickerTokens: PickerTokens) => (theme: Theme) => {
|
|
4
|
+
".picker-panel-layout": {
|
|
5
|
+
display: string;
|
|
6
|
+
};
|
|
7
|
+
".picker-presets": {
|
|
8
|
+
display: string;
|
|
9
|
+
flexDirection: "column";
|
|
10
|
+
width: number;
|
|
11
|
+
boxSizing: "border-box";
|
|
12
|
+
borderRight: string;
|
|
13
|
+
};
|
|
14
|
+
".picker-presets ul": {
|
|
15
|
+
height: number;
|
|
16
|
+
flex: string;
|
|
17
|
+
listStyle: string;
|
|
18
|
+
overflow: string;
|
|
19
|
+
margin: number;
|
|
20
|
+
padding: 4;
|
|
21
|
+
};
|
|
22
|
+
".picker-presets li": {
|
|
23
|
+
color: "#262626";
|
|
24
|
+
overflow: string;
|
|
25
|
+
textOverflow: string;
|
|
26
|
+
whiteSpace: string;
|
|
27
|
+
"&:hover": {
|
|
28
|
+
background: `rgba(${number}, ${number}, ${number}, 0.08)`;
|
|
29
|
+
};
|
|
30
|
+
fontFamily: "Roboto";
|
|
31
|
+
fontSize: 14;
|
|
32
|
+
lineHeight: "20px";
|
|
33
|
+
paddingBlock: 4;
|
|
34
|
+
paddingInline: 8;
|
|
35
|
+
borderRadius: 4;
|
|
36
|
+
cursor: string;
|
|
37
|
+
};
|
|
4
38
|
".picker-now-btn": {
|
|
5
39
|
cursor: string;
|
|
6
40
|
color: "#0CB3B3";
|
|
@@ -23,254 +57,254 @@ export declare const getPopupStyle: (pickerTokens: PickerTokens) => (theme: Them
|
|
|
23
57
|
borderTop: string;
|
|
24
58
|
};
|
|
25
59
|
accentColor?: import("csstype").Property.AccentColor | readonly string[] | readonly import("csstype").Property.AccentColor[] | undefined;
|
|
26
|
-
alignContent?:
|
|
27
|
-
alignItems?:
|
|
28
|
-
alignSelf?:
|
|
29
|
-
alignTracks?:
|
|
30
|
-
animationComposition?:
|
|
31
|
-
animationDelay?:
|
|
32
|
-
animationDirection?:
|
|
33
|
-
animationDuration?:
|
|
34
|
-
animationFillMode?:
|
|
60
|
+
alignContent?: import("csstype").Property.AlignContent | readonly string[] | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
61
|
+
alignItems?: import("csstype").Property.AlignItems | readonly string[] | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
62
|
+
alignSelf?: import("csstype").Property.AlignSelf | readonly string[] | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
63
|
+
alignTracks?: import("csstype").Property.AlignTracks | readonly string[] | readonly import("csstype").Property.AlignTracks[] | undefined;
|
|
64
|
+
animationComposition?: import("csstype").Property.AnimationComposition | readonly string[] | readonly import("csstype").Property.AnimationComposition[] | undefined;
|
|
65
|
+
animationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
66
|
+
animationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
67
|
+
animationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
68
|
+
animationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
35
69
|
animationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
|
|
36
|
-
animationName?:
|
|
37
|
-
animationPlayState?:
|
|
38
|
-
animationRangeEnd?: readonly (string | (string & {}))[] |
|
|
39
|
-
animationRangeStart?: readonly (string | (string & {}))[] |
|
|
40
|
-
animationTimeline?:
|
|
41
|
-
animationTimingFunction?:
|
|
70
|
+
animationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
71
|
+
animationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
72
|
+
animationRangeEnd?: import("csstype").Property.AnimationRangeEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.AnimationRangeEnd<string | number> | undefined>[] | undefined;
|
|
73
|
+
animationRangeStart?: import("csstype").Property.AnimationRangeStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.AnimationRangeStart<string | number> | undefined>[] | undefined;
|
|
74
|
+
animationTimeline?: import("csstype").Property.AnimationTimeline | readonly string[] | readonly import("csstype").Property.AnimationTimeline[] | undefined;
|
|
75
|
+
animationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
42
76
|
appearance?: import("csstype").Property.Appearance | readonly NonNullable<import("csstype").Property.Appearance | undefined>[] | readonly import("csstype").Property.Appearance[] | undefined;
|
|
43
77
|
aspectRatio?: import("csstype").Property.AspectRatio | readonly NonNullable<import("csstype").Property.AspectRatio | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto")[] | undefined;
|
|
44
|
-
backdropFilter?:
|
|
78
|
+
backdropFilter?: import("csstype").Property.BackdropFilter | readonly string[] | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
45
79
|
backfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
46
|
-
backgroundAttachment?:
|
|
47
|
-
backgroundBlendMode?:
|
|
48
|
-
backgroundClip?:
|
|
49
|
-
backgroundColor?:
|
|
50
|
-
backgroundImage?:
|
|
51
|
-
backgroundOrigin?:
|
|
52
|
-
backgroundPositionX?: readonly (string | (string & {}))[] |
|
|
53
|
-
backgroundPositionY?: readonly (string | (string & {}))[] |
|
|
54
|
-
backgroundRepeat?:
|
|
55
|
-
backgroundSize?: readonly (string | (string & {}))[] |
|
|
56
|
-
blockOverflow?:
|
|
57
|
-
blockSize?: readonly (string | (string & {}))[] |
|
|
58
|
-
borderBlockColor?:
|
|
59
|
-
borderBlockEndColor?:
|
|
80
|
+
backgroundAttachment?: import("csstype").Property.BackgroundAttachment | readonly string[] | readonly import("csstype").Property.BackgroundAttachment[] | undefined;
|
|
81
|
+
backgroundBlendMode?: import("csstype").Property.BackgroundBlendMode | readonly string[] | readonly import("csstype").Property.BackgroundBlendMode[] | undefined;
|
|
82
|
+
backgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
83
|
+
backgroundColor?: import("csstype").Property.BackgroundColor | readonly string[] | readonly import("csstype").Property.BackgroundColor[] | undefined;
|
|
84
|
+
backgroundImage?: import("csstype").Property.BackgroundImage | readonly string[] | readonly import("csstype").Property.BackgroundImage[] | undefined;
|
|
85
|
+
backgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
86
|
+
backgroundPositionX?: import("csstype").Property.BackgroundPositionX<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundPositionX<string | number> | undefined>[] | undefined;
|
|
87
|
+
backgroundPositionY?: import("csstype").Property.BackgroundPositionY<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundPositionY<string | number> | undefined>[] | undefined;
|
|
88
|
+
backgroundRepeat?: import("csstype").Property.BackgroundRepeat | readonly string[] | readonly import("csstype").Property.BackgroundRepeat[] | undefined;
|
|
89
|
+
backgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
90
|
+
blockOverflow?: import("csstype").Property.BlockOverflow | readonly string[] | readonly import("csstype").Property.BlockOverflow[] | undefined;
|
|
91
|
+
blockSize?: import("csstype").Property.BlockSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BlockSize<string | number> | undefined>[] | undefined;
|
|
92
|
+
borderBlockColor?: import("csstype").Property.BorderBlockColor | readonly string[] | readonly import("csstype").Property.BorderBlockColor[] | undefined;
|
|
93
|
+
borderBlockEndColor?: import("csstype").Property.BorderBlockEndColor | readonly string[] | readonly import("csstype").Property.BorderBlockEndColor[] | undefined;
|
|
60
94
|
borderBlockEndStyle?: import("csstype").Property.BorderBlockEndStyle | readonly NonNullable<import("csstype").Property.BorderBlockEndStyle | undefined>[] | readonly import("csstype").Property.BorderBlockEndStyle[] | undefined;
|
|
61
|
-
borderBlockEndWidth?:
|
|
62
|
-
borderBlockStartColor?:
|
|
95
|
+
borderBlockEndWidth?: import("csstype").Property.BorderBlockEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBlockEndWidth<string | number> | undefined>[] | undefined;
|
|
96
|
+
borderBlockStartColor?: import("csstype").Property.BorderBlockStartColor | readonly string[] | readonly import("csstype").Property.BorderBlockStartColor[] | undefined;
|
|
63
97
|
borderBlockStartStyle?: import("csstype").Property.BorderBlockStartStyle | readonly NonNullable<import("csstype").Property.BorderBlockStartStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStartStyle[] | undefined;
|
|
64
|
-
borderBlockStartWidth?:
|
|
98
|
+
borderBlockStartWidth?: import("csstype").Property.BorderBlockStartWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBlockStartWidth<string | number> | undefined>[] | undefined;
|
|
65
99
|
borderBlockStyle?: import("csstype").Property.BorderBlockStyle | readonly NonNullable<import("csstype").Property.BorderBlockStyle | undefined>[] | readonly import("csstype").Property.BorderBlockStyle[] | undefined;
|
|
66
|
-
borderBlockWidth?:
|
|
67
|
-
borderBottomColor?:
|
|
68
|
-
borderBottomLeftRadius?: readonly (string | (string & {}))[] |
|
|
69
|
-
borderBottomRightRadius?: readonly (string | (string & {}))[] |
|
|
100
|
+
borderBlockWidth?: import("csstype").Property.BorderBlockWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBlockWidth<string | number> | undefined>[] | undefined;
|
|
101
|
+
borderBottomColor?: import("csstype").Property.BorderBottomColor | readonly string[] | readonly import("csstype").Property.BorderBottomColor[] | undefined;
|
|
102
|
+
borderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
103
|
+
borderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
70
104
|
borderBottomStyle?: import("csstype").Property.BorderBottomStyle | readonly NonNullable<import("csstype").Property.BorderBottomStyle | undefined>[] | readonly import("csstype").Property.BorderBottomStyle[] | undefined;
|
|
71
|
-
borderBottomWidth?:
|
|
105
|
+
borderBottomWidth?: import("csstype").Property.BorderBottomWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderBottomWidth<string | number> | undefined>[] | undefined;
|
|
72
106
|
borderCollapse?: import("csstype").Property.BorderCollapse | readonly NonNullable<import("csstype").Property.BorderCollapse | undefined>[] | readonly import("csstype").Property.BorderCollapse[] | undefined;
|
|
73
|
-
borderEndEndRadius?: readonly (string | (string & {}))[] |
|
|
74
|
-
borderEndStartRadius?: readonly (string | (string & {}))[] |
|
|
75
|
-
borderImageOutset?: readonly (string | (string & {}))[] |
|
|
76
|
-
borderImageRepeat?:
|
|
107
|
+
borderEndEndRadius?: import("csstype").Property.BorderEndEndRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderEndEndRadius<string | number> | undefined>[] | undefined;
|
|
108
|
+
borderEndStartRadius?: import("csstype").Property.BorderEndStartRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderEndStartRadius<string | number> | undefined>[] | undefined;
|
|
109
|
+
borderImageOutset?: import("csstype").Property.BorderImageOutset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderImageOutset<string | number> | undefined>[] | undefined;
|
|
110
|
+
borderImageRepeat?: import("csstype").Property.BorderImageRepeat | readonly string[] | readonly import("csstype").Property.BorderImageRepeat[] | undefined;
|
|
77
111
|
borderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
|
|
78
|
-
borderImageSource?:
|
|
79
|
-
borderImageWidth?: readonly (string | (string & {}))[] |
|
|
80
|
-
borderInlineColor?:
|
|
81
|
-
borderInlineEndColor?:
|
|
112
|
+
borderImageSource?: import("csstype").Property.BorderImageSource | readonly string[] | readonly import("csstype").Property.BorderImageSource[] | undefined;
|
|
113
|
+
borderImageWidth?: import("csstype").Property.BorderImageWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderImageWidth<string | number> | undefined>[] | undefined;
|
|
114
|
+
borderInlineColor?: import("csstype").Property.BorderInlineColor | readonly string[] | readonly import("csstype").Property.BorderInlineColor[] | undefined;
|
|
115
|
+
borderInlineEndColor?: import("csstype").Property.BorderInlineEndColor | readonly string[] | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
82
116
|
borderInlineEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
83
|
-
borderInlineEndWidth?:
|
|
84
|
-
borderInlineStartColor?:
|
|
117
|
+
borderInlineEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
118
|
+
borderInlineStartColor?: import("csstype").Property.BorderInlineStartColor | readonly string[] | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
85
119
|
borderInlineStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
86
|
-
borderInlineStartWidth?:
|
|
120
|
+
borderInlineStartWidth?: import("csstype").Property.BorderInlineStartWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineStartWidth<string | number> | undefined>[] | undefined;
|
|
87
121
|
borderInlineStyle?: import("csstype").Property.BorderInlineStyle | readonly NonNullable<import("csstype").Property.BorderInlineStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStyle[] | undefined;
|
|
88
|
-
borderInlineWidth?:
|
|
89
|
-
borderLeftColor?:
|
|
122
|
+
borderInlineWidth?: import("csstype").Property.BorderInlineWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineWidth<string | number> | undefined>[] | undefined;
|
|
123
|
+
borderLeftColor?: import("csstype").Property.BorderLeftColor | readonly string[] | readonly import("csstype").Property.BorderLeftColor[] | undefined;
|
|
90
124
|
borderLeftStyle?: import("csstype").Property.BorderLeftStyle | readonly NonNullable<import("csstype").Property.BorderLeftStyle | undefined>[] | readonly import("csstype").Property.BorderLeftStyle[] | undefined;
|
|
91
|
-
borderLeftWidth?:
|
|
92
|
-
borderRightColor?:
|
|
125
|
+
borderLeftWidth?: import("csstype").Property.BorderLeftWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderLeftWidth<string | number> | undefined>[] | undefined;
|
|
126
|
+
borderRightColor?: import("csstype").Property.BorderRightColor | readonly string[] | readonly import("csstype").Property.BorderRightColor[] | undefined;
|
|
93
127
|
borderRightStyle?: import("csstype").Property.BorderRightStyle | readonly NonNullable<import("csstype").Property.BorderRightStyle | undefined>[] | readonly import("csstype").Property.BorderRightStyle[] | undefined;
|
|
94
|
-
borderRightWidth?:
|
|
95
|
-
borderSpacing?: readonly (string | (string & {}))[] |
|
|
96
|
-
borderStartEndRadius?: readonly (string | (string & {}))[] |
|
|
97
|
-
borderStartStartRadius?: readonly (string | (string & {}))[] |
|
|
98
|
-
borderTopColor?:
|
|
99
|
-
borderTopLeftRadius?: readonly (string | (string & {}))[] |
|
|
100
|
-
borderTopRightRadius?: readonly (string | (string & {}))[] |
|
|
128
|
+
borderRightWidth?: import("csstype").Property.BorderRightWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderRightWidth<string | number> | undefined>[] | undefined;
|
|
129
|
+
borderSpacing?: import("csstype").Property.BorderSpacing<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderSpacing<string | number> | undefined>[] | undefined;
|
|
130
|
+
borderStartEndRadius?: import("csstype").Property.BorderStartEndRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderStartEndRadius<string | number> | undefined>[] | undefined;
|
|
131
|
+
borderStartStartRadius?: import("csstype").Property.BorderStartStartRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderStartStartRadius<string | number> | undefined>[] | undefined;
|
|
132
|
+
borderTopColor?: import("csstype").Property.BorderTopColor | readonly string[] | readonly import("csstype").Property.BorderTopColor[] | undefined;
|
|
133
|
+
borderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
134
|
+
borderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
101
135
|
borderTopStyle?: import("csstype").Property.BorderTopStyle | readonly NonNullable<import("csstype").Property.BorderTopStyle | undefined>[] | readonly import("csstype").Property.BorderTopStyle[] | undefined;
|
|
102
|
-
borderTopWidth?:
|
|
103
|
-
bottom?: readonly (string | (string & {}))[] |
|
|
136
|
+
borderTopWidth?: import("csstype").Property.BorderTopWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderTopWidth<string | number> | undefined>[] | undefined;
|
|
137
|
+
bottom?: import("csstype").Property.Bottom<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Bottom<string | number> | undefined>[] | undefined;
|
|
104
138
|
boxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
105
|
-
boxShadow?:
|
|
139
|
+
boxShadow?: import("csstype").Property.BoxShadow | readonly string[] | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
106
140
|
boxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
107
141
|
breakAfter?: import("csstype").Property.BreakAfter | readonly NonNullable<import("csstype").Property.BreakAfter | undefined>[] | readonly import("csstype").Property.BreakAfter[] | undefined;
|
|
108
142
|
breakBefore?: import("csstype").Property.BreakBefore | readonly NonNullable<import("csstype").Property.BreakBefore | undefined>[] | readonly import("csstype").Property.BreakBefore[] | undefined;
|
|
109
143
|
breakInside?: import("csstype").Property.BreakInside | readonly NonNullable<import("csstype").Property.BreakInside | undefined>[] | readonly import("csstype").Property.BreakInside[] | undefined;
|
|
110
144
|
captionSide?: import("csstype").Property.CaptionSide | readonly NonNullable<import("csstype").Property.CaptionSide | undefined>[] | readonly import("csstype").Property.CaptionSide[] | undefined;
|
|
111
|
-
caretColor?:
|
|
145
|
+
caretColor?: import("csstype").Property.CaretColor | readonly string[] | readonly import("csstype").Property.CaretColor[] | undefined;
|
|
112
146
|
caretShape?: import("csstype").Property.CaretShape | readonly NonNullable<import("csstype").Property.CaretShape | undefined>[] | readonly import("csstype").Property.CaretShape[] | undefined;
|
|
113
147
|
clear?: import("csstype").Property.Clear | readonly NonNullable<import("csstype").Property.Clear | undefined>[] | readonly import("csstype").Property.Clear[] | undefined;
|
|
114
|
-
clipPath?:
|
|
115
|
-
color?:
|
|
148
|
+
clipPath?: import("csstype").Property.ClipPath | readonly string[] | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
149
|
+
color?: import("csstype").Property.Color | readonly string[] | readonly import("csstype").Property.Color[] | undefined;
|
|
116
150
|
colorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
117
|
-
colorScheme?:
|
|
118
|
-
columnCount?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
151
|
+
colorScheme?: import("csstype").Property.ColorScheme | readonly string[] | readonly import("csstype").Property.ColorScheme[] | undefined;
|
|
152
|
+
columnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
119
153
|
columnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
120
|
-
columnGap?: readonly (string | (string & {}))[] |
|
|
121
|
-
columnRuleColor?:
|
|
122
|
-
columnRuleStyle?:
|
|
123
|
-
columnRuleWidth?: readonly (string | (string & {}))[] |
|
|
154
|
+
columnGap?: import("csstype").Property.ColumnGap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnGap<string | number> | undefined>[] | undefined;
|
|
155
|
+
columnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
156
|
+
columnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
157
|
+
columnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
124
158
|
columnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
125
|
-
columnWidth?:
|
|
126
|
-
contain?:
|
|
127
|
-
containIntrinsicBlockSize?: readonly (string | (string & {}))[] |
|
|
128
|
-
containIntrinsicHeight?: readonly (string | (string & {}))[] |
|
|
129
|
-
containIntrinsicInlineSize?: readonly (string | (string & {}))[] |
|
|
130
|
-
containIntrinsicWidth?: readonly (string | (string & {}))[] |
|
|
131
|
-
containerName?:
|
|
159
|
+
columnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
160
|
+
contain?: import("csstype").Property.Contain | readonly string[] | readonly import("csstype").Property.Contain[] | undefined;
|
|
161
|
+
containIntrinsicBlockSize?: import("csstype").Property.ContainIntrinsicBlockSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ContainIntrinsicBlockSize<string | number> | undefined>[] | undefined;
|
|
162
|
+
containIntrinsicHeight?: import("csstype").Property.ContainIntrinsicHeight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ContainIntrinsicHeight<string | number> | undefined>[] | undefined;
|
|
163
|
+
containIntrinsicInlineSize?: import("csstype").Property.ContainIntrinsicInlineSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ContainIntrinsicInlineSize<string | number> | undefined>[] | undefined;
|
|
164
|
+
containIntrinsicWidth?: import("csstype").Property.ContainIntrinsicWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ContainIntrinsicWidth<string | number> | undefined>[] | undefined;
|
|
165
|
+
containerName?: import("csstype").Property.ContainerName | readonly string[] | readonly import("csstype").Property.ContainerName[] | undefined;
|
|
132
166
|
containerType?: import("csstype").Property.ContainerType | readonly NonNullable<import("csstype").Property.ContainerType | undefined>[] | readonly import("csstype").Property.ContainerType[] | undefined;
|
|
133
|
-
content?:
|
|
167
|
+
content?: import("csstype").Property.Content | readonly string[] | readonly import("csstype").Property.Content[] | undefined;
|
|
134
168
|
contentVisibility?: import("csstype").Property.ContentVisibility | readonly NonNullable<import("csstype").Property.ContentVisibility | undefined>[] | readonly import("csstype").Property.ContentVisibility[] | undefined;
|
|
135
|
-
counterIncrement?:
|
|
136
|
-
counterReset?:
|
|
137
|
-
counterSet?:
|
|
138
|
-
cursor?:
|
|
169
|
+
counterIncrement?: import("csstype").Property.CounterIncrement | readonly string[] | readonly import("csstype").Property.CounterIncrement[] | undefined;
|
|
170
|
+
counterReset?: import("csstype").Property.CounterReset | readonly string[] | readonly import("csstype").Property.CounterReset[] | undefined;
|
|
171
|
+
counterSet?: import("csstype").Property.CounterSet | readonly string[] | readonly import("csstype").Property.CounterSet[] | undefined;
|
|
172
|
+
cursor?: import("csstype").Property.Cursor | readonly string[] | readonly import("csstype").Property.Cursor[] | undefined;
|
|
139
173
|
direction?: import("csstype").Property.Direction | readonly NonNullable<import("csstype").Property.Direction | undefined>[] | readonly import("csstype").Property.Direction[] | undefined;
|
|
140
|
-
display?:
|
|
174
|
+
display?: import("csstype").Property.Display | readonly string[] | readonly import("csstype").Property.Display[] | undefined;
|
|
141
175
|
emptyCells?: import("csstype").Property.EmptyCells | readonly NonNullable<import("csstype").Property.EmptyCells | undefined>[] | readonly import("csstype").Property.EmptyCells[] | undefined;
|
|
142
|
-
filter?:
|
|
143
|
-
flexBasis?: readonly (string | (string & {}))[] |
|
|
176
|
+
filter?: import("csstype").Property.Filter | readonly string[] | readonly import("csstype").Property.Filter[] | undefined;
|
|
177
|
+
flexBasis?: import("csstype").Property.FlexBasis<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
144
178
|
flexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
145
|
-
flexGrow?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
146
|
-
flexShrink?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
179
|
+
flexGrow?: import("csstype").Property.FlexGrow | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
180
|
+
flexShrink?: import("csstype").Property.FlexShrink | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
147
181
|
flexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
148
182
|
float?: import("csstype").Property.Float | readonly NonNullable<import("csstype").Property.Float | undefined>[] | readonly import("csstype").Property.Float[] | undefined;
|
|
149
|
-
fontFamily: "Roboto" |
|
|
150
|
-
fontFeatureSettings?:
|
|
183
|
+
fontFamily: "Roboto" | import("csstype").Property.FontFamily | readonly string[];
|
|
184
|
+
fontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
151
185
|
fontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
152
|
-
fontLanguageOverride?:
|
|
186
|
+
fontLanguageOverride?: import("csstype").Property.FontLanguageOverride | readonly string[] | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
153
187
|
fontOpticalSizing?: import("csstype").Property.FontOpticalSizing | readonly NonNullable<import("csstype").Property.FontOpticalSizing | undefined>[] | readonly import("csstype").Property.FontOpticalSizing[] | undefined;
|
|
154
|
-
fontPalette?:
|
|
188
|
+
fontPalette?: import("csstype").Property.FontPalette | readonly string[] | readonly import("csstype").Property.FontPalette[] | undefined;
|
|
155
189
|
fontSize: string | number | readonly NonNullable<import("csstype").Property.FontSize<string | number> | undefined>[];
|
|
156
190
|
fontSizeAdjust?: import("csstype").Property.FontSizeAdjust | readonly NonNullable<import("csstype").Property.FontSizeAdjust | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none" | "from-font")[] | undefined;
|
|
157
|
-
fontSmooth?:
|
|
158
|
-
fontStretch?:
|
|
159
|
-
fontStyle?:
|
|
160
|
-
fontSynthesis?:
|
|
191
|
+
fontSmooth?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
192
|
+
fontStretch?: import("csstype").Property.FontStretch | readonly string[] | readonly import("csstype").Property.FontStretch[] | undefined;
|
|
193
|
+
fontStyle?: import("csstype").Property.FontStyle | readonly string[] | readonly import("csstype").Property.FontStyle[] | undefined;
|
|
194
|
+
fontSynthesis?: import("csstype").Property.FontSynthesis | readonly string[] | readonly import("csstype").Property.FontSynthesis[] | undefined;
|
|
161
195
|
fontSynthesisPosition?: import("csstype").Property.FontSynthesisPosition | readonly NonNullable<import("csstype").Property.FontSynthesisPosition | undefined>[] | readonly import("csstype").Property.FontSynthesisPosition[] | undefined;
|
|
162
196
|
fontSynthesisSmallCaps?: import("csstype").Property.FontSynthesisSmallCaps | readonly NonNullable<import("csstype").Property.FontSynthesisSmallCaps | undefined>[] | readonly import("csstype").Property.FontSynthesisSmallCaps[] | undefined;
|
|
163
197
|
fontSynthesisStyle?: import("csstype").Property.FontSynthesisStyle | readonly NonNullable<import("csstype").Property.FontSynthesisStyle | undefined>[] | readonly import("csstype").Property.FontSynthesisStyle[] | undefined;
|
|
164
198
|
fontSynthesisWeight?: import("csstype").Property.FontSynthesisWeight | readonly NonNullable<import("csstype").Property.FontSynthesisWeight | undefined>[] | readonly import("csstype").Property.FontSynthesisWeight[] | undefined;
|
|
165
|
-
fontVariant?:
|
|
166
|
-
fontVariantAlternates?:
|
|
199
|
+
fontVariant?: import("csstype").Property.FontVariant | readonly string[] | readonly import("csstype").Property.FontVariant[] | undefined;
|
|
200
|
+
fontVariantAlternates?: import("csstype").Property.FontVariantAlternates | readonly string[] | readonly import("csstype").Property.FontVariantAlternates[] | undefined;
|
|
167
201
|
fontVariantCaps?: import("csstype").Property.FontVariantCaps | readonly NonNullable<import("csstype").Property.FontVariantCaps | undefined>[] | readonly import("csstype").Property.FontVariantCaps[] | undefined;
|
|
168
|
-
fontVariantEastAsian?:
|
|
202
|
+
fontVariantEastAsian?: import("csstype").Property.FontVariantEastAsian | readonly string[] | readonly import("csstype").Property.FontVariantEastAsian[] | undefined;
|
|
169
203
|
fontVariantEmoji?: import("csstype").Property.FontVariantEmoji | readonly NonNullable<import("csstype").Property.FontVariantEmoji | undefined>[] | readonly import("csstype").Property.FontVariantEmoji[] | undefined;
|
|
170
|
-
fontVariantLigatures?:
|
|
171
|
-
fontVariantNumeric?:
|
|
204
|
+
fontVariantLigatures?: import("csstype").Property.FontVariantLigatures | readonly string[] | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
205
|
+
fontVariantNumeric?: import("csstype").Property.FontVariantNumeric | readonly string[] | readonly import("csstype").Property.FontVariantNumeric[] | undefined;
|
|
172
206
|
fontVariantPosition?: import("csstype").Property.FontVariantPosition | readonly NonNullable<import("csstype").Property.FontVariantPosition | undefined>[] | readonly import("csstype").Property.FontVariantPosition[] | undefined;
|
|
173
|
-
fontVariationSettings?:
|
|
207
|
+
fontVariationSettings?: import("csstype").Property.FontVariationSettings | readonly string[] | readonly import("csstype").Property.FontVariationSettings[] | undefined;
|
|
174
208
|
fontWeight?: import("csstype").Property.FontWeight | readonly NonNullable<import("csstype").Property.FontWeight | undefined>[] | readonly ("bold" | (string & {}) | import('csstype').Globals | "normal" | "bolder" | "lighter")[] | undefined;
|
|
175
209
|
forcedColorAdjust?: import("csstype").Property.ForcedColorAdjust | readonly NonNullable<import("csstype").Property.ForcedColorAdjust | undefined>[] | readonly import("csstype").Property.ForcedColorAdjust[] | undefined;
|
|
176
|
-
gridAutoColumns?: readonly (string | (string & {}))[] |
|
|
177
|
-
gridAutoFlow?:
|
|
178
|
-
gridAutoRows?: readonly (string | (string & {}))[] |
|
|
179
|
-
gridColumnEnd?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
180
|
-
gridColumnStart?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
181
|
-
gridRowEnd?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
182
|
-
gridRowStart?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
183
|
-
gridTemplateAreas?:
|
|
184
|
-
gridTemplateColumns?: readonly (string | (string & {}))[] |
|
|
185
|
-
gridTemplateRows?: readonly (string | (string & {}))[] |
|
|
186
|
-
hangingPunctuation?:
|
|
187
|
-
height?: readonly (string | (string & {}))[] |
|
|
188
|
-
hyphenateCharacter?:
|
|
189
|
-
hyphenateLimitChars?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
210
|
+
gridAutoColumns?: import("csstype").Property.GridAutoColumns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridAutoColumns<string | number> | undefined>[] | undefined;
|
|
211
|
+
gridAutoFlow?: import("csstype").Property.GridAutoFlow | readonly string[] | readonly import("csstype").Property.GridAutoFlow[] | undefined;
|
|
212
|
+
gridAutoRows?: import("csstype").Property.GridAutoRows<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridAutoRows<string | number> | undefined>[] | undefined;
|
|
213
|
+
gridColumnEnd?: import("csstype").Property.GridColumnEnd | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridColumnEnd | undefined>[] | undefined;
|
|
214
|
+
gridColumnStart?: import("csstype").Property.GridColumnStart | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridColumnStart | undefined>[] | undefined;
|
|
215
|
+
gridRowEnd?: import("csstype").Property.GridRowEnd | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridRowEnd | undefined>[] | undefined;
|
|
216
|
+
gridRowStart?: import("csstype").Property.GridRowStart | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridRowStart | undefined>[] | undefined;
|
|
217
|
+
gridTemplateAreas?: import("csstype").Property.GridTemplateAreas | readonly string[] | readonly import("csstype").Property.GridTemplateAreas[] | undefined;
|
|
218
|
+
gridTemplateColumns?: import("csstype").Property.GridTemplateColumns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridTemplateColumns<string | number> | undefined>[] | undefined;
|
|
219
|
+
gridTemplateRows?: import("csstype").Property.GridTemplateRows<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridTemplateRows<string | number> | undefined>[] | undefined;
|
|
220
|
+
hangingPunctuation?: import("csstype").Property.HangingPunctuation | readonly string[] | readonly import("csstype").Property.HangingPunctuation[] | undefined;
|
|
221
|
+
height?: import("csstype").Property.Height<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Height<string | number> | undefined>[] | undefined;
|
|
222
|
+
hyphenateCharacter?: import("csstype").Property.HyphenateCharacter | readonly string[] | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
223
|
+
hyphenateLimitChars?: import("csstype").Property.HyphenateLimitChars | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.HyphenateLimitChars | undefined>[] | undefined;
|
|
190
224
|
hyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
191
|
-
imageOrientation?:
|
|
225
|
+
imageOrientation?: import("csstype").Property.ImageOrientation | readonly string[] | readonly import("csstype").Property.ImageOrientation[] | undefined;
|
|
192
226
|
imageRendering?: import("csstype").Property.ImageRendering | readonly NonNullable<import("csstype").Property.ImageRendering | undefined>[] | readonly import("csstype").Property.ImageRendering[] | undefined;
|
|
193
|
-
imageResolution?:
|
|
227
|
+
imageResolution?: import("csstype").Property.ImageResolution | readonly string[] | readonly import("csstype").Property.ImageResolution[] | undefined;
|
|
194
228
|
initialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal")[] | undefined;
|
|
195
|
-
inlineSize?: readonly (string | (string & {}))[] |
|
|
229
|
+
inlineSize?: import("csstype").Property.InlineSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InlineSize<string | number> | undefined>[] | undefined;
|
|
196
230
|
inputSecurity?: import("csstype").Property.InputSecurity | readonly NonNullable<import("csstype").Property.InputSecurity | undefined>[] | readonly import("csstype").Property.InputSecurity[] | undefined;
|
|
197
|
-
insetBlockEnd?: readonly (string | (string & {}))[] |
|
|
198
|
-
insetBlockStart?: readonly (string | (string & {}))[] |
|
|
199
|
-
insetInlineEnd?: readonly (string | (string & {}))[] |
|
|
200
|
-
insetInlineStart?: readonly (string | (string & {}))[] |
|
|
231
|
+
insetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
232
|
+
insetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
233
|
+
insetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
234
|
+
insetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
201
235
|
isolation?: import("csstype").Property.Isolation | readonly NonNullable<import("csstype").Property.Isolation | undefined>[] | readonly import("csstype").Property.Isolation[] | undefined;
|
|
202
|
-
justifyContent?:
|
|
203
|
-
justifyItems?:
|
|
204
|
-
justifySelf?:
|
|
205
|
-
justifyTracks?:
|
|
206
|
-
left?: readonly (string | (string & {}))[] |
|
|
207
|
-
letterSpacing?:
|
|
236
|
+
justifyContent?: import("csstype").Property.JustifyContent | readonly string[] | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
237
|
+
justifyItems?: import("csstype").Property.JustifyItems | readonly string[] | readonly import("csstype").Property.JustifyItems[] | undefined;
|
|
238
|
+
justifySelf?: import("csstype").Property.JustifySelf | readonly string[] | readonly import("csstype").Property.JustifySelf[] | undefined;
|
|
239
|
+
justifyTracks?: import("csstype").Property.JustifyTracks | readonly string[] | readonly import("csstype").Property.JustifyTracks[] | undefined;
|
|
240
|
+
left?: import("csstype").Property.Left<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Left<string | number> | undefined>[] | undefined;
|
|
241
|
+
letterSpacing?: import("csstype").Property.LetterSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.LetterSpacing<string | number> | undefined>[] | undefined;
|
|
208
242
|
lineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
209
243
|
lineHeight: string | number | readonly NonNullable<import("csstype").Property.LineHeight<string | number> | undefined>[];
|
|
210
|
-
lineHeightStep?:
|
|
211
|
-
listStyleImage?:
|
|
244
|
+
lineHeightStep?: import("csstype").Property.LineHeightStep<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.LineHeightStep<string | number> | undefined>[] | undefined;
|
|
245
|
+
listStyleImage?: import("csstype").Property.ListStyleImage | readonly string[] | readonly import("csstype").Property.ListStyleImage[] | undefined;
|
|
212
246
|
listStylePosition?: import("csstype").Property.ListStylePosition | readonly NonNullable<import("csstype").Property.ListStylePosition | undefined>[] | readonly import("csstype").Property.ListStylePosition[] | undefined;
|
|
213
|
-
listStyleType?:
|
|
214
|
-
marginBlockEnd?: readonly (string | (string & {}))[] |
|
|
215
|
-
marginBlockStart?: readonly (string | (string & {}))[] |
|
|
216
|
-
marginBottom?: readonly (string | (string & {}))[] |
|
|
217
|
-
marginInlineEnd?: readonly (string | (string & {}))[] |
|
|
218
|
-
marginInlineStart?: readonly (string | (string & {}))[] |
|
|
219
|
-
marginLeft?: readonly (string | (string & {}))[] |
|
|
220
|
-
marginRight?: readonly (string | (string & {}))[] |
|
|
221
|
-
marginTop?: readonly (string | (string & {}))[] |
|
|
247
|
+
listStyleType?: import("csstype").Property.ListStyleType | readonly string[] | readonly import("csstype").Property.ListStyleType[] | undefined;
|
|
248
|
+
marginBlockEnd?: import("csstype").Property.MarginBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
249
|
+
marginBlockStart?: import("csstype").Property.MarginBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginBlockStart<string | number> | undefined>[] | undefined;
|
|
250
|
+
marginBottom?: import("csstype").Property.MarginBottom<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginBottom<string | number> | undefined>[] | undefined;
|
|
251
|
+
marginInlineEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
252
|
+
marginInlineStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
253
|
+
marginLeft?: import("csstype").Property.MarginLeft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginLeft<string | number> | undefined>[] | undefined;
|
|
254
|
+
marginRight?: import("csstype").Property.MarginRight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginRight<string | number> | undefined>[] | undefined;
|
|
255
|
+
marginTop?: import("csstype").Property.MarginTop<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginTop<string | number> | undefined>[] | undefined;
|
|
222
256
|
marginTrim?: import("csstype").Property.MarginTrim | readonly NonNullable<import("csstype").Property.MarginTrim | undefined>[] | readonly import("csstype").Property.MarginTrim[] | undefined;
|
|
223
257
|
maskBorderMode?: import("csstype").Property.MaskBorderMode | readonly NonNullable<import("csstype").Property.MaskBorderMode | undefined>[] | readonly import("csstype").Property.MaskBorderMode[] | undefined;
|
|
224
|
-
maskBorderOutset?: readonly (string | (string & {}))[] |
|
|
225
|
-
maskBorderRepeat?:
|
|
226
|
-
maskBorderSlice?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
227
|
-
maskBorderSource?:
|
|
228
|
-
maskBorderWidth?: readonly (string | (string & {}))[] |
|
|
229
|
-
maskClip?:
|
|
230
|
-
maskComposite?:
|
|
231
|
-
maskImage?:
|
|
232
|
-
maskMode?:
|
|
233
|
-
maskOrigin?:
|
|
234
|
-
maskPosition?: readonly (string | (string & {}))[] |
|
|
235
|
-
maskRepeat?:
|
|
236
|
-
maskSize?: readonly (string | (string & {}))[] |
|
|
258
|
+
maskBorderOutset?: import("csstype").Property.MaskBorderOutset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
259
|
+
maskBorderRepeat?: import("csstype").Property.MaskBorderRepeat | readonly string[] | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
260
|
+
maskBorderSlice?: import("csstype").Property.MaskBorderSlice | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
261
|
+
maskBorderSource?: import("csstype").Property.MaskBorderSource | readonly string[] | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
262
|
+
maskBorderWidth?: import("csstype").Property.MaskBorderWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
263
|
+
maskClip?: import("csstype").Property.MaskClip | readonly string[] | readonly import("csstype").Property.MaskClip[] | undefined;
|
|
264
|
+
maskComposite?: import("csstype").Property.MaskComposite | readonly string[] | readonly import("csstype").Property.MaskComposite[] | undefined;
|
|
265
|
+
maskImage?: import("csstype").Property.MaskImage | readonly string[] | readonly import("csstype").Property.MaskImage[] | undefined;
|
|
266
|
+
maskMode?: import("csstype").Property.MaskMode | readonly string[] | readonly import("csstype").Property.MaskMode[] | undefined;
|
|
267
|
+
maskOrigin?: import("csstype").Property.MaskOrigin | readonly string[] | readonly import("csstype").Property.MaskOrigin[] | undefined;
|
|
268
|
+
maskPosition?: import("csstype").Property.MaskPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskPosition<string | number> | undefined>[] | undefined;
|
|
269
|
+
maskRepeat?: import("csstype").Property.MaskRepeat | readonly string[] | readonly import("csstype").Property.MaskRepeat[] | undefined;
|
|
270
|
+
maskSize?: import("csstype").Property.MaskSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskSize<string | number> | undefined>[] | undefined;
|
|
237
271
|
maskType?: import("csstype").Property.MaskType | readonly NonNullable<import("csstype").Property.MaskType | undefined>[] | readonly import("csstype").Property.MaskType[] | undefined;
|
|
238
|
-
masonryAutoFlow?:
|
|
272
|
+
masonryAutoFlow?: import("csstype").Property.MasonryAutoFlow | readonly string[] | readonly import("csstype").Property.MasonryAutoFlow[] | undefined;
|
|
239
273
|
mathDepth?: import("csstype").Property.MathDepth | readonly NonNullable<import("csstype").Property.MathDepth | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "auto-add")[] | undefined;
|
|
240
274
|
mathShift?: import("csstype").Property.MathShift | readonly NonNullable<import("csstype").Property.MathShift | undefined>[] | readonly import("csstype").Property.MathShift[] | undefined;
|
|
241
275
|
mathStyle?: import("csstype").Property.MathStyle | readonly NonNullable<import("csstype").Property.MathStyle | undefined>[] | readonly import("csstype").Property.MathStyle[] | undefined;
|
|
242
|
-
maxBlockSize?: readonly (string | (string & {}))[] |
|
|
243
|
-
maxHeight?: readonly (string | (string & {}))[] |
|
|
244
|
-
maxInlineSize?: readonly (string | (string & {}))[] |
|
|
276
|
+
maxBlockSize?: import("csstype").Property.MaxBlockSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaxBlockSize<string | number> | undefined>[] | undefined;
|
|
277
|
+
maxHeight?: import("csstype").Property.MaxHeight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaxHeight<string | number> | undefined>[] | undefined;
|
|
278
|
+
maxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
245
279
|
maxLines?: import("csstype").Property.MaxLines | readonly NonNullable<import("csstype").Property.MaxLines | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "none")[] | undefined;
|
|
246
|
-
maxWidth?: readonly (string | (string & {}))[] |
|
|
247
|
-
minBlockSize?: readonly (string | (string & {}))[] |
|
|
248
|
-
minHeight?: readonly (string | (string & {}))[] |
|
|
249
|
-
minInlineSize?: readonly (string | (string & {}))[] |
|
|
250
|
-
minWidth?: readonly (string | (string & {}))[] |
|
|
280
|
+
maxWidth?: import("csstype").Property.MaxWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaxWidth<string | number> | undefined>[] | undefined;
|
|
281
|
+
minBlockSize?: import("csstype").Property.MinBlockSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MinBlockSize<string | number> | undefined>[] | undefined;
|
|
282
|
+
minHeight?: import("csstype").Property.MinHeight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MinHeight<string | number> | undefined>[] | undefined;
|
|
283
|
+
minInlineSize?: import("csstype").Property.MinInlineSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MinInlineSize<string | number> | undefined>[] | undefined;
|
|
284
|
+
minWidth?: import("csstype").Property.MinWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MinWidth<string | number> | undefined>[] | undefined;
|
|
251
285
|
mixBlendMode?: import("csstype").Property.MixBlendMode | readonly NonNullable<import("csstype").Property.MixBlendMode | undefined>[] | readonly import("csstype").Property.MixBlendMode[] | undefined;
|
|
252
|
-
motionDistance?: readonly (string | (string & {}))[] |
|
|
253
|
-
motionPath?:
|
|
254
|
-
motionRotation?:
|
|
286
|
+
motionDistance?: import("csstype").Property.OffsetDistance<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
287
|
+
motionPath?: import("csstype").Property.OffsetPath | readonly string[] | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
288
|
+
motionRotation?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
255
289
|
objectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
256
|
-
objectPosition?: readonly (string | (string & {}))[] |
|
|
257
|
-
offsetAnchor?: readonly (string | (string & {}))[] |
|
|
258
|
-
offsetDistance?: readonly (string | (string & {}))[] |
|
|
259
|
-
offsetPath?:
|
|
260
|
-
offsetPosition?: readonly (string | (string & {}))[] |
|
|
261
|
-
offsetRotate?:
|
|
262
|
-
offsetRotation?:
|
|
263
|
-
opacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
264
|
-
order?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
265
|
-
orphans?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
266
|
-
outlineColor?:
|
|
267
|
-
outlineOffset?:
|
|
268
|
-
outlineStyle?:
|
|
269
|
-
outlineWidth?:
|
|
290
|
+
objectPosition?: import("csstype").Property.ObjectPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
291
|
+
offsetAnchor?: import("csstype").Property.OffsetAnchor<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.OffsetAnchor<string | number> | undefined>[] | undefined;
|
|
292
|
+
offsetDistance?: import("csstype").Property.OffsetDistance<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.OffsetDistance<string | number> | undefined>[] | undefined;
|
|
293
|
+
offsetPath?: import("csstype").Property.OffsetPath | readonly string[] | readonly import("csstype").Property.OffsetPath[] | undefined;
|
|
294
|
+
offsetPosition?: import("csstype").Property.OffsetPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.OffsetPosition<string | number> | undefined>[] | undefined;
|
|
295
|
+
offsetRotate?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
296
|
+
offsetRotation?: import("csstype").Property.OffsetRotate | readonly string[] | readonly import("csstype").Property.OffsetRotate[] | undefined;
|
|
297
|
+
opacity?: import("csstype").Property.Opacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
|
|
298
|
+
order?: import("csstype").Property.Order | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
299
|
+
orphans?: import("csstype").Property.Orphans | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Orphans | undefined>[] | undefined;
|
|
300
|
+
outlineColor?: import("csstype").Property.OutlineColor | readonly string[] | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
301
|
+
outlineOffset?: import("csstype").Property.OutlineOffset<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineOffset<string | number> | undefined>[] | undefined;
|
|
302
|
+
outlineStyle?: import("csstype").Property.OutlineStyle | readonly string[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
303
|
+
outlineWidth?: import("csstype").Property.OutlineWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
270
304
|
overflowAnchor?: import("csstype").Property.OverflowAnchor | readonly NonNullable<import("csstype").Property.OverflowAnchor | undefined>[] | readonly import("csstype").Property.OverflowAnchor[] | undefined;
|
|
271
305
|
overflowBlock?: import("csstype").Property.OverflowBlock | readonly NonNullable<import("csstype").Property.OverflowBlock | undefined>[] | readonly import("csstype").Property.OverflowBlock[] | undefined;
|
|
272
306
|
overflowClipBox?: import("csstype").Property.OverflowClipBox | readonly NonNullable<import("csstype").Property.OverflowClipBox | undefined>[] | readonly import("csstype").Property.OverflowClipBox[] | undefined;
|
|
273
|
-
overflowClipMargin?: readonly (string | (string & {}))[] |
|
|
307
|
+
overflowClipMargin?: import("csstype").Property.OverflowClipMargin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.OverflowClipMargin<string | number> | undefined>[] | undefined;
|
|
274
308
|
overflowInline?: import("csstype").Property.OverflowInline | readonly NonNullable<import("csstype").Property.OverflowInline | undefined>[] | readonly import("csstype").Property.OverflowInline[] | undefined;
|
|
275
309
|
overflowWrap?: import("csstype").Property.OverflowWrap | readonly NonNullable<import("csstype").Property.OverflowWrap | undefined>[] | readonly import("csstype").Property.OverflowWrap[] | undefined;
|
|
276
310
|
overflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
@@ -280,236 +314,236 @@ export declare const getPopupStyle: (pickerTokens: PickerTokens) => (theme: Them
|
|
|
280
314
|
overscrollBehaviorInline?: import("csstype").Property.OverscrollBehaviorInline | readonly NonNullable<import("csstype").Property.OverscrollBehaviorInline | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorInline[] | undefined;
|
|
281
315
|
overscrollBehaviorX?: import("csstype").Property.OverscrollBehaviorX | readonly NonNullable<import("csstype").Property.OverscrollBehaviorX | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorX[] | undefined;
|
|
282
316
|
overscrollBehaviorY?: import("csstype").Property.OverscrollBehaviorY | readonly NonNullable<import("csstype").Property.OverscrollBehaviorY | undefined>[] | readonly import("csstype").Property.OverscrollBehaviorY[] | undefined;
|
|
283
|
-
paddingBlockEnd?: readonly (string | (string & {}))[] |
|
|
284
|
-
paddingBlockStart?: readonly (string | (string & {}))[] |
|
|
317
|
+
paddingBlockEnd?: import("csstype").Property.PaddingBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
318
|
+
paddingBlockStart?: import("csstype").Property.PaddingBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
285
319
|
paddingBottom?: import("csstype").Property.PaddingBottom<string | number> | readonly NonNullable<import("csstype").Property.PaddingBottom<string | number> | undefined>[] | readonly (string | (string & {}))[] | undefined;
|
|
286
|
-
paddingInlineEnd?: readonly (string | (string & {}))[] |
|
|
287
|
-
paddingInlineStart?: readonly (string | (string & {}))[] |
|
|
288
|
-
paddingLeft?: readonly (string | (string & {}))[] |
|
|
289
|
-
paddingRight?: readonly (string | (string & {}))[] |
|
|
290
|
-
paddingTop?: readonly (string | (string & {}))[] |
|
|
291
|
-
page?:
|
|
320
|
+
paddingInlineEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
321
|
+
paddingInlineStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
322
|
+
paddingLeft?: import("csstype").Property.PaddingLeft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingLeft<string | number> | undefined>[] | undefined;
|
|
323
|
+
paddingRight?: import("csstype").Property.PaddingRight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingRight<string | number> | undefined>[] | undefined;
|
|
324
|
+
paddingTop?: import("csstype").Property.PaddingTop<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingTop<string | number> | undefined>[] | undefined;
|
|
325
|
+
page?: import("csstype").Property.Page | readonly string[] | readonly import("csstype").Property.Page[] | undefined;
|
|
292
326
|
pageBreakAfter?: import("csstype").Property.PageBreakAfter | readonly NonNullable<import("csstype").Property.PageBreakAfter | undefined>[] | readonly import("csstype").Property.PageBreakAfter[] | undefined;
|
|
293
327
|
pageBreakBefore?: import("csstype").Property.PageBreakBefore | readonly NonNullable<import("csstype").Property.PageBreakBefore | undefined>[] | readonly import("csstype").Property.PageBreakBefore[] | undefined;
|
|
294
328
|
pageBreakInside?: import("csstype").Property.PageBreakInside | readonly NonNullable<import("csstype").Property.PageBreakInside | undefined>[] | readonly import("csstype").Property.PageBreakInside[] | undefined;
|
|
295
|
-
paintOrder?:
|
|
296
|
-
perspective?:
|
|
297
|
-
perspectiveOrigin?: readonly (string | (string & {}))[] |
|
|
329
|
+
paintOrder?: import("csstype").Property.PaintOrder | readonly string[] | readonly import("csstype").Property.PaintOrder[] | undefined;
|
|
330
|
+
perspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
331
|
+
perspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
298
332
|
pointerEvents?: import("csstype").Property.PointerEvents | readonly NonNullable<import("csstype").Property.PointerEvents | undefined>[] | readonly import("csstype").Property.PointerEvents[] | undefined;
|
|
299
333
|
position: import("csstype").Property.Position | readonly NonNullable<import("csstype").Property.Position | undefined>[];
|
|
300
334
|
printColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
301
|
-
quotes?:
|
|
335
|
+
quotes?: import("csstype").Property.Quotes | readonly string[] | readonly import("csstype").Property.Quotes[] | undefined;
|
|
302
336
|
resize?: import("csstype").Property.Resize | readonly NonNullable<import("csstype").Property.Resize | undefined>[] | readonly import("csstype").Property.Resize[] | undefined;
|
|
303
|
-
right?: readonly (string | (string & {}))[] |
|
|
304
|
-
rotate?:
|
|
305
|
-
rowGap?: readonly (string | (string & {}))[] |
|
|
337
|
+
right?: import("csstype").Property.Right<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Right<string | number> | undefined>[] | undefined;
|
|
338
|
+
rotate?: import("csstype").Property.Rotate | readonly string[] | readonly import("csstype").Property.Rotate[] | undefined;
|
|
339
|
+
rowGap?: import("csstype").Property.RowGap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.RowGap<string | number> | undefined>[] | undefined;
|
|
306
340
|
rubyAlign?: import("csstype").Property.RubyAlign | readonly NonNullable<import("csstype").Property.RubyAlign | undefined>[] | readonly import("csstype").Property.RubyAlign[] | undefined;
|
|
307
341
|
rubyMerge?: import("csstype").Property.RubyMerge | readonly NonNullable<import("csstype").Property.RubyMerge | undefined>[] | readonly import("csstype").Property.RubyMerge[] | undefined;
|
|
308
|
-
rubyPosition?:
|
|
309
|
-
scale?: readonly ((string & {}) | import('csstype').Globals | "none")[] |
|
|
342
|
+
rubyPosition?: import("csstype").Property.RubyPosition | readonly string[] | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
343
|
+
scale?: import("csstype").Property.Scale | readonly ((string & {}) | import('csstype').Globals | "none")[] | readonly NonNullable<import("csstype").Property.Scale | undefined>[] | undefined;
|
|
310
344
|
scrollBehavior?: import("csstype").Property.ScrollBehavior | readonly NonNullable<import("csstype").Property.ScrollBehavior | undefined>[] | readonly import("csstype").Property.ScrollBehavior[] | undefined;
|
|
311
|
-
scrollMarginBlockEnd?:
|
|
312
|
-
scrollMarginBlockStart?:
|
|
313
|
-
scrollMarginBottom?:
|
|
314
|
-
scrollMarginInlineEnd?:
|
|
315
|
-
scrollMarginInlineStart?:
|
|
316
|
-
scrollMarginLeft?:
|
|
317
|
-
scrollMarginRight?:
|
|
318
|
-
scrollMarginTop?:
|
|
319
|
-
scrollPaddingBlockEnd?: readonly (string | (string & {}))[] |
|
|
320
|
-
scrollPaddingBlockStart?: readonly (string | (string & {}))[] |
|
|
321
|
-
scrollPaddingBottom?: readonly (string | (string & {}))[] |
|
|
322
|
-
scrollPaddingInlineEnd?: readonly (string | (string & {}))[] |
|
|
323
|
-
scrollPaddingInlineStart?: readonly (string | (string & {}))[] |
|
|
324
|
-
scrollPaddingLeft?: readonly (string | (string & {}))[] |
|
|
325
|
-
scrollPaddingRight?: readonly (string | (string & {}))[] |
|
|
326
|
-
scrollPaddingTop?: readonly (string | (string & {}))[] |
|
|
327
|
-
scrollSnapAlign?:
|
|
328
|
-
scrollSnapMarginBottom?:
|
|
329
|
-
scrollSnapMarginLeft?:
|
|
330
|
-
scrollSnapMarginRight?:
|
|
331
|
-
scrollSnapMarginTop?:
|
|
345
|
+
scrollMarginBlockEnd?: import("csstype").Property.ScrollMarginBlockEnd<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBlockEnd<string | number> | undefined>[] | undefined;
|
|
346
|
+
scrollMarginBlockStart?: import("csstype").Property.ScrollMarginBlockStart<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBlockStart<string | number> | undefined>[] | undefined;
|
|
347
|
+
scrollMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
348
|
+
scrollMarginInlineEnd?: import("csstype").Property.ScrollMarginInlineEnd<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
349
|
+
scrollMarginInlineStart?: import("csstype").Property.ScrollMarginInlineStart<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginInlineStart<string | number> | undefined>[] | undefined;
|
|
350
|
+
scrollMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
351
|
+
scrollMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
352
|
+
scrollMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
353
|
+
scrollPaddingBlockEnd?: import("csstype").Property.ScrollPaddingBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockEnd<string | number> | undefined>[] | undefined;
|
|
354
|
+
scrollPaddingBlockStart?: import("csstype").Property.ScrollPaddingBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingBlockStart<string | number> | undefined>[] | undefined;
|
|
355
|
+
scrollPaddingBottom?: import("csstype").Property.ScrollPaddingBottom<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingBottom<string | number> | undefined>[] | undefined;
|
|
356
|
+
scrollPaddingInlineEnd?: import("csstype").Property.ScrollPaddingInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
357
|
+
scrollPaddingInlineStart?: import("csstype").Property.ScrollPaddingInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
358
|
+
scrollPaddingLeft?: import("csstype").Property.ScrollPaddingLeft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingLeft<string | number> | undefined>[] | undefined;
|
|
359
|
+
scrollPaddingRight?: import("csstype").Property.ScrollPaddingRight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingRight<string | number> | undefined>[] | undefined;
|
|
360
|
+
scrollPaddingTop?: import("csstype").Property.ScrollPaddingTop<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingTop<string | number> | undefined>[] | undefined;
|
|
361
|
+
scrollSnapAlign?: import("csstype").Property.ScrollSnapAlign | readonly string[] | readonly import("csstype").Property.ScrollSnapAlign[] | undefined;
|
|
362
|
+
scrollSnapMarginBottom?: import("csstype").Property.ScrollMarginBottom<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginBottom<string | number> | undefined>[] | undefined;
|
|
363
|
+
scrollSnapMarginLeft?: import("csstype").Property.ScrollMarginLeft<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginLeft<string | number> | undefined>[] | undefined;
|
|
364
|
+
scrollSnapMarginRight?: import("csstype").Property.ScrollMarginRight<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginRight<string | number> | undefined>[] | undefined;
|
|
365
|
+
scrollSnapMarginTop?: import("csstype").Property.ScrollMarginTop<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ScrollMarginTop<string | number> | undefined>[] | undefined;
|
|
332
366
|
scrollSnapStop?: import("csstype").Property.ScrollSnapStop | readonly NonNullable<import("csstype").Property.ScrollSnapStop | undefined>[] | readonly import("csstype").Property.ScrollSnapStop[] | undefined;
|
|
333
|
-
scrollSnapType?:
|
|
334
|
-
scrollTimelineAxis?:
|
|
335
|
-
scrollTimelineName?:
|
|
336
|
-
scrollbarColor?:
|
|
337
|
-
scrollbarGutter?:
|
|
367
|
+
scrollSnapType?: import("csstype").Property.ScrollSnapType | readonly string[] | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
368
|
+
scrollTimelineAxis?: import("csstype").Property.ScrollTimelineAxis | readonly string[] | readonly import("csstype").Property.ScrollTimelineAxis[] | undefined;
|
|
369
|
+
scrollTimelineName?: import("csstype").Property.ScrollTimelineName | readonly string[] | readonly import("csstype").Property.ScrollTimelineName[] | undefined;
|
|
370
|
+
scrollbarColor?: import("csstype").Property.ScrollbarColor | readonly string[] | readonly import("csstype").Property.ScrollbarColor[] | undefined;
|
|
371
|
+
scrollbarGutter?: import("csstype").Property.ScrollbarGutter | readonly string[] | readonly import("csstype").Property.ScrollbarGutter[] | undefined;
|
|
338
372
|
scrollbarWidth?: import("csstype").Property.ScrollbarWidth | readonly NonNullable<import("csstype").Property.ScrollbarWidth | undefined>[] | readonly import("csstype").Property.ScrollbarWidth[] | undefined;
|
|
339
|
-
shapeImageThreshold?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
340
|
-
shapeMargin?: readonly (string | (string & {}))[] |
|
|
341
|
-
shapeOutside?:
|
|
342
|
-
tabSize?: readonly (string | (string & {}))[] |
|
|
373
|
+
shapeImageThreshold?: import("csstype").Property.ShapeImageThreshold | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.ShapeImageThreshold | undefined>[] | undefined;
|
|
374
|
+
shapeMargin?: import("csstype").Property.ShapeMargin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
375
|
+
shapeOutside?: import("csstype").Property.ShapeOutside | readonly string[] | readonly import("csstype").Property.ShapeOutside[] | undefined;
|
|
376
|
+
tabSize?: import("csstype").Property.TabSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
343
377
|
tableLayout?: import("csstype").Property.TableLayout | readonly NonNullable<import("csstype").Property.TableLayout | undefined>[] | readonly import("csstype").Property.TableLayout[] | undefined;
|
|
344
378
|
textAlign?: import("csstype").Property.TextAlign | readonly NonNullable<import("csstype").Property.TextAlign | undefined>[] | readonly import("csstype").Property.TextAlign[] | undefined;
|
|
345
379
|
textAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
346
|
-
textCombineUpright?:
|
|
347
|
-
textDecorationColor?:
|
|
348
|
-
textDecorationLine?:
|
|
349
|
-
textDecorationSkip?:
|
|
380
|
+
textCombineUpright?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
381
|
+
textDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
382
|
+
textDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
383
|
+
textDecorationSkip?: import("csstype").Property.TextDecorationSkip | readonly string[] | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
350
384
|
textDecorationSkipInk?: import("csstype").Property.TextDecorationSkipInk | readonly NonNullable<import("csstype").Property.TextDecorationSkipInk | undefined>[] | readonly import("csstype").Property.TextDecorationSkipInk[] | undefined;
|
|
351
385
|
textDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
352
|
-
textDecorationThickness?: readonly (string | (string & {}))[] |
|
|
353
|
-
textEmphasisColor?:
|
|
354
|
-
textEmphasisPosition?:
|
|
355
|
-
textEmphasisStyle?:
|
|
356
|
-
textIndent?: readonly (string | (string & {}))[] |
|
|
386
|
+
textDecorationThickness?: import("csstype").Property.TextDecorationThickness<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TextDecorationThickness<string | number> | undefined>[] | undefined;
|
|
387
|
+
textEmphasisColor?: import("csstype").Property.TextEmphasisColor | readonly string[] | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
388
|
+
textEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | readonly string[] | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
389
|
+
textEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | readonly string[] | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
390
|
+
textIndent?: import("csstype").Property.TextIndent<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TextIndent<string | number> | undefined>[] | undefined;
|
|
357
391
|
textJustify?: import("csstype").Property.TextJustify | readonly NonNullable<import("csstype").Property.TextJustify | undefined>[] | readonly import("csstype").Property.TextJustify[] | undefined;
|
|
358
392
|
textOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
359
|
-
textOverflow?:
|
|
393
|
+
textOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
360
394
|
textRendering?: import("csstype").Property.TextRendering | readonly NonNullable<import("csstype").Property.TextRendering | undefined>[] | readonly import("csstype").Property.TextRendering[] | undefined;
|
|
361
|
-
textShadow?:
|
|
362
|
-
textSizeAdjust?:
|
|
395
|
+
textShadow?: import("csstype").Property.TextShadow | readonly string[] | readonly import("csstype").Property.TextShadow[] | undefined;
|
|
396
|
+
textSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
363
397
|
textTransform?: import("csstype").Property.TextTransform | readonly NonNullable<import("csstype").Property.TextTransform | undefined>[] | readonly import("csstype").Property.TextTransform[] | undefined;
|
|
364
|
-
textUnderlineOffset?: readonly (string | (string & {}))[] |
|
|
365
|
-
textUnderlinePosition?:
|
|
398
|
+
textUnderlineOffset?: import("csstype").Property.TextUnderlineOffset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TextUnderlineOffset<string | number> | undefined>[] | undefined;
|
|
399
|
+
textUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | readonly string[] | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
366
400
|
textWrap?: import("csstype").Property.TextWrap | readonly NonNullable<import("csstype").Property.TextWrap | undefined>[] | readonly import("csstype").Property.TextWrap[] | undefined;
|
|
367
|
-
timelineScope?:
|
|
368
|
-
top?: readonly (string | (string & {}))[] |
|
|
369
|
-
touchAction?:
|
|
370
|
-
transform?:
|
|
401
|
+
timelineScope?: import("csstype").Property.TimelineScope | readonly string[] | readonly import("csstype").Property.TimelineScope[] | undefined;
|
|
402
|
+
top?: import("csstype").Property.Top<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Top<string | number> | undefined>[] | undefined;
|
|
403
|
+
touchAction?: import("csstype").Property.TouchAction | readonly string[] | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
404
|
+
transform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
|
|
371
405
|
transformBox?: import("csstype").Property.TransformBox | readonly NonNullable<import("csstype").Property.TransformBox | undefined>[] | readonly import("csstype").Property.TransformBox[] | undefined;
|
|
372
|
-
transformOrigin?: readonly (string | (string & {}))[] |
|
|
406
|
+
transformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
373
407
|
transformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
374
|
-
transitionBehavior?:
|
|
375
|
-
transitionDelay?:
|
|
376
|
-
transitionDuration?:
|
|
377
|
-
transitionProperty?:
|
|
378
|
-
transitionTimingFunction?:
|
|
379
|
-
translate?: readonly (string | (string & {}))[] |
|
|
408
|
+
transitionBehavior?: import("csstype").Property.TransitionBehavior | readonly string[] | readonly import("csstype").Property.TransitionBehavior[] | undefined;
|
|
409
|
+
transitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
410
|
+
transitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
411
|
+
transitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
412
|
+
transitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
413
|
+
translate?: import("csstype").Property.Translate<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Translate<string | number> | undefined>[] | undefined;
|
|
380
414
|
unicodeBidi?: import("csstype").Property.UnicodeBidi | readonly NonNullable<import("csstype").Property.UnicodeBidi | undefined>[] | readonly import("csstype").Property.UnicodeBidi[] | undefined;
|
|
381
415
|
userSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
382
|
-
verticalAlign?: readonly (string | (string & {}))[] |
|
|
383
|
-
viewTimelineAxis?:
|
|
384
|
-
viewTimelineInset?: readonly (string | (string & {}))[] |
|
|
385
|
-
viewTimelineName?:
|
|
386
|
-
viewTransitionName?:
|
|
416
|
+
verticalAlign?: import("csstype").Property.VerticalAlign<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.VerticalAlign<string | number> | undefined>[] | undefined;
|
|
417
|
+
viewTimelineAxis?: import("csstype").Property.ViewTimelineAxis | readonly string[] | readonly import("csstype").Property.ViewTimelineAxis[] | undefined;
|
|
418
|
+
viewTimelineInset?: import("csstype").Property.ViewTimelineInset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ViewTimelineInset<string | number> | undefined>[] | undefined;
|
|
419
|
+
viewTimelineName?: import("csstype").Property.ViewTimelineName | readonly string[] | readonly import("csstype").Property.ViewTimelineName[] | undefined;
|
|
420
|
+
viewTransitionName?: import("csstype").Property.ViewTransitionName | readonly string[] | readonly import("csstype").Property.ViewTransitionName[] | undefined;
|
|
387
421
|
visibility?: import("csstype").Property.Visibility | readonly NonNullable<import("csstype").Property.Visibility | undefined>[] | readonly import("csstype").Property.Visibility[] | undefined;
|
|
388
|
-
whiteSpace?:
|
|
422
|
+
whiteSpace?: import("csstype").Property.WhiteSpace | readonly string[] | readonly import("csstype").Property.WhiteSpace[] | undefined;
|
|
389
423
|
whiteSpaceCollapse?: import("csstype").Property.WhiteSpaceCollapse | readonly NonNullable<import("csstype").Property.WhiteSpaceCollapse | undefined>[] | readonly import("csstype").Property.WhiteSpaceCollapse[] | undefined;
|
|
390
|
-
whiteSpaceTrim?:
|
|
391
|
-
widows?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
392
|
-
width?: readonly (string | (string & {}))[] |
|
|
393
|
-
willChange?:
|
|
424
|
+
whiteSpaceTrim?: import("csstype").Property.WhiteSpaceTrim | readonly string[] | readonly import("csstype").Property.WhiteSpaceTrim[] | undefined;
|
|
425
|
+
widows?: import("csstype").Property.Widows | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Widows | undefined>[] | undefined;
|
|
426
|
+
width?: import("csstype").Property.Width<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Width<string | number> | undefined>[] | undefined;
|
|
427
|
+
willChange?: import("csstype").Property.WillChange | readonly string[] | readonly import("csstype").Property.WillChange[] | undefined;
|
|
394
428
|
wordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
395
|
-
wordSpacing?:
|
|
429
|
+
wordSpacing?: import("csstype").Property.WordSpacing<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WordSpacing<string | number> | undefined>[] | undefined;
|
|
396
430
|
wordWrap?: import("csstype").Property.WordWrap | readonly NonNullable<import("csstype").Property.WordWrap | undefined>[] | readonly import("csstype").Property.WordWrap[] | undefined;
|
|
397
431
|
writingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
398
432
|
zIndex: import("csstype").Property.ZIndex | readonly NonNullable<import("csstype").Property.ZIndex | undefined>[] | 1050;
|
|
399
433
|
zoom?: import("csstype").Property.Zoom | readonly NonNullable<import("csstype").Property.Zoom | undefined>[] | readonly ("reset" | (string & {}) | import('csstype').Globals | "normal")[] | undefined;
|
|
400
434
|
all?: import('csstype').Globals | readonly NonNullable<import('csstype').Globals | undefined>[] | readonly import('csstype').Globals[] | undefined;
|
|
401
435
|
animation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | (string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
402
|
-
animationRange?: readonly (string | (string & {}))[] |
|
|
403
|
-
background?: readonly (string | (string & {}))[] |
|
|
404
|
-
backgroundPosition?: readonly (string | (string & {}))[] |
|
|
405
|
-
border?: readonly (string | (string & {}))[] |
|
|
406
|
-
borderBlock?: readonly (string | (string & {}))[] |
|
|
407
|
-
borderBlockEnd?: readonly (string | (string & {}))[] |
|
|
408
|
-
borderBlockStart?: readonly (string | (string & {}))[] |
|
|
409
|
-
borderBottom?: readonly (string | (string & {}))[] |
|
|
410
|
-
borderColor?:
|
|
436
|
+
animationRange?: import("csstype").Property.AnimationRange<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.AnimationRange<string | number> | undefined>[] | undefined;
|
|
437
|
+
background?: import("csstype").Property.Background<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Background<string | number> | undefined>[] | undefined;
|
|
438
|
+
backgroundPosition?: import("csstype").Property.BackgroundPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundPosition<string | number> | undefined>[] | undefined;
|
|
439
|
+
border?: import("csstype").Property.Border<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Border<string | number> | undefined>[] | undefined;
|
|
440
|
+
borderBlock?: import("csstype").Property.BorderBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBlock<string | number> | undefined>[] | undefined;
|
|
441
|
+
borderBlockEnd?: import("csstype").Property.BorderBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBlockEnd<string | number> | undefined>[] | undefined;
|
|
442
|
+
borderBlockStart?: import("csstype").Property.BorderBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBlockStart<string | number> | undefined>[] | undefined;
|
|
443
|
+
borderBottom?: import("csstype").Property.BorderBottom<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottom<string | number> | undefined>[] | undefined;
|
|
444
|
+
borderColor?: import("csstype").Property.BorderColor | readonly string[] | readonly import("csstype").Property.BorderColor[] | undefined;
|
|
411
445
|
borderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
|
|
412
|
-
borderInline?: readonly (string | (string & {}))[] |
|
|
413
|
-
borderInlineEnd?: readonly (string | (string & {}))[] |
|
|
414
|
-
borderInlineStart?: readonly (string | (string & {}))[] |
|
|
415
|
-
borderLeft?: readonly (string | (string & {}))[] |
|
|
416
|
-
borderRadius?: readonly (string | (string & {}))[] |
|
|
417
|
-
borderRight?: readonly (string | (string & {}))[] |
|
|
418
|
-
borderStyle?:
|
|
419
|
-
borderTop?: readonly (string | (string & {}))[] |
|
|
420
|
-
borderWidth?: readonly (string | (string & {}))[] |
|
|
421
|
-
caret?:
|
|
422
|
-
columnRule?: readonly (string | (string & {}))[] |
|
|
423
|
-
columns?: readonly (string | (string & {}))[] |
|
|
424
|
-
containIntrinsicSize?: readonly (string | (string & {}))[] |
|
|
425
|
-
container?:
|
|
426
|
-
flex?: readonly (string | (string & {}))[] |
|
|
427
|
-
flexFlow?:
|
|
428
|
-
font?:
|
|
429
|
-
gap?: readonly (string | (string & {}))[] |
|
|
430
|
-
grid?:
|
|
431
|
-
gridArea?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
432
|
-
gridColumn?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
433
|
-
gridRow?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
434
|
-
gridTemplate?:
|
|
435
|
-
inset?: readonly (string | (string & {}))[] |
|
|
436
|
-
insetBlock?: readonly (string | (string & {}))[] |
|
|
437
|
-
insetInline?: readonly (string | (string & {}))[] |
|
|
438
|
-
lineClamp?: readonly ((string & {}) | import('csstype').Globals | "none")[] |
|
|
439
|
-
listStyle?:
|
|
440
|
-
margin?: readonly (string | (string & {}))[] |
|
|
441
|
-
marginBlock?: readonly (string | (string & {}))[] |
|
|
442
|
-
marginInline?: readonly (string | (string & {}))[] |
|
|
443
|
-
mask?: readonly (string | (string & {}))[] |
|
|
446
|
+
borderInline?: import("csstype").Property.BorderInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderInline<string | number> | undefined>[] | undefined;
|
|
447
|
+
borderInlineEnd?: import("csstype").Property.BorderInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderInlineEnd<string | number> | undefined>[] | undefined;
|
|
448
|
+
borderInlineStart?: import("csstype").Property.BorderInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderInlineStart<string | number> | undefined>[] | undefined;
|
|
449
|
+
borderLeft?: import("csstype").Property.BorderLeft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderLeft<string | number> | undefined>[] | undefined;
|
|
450
|
+
borderRadius?: import("csstype").Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
451
|
+
borderRight?: import("csstype").Property.BorderRight<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderRight<string | number> | undefined>[] | undefined;
|
|
452
|
+
borderStyle?: import("csstype").Property.BorderStyle | readonly string[] | readonly import("csstype").Property.BorderStyle[] | undefined;
|
|
453
|
+
borderTop?: import("csstype").Property.BorderTop<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTop<string | number> | undefined>[] | undefined;
|
|
454
|
+
borderWidth?: import("csstype").Property.BorderWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderWidth<string | number> | undefined>[] | undefined;
|
|
455
|
+
caret?: import("csstype").Property.Caret | readonly string[] | readonly import("csstype").Property.Caret[] | undefined;
|
|
456
|
+
columnRule?: import("csstype").Property.ColumnRule<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
457
|
+
columns?: import("csstype").Property.Columns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
458
|
+
containIntrinsicSize?: import("csstype").Property.ContainIntrinsicSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ContainIntrinsicSize<string | number> | undefined>[] | undefined;
|
|
459
|
+
container?: import("csstype").Property.Container | readonly string[] | readonly import("csstype").Property.Container[] | undefined;
|
|
460
|
+
flex?: import("csstype").Property.Flex<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
461
|
+
flexFlow?: import("csstype").Property.FlexFlow | readonly string[] | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
462
|
+
font?: import("csstype").Property.Font | readonly string[] | readonly import("csstype").Property.Font[] | undefined;
|
|
463
|
+
gap?: import("csstype").Property.Gap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Gap<string | number> | undefined>[] | undefined;
|
|
464
|
+
grid?: import("csstype").Property.Grid | readonly string[] | readonly import("csstype").Property.Grid[] | undefined;
|
|
465
|
+
gridArea?: import("csstype").Property.GridArea | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridArea | undefined>[] | undefined;
|
|
466
|
+
gridColumn?: import("csstype").Property.GridColumn | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridColumn | undefined>[] | undefined;
|
|
467
|
+
gridRow?: import("csstype").Property.GridRow | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GridRow | undefined>[] | undefined;
|
|
468
|
+
gridTemplate?: import("csstype").Property.GridTemplate | readonly string[] | readonly import("csstype").Property.GridTemplate[] | undefined;
|
|
469
|
+
inset?: import("csstype").Property.Inset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Inset<string | number> | undefined>[] | undefined;
|
|
470
|
+
insetBlock?: import("csstype").Property.InsetBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
471
|
+
insetInline?: import("csstype").Property.InsetInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
472
|
+
lineClamp?: import("csstype").Property.LineClamp | readonly ((string & {}) | import('csstype').Globals | "none")[] | readonly NonNullable<import("csstype").Property.LineClamp | undefined>[] | undefined;
|
|
473
|
+
listStyle?: import("csstype").Property.ListStyle | readonly string[] | readonly import("csstype").Property.ListStyle[] | undefined;
|
|
474
|
+
margin?: import("csstype").Property.Margin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Margin<string | number> | undefined>[] | undefined;
|
|
475
|
+
marginBlock?: import("csstype").Property.MarginBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginBlock<string | number> | undefined>[] | undefined;
|
|
476
|
+
marginInline?: import("csstype").Property.MarginInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInline<string | number> | undefined>[] | undefined;
|
|
477
|
+
mask?: import("csstype").Property.Mask<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Mask<string | number> | undefined>[] | undefined;
|
|
444
478
|
maskBorder?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space" | "alpha" | "luminance")[] | undefined;
|
|
445
|
-
motion?: readonly (string | (string & {}))[] |
|
|
446
|
-
offset?: readonly (string | (string & {}))[] |
|
|
447
|
-
outline?: readonly (string | (string & {}))[] |
|
|
448
|
-
overflow?:
|
|
449
|
-
overscrollBehavior?:
|
|
450
|
-
padding?: readonly (string | (string & {}))[] |
|
|
451
|
-
paddingBlock?: readonly (string | (string & {}))[] |
|
|
452
|
-
paddingInline?: readonly (string | (string & {}))[] |
|
|
453
|
-
placeContent?:
|
|
454
|
-
placeItems?:
|
|
455
|
-
placeSelf?:
|
|
456
|
-
scrollMargin?: readonly (string | (string & {}))[] |
|
|
457
|
-
scrollMarginBlock?: readonly (string | (string & {}))[] |
|
|
458
|
-
scrollMarginInline?: readonly (string | (string & {}))[] |
|
|
459
|
-
scrollPadding?: readonly (string | (string & {}))[] |
|
|
460
|
-
scrollPaddingBlock?: readonly (string | (string & {}))[] |
|
|
461
|
-
scrollPaddingInline?: readonly (string | (string & {}))[] |
|
|
462
|
-
scrollSnapMargin?: readonly (string | (string & {}))[] |
|
|
463
|
-
scrollTimeline?:
|
|
464
|
-
textDecoration?: readonly (string | (string & {}))[] |
|
|
465
|
-
textEmphasis?:
|
|
466
|
-
transition?:
|
|
467
|
-
viewTimeline?:
|
|
468
|
-
MozAnimationDelay?:
|
|
469
|
-
MozAnimationDirection?:
|
|
470
|
-
MozAnimationDuration?:
|
|
471
|
-
MozAnimationFillMode?:
|
|
479
|
+
motion?: import("csstype").Property.Offset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
480
|
+
offset?: import("csstype").Property.Offset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Offset<string | number> | undefined>[] | undefined;
|
|
481
|
+
outline?: import("csstype").Property.Outline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
482
|
+
overflow?: import("csstype").Property.Overflow | readonly string[] | readonly import("csstype").Property.Overflow[] | undefined;
|
|
483
|
+
overscrollBehavior?: import("csstype").Property.OverscrollBehavior | readonly string[] | readonly import("csstype").Property.OverscrollBehavior[] | undefined;
|
|
484
|
+
padding?: import("csstype").Property.Padding<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Padding<string | number> | undefined>[] | undefined;
|
|
485
|
+
paddingBlock?: import("csstype").Property.PaddingBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingBlock<string | number> | undefined>[] | undefined;
|
|
486
|
+
paddingInline?: import("csstype").Property.PaddingInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInline<string | number> | undefined>[] | undefined;
|
|
487
|
+
placeContent?: import("csstype").Property.PlaceContent | readonly string[] | readonly import("csstype").Property.PlaceContent[] | undefined;
|
|
488
|
+
placeItems?: import("csstype").Property.PlaceItems | readonly string[] | readonly import("csstype").Property.PlaceItems[] | undefined;
|
|
489
|
+
placeSelf?: import("csstype").Property.PlaceSelf | readonly string[] | readonly import("csstype").Property.PlaceSelf[] | undefined;
|
|
490
|
+
scrollMargin?: import("csstype").Property.ScrollMargin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
491
|
+
scrollMarginBlock?: import("csstype").Property.ScrollMarginBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollMarginBlock<string | number> | undefined>[] | undefined;
|
|
492
|
+
scrollMarginInline?: import("csstype").Property.ScrollMarginInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollMarginInline<string | number> | undefined>[] | undefined;
|
|
493
|
+
scrollPadding?: import("csstype").Property.ScrollPadding<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPadding<string | number> | undefined>[] | undefined;
|
|
494
|
+
scrollPaddingBlock?: import("csstype").Property.ScrollPaddingBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingBlock<string | number> | undefined>[] | undefined;
|
|
495
|
+
scrollPaddingInline?: import("csstype").Property.ScrollPaddingInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollPaddingInline<string | number> | undefined>[] | undefined;
|
|
496
|
+
scrollSnapMargin?: import("csstype").Property.ScrollMargin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollMargin<string | number> | undefined>[] | undefined;
|
|
497
|
+
scrollTimeline?: import("csstype").Property.ScrollTimeline | readonly string[] | readonly import("csstype").Property.ScrollTimeline[] | undefined;
|
|
498
|
+
textDecoration?: import("csstype").Property.TextDecoration<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TextDecoration<string | number> | undefined>[] | undefined;
|
|
499
|
+
textEmphasis?: import("csstype").Property.TextEmphasis | readonly string[] | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
500
|
+
transition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
501
|
+
viewTimeline?: import("csstype").Property.ViewTimeline | readonly string[] | readonly import("csstype").Property.ViewTimeline[] | undefined;
|
|
502
|
+
MozAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
503
|
+
MozAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
504
|
+
MozAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
505
|
+
MozAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
472
506
|
MozAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
|
|
473
|
-
MozAnimationName?:
|
|
474
|
-
MozAnimationPlayState?:
|
|
475
|
-
MozAnimationTimingFunction?:
|
|
507
|
+
MozAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
508
|
+
MozAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
509
|
+
MozAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
476
510
|
MozAppearance?: import("csstype").Property.MozAppearance | readonly NonNullable<import("csstype").Property.MozAppearance | undefined>[] | readonly import("csstype").Property.MozAppearance[] | undefined;
|
|
477
|
-
MozBinding?:
|
|
478
|
-
MozBorderBottomColors?:
|
|
479
|
-
MozBorderEndColor?:
|
|
511
|
+
MozBinding?: import("csstype").Property.MozBinding | readonly string[] | readonly import("csstype").Property.MozBinding[] | undefined;
|
|
512
|
+
MozBorderBottomColors?: import("csstype").Property.MozBorderBottomColors | readonly string[] | readonly import("csstype").Property.MozBorderBottomColors[] | undefined;
|
|
513
|
+
MozBorderEndColor?: import("csstype").Property.BorderInlineEndColor | readonly string[] | readonly import("csstype").Property.BorderInlineEndColor[] | undefined;
|
|
480
514
|
MozBorderEndStyle?: import("csstype").Property.BorderInlineEndStyle | readonly NonNullable<import("csstype").Property.BorderInlineEndStyle | undefined>[] | readonly import("csstype").Property.BorderInlineEndStyle[] | undefined;
|
|
481
|
-
MozBorderEndWidth?:
|
|
482
|
-
MozBorderLeftColors?:
|
|
483
|
-
MozBorderRightColors?:
|
|
484
|
-
MozBorderStartColor?:
|
|
515
|
+
MozBorderEndWidth?: import("csstype").Property.BorderInlineEndWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.BorderInlineEndWidth<string | number> | undefined>[] | undefined;
|
|
516
|
+
MozBorderLeftColors?: import("csstype").Property.MozBorderLeftColors | readonly string[] | readonly import("csstype").Property.MozBorderLeftColors[] | undefined;
|
|
517
|
+
MozBorderRightColors?: import("csstype").Property.MozBorderRightColors | readonly string[] | readonly import("csstype").Property.MozBorderRightColors[] | undefined;
|
|
518
|
+
MozBorderStartColor?: import("csstype").Property.BorderInlineStartColor | readonly string[] | readonly import("csstype").Property.BorderInlineStartColor[] | undefined;
|
|
485
519
|
MozBorderStartStyle?: import("csstype").Property.BorderInlineStartStyle | readonly NonNullable<import("csstype").Property.BorderInlineStartStyle | undefined>[] | readonly import("csstype").Property.BorderInlineStartStyle[] | undefined;
|
|
486
|
-
MozBorderTopColors?:
|
|
520
|
+
MozBorderTopColors?: import("csstype").Property.MozBorderTopColors | readonly string[] | readonly import("csstype").Property.MozBorderTopColors[] | undefined;
|
|
487
521
|
MozBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
488
|
-
MozColumnCount?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
522
|
+
MozColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
489
523
|
MozColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
490
|
-
MozColumnRuleColor?:
|
|
491
|
-
MozColumnRuleStyle?:
|
|
492
|
-
MozColumnRuleWidth?: readonly (string | (string & {}))[] |
|
|
493
|
-
MozColumnWidth?:
|
|
494
|
-
MozContextProperties?:
|
|
495
|
-
MozFontFeatureSettings?:
|
|
496
|
-
MozFontLanguageOverride?:
|
|
524
|
+
MozColumnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
525
|
+
MozColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
526
|
+
MozColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
527
|
+
MozColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
528
|
+
MozContextProperties?: import("csstype").Property.MozContextProperties | readonly string[] | readonly import("csstype").Property.MozContextProperties[] | undefined;
|
|
529
|
+
MozFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
530
|
+
MozFontLanguageOverride?: import("csstype").Property.FontLanguageOverride | readonly string[] | readonly import("csstype").Property.FontLanguageOverride[] | undefined;
|
|
497
531
|
MozHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
498
|
-
MozImageRegion?:
|
|
499
|
-
MozMarginEnd?: readonly (string | (string & {}))[] |
|
|
500
|
-
MozMarginStart?: readonly (string | (string & {}))[] |
|
|
532
|
+
MozImageRegion?: import("csstype").Property.MozImageRegion | readonly string[] | readonly import("csstype").Property.MozImageRegion[] | undefined;
|
|
533
|
+
MozMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
534
|
+
MozMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
501
535
|
MozOrient?: import("csstype").Property.MozOrient | readonly NonNullable<import("csstype").Property.MozOrient | undefined>[] | readonly import("csstype").Property.MozOrient[] | undefined;
|
|
502
|
-
MozOsxFontSmoothing?:
|
|
503
|
-
MozOutlineRadiusBottomleft?: readonly (string | (string & {}))[] |
|
|
504
|
-
MozOutlineRadiusBottomright?: readonly (string | (string & {}))[] |
|
|
505
|
-
MozOutlineRadiusTopleft?: readonly (string | (string & {}))[] |
|
|
506
|
-
MozOutlineRadiusTopright?: readonly (string | (string & {}))[] |
|
|
507
|
-
MozPaddingEnd?: readonly (string | (string & {}))[] |
|
|
508
|
-
MozPaddingStart?: readonly (string | (string & {}))[] |
|
|
536
|
+
MozOsxFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
537
|
+
MozOutlineRadiusBottomleft?: import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomleft<string | number> | undefined>[] | undefined;
|
|
538
|
+
MozOutlineRadiusBottomright?: import("csstype").Property.MozOutlineRadiusBottomright<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MozOutlineRadiusBottomright<string | number> | undefined>[] | undefined;
|
|
539
|
+
MozOutlineRadiusTopleft?: import("csstype").Property.MozOutlineRadiusTopleft<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopleft<string | number> | undefined>[] | undefined;
|
|
540
|
+
MozOutlineRadiusTopright?: import("csstype").Property.MozOutlineRadiusTopright<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MozOutlineRadiusTopright<string | number> | undefined>[] | undefined;
|
|
541
|
+
MozPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
542
|
+
MozPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
509
543
|
MozStackSizing?: import("csstype").Property.MozStackSizing | readonly NonNullable<import("csstype").Property.MozStackSizing | undefined>[] | readonly import("csstype").Property.MozStackSizing[] | undefined;
|
|
510
|
-
MozTabSize?: readonly (string | (string & {}))[] |
|
|
544
|
+
MozTabSize?: import("csstype").Property.TabSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
511
545
|
MozTextBlink?: import("csstype").Property.MozTextBlink | readonly NonNullable<import("csstype").Property.MozTextBlink | undefined>[] | readonly import("csstype").Property.MozTextBlink[] | undefined;
|
|
512
|
-
MozTextSizeAdjust?:
|
|
546
|
+
MozTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
513
547
|
MozUserFocus?: import("csstype").Property.MozUserFocus | readonly NonNullable<import("csstype").Property.MozUserFocus | undefined>[] | readonly import("csstype").Property.MozUserFocus[] | undefined;
|
|
514
548
|
MozUserModify?: import("csstype").Property.MozUserModify | readonly NonNullable<import("csstype").Property.MozUserModify | undefined>[] | readonly import("csstype").Property.MozUserModify[] | undefined;
|
|
515
549
|
MozUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
@@ -518,333 +552,333 @@ export declare const getPopupStyle: (pickerTokens: PickerTokens) => (theme: Them
|
|
|
518
552
|
msAccelerator?: import("csstype").Property.MsAccelerator | readonly NonNullable<import("csstype").Property.MsAccelerator | undefined>[] | readonly import("csstype").Property.MsAccelerator[] | undefined;
|
|
519
553
|
msBlockProgression?: import("csstype").Property.MsBlockProgression | readonly NonNullable<import("csstype").Property.MsBlockProgression | undefined>[] | readonly import("csstype").Property.MsBlockProgression[] | undefined;
|
|
520
554
|
msContentZoomChaining?: import("csstype").Property.MsContentZoomChaining | readonly NonNullable<import("csstype").Property.MsContentZoomChaining | undefined>[] | readonly import("csstype").Property.MsContentZoomChaining[] | undefined;
|
|
521
|
-
msContentZoomLimitMax?:
|
|
522
|
-
msContentZoomLimitMin?:
|
|
523
|
-
msContentZoomSnapPoints?:
|
|
555
|
+
msContentZoomLimitMax?: import("csstype").Property.MsContentZoomLimitMax | readonly string[] | readonly import("csstype").Property.MsContentZoomLimitMax[] | undefined;
|
|
556
|
+
msContentZoomLimitMin?: import("csstype").Property.MsContentZoomLimitMin | readonly string[] | readonly import("csstype").Property.MsContentZoomLimitMin[] | undefined;
|
|
557
|
+
msContentZoomSnapPoints?: import("csstype").Property.MsContentZoomSnapPoints | readonly string[] | readonly import("csstype").Property.MsContentZoomSnapPoints[] | undefined;
|
|
524
558
|
msContentZoomSnapType?: import("csstype").Property.MsContentZoomSnapType | readonly NonNullable<import("csstype").Property.MsContentZoomSnapType | undefined>[] | readonly import("csstype").Property.MsContentZoomSnapType[] | undefined;
|
|
525
559
|
msContentZooming?: import("csstype").Property.MsContentZooming | readonly NonNullable<import("csstype").Property.MsContentZooming | undefined>[] | readonly import("csstype").Property.MsContentZooming[] | undefined;
|
|
526
|
-
msFilter?:
|
|
560
|
+
msFilter?: import("csstype").Property.MsFilter | readonly string[] | readonly import("csstype").Property.MsFilter[] | undefined;
|
|
527
561
|
msFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
528
|
-
msFlexPositive?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
529
|
-
msFlowFrom?:
|
|
530
|
-
msFlowInto?:
|
|
531
|
-
msGridColumns?: readonly (string | (string & {}))[] |
|
|
532
|
-
msGridRows?: readonly (string | (string & {}))[] |
|
|
562
|
+
msFlexPositive?: import("csstype").Property.FlexGrow | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
563
|
+
msFlowFrom?: import("csstype").Property.MsFlowFrom | readonly string[] | readonly import("csstype").Property.MsFlowFrom[] | undefined;
|
|
564
|
+
msFlowInto?: import("csstype").Property.MsFlowInto | readonly string[] | readonly import("csstype").Property.MsFlowInto[] | undefined;
|
|
565
|
+
msGridColumns?: import("csstype").Property.MsGridColumns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MsGridColumns<string | number> | undefined>[] | undefined;
|
|
566
|
+
msGridRows?: import("csstype").Property.MsGridRows<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MsGridRows<string | number> | undefined>[] | undefined;
|
|
533
567
|
msHighContrastAdjust?: import("csstype").Property.MsHighContrastAdjust | readonly NonNullable<import("csstype").Property.MsHighContrastAdjust | undefined>[] | readonly import("csstype").Property.MsHighContrastAdjust[] | undefined;
|
|
534
|
-
msHyphenateLimitChars?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
568
|
+
msHyphenateLimitChars?: import("csstype").Property.MsHyphenateLimitChars | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.MsHyphenateLimitChars | undefined>[] | undefined;
|
|
535
569
|
msHyphenateLimitLines?: import("csstype").Property.MsHyphenateLimitLines | readonly NonNullable<import("csstype").Property.MsHyphenateLimitLines | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "no-limit")[] | undefined;
|
|
536
|
-
msHyphenateLimitZone?: readonly (string | (string & {}))[] |
|
|
570
|
+
msHyphenateLimitZone?: import("csstype").Property.MsHyphenateLimitZone<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MsHyphenateLimitZone<string | number> | undefined>[] | undefined;
|
|
537
571
|
msHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
538
572
|
msImeAlign?: import("csstype").Property.MsImeAlign | readonly NonNullable<import("csstype").Property.MsImeAlign | undefined>[] | readonly import("csstype").Property.MsImeAlign[] | undefined;
|
|
539
573
|
msLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
540
|
-
msOrder?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
574
|
+
msOrder?: import("csstype").Property.Order | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
541
575
|
msOverflowStyle?: import("csstype").Property.MsOverflowStyle | readonly NonNullable<import("csstype").Property.MsOverflowStyle | undefined>[] | readonly import("csstype").Property.MsOverflowStyle[] | undefined;
|
|
542
576
|
msOverflowX?: import("csstype").Property.OverflowX | readonly NonNullable<import("csstype").Property.OverflowX | undefined>[] | readonly import("csstype").Property.OverflowX[] | undefined;
|
|
543
577
|
msOverflowY?: import("csstype").Property.OverflowY | readonly NonNullable<import("csstype").Property.OverflowY | undefined>[] | readonly import("csstype").Property.OverflowY[] | undefined;
|
|
544
578
|
msScrollChaining?: import("csstype").Property.MsScrollChaining | readonly NonNullable<import("csstype").Property.MsScrollChaining | undefined>[] | readonly import("csstype").Property.MsScrollChaining[] | undefined;
|
|
545
|
-
msScrollLimitXMax?:
|
|
546
|
-
msScrollLimitXMin?:
|
|
547
|
-
msScrollLimitYMax?:
|
|
548
|
-
msScrollLimitYMin?:
|
|
579
|
+
msScrollLimitXMax?: import("csstype").Property.MsScrollLimitXMax<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitXMax<string | number> | undefined>[] | undefined;
|
|
580
|
+
msScrollLimitXMin?: import("csstype").Property.MsScrollLimitXMin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitXMin<string | number> | undefined>[] | undefined;
|
|
581
|
+
msScrollLimitYMax?: import("csstype").Property.MsScrollLimitYMax<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitYMax<string | number> | undefined>[] | undefined;
|
|
582
|
+
msScrollLimitYMin?: import("csstype").Property.MsScrollLimitYMin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsScrollLimitYMin<string | number> | undefined>[] | undefined;
|
|
549
583
|
msScrollRails?: import("csstype").Property.MsScrollRails | readonly NonNullable<import("csstype").Property.MsScrollRails | undefined>[] | readonly import("csstype").Property.MsScrollRails[] | undefined;
|
|
550
|
-
msScrollSnapPointsX?:
|
|
551
|
-
msScrollSnapPointsY?:
|
|
584
|
+
msScrollSnapPointsX?: import("csstype").Property.MsScrollSnapPointsX | readonly string[] | readonly import("csstype").Property.MsScrollSnapPointsX[] | undefined;
|
|
585
|
+
msScrollSnapPointsY?: import("csstype").Property.MsScrollSnapPointsY | readonly string[] | readonly import("csstype").Property.MsScrollSnapPointsY[] | undefined;
|
|
552
586
|
msScrollSnapType?: import("csstype").Property.MsScrollSnapType | readonly NonNullable<import("csstype").Property.MsScrollSnapType | undefined>[] | readonly import("csstype").Property.MsScrollSnapType[] | undefined;
|
|
553
587
|
msScrollTranslation?: import("csstype").Property.MsScrollTranslation | readonly NonNullable<import("csstype").Property.MsScrollTranslation | undefined>[] | readonly import("csstype").Property.MsScrollTranslation[] | undefined;
|
|
554
|
-
msScrollbar3dlightColor?:
|
|
555
|
-
msScrollbarArrowColor?:
|
|
556
|
-
msScrollbarBaseColor?:
|
|
557
|
-
msScrollbarDarkshadowColor?:
|
|
558
|
-
msScrollbarFaceColor?:
|
|
559
|
-
msScrollbarHighlightColor?:
|
|
560
|
-
msScrollbarShadowColor?:
|
|
561
|
-
msScrollbarTrackColor?:
|
|
588
|
+
msScrollbar3dlightColor?: import("csstype").Property.MsScrollbar3dlightColor | readonly string[] | readonly import("csstype").Property.MsScrollbar3dlightColor[] | undefined;
|
|
589
|
+
msScrollbarArrowColor?: import("csstype").Property.MsScrollbarArrowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarArrowColor[] | undefined;
|
|
590
|
+
msScrollbarBaseColor?: import("csstype").Property.MsScrollbarBaseColor | readonly string[] | readonly import("csstype").Property.MsScrollbarBaseColor[] | undefined;
|
|
591
|
+
msScrollbarDarkshadowColor?: import("csstype").Property.MsScrollbarDarkshadowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarDarkshadowColor[] | undefined;
|
|
592
|
+
msScrollbarFaceColor?: import("csstype").Property.MsScrollbarFaceColor | readonly string[] | readonly import("csstype").Property.MsScrollbarFaceColor[] | undefined;
|
|
593
|
+
msScrollbarHighlightColor?: import("csstype").Property.MsScrollbarHighlightColor | readonly string[] | readonly import("csstype").Property.MsScrollbarHighlightColor[] | undefined;
|
|
594
|
+
msScrollbarShadowColor?: import("csstype").Property.MsScrollbarShadowColor | readonly string[] | readonly import("csstype").Property.MsScrollbarShadowColor[] | undefined;
|
|
595
|
+
msScrollbarTrackColor?: import("csstype").Property.MsScrollbarTrackColor | readonly string[] | readonly import("csstype").Property.MsScrollbarTrackColor[] | undefined;
|
|
562
596
|
msTextAutospace?: import("csstype").Property.MsTextAutospace | readonly NonNullable<import("csstype").Property.MsTextAutospace | undefined>[] | readonly import("csstype").Property.MsTextAutospace[] | undefined;
|
|
563
|
-
msTextCombineHorizontal?:
|
|
564
|
-
msTextOverflow?:
|
|
565
|
-
msTouchAction?:
|
|
597
|
+
msTextCombineHorizontal?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
598
|
+
msTextOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
599
|
+
msTouchAction?: import("csstype").Property.TouchAction | readonly string[] | readonly import("csstype").Property.TouchAction[] | undefined;
|
|
566
600
|
msTouchSelect?: import("csstype").Property.MsTouchSelect | readonly NonNullable<import("csstype").Property.MsTouchSelect | undefined>[] | readonly import("csstype").Property.MsTouchSelect[] | undefined;
|
|
567
|
-
msTransform?:
|
|
568
|
-
msTransformOrigin?: readonly (string | (string & {}))[] |
|
|
569
|
-
msTransitionDelay?:
|
|
570
|
-
msTransitionDuration?:
|
|
571
|
-
msTransitionProperty?:
|
|
572
|
-
msTransitionTimingFunction?:
|
|
601
|
+
msTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
|
|
602
|
+
msTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
603
|
+
msTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
604
|
+
msTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
605
|
+
msTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
606
|
+
msTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
573
607
|
msUserSelect?: import("csstype").Property.MsUserSelect | readonly NonNullable<import("csstype").Property.MsUserSelect | undefined>[] | readonly import("csstype").Property.MsUserSelect[] | undefined;
|
|
574
608
|
msWordBreak?: import("csstype").Property.WordBreak | readonly NonNullable<import("csstype").Property.WordBreak | undefined>[] | readonly import("csstype").Property.WordBreak[] | undefined;
|
|
575
609
|
msWrapFlow?: import("csstype").Property.MsWrapFlow | readonly NonNullable<import("csstype").Property.MsWrapFlow | undefined>[] | readonly import("csstype").Property.MsWrapFlow[] | undefined;
|
|
576
|
-
msWrapMargin?:
|
|
610
|
+
msWrapMargin?: import("csstype").Property.MsWrapMargin<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.MsWrapMargin<string | number> | undefined>[] | undefined;
|
|
577
611
|
msWrapThrough?: import("csstype").Property.MsWrapThrough | readonly NonNullable<import("csstype").Property.MsWrapThrough | undefined>[] | readonly import("csstype").Property.MsWrapThrough[] | undefined;
|
|
578
612
|
msWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
579
|
-
WebkitAlignContent?:
|
|
580
|
-
WebkitAlignItems?:
|
|
581
|
-
WebkitAlignSelf?:
|
|
582
|
-
WebkitAnimationDelay?:
|
|
583
|
-
WebkitAnimationDirection?:
|
|
584
|
-
WebkitAnimationDuration?:
|
|
585
|
-
WebkitAnimationFillMode?:
|
|
613
|
+
WebkitAlignContent?: import("csstype").Property.AlignContent | readonly string[] | readonly import("csstype").Property.AlignContent[] | undefined;
|
|
614
|
+
WebkitAlignItems?: import("csstype").Property.AlignItems | readonly string[] | readonly import("csstype").Property.AlignItems[] | undefined;
|
|
615
|
+
WebkitAlignSelf?: import("csstype").Property.AlignSelf | readonly string[] | readonly import("csstype").Property.AlignSelf[] | undefined;
|
|
616
|
+
WebkitAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
617
|
+
WebkitAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
618
|
+
WebkitAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
619
|
+
WebkitAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
586
620
|
WebkitAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
|
|
587
|
-
WebkitAnimationName?:
|
|
588
|
-
WebkitAnimationPlayState?:
|
|
589
|
-
WebkitAnimationTimingFunction?:
|
|
621
|
+
WebkitAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
622
|
+
WebkitAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
623
|
+
WebkitAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
590
624
|
WebkitAppearance?: import("csstype").Property.WebkitAppearance | readonly NonNullable<import("csstype").Property.WebkitAppearance | undefined>[] | readonly import("csstype").Property.WebkitAppearance[] | undefined;
|
|
591
|
-
WebkitBackdropFilter?:
|
|
625
|
+
WebkitBackdropFilter?: import("csstype").Property.BackdropFilter | readonly string[] | readonly import("csstype").Property.BackdropFilter[] | undefined;
|
|
592
626
|
WebkitBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
593
|
-
WebkitBackgroundClip?:
|
|
594
|
-
WebkitBackgroundOrigin?:
|
|
595
|
-
WebkitBackgroundSize?: readonly (string | (string & {}))[] |
|
|
596
|
-
WebkitBorderBeforeColor?:
|
|
597
|
-
WebkitBorderBeforeStyle?:
|
|
598
|
-
WebkitBorderBeforeWidth?: readonly (string | (string & {}))[] |
|
|
599
|
-
WebkitBorderBottomLeftRadius?: readonly (string | (string & {}))[] |
|
|
600
|
-
WebkitBorderBottomRightRadius?: readonly (string | (string & {}))[] |
|
|
627
|
+
WebkitBackgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
628
|
+
WebkitBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
629
|
+
WebkitBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
630
|
+
WebkitBorderBeforeColor?: import("csstype").Property.WebkitBorderBeforeColor | readonly string[] | readonly import("csstype").Property.WebkitBorderBeforeColor[] | undefined;
|
|
631
|
+
WebkitBorderBeforeStyle?: import("csstype").Property.WebkitBorderBeforeStyle | readonly string[] | readonly import("csstype").Property.WebkitBorderBeforeStyle[] | undefined;
|
|
632
|
+
WebkitBorderBeforeWidth?: import("csstype").Property.WebkitBorderBeforeWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitBorderBeforeWidth<string | number> | undefined>[] | undefined;
|
|
633
|
+
WebkitBorderBottomLeftRadius?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
634
|
+
WebkitBorderBottomRightRadius?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
601
635
|
WebkitBorderImageSlice?: import("csstype").Property.BorderImageSlice | readonly NonNullable<import("csstype").Property.BorderImageSlice | undefined>[] | readonly ((string & {}) | import('csstype').Globals)[] | undefined;
|
|
602
|
-
WebkitBorderTopLeftRadius?: readonly (string | (string & {}))[] |
|
|
603
|
-
WebkitBorderTopRightRadius?: readonly (string | (string & {}))[] |
|
|
636
|
+
WebkitBorderTopLeftRadius?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
637
|
+
WebkitBorderTopRightRadius?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
604
638
|
WebkitBoxDecorationBreak?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
605
|
-
WebkitBoxReflect?: readonly (string | (string & {}))[] |
|
|
606
|
-
WebkitBoxShadow?:
|
|
639
|
+
WebkitBoxReflect?: import("csstype").Property.WebkitBoxReflect<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitBoxReflect<string | number> | undefined>[] | undefined;
|
|
640
|
+
WebkitBoxShadow?: import("csstype").Property.BoxShadow | readonly string[] | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
607
641
|
WebkitBoxSizing?: import("csstype").Property.BoxSizing | readonly NonNullable<import("csstype").Property.BoxSizing | undefined>[] | readonly import("csstype").Property.BoxSizing[] | undefined;
|
|
608
|
-
WebkitClipPath?:
|
|
609
|
-
WebkitColumnCount?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
642
|
+
WebkitClipPath?: import("csstype").Property.ClipPath | readonly string[] | readonly import("csstype").Property.ClipPath[] | undefined;
|
|
643
|
+
WebkitColumnCount?: import("csstype").Property.ColumnCount | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.ColumnCount | undefined>[] | undefined;
|
|
610
644
|
WebkitColumnFill?: import("csstype").Property.ColumnFill | readonly NonNullable<import("csstype").Property.ColumnFill | undefined>[] | readonly import("csstype").Property.ColumnFill[] | undefined;
|
|
611
|
-
WebkitColumnRuleColor?:
|
|
612
|
-
WebkitColumnRuleStyle?:
|
|
613
|
-
WebkitColumnRuleWidth?: readonly (string | (string & {}))[] |
|
|
645
|
+
WebkitColumnRuleColor?: import("csstype").Property.ColumnRuleColor | readonly string[] | readonly import("csstype").Property.ColumnRuleColor[] | undefined;
|
|
646
|
+
WebkitColumnRuleStyle?: import("csstype").Property.ColumnRuleStyle | readonly string[] | readonly import("csstype").Property.ColumnRuleStyle[] | undefined;
|
|
647
|
+
WebkitColumnRuleWidth?: import("csstype").Property.ColumnRuleWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRuleWidth<string | number> | undefined>[] | undefined;
|
|
614
648
|
WebkitColumnSpan?: import("csstype").Property.ColumnSpan | readonly NonNullable<import("csstype").Property.ColumnSpan | undefined>[] | readonly import("csstype").Property.ColumnSpan[] | undefined;
|
|
615
|
-
WebkitColumnWidth?:
|
|
616
|
-
WebkitFilter?:
|
|
617
|
-
WebkitFlexBasis?: readonly (string | (string & {}))[] |
|
|
649
|
+
WebkitColumnWidth?: import("csstype").Property.ColumnWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.ColumnWidth<string | number> | undefined>[] | undefined;
|
|
650
|
+
WebkitFilter?: import("csstype").Property.Filter | readonly string[] | readonly import("csstype").Property.Filter[] | undefined;
|
|
651
|
+
WebkitFlexBasis?: import("csstype").Property.FlexBasis<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.FlexBasis<string | number> | undefined>[] | undefined;
|
|
618
652
|
WebkitFlexDirection?: import("csstype").Property.FlexDirection | readonly NonNullable<import("csstype").Property.FlexDirection | undefined>[] | readonly import("csstype").Property.FlexDirection[] | undefined;
|
|
619
|
-
WebkitFlexGrow?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
620
|
-
WebkitFlexShrink?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
653
|
+
WebkitFlexGrow?: import("csstype").Property.FlexGrow | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FlexGrow | undefined>[] | undefined;
|
|
654
|
+
WebkitFlexShrink?: import("csstype").Property.FlexShrink | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FlexShrink | undefined>[] | undefined;
|
|
621
655
|
WebkitFlexWrap?: import("csstype").Property.FlexWrap | readonly NonNullable<import("csstype").Property.FlexWrap | undefined>[] | readonly import("csstype").Property.FlexWrap[] | undefined;
|
|
622
|
-
WebkitFontFeatureSettings?:
|
|
656
|
+
WebkitFontFeatureSettings?: import("csstype").Property.FontFeatureSettings | readonly string[] | readonly import("csstype").Property.FontFeatureSettings[] | undefined;
|
|
623
657
|
WebkitFontKerning?: import("csstype").Property.FontKerning | readonly NonNullable<import("csstype").Property.FontKerning | undefined>[] | readonly import("csstype").Property.FontKerning[] | undefined;
|
|
624
|
-
WebkitFontSmoothing?:
|
|
625
|
-
WebkitFontVariantLigatures?:
|
|
626
|
-
WebkitHyphenateCharacter?:
|
|
658
|
+
WebkitFontSmoothing?: import("csstype").Property.FontSmooth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.FontSmooth<string | number> | undefined>[] | undefined;
|
|
659
|
+
WebkitFontVariantLigatures?: import("csstype").Property.FontVariantLigatures | readonly string[] | readonly import("csstype").Property.FontVariantLigatures[] | undefined;
|
|
660
|
+
WebkitHyphenateCharacter?: import("csstype").Property.HyphenateCharacter | readonly string[] | readonly import("csstype").Property.HyphenateCharacter[] | undefined;
|
|
627
661
|
WebkitHyphens?: import("csstype").Property.Hyphens | readonly NonNullable<import("csstype").Property.Hyphens | undefined>[] | readonly import("csstype").Property.Hyphens[] | undefined;
|
|
628
662
|
WebkitInitialLetter?: import("csstype").Property.InitialLetter | readonly NonNullable<import("csstype").Property.InitialLetter | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "normal")[] | undefined;
|
|
629
|
-
WebkitJustifyContent?:
|
|
663
|
+
WebkitJustifyContent?: import("csstype").Property.JustifyContent | readonly string[] | readonly import("csstype").Property.JustifyContent[] | undefined;
|
|
630
664
|
WebkitLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
631
|
-
WebkitLineClamp?: readonly ((string & {}) | import('csstype').Globals | "none")[] |
|
|
632
|
-
WebkitMarginEnd?: readonly (string | (string & {}))[] |
|
|
633
|
-
WebkitMarginStart?: readonly (string | (string & {}))[] |
|
|
634
|
-
WebkitMaskAttachment?:
|
|
635
|
-
WebkitMaskBoxImageOutset?: readonly (string | (string & {}))[] |
|
|
636
|
-
WebkitMaskBoxImageRepeat?:
|
|
637
|
-
WebkitMaskBoxImageSlice?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
638
|
-
WebkitMaskBoxImageSource?:
|
|
639
|
-
WebkitMaskBoxImageWidth?: readonly (string | (string & {}))[] |
|
|
640
|
-
WebkitMaskClip?:
|
|
641
|
-
WebkitMaskComposite?:
|
|
642
|
-
WebkitMaskImage?:
|
|
643
|
-
WebkitMaskOrigin?:
|
|
644
|
-
WebkitMaskPosition?: readonly (string | (string & {}))[] |
|
|
645
|
-
WebkitMaskPositionX?: readonly (string | (string & {}))[] |
|
|
646
|
-
WebkitMaskPositionY?: readonly (string | (string & {}))[] |
|
|
647
|
-
WebkitMaskRepeat?:
|
|
665
|
+
WebkitLineClamp?: import("csstype").Property.WebkitLineClamp | readonly ((string & {}) | import('csstype').Globals | "none")[] | readonly NonNullable<import("csstype").Property.WebkitLineClamp | undefined>[] | undefined;
|
|
666
|
+
WebkitMarginEnd?: import("csstype").Property.MarginInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineEnd<string | number> | undefined>[] | undefined;
|
|
667
|
+
WebkitMarginStart?: import("csstype").Property.MarginInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MarginInlineStart<string | number> | undefined>[] | undefined;
|
|
668
|
+
WebkitMaskAttachment?: import("csstype").Property.WebkitMaskAttachment | readonly string[] | readonly import("csstype").Property.WebkitMaskAttachment[] | undefined;
|
|
669
|
+
WebkitMaskBoxImageOutset?: import("csstype").Property.MaskBorderOutset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskBorderOutset<string | number> | undefined>[] | undefined;
|
|
670
|
+
WebkitMaskBoxImageRepeat?: import("csstype").Property.MaskBorderRepeat | readonly string[] | readonly import("csstype").Property.MaskBorderRepeat[] | undefined;
|
|
671
|
+
WebkitMaskBoxImageSlice?: import("csstype").Property.MaskBorderSlice | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.MaskBorderSlice | undefined>[] | undefined;
|
|
672
|
+
WebkitMaskBoxImageSource?: import("csstype").Property.MaskBorderSource | readonly string[] | readonly import("csstype").Property.MaskBorderSource[] | undefined;
|
|
673
|
+
WebkitMaskBoxImageWidth?: import("csstype").Property.MaskBorderWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaskBorderWidth<string | number> | undefined>[] | undefined;
|
|
674
|
+
WebkitMaskClip?: import("csstype").Property.WebkitMaskClip | readonly string[] | readonly import("csstype").Property.WebkitMaskClip[] | undefined;
|
|
675
|
+
WebkitMaskComposite?: import("csstype").Property.WebkitMaskComposite | readonly string[] | readonly import("csstype").Property.WebkitMaskComposite[] | undefined;
|
|
676
|
+
WebkitMaskImage?: import("csstype").Property.WebkitMaskImage | readonly string[] | readonly import("csstype").Property.WebkitMaskImage[] | undefined;
|
|
677
|
+
WebkitMaskOrigin?: import("csstype").Property.WebkitMaskOrigin | readonly string[] | readonly import("csstype").Property.WebkitMaskOrigin[] | undefined;
|
|
678
|
+
WebkitMaskPosition?: import("csstype").Property.WebkitMaskPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitMaskPosition<string | number> | undefined>[] | undefined;
|
|
679
|
+
WebkitMaskPositionX?: import("csstype").Property.WebkitMaskPositionX<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitMaskPositionX<string | number> | undefined>[] | undefined;
|
|
680
|
+
WebkitMaskPositionY?: import("csstype").Property.WebkitMaskPositionY<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitMaskPositionY<string | number> | undefined>[] | undefined;
|
|
681
|
+
WebkitMaskRepeat?: import("csstype").Property.WebkitMaskRepeat | readonly string[] | readonly import("csstype").Property.WebkitMaskRepeat[] | undefined;
|
|
648
682
|
WebkitMaskRepeatX?: import("csstype").Property.WebkitMaskRepeatX | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatX | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatX[] | undefined;
|
|
649
683
|
WebkitMaskRepeatY?: import("csstype").Property.WebkitMaskRepeatY | readonly NonNullable<import("csstype").Property.WebkitMaskRepeatY | undefined>[] | readonly import("csstype").Property.WebkitMaskRepeatY[] | undefined;
|
|
650
|
-
WebkitMaskSize?: readonly (string | (string & {}))[] |
|
|
651
|
-
WebkitMaxInlineSize?: readonly (string | (string & {}))[] |
|
|
652
|
-
WebkitOrder?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
684
|
+
WebkitMaskSize?: import("csstype").Property.WebkitMaskSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitMaskSize<string | number> | undefined>[] | undefined;
|
|
685
|
+
WebkitMaxInlineSize?: import("csstype").Property.MaxInlineSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MaxInlineSize<string | number> | undefined>[] | undefined;
|
|
686
|
+
WebkitOrder?: import("csstype").Property.Order | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Order | undefined>[] | undefined;
|
|
653
687
|
WebkitOverflowScrolling?: import("csstype").Property.WebkitOverflowScrolling | readonly NonNullable<import("csstype").Property.WebkitOverflowScrolling | undefined>[] | readonly import("csstype").Property.WebkitOverflowScrolling[] | undefined;
|
|
654
|
-
WebkitPaddingEnd?: readonly (string | (string & {}))[] |
|
|
655
|
-
WebkitPaddingStart?: readonly (string | (string & {}))[] |
|
|
656
|
-
WebkitPerspective?:
|
|
657
|
-
WebkitPerspectiveOrigin?: readonly (string | (string & {}))[] |
|
|
688
|
+
WebkitPaddingEnd?: import("csstype").Property.PaddingInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineEnd<string | number> | undefined>[] | undefined;
|
|
689
|
+
WebkitPaddingStart?: import("csstype").Property.PaddingInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PaddingInlineStart<string | number> | undefined>[] | undefined;
|
|
690
|
+
WebkitPerspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
691
|
+
WebkitPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
658
692
|
WebkitPrintColorAdjust?: import("csstype").Property.PrintColorAdjust | readonly NonNullable<import("csstype").Property.PrintColorAdjust | undefined>[] | readonly import("csstype").Property.PrintColorAdjust[] | undefined;
|
|
659
|
-
WebkitRubyPosition?:
|
|
660
|
-
WebkitScrollSnapType?:
|
|
661
|
-
WebkitShapeMargin?: readonly (string | (string & {}))[] |
|
|
662
|
-
WebkitTapHighlightColor?:
|
|
663
|
-
WebkitTextCombine?:
|
|
664
|
-
WebkitTextDecorationColor?:
|
|
665
|
-
WebkitTextDecorationLine?:
|
|
666
|
-
WebkitTextDecorationSkip?:
|
|
693
|
+
WebkitRubyPosition?: import("csstype").Property.RubyPosition | readonly string[] | readonly import("csstype").Property.RubyPosition[] | undefined;
|
|
694
|
+
WebkitScrollSnapType?: import("csstype").Property.ScrollSnapType | readonly string[] | readonly import("csstype").Property.ScrollSnapType[] | undefined;
|
|
695
|
+
WebkitShapeMargin?: import("csstype").Property.ShapeMargin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ShapeMargin<string | number> | undefined>[] | undefined;
|
|
696
|
+
WebkitTapHighlightColor?: import("csstype").Property.WebkitTapHighlightColor | readonly string[] | readonly import("csstype").Property.WebkitTapHighlightColor[] | undefined;
|
|
697
|
+
WebkitTextCombine?: import("csstype").Property.TextCombineUpright | readonly string[] | readonly import("csstype").Property.TextCombineUpright[] | undefined;
|
|
698
|
+
WebkitTextDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
699
|
+
WebkitTextDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
700
|
+
WebkitTextDecorationSkip?: import("csstype").Property.TextDecorationSkip | readonly string[] | readonly import("csstype").Property.TextDecorationSkip[] | undefined;
|
|
667
701
|
WebkitTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
668
|
-
WebkitTextEmphasisColor?:
|
|
669
|
-
WebkitTextEmphasisPosition?:
|
|
670
|
-
WebkitTextEmphasisStyle?:
|
|
671
|
-
WebkitTextFillColor?:
|
|
702
|
+
WebkitTextEmphasisColor?: import("csstype").Property.TextEmphasisColor | readonly string[] | readonly import("csstype").Property.TextEmphasisColor[] | undefined;
|
|
703
|
+
WebkitTextEmphasisPosition?: import("csstype").Property.TextEmphasisPosition | readonly string[] | readonly import("csstype").Property.TextEmphasisPosition[] | undefined;
|
|
704
|
+
WebkitTextEmphasisStyle?: import("csstype").Property.TextEmphasisStyle | readonly string[] | readonly import("csstype").Property.TextEmphasisStyle[] | undefined;
|
|
705
|
+
WebkitTextFillColor?: import("csstype").Property.WebkitTextFillColor | readonly string[] | readonly import("csstype").Property.WebkitTextFillColor[] | undefined;
|
|
672
706
|
WebkitTextOrientation?: import("csstype").Property.TextOrientation | readonly NonNullable<import("csstype").Property.TextOrientation | undefined>[] | readonly import("csstype").Property.TextOrientation[] | undefined;
|
|
673
|
-
WebkitTextSizeAdjust?:
|
|
674
|
-
WebkitTextStrokeColor?:
|
|
675
|
-
WebkitTextStrokeWidth?:
|
|
676
|
-
WebkitTextUnderlinePosition?:
|
|
707
|
+
WebkitTextSizeAdjust?: import("csstype").Property.TextSizeAdjust | readonly string[] | readonly import("csstype").Property.TextSizeAdjust[] | undefined;
|
|
708
|
+
WebkitTextStrokeColor?: import("csstype").Property.WebkitTextStrokeColor | readonly string[] | readonly import("csstype").Property.WebkitTextStrokeColor[] | undefined;
|
|
709
|
+
WebkitTextStrokeWidth?: import("csstype").Property.WebkitTextStrokeWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.WebkitTextStrokeWidth<string | number> | undefined>[] | undefined;
|
|
710
|
+
WebkitTextUnderlinePosition?: import("csstype").Property.TextUnderlinePosition | readonly string[] | readonly import("csstype").Property.TextUnderlinePosition[] | undefined;
|
|
677
711
|
WebkitTouchCallout?: import("csstype").Property.WebkitTouchCallout | readonly NonNullable<import("csstype").Property.WebkitTouchCallout | undefined>[] | readonly import("csstype").Property.WebkitTouchCallout[] | undefined;
|
|
678
|
-
WebkitTransform?:
|
|
679
|
-
WebkitTransformOrigin?: readonly (string | (string & {}))[] |
|
|
712
|
+
WebkitTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
|
|
713
|
+
WebkitTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
680
714
|
WebkitTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
681
|
-
WebkitTransitionDelay?:
|
|
682
|
-
WebkitTransitionDuration?:
|
|
683
|
-
WebkitTransitionProperty?:
|
|
684
|
-
WebkitTransitionTimingFunction?:
|
|
715
|
+
WebkitTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
716
|
+
WebkitTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
717
|
+
WebkitTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
718
|
+
WebkitTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
685
719
|
WebkitUserModify?: import("csstype").Property.WebkitUserModify | readonly NonNullable<import("csstype").Property.WebkitUserModify | undefined>[] | readonly import("csstype").Property.WebkitUserModify[] | undefined;
|
|
686
720
|
WebkitUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
687
721
|
WebkitWritingMode?: import("csstype").Property.WritingMode | readonly NonNullable<import("csstype").Property.WritingMode | undefined>[] | readonly import("csstype").Property.WritingMode[] | undefined;
|
|
688
722
|
MozAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | (string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
689
723
|
MozBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
|
|
690
|
-
MozColumnRule?: readonly (string | (string & {}))[] |
|
|
691
|
-
MozColumns?: readonly (string | (string & {}))[] |
|
|
692
|
-
MozOutlineRadius?: readonly (string | (string & {}))[] |
|
|
693
|
-
msContentZoomLimit?:
|
|
694
|
-
msContentZoomSnap?:
|
|
695
|
-
msFlex?: readonly (string | (string & {}))[] |
|
|
696
|
-
msScrollLimit?:
|
|
697
|
-
msScrollSnapX?:
|
|
698
|
-
msScrollSnapY?:
|
|
699
|
-
msTransition?:
|
|
724
|
+
MozColumnRule?: import("csstype").Property.ColumnRule<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
725
|
+
MozColumns?: import("csstype").Property.Columns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
726
|
+
MozOutlineRadius?: import("csstype").Property.MozOutlineRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.MozOutlineRadius<string | number> | undefined>[] | undefined;
|
|
727
|
+
msContentZoomLimit?: import("csstype").Property.MsContentZoomLimit | readonly string[] | readonly import("csstype").Property.MsContentZoomLimit[] | undefined;
|
|
728
|
+
msContentZoomSnap?: import("csstype").Property.MsContentZoomSnap | readonly string[] | readonly import("csstype").Property.MsContentZoomSnap[] | undefined;
|
|
729
|
+
msFlex?: import("csstype").Property.Flex<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
730
|
+
msScrollLimit?: import("csstype").Property.MsScrollLimit | readonly string[] | readonly import("csstype").Property.MsScrollLimit[] | undefined;
|
|
731
|
+
msScrollSnapX?: import("csstype").Property.MsScrollSnapX | readonly string[] | readonly import("csstype").Property.MsScrollSnapX[] | undefined;
|
|
732
|
+
msScrollSnapY?: import("csstype").Property.MsScrollSnapY | readonly string[] | readonly import("csstype").Property.MsScrollSnapY[] | undefined;
|
|
733
|
+
msTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
700
734
|
WebkitAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | (string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
701
|
-
WebkitBorderBefore?: readonly (string | (string & {}))[] |
|
|
735
|
+
WebkitBorderBefore?: import("csstype").Property.WebkitBorderBefore<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitBorderBefore<string | number> | undefined>[] | undefined;
|
|
702
736
|
WebkitBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
|
|
703
|
-
WebkitBorderRadius?: readonly (string | (string & {}))[] |
|
|
704
|
-
WebkitColumnRule?: readonly (string | (string & {}))[] |
|
|
705
|
-
WebkitColumns?: readonly (string | (string & {}))[] |
|
|
706
|
-
WebkitFlex?: readonly (string | (string & {}))[] |
|
|
707
|
-
WebkitFlexFlow?:
|
|
708
|
-
WebkitMask?: readonly (string | (string & {}))[] |
|
|
737
|
+
WebkitBorderRadius?: import("csstype").Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
738
|
+
WebkitColumnRule?: import("csstype").Property.ColumnRule<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ColumnRule<string | number> | undefined>[] | undefined;
|
|
739
|
+
WebkitColumns?: import("csstype").Property.Columns<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Columns<string | number> | undefined>[] | undefined;
|
|
740
|
+
WebkitFlex?: import("csstype").Property.Flex<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Flex<string | number> | undefined>[] | undefined;
|
|
741
|
+
WebkitFlexFlow?: import("csstype").Property.FlexFlow | readonly string[] | readonly import("csstype").Property.FlexFlow[] | undefined;
|
|
742
|
+
WebkitMask?: import("csstype").Property.WebkitMask<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitMask<string | number> | undefined>[] | undefined;
|
|
709
743
|
WebkitMaskBoxImage?: import("csstype").Property.MaskBorder | readonly NonNullable<import("csstype").Property.MaskBorder | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space" | "alpha" | "luminance")[] | undefined;
|
|
710
|
-
WebkitTextEmphasis?:
|
|
711
|
-
WebkitTextStroke?: readonly (string | (string & {}))[] |
|
|
712
|
-
WebkitTransition?:
|
|
713
|
-
azimuth?:
|
|
744
|
+
WebkitTextEmphasis?: import("csstype").Property.TextEmphasis | readonly string[] | readonly import("csstype").Property.TextEmphasis[] | undefined;
|
|
745
|
+
WebkitTextStroke?: import("csstype").Property.WebkitTextStroke<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.WebkitTextStroke<string | number> | undefined>[] | undefined;
|
|
746
|
+
WebkitTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
747
|
+
azimuth?: import("csstype").Property.Azimuth | readonly string[] | readonly import("csstype").Property.Azimuth[] | undefined;
|
|
714
748
|
boxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
715
749
|
boxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
716
|
-
boxFlex?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
717
|
-
boxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
750
|
+
boxFlex?: import("csstype").Property.BoxFlex | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
751
|
+
boxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
718
752
|
boxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
719
|
-
boxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
753
|
+
boxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
720
754
|
boxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
721
755
|
boxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
722
|
-
clip?:
|
|
723
|
-
gridColumnGap?: readonly (string | (string & {}))[] |
|
|
724
|
-
gridGap?: readonly (string | (string & {}))[] |
|
|
725
|
-
gridRowGap?: readonly (string | (string & {}))[] |
|
|
756
|
+
clip?: import("csstype").Property.Clip | readonly string[] | readonly import("csstype").Property.Clip[] | undefined;
|
|
757
|
+
gridColumnGap?: import("csstype").Property.GridColumnGap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridColumnGap<string | number> | undefined>[] | undefined;
|
|
758
|
+
gridGap?: import("csstype").Property.GridGap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridGap<string | number> | undefined>[] | undefined;
|
|
759
|
+
gridRowGap?: import("csstype").Property.GridRowGap<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.GridRowGap<string | number> | undefined>[] | undefined;
|
|
726
760
|
imeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
727
|
-
offsetBlock?: readonly (string | (string & {}))[] |
|
|
728
|
-
offsetBlockEnd?: readonly (string | (string & {}))[] |
|
|
729
|
-
offsetBlockStart?: readonly (string | (string & {}))[] |
|
|
730
|
-
offsetInline?: readonly (string | (string & {}))[] |
|
|
731
|
-
offsetInlineEnd?: readonly (string | (string & {}))[] |
|
|
732
|
-
offsetInlineStart?: readonly (string | (string & {}))[] |
|
|
733
|
-
scrollSnapCoordinate?: readonly (string | (string & {}))[] |
|
|
734
|
-
scrollSnapDestination?: readonly (string | (string & {}))[] |
|
|
735
|
-
scrollSnapPointsX?:
|
|
736
|
-
scrollSnapPointsY?:
|
|
761
|
+
offsetBlock?: import("csstype").Property.InsetBlock<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlock<string | number> | undefined>[] | undefined;
|
|
762
|
+
offsetBlockEnd?: import("csstype").Property.InsetBlockEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlockEnd<string | number> | undefined>[] | undefined;
|
|
763
|
+
offsetBlockStart?: import("csstype").Property.InsetBlockStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetBlockStart<string | number> | undefined>[] | undefined;
|
|
764
|
+
offsetInline?: import("csstype").Property.InsetInline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInline<string | number> | undefined>[] | undefined;
|
|
765
|
+
offsetInlineEnd?: import("csstype").Property.InsetInlineEnd<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInlineEnd<string | number> | undefined>[] | undefined;
|
|
766
|
+
offsetInlineStart?: import("csstype").Property.InsetInlineStart<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.InsetInlineStart<string | number> | undefined>[] | undefined;
|
|
767
|
+
scrollSnapCoordinate?: import("csstype").Property.ScrollSnapCoordinate<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollSnapCoordinate<string | number> | undefined>[] | undefined;
|
|
768
|
+
scrollSnapDestination?: import("csstype").Property.ScrollSnapDestination<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ScrollSnapDestination<string | number> | undefined>[] | undefined;
|
|
769
|
+
scrollSnapPointsX?: import("csstype").Property.ScrollSnapPointsX | readonly string[] | readonly import("csstype").Property.ScrollSnapPointsX[] | undefined;
|
|
770
|
+
scrollSnapPointsY?: import("csstype").Property.ScrollSnapPointsY | readonly string[] | readonly import("csstype").Property.ScrollSnapPointsY[] | undefined;
|
|
737
771
|
scrollSnapTypeX?: import("csstype").Property.ScrollSnapTypeX | readonly NonNullable<import("csstype").Property.ScrollSnapTypeX | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeX[] | undefined;
|
|
738
772
|
scrollSnapTypeY?: import("csstype").Property.ScrollSnapTypeY | readonly NonNullable<import("csstype").Property.ScrollSnapTypeY | undefined>[] | readonly import("csstype").Property.ScrollSnapTypeY[] | undefined;
|
|
739
773
|
KhtmlBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
740
774
|
KhtmlBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
741
|
-
KhtmlBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
742
|
-
KhtmlBoxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
775
|
+
KhtmlBoxFlex?: import("csstype").Property.BoxFlex | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
776
|
+
KhtmlBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
743
777
|
KhtmlBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
744
|
-
KhtmlBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
778
|
+
KhtmlBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
745
779
|
KhtmlBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
746
780
|
KhtmlBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
747
781
|
KhtmlLineBreak?: import("csstype").Property.LineBreak | readonly NonNullable<import("csstype").Property.LineBreak | undefined>[] | readonly import("csstype").Property.LineBreak[] | undefined;
|
|
748
|
-
KhtmlOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
782
|
+
KhtmlOpacity?: import("csstype").Property.Opacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
|
|
749
783
|
KhtmlUserSelect?: import("csstype").Property.UserSelect | readonly NonNullable<import("csstype").Property.UserSelect | undefined>[] | readonly import("csstype").Property.UserSelect[] | undefined;
|
|
750
784
|
MozBackfaceVisibility?: import("csstype").Property.BackfaceVisibility | readonly NonNullable<import("csstype").Property.BackfaceVisibility | undefined>[] | readonly import("csstype").Property.BackfaceVisibility[] | undefined;
|
|
751
|
-
MozBackgroundClip?:
|
|
785
|
+
MozBackgroundClip?: import("csstype").Property.BackgroundClip | readonly string[] | readonly import("csstype").Property.BackgroundClip[] | undefined;
|
|
752
786
|
MozBackgroundInlinePolicy?: import("csstype").Property.BoxDecorationBreak | readonly NonNullable<import("csstype").Property.BoxDecorationBreak | undefined>[] | readonly import("csstype").Property.BoxDecorationBreak[] | undefined;
|
|
753
|
-
MozBackgroundOrigin?:
|
|
754
|
-
MozBackgroundSize?: readonly (string | (string & {}))[] |
|
|
755
|
-
MozBorderRadius?: readonly (string | (string & {}))[] |
|
|
756
|
-
MozBorderRadiusBottomleft?: readonly (string | (string & {}))[] |
|
|
757
|
-
MozBorderRadiusBottomright?: readonly (string | (string & {}))[] |
|
|
758
|
-
MozBorderRadiusTopleft?: readonly (string | (string & {}))[] |
|
|
759
|
-
MozBorderRadiusTopright?: readonly (string | (string & {}))[] |
|
|
787
|
+
MozBackgroundOrigin?: import("csstype").Property.BackgroundOrigin | readonly string[] | readonly import("csstype").Property.BackgroundOrigin[] | undefined;
|
|
788
|
+
MozBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
789
|
+
MozBorderRadius?: import("csstype").Property.BorderRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderRadius<string | number> | undefined>[] | undefined;
|
|
790
|
+
MozBorderRadiusBottomleft?: import("csstype").Property.BorderBottomLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomLeftRadius<string | number> | undefined>[] | undefined;
|
|
791
|
+
MozBorderRadiusBottomright?: import("csstype").Property.BorderBottomRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderBottomRightRadius<string | number> | undefined>[] | undefined;
|
|
792
|
+
MozBorderRadiusTopleft?: import("csstype").Property.BorderTopLeftRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopLeftRadius<string | number> | undefined>[] | undefined;
|
|
793
|
+
MozBorderRadiusTopright?: import("csstype").Property.BorderTopRightRadius<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BorderTopRightRadius<string | number> | undefined>[] | undefined;
|
|
760
794
|
MozBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
761
795
|
MozBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
762
|
-
MozBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
763
|
-
MozBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
796
|
+
MozBoxFlex?: import("csstype").Property.BoxFlex | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
797
|
+
MozBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
764
798
|
MozBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
765
799
|
MozBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
766
|
-
MozBoxShadow?:
|
|
800
|
+
MozBoxShadow?: import("csstype").Property.BoxShadow | readonly string[] | readonly import("csstype").Property.BoxShadow[] | undefined;
|
|
767
801
|
MozFloatEdge?: import("csstype").Property.MozFloatEdge | readonly NonNullable<import("csstype").Property.MozFloatEdge | undefined>[] | readonly import("csstype").Property.MozFloatEdge[] | undefined;
|
|
768
|
-
MozForceBrokenImageIcon?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
769
|
-
MozOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
770
|
-
MozOutline?: readonly (string | (string & {}))[] |
|
|
771
|
-
MozOutlineColor?:
|
|
772
|
-
MozOutlineStyle?:
|
|
773
|
-
MozOutlineWidth?:
|
|
774
|
-
MozPerspective?:
|
|
775
|
-
MozPerspectiveOrigin?: readonly (string | (string & {}))[] |
|
|
802
|
+
MozForceBrokenImageIcon?: import("csstype").Property.MozForceBrokenImageIcon | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.MozForceBrokenImageIcon | undefined>[] | undefined;
|
|
803
|
+
MozOpacity?: import("csstype").Property.Opacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.Opacity | undefined>[] | undefined;
|
|
804
|
+
MozOutline?: import("csstype").Property.Outline<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.Outline<string | number> | undefined>[] | undefined;
|
|
805
|
+
MozOutlineColor?: import("csstype").Property.OutlineColor | readonly string[] | readonly import("csstype").Property.OutlineColor[] | undefined;
|
|
806
|
+
MozOutlineStyle?: import("csstype").Property.OutlineStyle | readonly string[] | readonly import("csstype").Property.OutlineStyle[] | undefined;
|
|
807
|
+
MozOutlineWidth?: import("csstype").Property.OutlineWidth<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.OutlineWidth<string | number> | undefined>[] | undefined;
|
|
808
|
+
MozPerspective?: import("csstype").Property.Perspective<string | number> | readonly string[] | readonly NonNullable<import("csstype").Property.Perspective<string | number> | undefined>[] | undefined;
|
|
809
|
+
MozPerspectiveOrigin?: import("csstype").Property.PerspectiveOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.PerspectiveOrigin<string | number> | undefined>[] | undefined;
|
|
776
810
|
MozTextAlignLast?: import("csstype").Property.TextAlignLast | readonly NonNullable<import("csstype").Property.TextAlignLast | undefined>[] | readonly import("csstype").Property.TextAlignLast[] | undefined;
|
|
777
|
-
MozTextDecorationColor?:
|
|
778
|
-
MozTextDecorationLine?:
|
|
811
|
+
MozTextDecorationColor?: import("csstype").Property.TextDecorationColor | readonly string[] | readonly import("csstype").Property.TextDecorationColor[] | undefined;
|
|
812
|
+
MozTextDecorationLine?: import("csstype").Property.TextDecorationLine | readonly string[] | readonly import("csstype").Property.TextDecorationLine[] | undefined;
|
|
779
813
|
MozTextDecorationStyle?: import("csstype").Property.TextDecorationStyle | readonly NonNullable<import("csstype").Property.TextDecorationStyle | undefined>[] | readonly import("csstype").Property.TextDecorationStyle[] | undefined;
|
|
780
|
-
MozTransform?:
|
|
781
|
-
MozTransformOrigin?: readonly (string | (string & {}))[] |
|
|
814
|
+
MozTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
|
|
815
|
+
MozTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
782
816
|
MozTransformStyle?: import("csstype").Property.TransformStyle | readonly NonNullable<import("csstype").Property.TransformStyle | undefined>[] | readonly import("csstype").Property.TransformStyle[] | undefined;
|
|
783
|
-
MozTransition?:
|
|
784
|
-
MozTransitionDelay?:
|
|
785
|
-
MozTransitionDuration?:
|
|
786
|
-
MozTransitionProperty?:
|
|
787
|
-
MozTransitionTimingFunction?:
|
|
817
|
+
MozTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
818
|
+
MozTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
819
|
+
MozTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
820
|
+
MozTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
821
|
+
MozTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
788
822
|
MozUserInput?: import("csstype").Property.MozUserInput | readonly NonNullable<import("csstype").Property.MozUserInput | undefined>[] | readonly import("csstype").Property.MozUserInput[] | undefined;
|
|
789
823
|
msImeMode?: import("csstype").Property.ImeMode | readonly NonNullable<import("csstype").Property.ImeMode | undefined>[] | readonly import("csstype").Property.ImeMode[] | undefined;
|
|
790
824
|
OAnimation?: import("csstype").Property.Animation<string & {}> | readonly NonNullable<import("csstype").Property.Animation<string & {}> | undefined>[] | readonly ("reverse" | (string & {}) | import('csstype').Globals | "auto" | "normal" | "alternate" | "alternate-reverse" | "backwards" | "both" | "forwards" | "none" | "infinite" | "paused" | "running" | "ease" | "ease-in" | "ease-in-out" | "ease-out" | "step-end" | "step-start" | "linear")[] | undefined;
|
|
791
|
-
OAnimationDelay?:
|
|
792
|
-
OAnimationDirection?:
|
|
793
|
-
OAnimationDuration?:
|
|
794
|
-
OAnimationFillMode?:
|
|
825
|
+
OAnimationDelay?: import("csstype").Property.AnimationDelay<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDelay<string & {}>[] | undefined;
|
|
826
|
+
OAnimationDirection?: import("csstype").Property.AnimationDirection | readonly string[] | readonly import("csstype").Property.AnimationDirection[] | undefined;
|
|
827
|
+
OAnimationDuration?: import("csstype").Property.AnimationDuration<string & {}> | readonly string[] | readonly import("csstype").Property.AnimationDuration<string & {}>[] | undefined;
|
|
828
|
+
OAnimationFillMode?: import("csstype").Property.AnimationFillMode | readonly string[] | readonly import("csstype").Property.AnimationFillMode[] | undefined;
|
|
795
829
|
OAnimationIterationCount?: import("csstype").Property.AnimationIterationCount | readonly NonNullable<import("csstype").Property.AnimationIterationCount | undefined>[] | readonly ((string & {}) | import('csstype').Globals | "infinite")[] | undefined;
|
|
796
|
-
OAnimationName?:
|
|
797
|
-
OAnimationPlayState?:
|
|
798
|
-
OAnimationTimingFunction?:
|
|
799
|
-
OBackgroundSize?: readonly (string | (string & {}))[] |
|
|
830
|
+
OAnimationName?: import("csstype").Property.AnimationName | readonly string[] | readonly import("csstype").Property.AnimationName[] | undefined;
|
|
831
|
+
OAnimationPlayState?: import("csstype").Property.AnimationPlayState | readonly string[] | readonly import("csstype").Property.AnimationPlayState[] | undefined;
|
|
832
|
+
OAnimationTimingFunction?: import("csstype").Property.AnimationTimingFunction | readonly string[] | readonly import("csstype").Property.AnimationTimingFunction[] | undefined;
|
|
833
|
+
OBackgroundSize?: import("csstype").Property.BackgroundSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BackgroundSize<string | number> | undefined>[] | undefined;
|
|
800
834
|
OBorderImage?: import("csstype").Property.BorderImage | readonly NonNullable<import("csstype").Property.BorderImage | undefined>[] | readonly ("repeat" | (string & {}) | import('csstype').Globals | "stretch" | "none" | "round" | "space")[] | undefined;
|
|
801
835
|
OObjectFit?: import("csstype").Property.ObjectFit | readonly NonNullable<import("csstype").Property.ObjectFit | undefined>[] | readonly import("csstype").Property.ObjectFit[] | undefined;
|
|
802
|
-
OObjectPosition?: readonly (string | (string & {}))[] |
|
|
803
|
-
OTabSize?: readonly (string | (string & {}))[] |
|
|
804
|
-
OTextOverflow?:
|
|
805
|
-
OTransform?:
|
|
806
|
-
OTransformOrigin?: readonly (string | (string & {}))[] |
|
|
807
|
-
OTransition?:
|
|
808
|
-
OTransitionDelay?:
|
|
809
|
-
OTransitionDuration?:
|
|
810
|
-
OTransitionProperty?:
|
|
811
|
-
OTransitionTimingFunction?:
|
|
836
|
+
OObjectPosition?: import("csstype").Property.ObjectPosition<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.ObjectPosition<string | number> | undefined>[] | undefined;
|
|
837
|
+
OTabSize?: import("csstype").Property.TabSize<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TabSize<string | number> | undefined>[] | undefined;
|
|
838
|
+
OTextOverflow?: import("csstype").Property.TextOverflow | readonly string[] | readonly import("csstype").Property.TextOverflow[] | undefined;
|
|
839
|
+
OTransform?: import("csstype").Property.Transform | readonly string[] | readonly import("csstype").Property.Transform[] | undefined;
|
|
840
|
+
OTransformOrigin?: import("csstype").Property.TransformOrigin<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.TransformOrigin<string | number> | undefined>[] | undefined;
|
|
841
|
+
OTransition?: import("csstype").Property.Transition<string & {}> | readonly string[] | readonly import("csstype").Property.Transition<string & {}>[] | undefined;
|
|
842
|
+
OTransitionDelay?: import("csstype").Property.TransitionDelay<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDelay<string & {}>[] | undefined;
|
|
843
|
+
OTransitionDuration?: import("csstype").Property.TransitionDuration<string & {}> | readonly string[] | readonly import("csstype").Property.TransitionDuration<string & {}>[] | undefined;
|
|
844
|
+
OTransitionProperty?: import("csstype").Property.TransitionProperty | readonly string[] | readonly import("csstype").Property.TransitionProperty[] | undefined;
|
|
845
|
+
OTransitionTimingFunction?: import("csstype").Property.TransitionTimingFunction | readonly string[] | readonly import("csstype").Property.TransitionTimingFunction[] | undefined;
|
|
812
846
|
WebkitBoxAlign?: import("csstype").Property.BoxAlign | readonly NonNullable<import("csstype").Property.BoxAlign | undefined>[] | readonly import("csstype").Property.BoxAlign[] | undefined;
|
|
813
847
|
WebkitBoxDirection?: import("csstype").Property.BoxDirection | readonly NonNullable<import("csstype").Property.BoxDirection | undefined>[] | readonly import("csstype").Property.BoxDirection[] | undefined;
|
|
814
|
-
WebkitBoxFlex?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
815
|
-
WebkitBoxFlexGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
848
|
+
WebkitBoxFlex?: import("csstype").Property.BoxFlex | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlex | undefined>[] | undefined;
|
|
849
|
+
WebkitBoxFlexGroup?: import("csstype").Property.BoxFlexGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxFlexGroup | undefined>[] | undefined;
|
|
816
850
|
WebkitBoxLines?: import("csstype").Property.BoxLines | readonly NonNullable<import("csstype").Property.BoxLines | undefined>[] | readonly import("csstype").Property.BoxLines[] | undefined;
|
|
817
|
-
WebkitBoxOrdinalGroup?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
851
|
+
WebkitBoxOrdinalGroup?: import("csstype").Property.BoxOrdinalGroup | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.BoxOrdinalGroup | undefined>[] | undefined;
|
|
818
852
|
WebkitBoxOrient?: import("csstype").Property.BoxOrient | readonly NonNullable<import("csstype").Property.BoxOrient | undefined>[] | readonly import("csstype").Property.BoxOrient[] | undefined;
|
|
819
853
|
WebkitBoxPack?: import("csstype").Property.BoxPack | readonly NonNullable<import("csstype").Property.BoxPack | undefined>[] | readonly import("csstype").Property.BoxPack[] | undefined;
|
|
820
854
|
alignmentBaseline?: import("csstype").Property.AlignmentBaseline | readonly NonNullable<import("csstype").Property.AlignmentBaseline | undefined>[] | readonly import("csstype").Property.AlignmentBaseline[] | undefined;
|
|
821
|
-
baselineShift?: readonly (string | (string & {}))[] |
|
|
855
|
+
baselineShift?: import("csstype").Property.BaselineShift<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.BaselineShift<string | number> | undefined>[] | undefined;
|
|
822
856
|
clipRule?: import("csstype").Property.ClipRule | readonly NonNullable<import("csstype").Property.ClipRule | undefined>[] | readonly import("csstype").Property.ClipRule[] | undefined;
|
|
823
857
|
colorInterpolation?: import("csstype").Property.ColorInterpolation | readonly NonNullable<import("csstype").Property.ColorInterpolation | undefined>[] | readonly import("csstype").Property.ColorInterpolation[] | undefined;
|
|
824
858
|
colorRendering?: import("csstype").Property.ColorRendering | readonly NonNullable<import("csstype").Property.ColorRendering | undefined>[] | readonly import("csstype").Property.ColorRendering[] | undefined;
|
|
825
859
|
dominantBaseline?: import("csstype").Property.DominantBaseline | readonly NonNullable<import("csstype").Property.DominantBaseline | undefined>[] | readonly import("csstype").Property.DominantBaseline[] | undefined;
|
|
826
|
-
fill?:
|
|
827
|
-
fillOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
860
|
+
fill?: import("csstype").Property.Fill | readonly string[] | readonly import("csstype").Property.Fill[] | undefined;
|
|
861
|
+
fillOpacity?: import("csstype").Property.FillOpacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FillOpacity | undefined>[] | undefined;
|
|
828
862
|
fillRule?: import("csstype").Property.FillRule | readonly NonNullable<import("csstype").Property.FillRule | undefined>[] | readonly import("csstype").Property.FillRule[] | undefined;
|
|
829
|
-
floodColor?:
|
|
830
|
-
floodOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
831
|
-
glyphOrientationVertical?: readonly ((string & {}) | import('csstype').Globals | "auto")[] |
|
|
832
|
-
lightingColor?:
|
|
833
|
-
marker?:
|
|
834
|
-
markerEnd?:
|
|
835
|
-
markerMid?:
|
|
836
|
-
markerStart?:
|
|
863
|
+
floodColor?: import("csstype").Property.FloodColor | readonly string[] | readonly import("csstype").Property.FloodColor[] | undefined;
|
|
864
|
+
floodOpacity?: import("csstype").Property.FloodOpacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.FloodOpacity | undefined>[] | undefined;
|
|
865
|
+
glyphOrientationVertical?: import("csstype").Property.GlyphOrientationVertical | readonly ((string & {}) | import('csstype').Globals | "auto")[] | readonly NonNullable<import("csstype").Property.GlyphOrientationVertical | undefined>[] | undefined;
|
|
866
|
+
lightingColor?: import("csstype").Property.LightingColor | readonly string[] | readonly import("csstype").Property.LightingColor[] | undefined;
|
|
867
|
+
marker?: import("csstype").Property.Marker | readonly string[] | readonly import("csstype").Property.Marker[] | undefined;
|
|
868
|
+
markerEnd?: import("csstype").Property.MarkerEnd | readonly string[] | readonly import("csstype").Property.MarkerEnd[] | undefined;
|
|
869
|
+
markerMid?: import("csstype").Property.MarkerMid | readonly string[] | readonly import("csstype").Property.MarkerMid[] | undefined;
|
|
870
|
+
markerStart?: import("csstype").Property.MarkerStart | readonly string[] | readonly import("csstype").Property.MarkerStart[] | undefined;
|
|
837
871
|
shapeRendering?: import("csstype").Property.ShapeRendering | readonly NonNullable<import("csstype").Property.ShapeRendering | undefined>[] | readonly import("csstype").Property.ShapeRendering[] | undefined;
|
|
838
|
-
stopColor?:
|
|
839
|
-
stopOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
840
|
-
stroke?:
|
|
841
|
-
strokeDasharray?: readonly (string | (string & {}))[] |
|
|
842
|
-
strokeDashoffset?: readonly (string | (string & {}))[] |
|
|
872
|
+
stopColor?: import("csstype").Property.StopColor | readonly string[] | readonly import("csstype").Property.StopColor[] | undefined;
|
|
873
|
+
stopOpacity?: import("csstype").Property.StopOpacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.StopOpacity | undefined>[] | undefined;
|
|
874
|
+
stroke?: import("csstype").Property.Stroke | readonly string[] | readonly import("csstype").Property.Stroke[] | undefined;
|
|
875
|
+
strokeDasharray?: import("csstype").Property.StrokeDasharray<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.StrokeDasharray<string | number> | undefined>[] | undefined;
|
|
876
|
+
strokeDashoffset?: import("csstype").Property.StrokeDashoffset<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.StrokeDashoffset<string | number> | undefined>[] | undefined;
|
|
843
877
|
strokeLinecap?: import("csstype").Property.StrokeLinecap | readonly NonNullable<import("csstype").Property.StrokeLinecap | undefined>[] | readonly import("csstype").Property.StrokeLinecap[] | undefined;
|
|
844
878
|
strokeLinejoin?: import("csstype").Property.StrokeLinejoin | readonly NonNullable<import("csstype").Property.StrokeLinejoin | undefined>[] | readonly import("csstype").Property.StrokeLinejoin[] | undefined;
|
|
845
|
-
strokeMiterlimit?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
846
|
-
strokeOpacity?: readonly ((string & {}) | import('csstype').Globals)[] |
|
|
847
|
-
strokeWidth?: readonly (string | (string & {}))[] |
|
|
879
|
+
strokeMiterlimit?: import("csstype").Property.StrokeMiterlimit | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.StrokeMiterlimit | undefined>[] | undefined;
|
|
880
|
+
strokeOpacity?: import("csstype").Property.StrokeOpacity | readonly ((string & {}) | import('csstype').Globals)[] | readonly NonNullable<import("csstype").Property.StrokeOpacity | undefined>[] | undefined;
|
|
881
|
+
strokeWidth?: import("csstype").Property.StrokeWidth<string | number> | readonly (string | (string & {}))[] | readonly NonNullable<import("csstype").Property.StrokeWidth<string | number> | undefined>[] | undefined;
|
|
848
882
|
textAnchor?: import("csstype").Property.TextAnchor | readonly NonNullable<import("csstype").Property.TextAnchor | undefined>[] | readonly import("csstype").Property.TextAnchor[] | undefined;
|
|
849
883
|
vectorEffect?: import("csstype").Property.VectorEffect | readonly NonNullable<import("csstype").Property.VectorEffect | undefined>[] | readonly import("csstype").Property.VectorEffect[] | undefined;
|
|
850
884
|
":-moz-any()"?: import('@emotion/serialize').CSSObject | undefined;
|