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