@react-hive/honey-layout 1.1.0 → 2.2.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/HoneyBox.d.ts +4 -830
- package/dist/components/HoneyFlexBox.d.ts +5 -0
- package/dist/components/HoneyGrid/HoneyGrid.d.ts +40 -4
- package/dist/components/HoneyGrid/HoneyGrid.styled.d.ts +9 -1669
- package/dist/components/HoneyGrid/hooks/use-current-honey-grid.d.ts +2 -1
- package/dist/components/HoneyGridColumn/HoneyGridColumn.styled.d.ts +16 -1672
- package/dist/components/HoneyGridColumn/HoneyGridColumn.types.d.ts +1 -1
- package/dist/components/HoneyList/HoneyList.d.ts +7 -5
- package/dist/components/HoneyLoopingList/HoneyLoopingList.d.ts +5 -829
- package/dist/components/index.d.ts +1 -0
- package/dist/constants.d.ts +2 -2
- package/dist/helpers.d.ts +36 -21
- package/dist/hooks/use-honey-media-query.d.ts +9 -2
- package/dist/index.js +854 -814
- package/dist/providers/HoneyLayoutProvider.d.ts +7 -5
- package/dist/providers/HoneyLayoutThemeOverride.d.ts +4 -2
- package/dist/types/component.types.d.ts +47 -0
- package/dist/types/css.types.d.ts +73 -0
- package/dist/types/data.types.d.ts +33 -0
- package/dist/types/index.d.ts +6 -0
- package/dist/types/state.types.d.ts +22 -0
- package/dist/{types.d.ts → types/types.d.ts} +24 -179
- package/dist/types/utility.types.d.ts +72 -0
- package/dist/utils.d.ts +73 -26
- package/package.json +13 -13
|
@@ -1,1692 +1,36 @@
|
|
|
1
|
+
import { HTMLAttributes } from 'react';
|
|
2
|
+
import { HoneyBreakpointName } from '../../types';
|
|
1
3
|
import { HoneyBoxProps } from '../HoneyBox';
|
|
2
|
-
export type HoneyGridColumnStyledProps = HoneyBoxProps & {
|
|
4
|
+
export type HoneyGridColumnStyledProps = HTMLAttributes<HTMLDivElement> & HoneyBoxProps & {
|
|
3
5
|
/**
|
|
4
6
|
* Total number of columns in the grid.
|
|
5
7
|
*/
|
|
6
8
|
columns: number;
|
|
7
9
|
/**
|
|
8
10
|
* Spacing between grid columns.
|
|
11
|
+
*
|
|
12
|
+
* @default 0
|
|
9
13
|
*/
|
|
10
14
|
spacing: number | undefined;
|
|
11
15
|
/**
|
|
12
|
-
*
|
|
16
|
+
* The number of columns this column should take.
|
|
13
17
|
*
|
|
14
18
|
* @default 1
|
|
15
19
|
*/
|
|
16
20
|
takeColumns?: number;
|
|
21
|
+
/**
|
|
22
|
+
* Specifies the breakpoint at which the max-width should be applied or disables it if set to `false`.
|
|
23
|
+
* Can be a breakpoint name.
|
|
24
|
+
*/
|
|
25
|
+
applyMaxWidth?: HoneyBreakpointName | false;
|
|
17
26
|
};
|
|
18
27
|
/**
|
|
19
28
|
* This styled component defines the layout and styling for individual columns in a grid layout.
|
|
20
29
|
* It provides flexibility in specifying the number of columns to take, the total number of columns in the grid,
|
|
21
30
|
* and the spacing between columns.
|
|
22
31
|
*/
|
|
23
|
-
export declare const HoneyGridColumnStyled: import('styled-components').StyledComponent<"div", import('styled-components').DefaultTheme, import('react').HTMLAttributes<HTMLDivElement> & Partial<{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
$alignTracks?: import('../..').HoneyCSSPropertyValue<"alignTracks">;
|
|
29
|
-
$animationComposition?: import('../..').HoneyCSSPropertyValue<"animationComposition">;
|
|
30
|
-
$animationDelay?: import('../..').HoneyCSSPropertyValue<"animationDelay">;
|
|
31
|
-
$animationDirection?: import('../..').HoneyCSSPropertyValue<"animationDirection">;
|
|
32
|
-
$animationDuration?: import('../..').HoneyCSSPropertyValue<"animationDuration">;
|
|
33
|
-
$animationFillMode?: import('../..').HoneyCSSPropertyValue<"animationFillMode">;
|
|
34
|
-
$animationIterationCount?: import('../..').HoneyCSSPropertyValue<"animationIterationCount">;
|
|
35
|
-
$animationName?: import('../..').HoneyCSSPropertyValue<"animationName">;
|
|
36
|
-
$animationPlayState?: import('../..').HoneyCSSPropertyValue<"animationPlayState">;
|
|
37
|
-
$animationRangeEnd?: import('../..').HoneyCSSPropertyValue<"animationRangeEnd">;
|
|
38
|
-
$animationRangeStart?: import('../..').HoneyCSSPropertyValue<"animationRangeStart">;
|
|
39
|
-
$animationTimeline?: import('../..').HoneyCSSPropertyValue<"animationTimeline">;
|
|
40
|
-
$animationTimingFunction?: import('../..').HoneyCSSPropertyValue<"animationTimingFunction">;
|
|
41
|
-
$appearance?: import('../..').HoneyCSSPropertyValue<"appearance">;
|
|
42
|
-
$aspectRatio?: import('../..').HoneyCSSPropertyValue<"aspectRatio">;
|
|
43
|
-
$backdropFilter?: import('../..').HoneyCSSPropertyValue<"backdropFilter">;
|
|
44
|
-
$backfaceVisibility?: import('../..').HoneyCSSPropertyValue<"backfaceVisibility">;
|
|
45
|
-
$backgroundAttachment?: import('../..').HoneyCSSPropertyValue<"backgroundAttachment">;
|
|
46
|
-
$backgroundBlendMode?: import('../..').HoneyCSSPropertyValue<"backgroundBlendMode">;
|
|
47
|
-
$backgroundClip?: import('../..').HoneyCSSPropertyValue<"backgroundClip">;
|
|
48
|
-
$backgroundColor?: import('../..').HoneyCSSPropertyValue<"backgroundColor"> | undefined;
|
|
49
|
-
$backgroundImage?: import('../..').HoneyCSSPropertyValue<"backgroundImage">;
|
|
50
|
-
$backgroundOrigin?: import('../..').HoneyCSSPropertyValue<"backgroundOrigin">;
|
|
51
|
-
$backgroundPositionX?: import('../..').HoneyCSSPropertyValue<"backgroundPositionX">;
|
|
52
|
-
$backgroundPositionY?: import('../..').HoneyCSSPropertyValue<"backgroundPositionY">;
|
|
53
|
-
$backgroundRepeat?: import('../..').HoneyCSSPropertyValue<"backgroundRepeat">;
|
|
54
|
-
$backgroundSize?: import('../..').HoneyCSSPropertyValue<"backgroundSize">;
|
|
55
|
-
$blockOverflow?: import('../..').HoneyCSSPropertyValue<"blockOverflow">;
|
|
56
|
-
$blockSize?: import('../..').HoneyCSSPropertyValue<"blockSize">;
|
|
57
|
-
$borderBlockColor?: import('../..').HoneyCSSPropertyValue<"borderBlockColor">;
|
|
58
|
-
$borderBlockEndColor?: import('../..').HoneyCSSPropertyValue<"borderBlockEndColor">;
|
|
59
|
-
$borderBlockEndStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockEndStyle">;
|
|
60
|
-
$borderBlockEndWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockEndWidth">;
|
|
61
|
-
$borderBlockStartColor?: import('../..').HoneyCSSPropertyValue<"borderBlockStartColor">;
|
|
62
|
-
$borderBlockStartStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockStartStyle">;
|
|
63
|
-
$borderBlockStartWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockStartWidth">;
|
|
64
|
-
$borderBlockStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockStyle">;
|
|
65
|
-
$borderBlockWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockWidth">;
|
|
66
|
-
$borderBottomColor?: import('../..').HoneyCSSPropertyValue<"borderBottomColor"> | undefined;
|
|
67
|
-
$borderBottomLeftRadius?: import('../..').HoneyCSSPropertyValue<"borderBottomLeftRadius">;
|
|
68
|
-
$borderBottomRightRadius?: import('../..').HoneyCSSPropertyValue<"borderBottomRightRadius">;
|
|
69
|
-
$borderBottomStyle?: import('../..').HoneyCSSPropertyValue<"borderBottomStyle">;
|
|
70
|
-
$borderBottomWidth?: import('../..').HoneyCSSPropertyValue<"borderBottomWidth">;
|
|
71
|
-
$borderCollapse?: import('../..').HoneyCSSPropertyValue<"borderCollapse">;
|
|
72
|
-
$borderEndEndRadius?: import('../..').HoneyCSSPropertyValue<"borderEndEndRadius">;
|
|
73
|
-
$borderEndStartRadius?: import('../..').HoneyCSSPropertyValue<"borderEndStartRadius">;
|
|
74
|
-
$borderImageOutset?: import('../..').HoneyCSSPropertyValue<"borderImageOutset">;
|
|
75
|
-
$borderImageRepeat?: import('../..').HoneyCSSPropertyValue<"borderImageRepeat">;
|
|
76
|
-
$borderImageSlice?: import('../..').HoneyCSSPropertyValue<"borderImageSlice">;
|
|
77
|
-
$borderImageSource?: import('../..').HoneyCSSPropertyValue<"borderImageSource">;
|
|
78
|
-
$borderImageWidth?: import('../..').HoneyCSSPropertyValue<"borderImageWidth">;
|
|
79
|
-
$borderInlineColor?: import('../..').HoneyCSSPropertyValue<"borderInlineColor">;
|
|
80
|
-
$borderInlineEndColor?: import('../..').HoneyCSSPropertyValue<"borderInlineEndColor">;
|
|
81
|
-
$borderInlineEndStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineEndStyle">;
|
|
82
|
-
$borderInlineEndWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineEndWidth">;
|
|
83
|
-
$borderInlineStartColor?: import('../..').HoneyCSSPropertyValue<"borderInlineStartColor">;
|
|
84
|
-
$borderInlineStartStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineStartStyle">;
|
|
85
|
-
$borderInlineStartWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineStartWidth">;
|
|
86
|
-
$borderInlineStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineStyle">;
|
|
87
|
-
$borderInlineWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineWidth">;
|
|
88
|
-
$borderLeftColor?: import('../..').HoneyCSSPropertyValue<"borderLeftColor"> | undefined;
|
|
89
|
-
$borderLeftStyle?: import('../..').HoneyCSSPropertyValue<"borderLeftStyle">;
|
|
90
|
-
$borderLeftWidth?: import('../..').HoneyCSSPropertyValue<"borderLeftWidth">;
|
|
91
|
-
$borderRightColor?: import('../..').HoneyCSSPropertyValue<"borderRightColor"> | undefined;
|
|
92
|
-
$borderRightStyle?: import('../..').HoneyCSSPropertyValue<"borderRightStyle">;
|
|
93
|
-
$borderRightWidth?: import('../..').HoneyCSSPropertyValue<"borderRightWidth">;
|
|
94
|
-
$borderSpacing?: import('../..').HoneyCSSPropertyValue<"borderSpacing">;
|
|
95
|
-
$borderStartEndRadius?: import('../..').HoneyCSSPropertyValue<"borderStartEndRadius">;
|
|
96
|
-
$borderStartStartRadius?: import('../..').HoneyCSSPropertyValue<"borderStartStartRadius">;
|
|
97
|
-
$borderTopColor?: import('../..').HoneyCSSPropertyValue<"borderTopColor"> | undefined;
|
|
98
|
-
$borderTopLeftRadius?: import('../..').HoneyCSSPropertyValue<"borderTopLeftRadius">;
|
|
99
|
-
$borderTopRightRadius?: import('../..').HoneyCSSPropertyValue<"borderTopRightRadius">;
|
|
100
|
-
$borderTopStyle?: import('../..').HoneyCSSPropertyValue<"borderTopStyle">;
|
|
101
|
-
$borderTopWidth?: import('../..').HoneyCSSPropertyValue<"borderTopWidth">;
|
|
102
|
-
$bottom?: import('../..').HoneyCSSPropertyValue<"bottom">;
|
|
103
|
-
$boxDecorationBreak?: import('../..').HoneyCSSPropertyValue<"boxDecorationBreak">;
|
|
104
|
-
$boxShadow?: import('../..').HoneyCSSPropertyValue<"boxShadow">;
|
|
105
|
-
$boxSizing?: import('../..').HoneyCSSPropertyValue<"boxSizing">;
|
|
106
|
-
$breakAfter?: import('../..').HoneyCSSPropertyValue<"breakAfter">;
|
|
107
|
-
$breakBefore?: import('../..').HoneyCSSPropertyValue<"breakBefore">;
|
|
108
|
-
$breakInside?: import('../..').HoneyCSSPropertyValue<"breakInside">;
|
|
109
|
-
$captionSide?: import('../..').HoneyCSSPropertyValue<"captionSide">;
|
|
110
|
-
$caretColor?: import('../..').HoneyCSSPropertyValue<"caretColor">;
|
|
111
|
-
$caretShape?: import('../..').HoneyCSSPropertyValue<"caretShape">;
|
|
112
|
-
$clear?: import('../..').HoneyCSSPropertyValue<"clear">;
|
|
113
|
-
$clipPath?: import('../..').HoneyCSSPropertyValue<"clipPath">;
|
|
114
|
-
$color?: import('../..').HoneyCSSPropertyValue<"color"> | undefined;
|
|
115
|
-
$colorAdjust?: import('../..').HoneyCSSPropertyValue<"colorAdjust">;
|
|
116
|
-
$colorScheme?: import('../..').HoneyCSSPropertyValue<"colorScheme">;
|
|
117
|
-
$columnCount?: import('../..').HoneyCSSPropertyValue<"columnCount">;
|
|
118
|
-
$columnFill?: import('../..').HoneyCSSPropertyValue<"columnFill">;
|
|
119
|
-
$columnGap?: import('../..').HoneyCSSPropertyValue<"columnGap">;
|
|
120
|
-
$columnRuleColor?: import('../..').HoneyCSSPropertyValue<"columnRuleColor">;
|
|
121
|
-
$columnRuleStyle?: import('../..').HoneyCSSPropertyValue<"columnRuleStyle">;
|
|
122
|
-
$columnRuleWidth?: import('../..').HoneyCSSPropertyValue<"columnRuleWidth">;
|
|
123
|
-
$columnSpan?: import('../..').HoneyCSSPropertyValue<"columnSpan">;
|
|
124
|
-
$columnWidth?: import('../..').HoneyCSSPropertyValue<"columnWidth">;
|
|
125
|
-
$contain?: import('../..').HoneyCSSPropertyValue<"contain">;
|
|
126
|
-
$containIntrinsicBlockSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicBlockSize">;
|
|
127
|
-
$containIntrinsicHeight?: import('../..').HoneyCSSPropertyValue<"containIntrinsicHeight">;
|
|
128
|
-
$containIntrinsicInlineSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicInlineSize">;
|
|
129
|
-
$containIntrinsicWidth?: import('../..').HoneyCSSPropertyValue<"containIntrinsicWidth">;
|
|
130
|
-
$containerName?: import('../..').HoneyCSSPropertyValue<"containerName">;
|
|
131
|
-
$containerType?: import('../..').HoneyCSSPropertyValue<"containerType">;
|
|
132
|
-
$content?: import('../..').HoneyCSSPropertyValue<"content">;
|
|
133
|
-
$contentVisibility?: import('../..').HoneyCSSPropertyValue<"contentVisibility">;
|
|
134
|
-
$counterIncrement?: import('../..').HoneyCSSPropertyValue<"counterIncrement">;
|
|
135
|
-
$counterReset?: import('../..').HoneyCSSPropertyValue<"counterReset">;
|
|
136
|
-
$counterSet?: import('../..').HoneyCSSPropertyValue<"counterSet">;
|
|
137
|
-
$cursor?: import('../..').HoneyCSSPropertyValue<"cursor">;
|
|
138
|
-
$direction?: import('../..').HoneyCSSPropertyValue<"direction">;
|
|
139
|
-
$display?: import('../..').HoneyCSSPropertyValue<"display">;
|
|
140
|
-
$emptyCells?: import('../..').HoneyCSSPropertyValue<"emptyCells">;
|
|
141
|
-
$filter?: import('../..').HoneyCSSPropertyValue<"filter">;
|
|
142
|
-
$flexBasis?: import('../..').HoneyCSSPropertyValue<"flexBasis">;
|
|
143
|
-
$flexDirection?: import('../..').HoneyCSSPropertyValue<"flexDirection">;
|
|
144
|
-
$flexGrow?: import('../..').HoneyCSSPropertyValue<"flexGrow">;
|
|
145
|
-
$flexShrink?: import('../..').HoneyCSSPropertyValue<"flexShrink">;
|
|
146
|
-
$flexWrap?: import('../..').HoneyCSSPropertyValue<"flexWrap">;
|
|
147
|
-
$float?: import('../..').HoneyCSSPropertyValue<"float">;
|
|
148
|
-
$fontFamily?: import('../..').HoneyCSSPropertyValue<"fontFamily">;
|
|
149
|
-
$fontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"fontFeatureSettings">;
|
|
150
|
-
$fontKerning?: import('../..').HoneyCSSPropertyValue<"fontKerning">;
|
|
151
|
-
$fontLanguageOverride?: import('../..').HoneyCSSPropertyValue<"fontLanguageOverride">;
|
|
152
|
-
$fontOpticalSizing?: import('../..').HoneyCSSPropertyValue<"fontOpticalSizing">;
|
|
153
|
-
$fontPalette?: import('../..').HoneyCSSPropertyValue<"fontPalette">;
|
|
154
|
-
$fontSize?: import('../..').HoneyCSSPropertyValue<"fontSize">;
|
|
155
|
-
$fontSizeAdjust?: import('../..').HoneyCSSPropertyValue<"fontSizeAdjust">;
|
|
156
|
-
$fontSmooth?: import('../..').HoneyCSSPropertyValue<"fontSmooth">;
|
|
157
|
-
$fontStretch?: import('../..').HoneyCSSPropertyValue<"fontStretch">;
|
|
158
|
-
$fontStyle?: import('../..').HoneyCSSPropertyValue<"fontStyle">;
|
|
159
|
-
$fontSynthesis?: import('../..').HoneyCSSPropertyValue<"fontSynthesis">;
|
|
160
|
-
$fontSynthesisPosition?: import('../..').HoneyCSSPropertyValue<"fontSynthesisPosition">;
|
|
161
|
-
$fontSynthesisSmallCaps?: import('../..').HoneyCSSPropertyValue<"fontSynthesisSmallCaps">;
|
|
162
|
-
$fontSynthesisStyle?: import('../..').HoneyCSSPropertyValue<"fontSynthesisStyle">;
|
|
163
|
-
$fontSynthesisWeight?: import('../..').HoneyCSSPropertyValue<"fontSynthesisWeight">;
|
|
164
|
-
$fontVariant?: import('../..').HoneyCSSPropertyValue<"fontVariant">;
|
|
165
|
-
$fontVariantAlternates?: import('../..').HoneyCSSPropertyValue<"fontVariantAlternates">;
|
|
166
|
-
$fontVariantCaps?: import('../..').HoneyCSSPropertyValue<"fontVariantCaps">;
|
|
167
|
-
$fontVariantEastAsian?: import('../..').HoneyCSSPropertyValue<"fontVariantEastAsian">;
|
|
168
|
-
$fontVariantEmoji?: import('../..').HoneyCSSPropertyValue<"fontVariantEmoji">;
|
|
169
|
-
$fontVariantLigatures?: import('../..').HoneyCSSPropertyValue<"fontVariantLigatures">;
|
|
170
|
-
$fontVariantNumeric?: import('../..').HoneyCSSPropertyValue<"fontVariantNumeric">;
|
|
171
|
-
$fontVariantPosition?: import('../..').HoneyCSSPropertyValue<"fontVariantPosition">;
|
|
172
|
-
$fontVariationSettings?: import('../..').HoneyCSSPropertyValue<"fontVariationSettings">;
|
|
173
|
-
$fontWeight?: import('../..').HoneyCSSPropertyValue<"fontWeight">;
|
|
174
|
-
$forcedColorAdjust?: import('../..').HoneyCSSPropertyValue<"forcedColorAdjust">;
|
|
175
|
-
$gridAutoColumns?: import('../..').HoneyCSSPropertyValue<"gridAutoColumns">;
|
|
176
|
-
$gridAutoFlow?: import('../..').HoneyCSSPropertyValue<"gridAutoFlow">;
|
|
177
|
-
$gridAutoRows?: import('../..').HoneyCSSPropertyValue<"gridAutoRows">;
|
|
178
|
-
$gridColumnEnd?: import('../..').HoneyCSSPropertyValue<"gridColumnEnd">;
|
|
179
|
-
$gridColumnStart?: import('../..').HoneyCSSPropertyValue<"gridColumnStart">;
|
|
180
|
-
$gridRowEnd?: import('../..').HoneyCSSPropertyValue<"gridRowEnd">;
|
|
181
|
-
$gridRowStart?: import('../..').HoneyCSSPropertyValue<"gridRowStart">;
|
|
182
|
-
$gridTemplateAreas?: import('../..').HoneyCSSPropertyValue<"gridTemplateAreas">;
|
|
183
|
-
$gridTemplateColumns?: import('../..').HoneyCSSPropertyValue<"gridTemplateColumns">;
|
|
184
|
-
$gridTemplateRows?: import('../..').HoneyCSSPropertyValue<"gridTemplateRows">;
|
|
185
|
-
$hangingPunctuation?: import('../..').HoneyCSSPropertyValue<"hangingPunctuation">;
|
|
186
|
-
$height?: import('../..').HoneyCSSPropertyValue<"height">;
|
|
187
|
-
$hyphenateCharacter?: import('../..').HoneyCSSPropertyValue<"hyphenateCharacter">;
|
|
188
|
-
$hyphenateLimitChars?: import('../..').HoneyCSSPropertyValue<"hyphenateLimitChars">;
|
|
189
|
-
$hyphens?: import('../..').HoneyCSSPropertyValue<"hyphens">;
|
|
190
|
-
$imageOrientation?: import('../..').HoneyCSSPropertyValue<"imageOrientation">;
|
|
191
|
-
$imageRendering?: import('../..').HoneyCSSPropertyValue<"imageRendering">;
|
|
192
|
-
$imageResolution?: import('../..').HoneyCSSPropertyValue<"imageResolution">;
|
|
193
|
-
$initialLetter?: import('../..').HoneyCSSPropertyValue<"initialLetter">;
|
|
194
|
-
$inlineSize?: import('../..').HoneyCSSPropertyValue<"inlineSize">;
|
|
195
|
-
$inputSecurity?: import('../..').HoneyCSSPropertyValue<"inputSecurity">;
|
|
196
|
-
$insetBlockEnd?: import('../..').HoneyCSSPropertyValue<"insetBlockEnd">;
|
|
197
|
-
$insetBlockStart?: import('../..').HoneyCSSPropertyValue<"insetBlockStart">;
|
|
198
|
-
$insetInlineEnd?: import('../..').HoneyCSSPropertyValue<"insetInlineEnd">;
|
|
199
|
-
$insetInlineStart?: import('../..').HoneyCSSPropertyValue<"insetInlineStart">;
|
|
200
|
-
$isolation?: import('../..').HoneyCSSPropertyValue<"isolation">;
|
|
201
|
-
$justifyContent?: import('../..').HoneyCSSPropertyValue<"justifyContent">;
|
|
202
|
-
$justifyItems?: import('../..').HoneyCSSPropertyValue<"justifyItems">;
|
|
203
|
-
$justifySelf?: import('../..').HoneyCSSPropertyValue<"justifySelf">;
|
|
204
|
-
$justifyTracks?: import('../..').HoneyCSSPropertyValue<"justifyTracks">;
|
|
205
|
-
$left?: import('../..').HoneyCSSPropertyValue<"left">;
|
|
206
|
-
$letterSpacing?: import('../..').HoneyCSSPropertyValue<"letterSpacing">;
|
|
207
|
-
$lineBreak?: import('../..').HoneyCSSPropertyValue<"lineBreak">;
|
|
208
|
-
$lineHeight?: import('../..').HoneyCSSPropertyValue<"lineHeight">;
|
|
209
|
-
$lineHeightStep?: import('../..').HoneyCSSPropertyValue<"lineHeightStep">;
|
|
210
|
-
$listStyleImage?: import('../..').HoneyCSSPropertyValue<"listStyleImage">;
|
|
211
|
-
$listStylePosition?: import('../..').HoneyCSSPropertyValue<"listStylePosition">;
|
|
212
|
-
$listStyleType?: import('../..').HoneyCSSPropertyValue<"listStyleType">;
|
|
213
|
-
$marginBlockEnd?: import('../..').HoneyCSSPropertyValue<"marginBlockEnd">;
|
|
214
|
-
$marginBlockStart?: import('../..').HoneyCSSPropertyValue<"marginBlockStart">;
|
|
215
|
-
$marginBottom?: import('../..').HoneyCSSPropertyValue<"marginBottom">;
|
|
216
|
-
$marginInlineEnd?: import('../..').HoneyCSSPropertyValue<"marginInlineEnd">;
|
|
217
|
-
$marginInlineStart?: import('../..').HoneyCSSPropertyValue<"marginInlineStart">;
|
|
218
|
-
$marginLeft?: import('../..').HoneyCSSPropertyValue<"marginLeft">;
|
|
219
|
-
$marginRight?: import('../..').HoneyCSSPropertyValue<"marginRight">;
|
|
220
|
-
$marginTop?: import('../..').HoneyCSSPropertyValue<"marginTop">;
|
|
221
|
-
$marginTrim?: import('../..').HoneyCSSPropertyValue<"marginTrim">;
|
|
222
|
-
$maskBorderMode?: import('../..').HoneyCSSPropertyValue<"maskBorderMode">;
|
|
223
|
-
$maskBorderOutset?: import('../..').HoneyCSSPropertyValue<"maskBorderOutset">;
|
|
224
|
-
$maskBorderRepeat?: import('../..').HoneyCSSPropertyValue<"maskBorderRepeat">;
|
|
225
|
-
$maskBorderSlice?: import('../..').HoneyCSSPropertyValue<"maskBorderSlice">;
|
|
226
|
-
$maskBorderSource?: import('../..').HoneyCSSPropertyValue<"maskBorderSource">;
|
|
227
|
-
$maskBorderWidth?: import('../..').HoneyCSSPropertyValue<"maskBorderWidth">;
|
|
228
|
-
$maskClip?: import('../..').HoneyCSSPropertyValue<"maskClip">;
|
|
229
|
-
$maskComposite?: import('../..').HoneyCSSPropertyValue<"maskComposite">;
|
|
230
|
-
$maskImage?: import('../..').HoneyCSSPropertyValue<"maskImage">;
|
|
231
|
-
$maskMode?: import('../..').HoneyCSSPropertyValue<"maskMode">;
|
|
232
|
-
$maskOrigin?: import('../..').HoneyCSSPropertyValue<"maskOrigin">;
|
|
233
|
-
$maskPosition?: import('../..').HoneyCSSPropertyValue<"maskPosition">;
|
|
234
|
-
$maskRepeat?: import('../..').HoneyCSSPropertyValue<"maskRepeat">;
|
|
235
|
-
$maskSize?: import('../..').HoneyCSSPropertyValue<"maskSize">;
|
|
236
|
-
$maskType?: import('../..').HoneyCSSPropertyValue<"maskType">;
|
|
237
|
-
$masonryAutoFlow?: import('../..').HoneyCSSPropertyValue<"masonryAutoFlow">;
|
|
238
|
-
$mathDepth?: import('../..').HoneyCSSPropertyValue<"mathDepth">;
|
|
239
|
-
$mathShift?: import('../..').HoneyCSSPropertyValue<"mathShift">;
|
|
240
|
-
$mathStyle?: import('../..').HoneyCSSPropertyValue<"mathStyle">;
|
|
241
|
-
$maxBlockSize?: import('../..').HoneyCSSPropertyValue<"maxBlockSize">;
|
|
242
|
-
$maxHeight?: import('../..').HoneyCSSPropertyValue<"maxHeight">;
|
|
243
|
-
$maxInlineSize?: import('../..').HoneyCSSPropertyValue<"maxInlineSize">;
|
|
244
|
-
$maxLines?: import('../..').HoneyCSSPropertyValue<"maxLines">;
|
|
245
|
-
$maxWidth?: import('../..').HoneyCSSPropertyValue<"maxWidth">;
|
|
246
|
-
$minBlockSize?: import('../..').HoneyCSSPropertyValue<"minBlockSize">;
|
|
247
|
-
$minHeight?: import('../..').HoneyCSSPropertyValue<"minHeight">;
|
|
248
|
-
$minInlineSize?: import('../..').HoneyCSSPropertyValue<"minInlineSize">;
|
|
249
|
-
$minWidth?: import('../..').HoneyCSSPropertyValue<"minWidth">;
|
|
250
|
-
$mixBlendMode?: import('../..').HoneyCSSPropertyValue<"mixBlendMode">;
|
|
251
|
-
$motionDistance?: import('../..').HoneyCSSPropertyValue<"motionDistance">;
|
|
252
|
-
$motionPath?: import('../..').HoneyCSSPropertyValue<"motionPath">;
|
|
253
|
-
$motionRotation?: import('../..').HoneyCSSPropertyValue<"motionRotation">;
|
|
254
|
-
$objectFit?: import('../..').HoneyCSSPropertyValue<"objectFit">;
|
|
255
|
-
$objectPosition?: import('../..').HoneyCSSPropertyValue<"objectPosition">;
|
|
256
|
-
$offsetAnchor?: import('../..').HoneyCSSPropertyValue<"offsetAnchor">;
|
|
257
|
-
$offsetDistance?: import('../..').HoneyCSSPropertyValue<"offsetDistance">;
|
|
258
|
-
$offsetPath?: import('../..').HoneyCSSPropertyValue<"offsetPath">;
|
|
259
|
-
$offsetPosition?: import('../..').HoneyCSSPropertyValue<"offsetPosition">;
|
|
260
|
-
$offsetRotate?: import('../..').HoneyCSSPropertyValue<"offsetRotate">;
|
|
261
|
-
$offsetRotation?: import('../..').HoneyCSSPropertyValue<"offsetRotation">;
|
|
262
|
-
$opacity?: import('../..').HoneyCSSPropertyValue<"opacity">;
|
|
263
|
-
$order?: import('../..').HoneyCSSPropertyValue<"order">;
|
|
264
|
-
$orphans?: import('../..').HoneyCSSPropertyValue<"orphans">;
|
|
265
|
-
$outlineColor?: import('../..').HoneyCSSPropertyValue<"outlineColor"> | undefined;
|
|
266
|
-
$outlineOffset?: import('../..').HoneyCSSPropertyValue<"outlineOffset">;
|
|
267
|
-
$outlineStyle?: import('../..').HoneyCSSPropertyValue<"outlineStyle">;
|
|
268
|
-
$outlineWidth?: import('../..').HoneyCSSPropertyValue<"outlineWidth">;
|
|
269
|
-
$overflowAnchor?: import('../..').HoneyCSSPropertyValue<"overflowAnchor">;
|
|
270
|
-
$overflowBlock?: import('../..').HoneyCSSPropertyValue<"overflowBlock">;
|
|
271
|
-
$overflowClipBox?: import('../..').HoneyCSSPropertyValue<"overflowClipBox">;
|
|
272
|
-
$overflowClipMargin?: import('../..').HoneyCSSPropertyValue<"overflowClipMargin">;
|
|
273
|
-
$overflowInline?: import('../..').HoneyCSSPropertyValue<"overflowInline">;
|
|
274
|
-
$overflowWrap?: import('../..').HoneyCSSPropertyValue<"overflowWrap">;
|
|
275
|
-
$overflowX?: import('../..').HoneyCSSPropertyValue<"overflowX">;
|
|
276
|
-
$overflowY?: import('../..').HoneyCSSPropertyValue<"overflowY">;
|
|
277
|
-
$overlay?: import('../..').HoneyCSSPropertyValue<"overlay">;
|
|
278
|
-
$overscrollBehaviorBlock?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorBlock">;
|
|
279
|
-
$overscrollBehaviorInline?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorInline">;
|
|
280
|
-
$overscrollBehaviorX?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorX">;
|
|
281
|
-
$overscrollBehaviorY?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorY">;
|
|
282
|
-
$paddingBlockEnd?: import('../..').HoneyCSSPropertyValue<"paddingBlockEnd">;
|
|
283
|
-
$paddingBlockStart?: import('../..').HoneyCSSPropertyValue<"paddingBlockStart">;
|
|
284
|
-
$paddingBottom?: import('../..').HoneyCSSPropertyValue<"paddingBottom">;
|
|
285
|
-
$paddingInlineEnd?: import('../..').HoneyCSSPropertyValue<"paddingInlineEnd">;
|
|
286
|
-
$paddingInlineStart?: import('../..').HoneyCSSPropertyValue<"paddingInlineStart">;
|
|
287
|
-
$paddingLeft?: import('../..').HoneyCSSPropertyValue<"paddingLeft">;
|
|
288
|
-
$paddingRight?: import('../..').HoneyCSSPropertyValue<"paddingRight">;
|
|
289
|
-
$paddingTop?: import('../..').HoneyCSSPropertyValue<"paddingTop">;
|
|
290
|
-
$page?: import('../..').HoneyCSSPropertyValue<"page">;
|
|
291
|
-
$pageBreakAfter?: import('../..').HoneyCSSPropertyValue<"pageBreakAfter">;
|
|
292
|
-
$pageBreakBefore?: import('../..').HoneyCSSPropertyValue<"pageBreakBefore">;
|
|
293
|
-
$pageBreakInside?: import('../..').HoneyCSSPropertyValue<"pageBreakInside">;
|
|
294
|
-
$paintOrder?: import('../..').HoneyCSSPropertyValue<"paintOrder">;
|
|
295
|
-
$perspective?: import('../..').HoneyCSSPropertyValue<"perspective">;
|
|
296
|
-
$perspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"perspectiveOrigin">;
|
|
297
|
-
$pointerEvents?: import('../..').HoneyCSSPropertyValue<"pointerEvents">;
|
|
298
|
-
$position?: import('../..').HoneyCSSPropertyValue<"position">;
|
|
299
|
-
$printColorAdjust?: import('../..').HoneyCSSPropertyValue<"printColorAdjust">;
|
|
300
|
-
$quotes?: import('../..').HoneyCSSPropertyValue<"quotes">;
|
|
301
|
-
$resize?: import('../..').HoneyCSSPropertyValue<"resize">;
|
|
302
|
-
$right?: import('../..').HoneyCSSPropertyValue<"right">;
|
|
303
|
-
$rotate?: import('../..').HoneyCSSPropertyValue<"rotate">;
|
|
304
|
-
$rowGap?: import('../..').HoneyCSSPropertyValue<"rowGap">;
|
|
305
|
-
$rubyAlign?: import('../..').HoneyCSSPropertyValue<"rubyAlign">;
|
|
306
|
-
$rubyMerge?: import('../..').HoneyCSSPropertyValue<"rubyMerge">;
|
|
307
|
-
$rubyPosition?: import('../..').HoneyCSSPropertyValue<"rubyPosition">;
|
|
308
|
-
$scale?: import('../..').HoneyCSSPropertyValue<"scale">;
|
|
309
|
-
$scrollBehavior?: import('../..').HoneyCSSPropertyValue<"scrollBehavior">;
|
|
310
|
-
$scrollMarginBlockEnd?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlockEnd">;
|
|
311
|
-
$scrollMarginBlockStart?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlockStart">;
|
|
312
|
-
$scrollMarginBottom?: import('../..').HoneyCSSPropertyValue<"scrollMarginBottom">;
|
|
313
|
-
$scrollMarginInlineEnd?: import('../..').HoneyCSSPropertyValue<"scrollMarginInlineEnd">;
|
|
314
|
-
$scrollMarginInlineStart?: import('../..').HoneyCSSPropertyValue<"scrollMarginInlineStart">;
|
|
315
|
-
$scrollMarginLeft?: import('../..').HoneyCSSPropertyValue<"scrollMarginLeft">;
|
|
316
|
-
$scrollMarginRight?: import('../..').HoneyCSSPropertyValue<"scrollMarginRight">;
|
|
317
|
-
$scrollMarginTop?: import('../..').HoneyCSSPropertyValue<"scrollMarginTop">;
|
|
318
|
-
$scrollPaddingBlockEnd?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlockEnd">;
|
|
319
|
-
$scrollPaddingBlockStart?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlockStart">;
|
|
320
|
-
$scrollPaddingBottom?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBottom">;
|
|
321
|
-
$scrollPaddingInlineEnd?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInlineEnd">;
|
|
322
|
-
$scrollPaddingInlineStart?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInlineStart">;
|
|
323
|
-
$scrollPaddingLeft?: import('../..').HoneyCSSPropertyValue<"scrollPaddingLeft">;
|
|
324
|
-
$scrollPaddingRight?: import('../..').HoneyCSSPropertyValue<"scrollPaddingRight">;
|
|
325
|
-
$scrollPaddingTop?: import('../..').HoneyCSSPropertyValue<"scrollPaddingTop">;
|
|
326
|
-
$scrollSnapAlign?: import('../..').HoneyCSSPropertyValue<"scrollSnapAlign">;
|
|
327
|
-
$scrollSnapMarginBottom?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginBottom">;
|
|
328
|
-
$scrollSnapMarginLeft?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginLeft">;
|
|
329
|
-
$scrollSnapMarginRight?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginRight">;
|
|
330
|
-
$scrollSnapMarginTop?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginTop">;
|
|
331
|
-
$scrollSnapStop?: import('../..').HoneyCSSPropertyValue<"scrollSnapStop">;
|
|
332
|
-
$scrollSnapType?: import('../..').HoneyCSSPropertyValue<"scrollSnapType">;
|
|
333
|
-
$scrollTimelineAxis?: import('../..').HoneyCSSPropertyValue<"scrollTimelineAxis">;
|
|
334
|
-
$scrollTimelineName?: import('../..').HoneyCSSPropertyValue<"scrollTimelineName">;
|
|
335
|
-
$scrollbarColor?: import('../..').HoneyCSSPropertyValue<"scrollbarColor">;
|
|
336
|
-
$scrollbarGutter?: import('../..').HoneyCSSPropertyValue<"scrollbarGutter">;
|
|
337
|
-
$scrollbarWidth?: import('../..').HoneyCSSPropertyValue<"scrollbarWidth">;
|
|
338
|
-
$shapeImageThreshold?: import('../..').HoneyCSSPropertyValue<"shapeImageThreshold">;
|
|
339
|
-
$shapeMargin?: import('../..').HoneyCSSPropertyValue<"shapeMargin">;
|
|
340
|
-
$shapeOutside?: import('../..').HoneyCSSPropertyValue<"shapeOutside">;
|
|
341
|
-
$tabSize?: import('../..').HoneyCSSPropertyValue<"tabSize">;
|
|
342
|
-
$tableLayout?: import('../..').HoneyCSSPropertyValue<"tableLayout">;
|
|
343
|
-
$textAlign?: import('../..').HoneyCSSPropertyValue<"textAlign">;
|
|
344
|
-
$textAlignLast?: import('../..').HoneyCSSPropertyValue<"textAlignLast">;
|
|
345
|
-
$textCombineUpright?: import('../..').HoneyCSSPropertyValue<"textCombineUpright">;
|
|
346
|
-
$textDecorationColor?: import('../..').HoneyCSSPropertyValue<"textDecorationColor"> | undefined;
|
|
347
|
-
$textDecorationLine?: import('../..').HoneyCSSPropertyValue<"textDecorationLine">;
|
|
348
|
-
$textDecorationSkip?: import('../..').HoneyCSSPropertyValue<"textDecorationSkip">;
|
|
349
|
-
$textDecorationSkipInk?: import('../..').HoneyCSSPropertyValue<"textDecorationSkipInk">;
|
|
350
|
-
$textDecorationStyle?: import('../..').HoneyCSSPropertyValue<"textDecorationStyle">;
|
|
351
|
-
$textDecorationThickness?: import('../..').HoneyCSSPropertyValue<"textDecorationThickness">;
|
|
352
|
-
$textEmphasisColor?: import('../..').HoneyCSSPropertyValue<"textEmphasisColor">;
|
|
353
|
-
$textEmphasisPosition?: import('../..').HoneyCSSPropertyValue<"textEmphasisPosition">;
|
|
354
|
-
$textEmphasisStyle?: import('../..').HoneyCSSPropertyValue<"textEmphasisStyle">;
|
|
355
|
-
$textIndent?: import('../..').HoneyCSSPropertyValue<"textIndent">;
|
|
356
|
-
$textJustify?: import('../..').HoneyCSSPropertyValue<"textJustify">;
|
|
357
|
-
$textOrientation?: import('../..').HoneyCSSPropertyValue<"textOrientation">;
|
|
358
|
-
$textOverflow?: import('../..').HoneyCSSPropertyValue<"textOverflow">;
|
|
359
|
-
$textRendering?: import('../..').HoneyCSSPropertyValue<"textRendering">;
|
|
360
|
-
$textShadow?: import('../..').HoneyCSSPropertyValue<"textShadow">;
|
|
361
|
-
$textSizeAdjust?: import('../..').HoneyCSSPropertyValue<"textSizeAdjust">;
|
|
362
|
-
$textTransform?: import('../..').HoneyCSSPropertyValue<"textTransform">;
|
|
363
|
-
$textUnderlineOffset?: import('../..').HoneyCSSPropertyValue<"textUnderlineOffset">;
|
|
364
|
-
$textUnderlinePosition?: import('../..').HoneyCSSPropertyValue<"textUnderlinePosition">;
|
|
365
|
-
$textWrap?: import('../..').HoneyCSSPropertyValue<"textWrap">;
|
|
366
|
-
$timelineScope?: import('../..').HoneyCSSPropertyValue<"timelineScope">;
|
|
367
|
-
$top?: import('../..').HoneyCSSPropertyValue<"top">;
|
|
368
|
-
$touchAction?: import('../..').HoneyCSSPropertyValue<"touchAction">;
|
|
369
|
-
$transform?: import('../..').HoneyCSSPropertyValue<"transform">;
|
|
370
|
-
$transformBox?: import('../..').HoneyCSSPropertyValue<"transformBox">;
|
|
371
|
-
$transformOrigin?: import('../..').HoneyCSSPropertyValue<"transformOrigin">;
|
|
372
|
-
$transformStyle?: import('../..').HoneyCSSPropertyValue<"transformStyle">;
|
|
373
|
-
$transitionBehavior?: import('../..').HoneyCSSPropertyValue<"transitionBehavior">;
|
|
374
|
-
$transitionDelay?: import('../..').HoneyCSSPropertyValue<"transitionDelay">;
|
|
375
|
-
$transitionDuration?: import('../..').HoneyCSSPropertyValue<"transitionDuration">;
|
|
376
|
-
$transitionProperty?: import('../..').HoneyCSSPropertyValue<"transitionProperty">;
|
|
377
|
-
$transitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"transitionTimingFunction">;
|
|
378
|
-
$translate?: import('../..').HoneyCSSPropertyValue<"translate">;
|
|
379
|
-
$unicodeBidi?: import('../..').HoneyCSSPropertyValue<"unicodeBidi">;
|
|
380
|
-
$userSelect?: import('../..').HoneyCSSPropertyValue<"userSelect">;
|
|
381
|
-
$verticalAlign?: import('../..').HoneyCSSPropertyValue<"verticalAlign">;
|
|
382
|
-
$viewTimelineAxis?: import('../..').HoneyCSSPropertyValue<"viewTimelineAxis">;
|
|
383
|
-
$viewTimelineInset?: import('../..').HoneyCSSPropertyValue<"viewTimelineInset">;
|
|
384
|
-
$viewTimelineName?: import('../..').HoneyCSSPropertyValue<"viewTimelineName">;
|
|
385
|
-
$viewTransitionName?: import('../..').HoneyCSSPropertyValue<"viewTransitionName">;
|
|
386
|
-
$visibility?: import('../..').HoneyCSSPropertyValue<"visibility">;
|
|
387
|
-
$whiteSpace?: import('../..').HoneyCSSPropertyValue<"whiteSpace">;
|
|
388
|
-
$whiteSpaceCollapse?: import('../..').HoneyCSSPropertyValue<"whiteSpaceCollapse">;
|
|
389
|
-
$whiteSpaceTrim?: import('../..').HoneyCSSPropertyValue<"whiteSpaceTrim">;
|
|
390
|
-
$widows?: import('../..').HoneyCSSPropertyValue<"widows">;
|
|
391
|
-
$width?: import('../..').HoneyCSSPropertyValue<"width">;
|
|
392
|
-
$willChange?: import('../..').HoneyCSSPropertyValue<"willChange">;
|
|
393
|
-
$wordBreak?: import('../..').HoneyCSSPropertyValue<"wordBreak">;
|
|
394
|
-
$wordSpacing?: import('../..').HoneyCSSPropertyValue<"wordSpacing">;
|
|
395
|
-
$wordWrap?: import('../..').HoneyCSSPropertyValue<"wordWrap">;
|
|
396
|
-
$writingMode?: import('../..').HoneyCSSPropertyValue<"writingMode">;
|
|
397
|
-
$zIndex?: import('../..').HoneyCSSPropertyValue<"zIndex">;
|
|
398
|
-
$zoom?: import('../..').HoneyCSSPropertyValue<"zoom">;
|
|
399
|
-
$all?: import('../..').HoneyCSSPropertyValue<"all">;
|
|
400
|
-
$animation?: import('../..').HoneyCSSPropertyValue<"animation">;
|
|
401
|
-
$animationRange?: import('../..').HoneyCSSPropertyValue<"animationRange">;
|
|
402
|
-
$background?: import('../..').HoneyCSSPropertyValue<"background">;
|
|
403
|
-
$backgroundPosition?: import('../..').HoneyCSSPropertyValue<"backgroundPosition">;
|
|
404
|
-
$border?: import('../..').HoneyCSSPropertyValue<"border">;
|
|
405
|
-
$borderBlock?: import('../..').HoneyCSSPropertyValue<"borderBlock">;
|
|
406
|
-
$borderBlockEnd?: import('../..').HoneyCSSPropertyValue<"borderBlockEnd">;
|
|
407
|
-
$borderBlockStart?: import('../..').HoneyCSSPropertyValue<"borderBlockStart">;
|
|
408
|
-
$borderBottom?: import('../..').HoneyCSSPropertyValue<"borderBottom">;
|
|
409
|
-
$borderColor?: import('../..').HoneyCSSPropertyValue<"borderColor"> | undefined;
|
|
410
|
-
$borderImage?: import('../..').HoneyCSSPropertyValue<"borderImage">;
|
|
411
|
-
$borderInline?: import('../..').HoneyCSSPropertyValue<"borderInline">;
|
|
412
|
-
$borderInlineEnd?: import('../..').HoneyCSSPropertyValue<"borderInlineEnd">;
|
|
413
|
-
$borderInlineStart?: import('../..').HoneyCSSPropertyValue<"borderInlineStart">;
|
|
414
|
-
$borderLeft?: import('../..').HoneyCSSPropertyValue<"borderLeft">;
|
|
415
|
-
$borderRadius?: import('../..').HoneyCSSPropertyValue<"borderRadius">;
|
|
416
|
-
$borderRight?: import('../..').HoneyCSSPropertyValue<"borderRight">;
|
|
417
|
-
$borderStyle?: import('../..').HoneyCSSPropertyValue<"borderStyle">;
|
|
418
|
-
$borderTop?: import('../..').HoneyCSSPropertyValue<"borderTop">;
|
|
419
|
-
$borderWidth?: import('../..').HoneyCSSPropertyValue<"borderWidth">;
|
|
420
|
-
$caret?: import('../..').HoneyCSSPropertyValue<"caret">;
|
|
421
|
-
$columnRule?: import('../..').HoneyCSSPropertyValue<"columnRule">;
|
|
422
|
-
$columns?: import('../..').HoneyCSSPropertyValue<"columns">;
|
|
423
|
-
$containIntrinsicSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicSize">;
|
|
424
|
-
$container?: import('../..').HoneyCSSPropertyValue<"container">;
|
|
425
|
-
$flex?: import('../..').HoneyCSSPropertyValue<"flex">;
|
|
426
|
-
$flexFlow?: import('../..').HoneyCSSPropertyValue<"flexFlow">;
|
|
427
|
-
$font?: import('../..').HoneyCSSPropertyValue<"font">;
|
|
428
|
-
$gap?: import('../..').HoneyCSSPropertyValue<"gap">;
|
|
429
|
-
$grid?: import('../..').HoneyCSSPropertyValue<"grid">;
|
|
430
|
-
$gridArea?: import('../..').HoneyCSSPropertyValue<"gridArea">;
|
|
431
|
-
$gridColumn?: import('../..').HoneyCSSPropertyValue<"gridColumn">;
|
|
432
|
-
$gridRow?: import('../..').HoneyCSSPropertyValue<"gridRow">;
|
|
433
|
-
$gridTemplate?: import('../..').HoneyCSSPropertyValue<"gridTemplate">;
|
|
434
|
-
$inset?: import('../..').HoneyCSSPropertyValue<"inset">;
|
|
435
|
-
$insetBlock?: import('../..').HoneyCSSPropertyValue<"insetBlock">;
|
|
436
|
-
$insetInline?: import('../..').HoneyCSSPropertyValue<"insetInline">;
|
|
437
|
-
$lineClamp?: import('../..').HoneyCSSPropertyValue<"lineClamp">;
|
|
438
|
-
$listStyle?: import('../..').HoneyCSSPropertyValue<"listStyle">;
|
|
439
|
-
$margin?: import('../..').HoneyCSSPropertyValue<"margin">;
|
|
440
|
-
$marginBlock?: import('../..').HoneyCSSPropertyValue<"marginBlock">;
|
|
441
|
-
$marginInline?: import('../..').HoneyCSSPropertyValue<"marginInline">;
|
|
442
|
-
$mask?: import('../..').HoneyCSSPropertyValue<"mask">;
|
|
443
|
-
$maskBorder?: import('../..').HoneyCSSPropertyValue<"maskBorder">;
|
|
444
|
-
$motion?: import('../..').HoneyCSSPropertyValue<"motion">;
|
|
445
|
-
$offset?: import('../..').HoneyCSSPropertyValue<"offset">;
|
|
446
|
-
$outline?: import('../..').HoneyCSSPropertyValue<"outline">;
|
|
447
|
-
$overflow?: import('../..').HoneyCSSPropertyValue<"overflow">;
|
|
448
|
-
$overscrollBehavior?: import('../..').HoneyCSSPropertyValue<"overscrollBehavior">;
|
|
449
|
-
$padding?: import('../..').HoneyCSSPropertyValue<"padding">;
|
|
450
|
-
$paddingBlock?: import('../..').HoneyCSSPropertyValue<"paddingBlock">;
|
|
451
|
-
$paddingInline?: import('../..').HoneyCSSPropertyValue<"paddingInline">;
|
|
452
|
-
$placeContent?: import('../..').HoneyCSSPropertyValue<"placeContent">;
|
|
453
|
-
$placeItems?: import('../..').HoneyCSSPropertyValue<"placeItems">;
|
|
454
|
-
$placeSelf?: import('../..').HoneyCSSPropertyValue<"placeSelf">;
|
|
455
|
-
$scrollMargin?: import('../..').HoneyCSSPropertyValue<"scrollMargin">;
|
|
456
|
-
$scrollMarginBlock?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlock">;
|
|
457
|
-
$scrollMarginInline?: import('../..').HoneyCSSPropertyValue<"scrollMarginInline">;
|
|
458
|
-
$scrollPadding?: import('../..').HoneyCSSPropertyValue<"scrollPadding">;
|
|
459
|
-
$scrollPaddingBlock?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlock">;
|
|
460
|
-
$scrollPaddingInline?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInline">;
|
|
461
|
-
$scrollSnapMargin?: import('../..').HoneyCSSPropertyValue<"scrollSnapMargin">;
|
|
462
|
-
$scrollTimeline?: import('../..').HoneyCSSPropertyValue<"scrollTimeline">;
|
|
463
|
-
$textDecoration?: import('../..').HoneyCSSPropertyValue<"textDecoration">;
|
|
464
|
-
$textEmphasis?: import('../..').HoneyCSSPropertyValue<"textEmphasis">;
|
|
465
|
-
$transition?: import('../..').HoneyCSSPropertyValue<"transition">;
|
|
466
|
-
$viewTimeline?: import('../..').HoneyCSSPropertyValue<"viewTimeline">;
|
|
467
|
-
$MozAnimationDelay?: import('../..').HoneyCSSPropertyValue<"MozAnimationDelay">;
|
|
468
|
-
$MozAnimationDirection?: import('../..').HoneyCSSPropertyValue<"MozAnimationDirection">;
|
|
469
|
-
$MozAnimationDuration?: import('../..').HoneyCSSPropertyValue<"MozAnimationDuration">;
|
|
470
|
-
$MozAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"MozAnimationFillMode">;
|
|
471
|
-
$MozAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"MozAnimationIterationCount">;
|
|
472
|
-
$MozAnimationName?: import('../..').HoneyCSSPropertyValue<"MozAnimationName">;
|
|
473
|
-
$MozAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"MozAnimationPlayState">;
|
|
474
|
-
$MozAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"MozAnimationTimingFunction">;
|
|
475
|
-
$MozAppearance?: import('../..').HoneyCSSPropertyValue<"MozAppearance">;
|
|
476
|
-
$MozBinding?: import('../..').HoneyCSSPropertyValue<"MozBinding">;
|
|
477
|
-
$MozBorderBottomColors?: import('../..').HoneyCSSPropertyValue<"MozBorderBottomColors">;
|
|
478
|
-
$MozBorderEndColor?: import('../..').HoneyCSSPropertyValue<"MozBorderEndColor">;
|
|
479
|
-
$MozBorderEndStyle?: import('../..').HoneyCSSPropertyValue<"MozBorderEndStyle">;
|
|
480
|
-
$MozBorderEndWidth?: import('../..').HoneyCSSPropertyValue<"MozBorderEndWidth">;
|
|
481
|
-
$MozBorderLeftColors?: import('../..').HoneyCSSPropertyValue<"MozBorderLeftColors">;
|
|
482
|
-
$MozBorderRightColors?: import('../..').HoneyCSSPropertyValue<"MozBorderRightColors">;
|
|
483
|
-
$MozBorderStartColor?: import('../..').HoneyCSSPropertyValue<"MozBorderStartColor">;
|
|
484
|
-
$MozBorderStartStyle?: import('../..').HoneyCSSPropertyValue<"MozBorderStartStyle">;
|
|
485
|
-
$MozBorderTopColors?: import('../..').HoneyCSSPropertyValue<"MozBorderTopColors">;
|
|
486
|
-
$MozBoxSizing?: import('../..').HoneyCSSPropertyValue<"MozBoxSizing">;
|
|
487
|
-
$MozColumnCount?: import('../..').HoneyCSSPropertyValue<"MozColumnCount">;
|
|
488
|
-
$MozColumnFill?: import('../..').HoneyCSSPropertyValue<"MozColumnFill">;
|
|
489
|
-
$MozColumnRuleColor?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleColor">;
|
|
490
|
-
$MozColumnRuleStyle?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleStyle">;
|
|
491
|
-
$MozColumnRuleWidth?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleWidth">;
|
|
492
|
-
$MozColumnWidth?: import('../..').HoneyCSSPropertyValue<"MozColumnWidth">;
|
|
493
|
-
$MozContextProperties?: import('../..').HoneyCSSPropertyValue<"MozContextProperties">;
|
|
494
|
-
$MozFontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"MozFontFeatureSettings">;
|
|
495
|
-
$MozFontLanguageOverride?: import('../..').HoneyCSSPropertyValue<"MozFontLanguageOverride">;
|
|
496
|
-
$MozHyphens?: import('../..').HoneyCSSPropertyValue<"MozHyphens">;
|
|
497
|
-
$MozImageRegion?: import('../..').HoneyCSSPropertyValue<"MozImageRegion">;
|
|
498
|
-
$MozMarginEnd?: import('../..').HoneyCSSPropertyValue<"MozMarginEnd">;
|
|
499
|
-
$MozMarginStart?: import('../..').HoneyCSSPropertyValue<"MozMarginStart">;
|
|
500
|
-
$MozOrient?: import('../..').HoneyCSSPropertyValue<"MozOrient">;
|
|
501
|
-
$MozOsxFontSmoothing?: import('../..').HoneyCSSPropertyValue<"MozOsxFontSmoothing">;
|
|
502
|
-
$MozOutlineRadiusBottomleft?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusBottomleft">;
|
|
503
|
-
$MozOutlineRadiusBottomright?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusBottomright">;
|
|
504
|
-
$MozOutlineRadiusTopleft?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusTopleft">;
|
|
505
|
-
$MozOutlineRadiusTopright?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusTopright">;
|
|
506
|
-
$MozPaddingEnd?: import('../..').HoneyCSSPropertyValue<"MozPaddingEnd">;
|
|
507
|
-
$MozPaddingStart?: import('../..').HoneyCSSPropertyValue<"MozPaddingStart">;
|
|
508
|
-
$MozStackSizing?: import('../..').HoneyCSSPropertyValue<"MozStackSizing">;
|
|
509
|
-
$MozTabSize?: import('../..').HoneyCSSPropertyValue<"MozTabSize">;
|
|
510
|
-
$MozTextBlink?: import('../..').HoneyCSSPropertyValue<"MozTextBlink">;
|
|
511
|
-
$MozTextSizeAdjust?: import('../..').HoneyCSSPropertyValue<"MozTextSizeAdjust">;
|
|
512
|
-
$MozUserFocus?: import('../..').HoneyCSSPropertyValue<"MozUserFocus">;
|
|
513
|
-
$MozUserModify?: import('../..').HoneyCSSPropertyValue<"MozUserModify">;
|
|
514
|
-
$MozUserSelect?: import('../..').HoneyCSSPropertyValue<"MozUserSelect">;
|
|
515
|
-
$MozWindowDragging?: import('../..').HoneyCSSPropertyValue<"MozWindowDragging">;
|
|
516
|
-
$MozWindowShadow?: import('../..').HoneyCSSPropertyValue<"MozWindowShadow">;
|
|
517
|
-
$msAccelerator?: import('../..').HoneyCSSPropertyValue<"msAccelerator">;
|
|
518
|
-
$msBlockProgression?: import('../..').HoneyCSSPropertyValue<"msBlockProgression">;
|
|
519
|
-
$msContentZoomChaining?: import('../..').HoneyCSSPropertyValue<"msContentZoomChaining">;
|
|
520
|
-
$msContentZoomLimitMax?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimitMax">;
|
|
521
|
-
$msContentZoomLimitMin?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimitMin">;
|
|
522
|
-
$msContentZoomSnapPoints?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnapPoints">;
|
|
523
|
-
$msContentZoomSnapType?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnapType">;
|
|
524
|
-
$msContentZooming?: import('../..').HoneyCSSPropertyValue<"msContentZooming">;
|
|
525
|
-
$msFilter?: import('../..').HoneyCSSPropertyValue<"msFilter">;
|
|
526
|
-
$msFlexDirection?: import('../..').HoneyCSSPropertyValue<"msFlexDirection">;
|
|
527
|
-
$msFlexPositive?: import('../..').HoneyCSSPropertyValue<"msFlexPositive">;
|
|
528
|
-
$msFlowFrom?: import('../..').HoneyCSSPropertyValue<"msFlowFrom">;
|
|
529
|
-
$msFlowInto?: import('../..').HoneyCSSPropertyValue<"msFlowInto">;
|
|
530
|
-
$msGridColumns?: import('../..').HoneyCSSPropertyValue<"msGridColumns">;
|
|
531
|
-
$msGridRows?: import('../..').HoneyCSSPropertyValue<"msGridRows">;
|
|
532
|
-
$msHighContrastAdjust?: import('../..').HoneyCSSPropertyValue<"msHighContrastAdjust">;
|
|
533
|
-
$msHyphenateLimitChars?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitChars">;
|
|
534
|
-
$msHyphenateLimitLines?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitLines">;
|
|
535
|
-
$msHyphenateLimitZone?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitZone">;
|
|
536
|
-
$msHyphens?: import('../..').HoneyCSSPropertyValue<"msHyphens">;
|
|
537
|
-
$msImeAlign?: import('../..').HoneyCSSPropertyValue<"msImeAlign">;
|
|
538
|
-
$msLineBreak?: import('../..').HoneyCSSPropertyValue<"msLineBreak">;
|
|
539
|
-
$msOrder?: import('../..').HoneyCSSPropertyValue<"msOrder">;
|
|
540
|
-
$msOverflowStyle?: import('../..').HoneyCSSPropertyValue<"msOverflowStyle">;
|
|
541
|
-
$msOverflowX?: import('../..').HoneyCSSPropertyValue<"msOverflowX">;
|
|
542
|
-
$msOverflowY?: import('../..').HoneyCSSPropertyValue<"msOverflowY">;
|
|
543
|
-
$msScrollChaining?: import('../..').HoneyCSSPropertyValue<"msScrollChaining">;
|
|
544
|
-
$msScrollLimitXMax?: import('../..').HoneyCSSPropertyValue<"msScrollLimitXMax">;
|
|
545
|
-
$msScrollLimitXMin?: import('../..').HoneyCSSPropertyValue<"msScrollLimitXMin">;
|
|
546
|
-
$msScrollLimitYMax?: import('../..').HoneyCSSPropertyValue<"msScrollLimitYMax">;
|
|
547
|
-
$msScrollLimitYMin?: import('../..').HoneyCSSPropertyValue<"msScrollLimitYMin">;
|
|
548
|
-
$msScrollRails?: import('../..').HoneyCSSPropertyValue<"msScrollRails">;
|
|
549
|
-
$msScrollSnapPointsX?: import('../..').HoneyCSSPropertyValue<"msScrollSnapPointsX">;
|
|
550
|
-
$msScrollSnapPointsY?: import('../..').HoneyCSSPropertyValue<"msScrollSnapPointsY">;
|
|
551
|
-
$msScrollSnapType?: import('../..').HoneyCSSPropertyValue<"msScrollSnapType">;
|
|
552
|
-
$msScrollTranslation?: import('../..').HoneyCSSPropertyValue<"msScrollTranslation">;
|
|
553
|
-
$msScrollbar3dlightColor?: import('../..').HoneyCSSPropertyValue<"msScrollbar3dlightColor">;
|
|
554
|
-
$msScrollbarArrowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarArrowColor">;
|
|
555
|
-
$msScrollbarBaseColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarBaseColor">;
|
|
556
|
-
$msScrollbarDarkshadowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarDarkshadowColor">;
|
|
557
|
-
$msScrollbarFaceColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarFaceColor">;
|
|
558
|
-
$msScrollbarHighlightColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarHighlightColor">;
|
|
559
|
-
$msScrollbarShadowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarShadowColor">;
|
|
560
|
-
$msScrollbarTrackColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarTrackColor">;
|
|
561
|
-
$msTextAutospace?: import('../..').HoneyCSSPropertyValue<"msTextAutospace">;
|
|
562
|
-
$msTextCombineHorizontal?: import('../..').HoneyCSSPropertyValue<"msTextCombineHorizontal">;
|
|
563
|
-
$msTextOverflow?: import('../..').HoneyCSSPropertyValue<"msTextOverflow">;
|
|
564
|
-
$msTouchAction?: import('../..').HoneyCSSPropertyValue<"msTouchAction">;
|
|
565
|
-
$msTouchSelect?: import('../..').HoneyCSSPropertyValue<"msTouchSelect">;
|
|
566
|
-
$msTransform?: import('../..').HoneyCSSPropertyValue<"msTransform">;
|
|
567
|
-
$msTransformOrigin?: import('../..').HoneyCSSPropertyValue<"msTransformOrigin">;
|
|
568
|
-
$msTransitionDelay?: import('../..').HoneyCSSPropertyValue<"msTransitionDelay">;
|
|
569
|
-
$msTransitionDuration?: import('../..').HoneyCSSPropertyValue<"msTransitionDuration">;
|
|
570
|
-
$msTransitionProperty?: import('../..').HoneyCSSPropertyValue<"msTransitionProperty">;
|
|
571
|
-
$msTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"msTransitionTimingFunction">;
|
|
572
|
-
$msUserSelect?: import('../..').HoneyCSSPropertyValue<"msUserSelect">;
|
|
573
|
-
$msWordBreak?: import('../..').HoneyCSSPropertyValue<"msWordBreak">;
|
|
574
|
-
$msWrapFlow?: import('../..').HoneyCSSPropertyValue<"msWrapFlow">;
|
|
575
|
-
$msWrapMargin?: import('../..').HoneyCSSPropertyValue<"msWrapMargin">;
|
|
576
|
-
$msWrapThrough?: import('../..').HoneyCSSPropertyValue<"msWrapThrough">;
|
|
577
|
-
$msWritingMode?: import('../..').HoneyCSSPropertyValue<"msWritingMode">;
|
|
578
|
-
$WebkitAlignContent?: import('../..').HoneyCSSPropertyValue<"WebkitAlignContent">;
|
|
579
|
-
$WebkitAlignItems?: import('../..').HoneyCSSPropertyValue<"WebkitAlignItems">;
|
|
580
|
-
$WebkitAlignSelf?: import('../..').HoneyCSSPropertyValue<"WebkitAlignSelf">;
|
|
581
|
-
$WebkitAnimationDelay?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDelay">;
|
|
582
|
-
$WebkitAnimationDirection?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDirection">;
|
|
583
|
-
$WebkitAnimationDuration?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDuration">;
|
|
584
|
-
$WebkitAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationFillMode">;
|
|
585
|
-
$WebkitAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationIterationCount">;
|
|
586
|
-
$WebkitAnimationName?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationName">;
|
|
587
|
-
$WebkitAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationPlayState">;
|
|
588
|
-
$WebkitAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationTimingFunction">;
|
|
589
|
-
$WebkitAppearance?: import('../..').HoneyCSSPropertyValue<"WebkitAppearance">;
|
|
590
|
-
$WebkitBackdropFilter?: import('../..').HoneyCSSPropertyValue<"WebkitBackdropFilter">;
|
|
591
|
-
$WebkitBackfaceVisibility?: import('../..').HoneyCSSPropertyValue<"WebkitBackfaceVisibility">;
|
|
592
|
-
$WebkitBackgroundClip?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundClip">;
|
|
593
|
-
$WebkitBackgroundOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundOrigin">;
|
|
594
|
-
$WebkitBackgroundSize?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundSize">;
|
|
595
|
-
$WebkitBorderBeforeColor?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeColor">;
|
|
596
|
-
$WebkitBorderBeforeStyle?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeStyle">;
|
|
597
|
-
$WebkitBorderBeforeWidth?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeWidth">;
|
|
598
|
-
$WebkitBorderBottomLeftRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBottomLeftRadius">;
|
|
599
|
-
$WebkitBorderBottomRightRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBottomRightRadius">;
|
|
600
|
-
$WebkitBorderImageSlice?: import('../..').HoneyCSSPropertyValue<"WebkitBorderImageSlice">;
|
|
601
|
-
$WebkitBorderTopLeftRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderTopLeftRadius">;
|
|
602
|
-
$WebkitBorderTopRightRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderTopRightRadius">;
|
|
603
|
-
$WebkitBoxDecorationBreak?: import('../..').HoneyCSSPropertyValue<"WebkitBoxDecorationBreak">;
|
|
604
|
-
$WebkitBoxReflect?: import('../..').HoneyCSSPropertyValue<"WebkitBoxReflect">;
|
|
605
|
-
$WebkitBoxShadow?: import('../..').HoneyCSSPropertyValue<"WebkitBoxShadow">;
|
|
606
|
-
$WebkitBoxSizing?: import('../..').HoneyCSSPropertyValue<"WebkitBoxSizing">;
|
|
607
|
-
$WebkitClipPath?: import('../..').HoneyCSSPropertyValue<"WebkitClipPath">;
|
|
608
|
-
$WebkitColumnCount?: import('../..').HoneyCSSPropertyValue<"WebkitColumnCount">;
|
|
609
|
-
$WebkitColumnFill?: import('../..').HoneyCSSPropertyValue<"WebkitColumnFill">;
|
|
610
|
-
$WebkitColumnRuleColor?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleColor">;
|
|
611
|
-
$WebkitColumnRuleStyle?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleStyle">;
|
|
612
|
-
$WebkitColumnRuleWidth?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleWidth">;
|
|
613
|
-
$WebkitColumnSpan?: import('../..').HoneyCSSPropertyValue<"WebkitColumnSpan">;
|
|
614
|
-
$WebkitColumnWidth?: import('../..').HoneyCSSPropertyValue<"WebkitColumnWidth">;
|
|
615
|
-
$WebkitFilter?: import('../..').HoneyCSSPropertyValue<"WebkitFilter">;
|
|
616
|
-
$WebkitFlexBasis?: import('../..').HoneyCSSPropertyValue<"WebkitFlexBasis">;
|
|
617
|
-
$WebkitFlexDirection?: import('../..').HoneyCSSPropertyValue<"WebkitFlexDirection">;
|
|
618
|
-
$WebkitFlexGrow?: import('../..').HoneyCSSPropertyValue<"WebkitFlexGrow">;
|
|
619
|
-
$WebkitFlexShrink?: import('../..').HoneyCSSPropertyValue<"WebkitFlexShrink">;
|
|
620
|
-
$WebkitFlexWrap?: import('../..').HoneyCSSPropertyValue<"WebkitFlexWrap">;
|
|
621
|
-
$WebkitFontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"WebkitFontFeatureSettings">;
|
|
622
|
-
$WebkitFontKerning?: import('../..').HoneyCSSPropertyValue<"WebkitFontKerning">;
|
|
623
|
-
$WebkitFontSmoothing?: import('../..').HoneyCSSPropertyValue<"WebkitFontSmoothing">;
|
|
624
|
-
$WebkitFontVariantLigatures?: import('../..').HoneyCSSPropertyValue<"WebkitFontVariantLigatures">;
|
|
625
|
-
$WebkitHyphenateCharacter?: import('../..').HoneyCSSPropertyValue<"WebkitHyphenateCharacter">;
|
|
626
|
-
$WebkitHyphens?: import('../..').HoneyCSSPropertyValue<"WebkitHyphens">;
|
|
627
|
-
$WebkitInitialLetter?: import('../..').HoneyCSSPropertyValue<"WebkitInitialLetter">;
|
|
628
|
-
$WebkitJustifyContent?: import('../..').HoneyCSSPropertyValue<"WebkitJustifyContent">;
|
|
629
|
-
$WebkitLineBreak?: import('../..').HoneyCSSPropertyValue<"WebkitLineBreak">;
|
|
630
|
-
$WebkitLineClamp?: import('../..').HoneyCSSPropertyValue<"WebkitLineClamp">;
|
|
631
|
-
$WebkitMarginEnd?: import('../..').HoneyCSSPropertyValue<"WebkitMarginEnd">;
|
|
632
|
-
$WebkitMarginStart?: import('../..').HoneyCSSPropertyValue<"WebkitMarginStart">;
|
|
633
|
-
$WebkitMaskAttachment?: import('../..').HoneyCSSPropertyValue<"WebkitMaskAttachment">;
|
|
634
|
-
$WebkitMaskBoxImageOutset?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageOutset">;
|
|
635
|
-
$WebkitMaskBoxImageRepeat?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageRepeat">;
|
|
636
|
-
$WebkitMaskBoxImageSlice?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageSlice">;
|
|
637
|
-
$WebkitMaskBoxImageSource?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageSource">;
|
|
638
|
-
$WebkitMaskBoxImageWidth?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageWidth">;
|
|
639
|
-
$WebkitMaskClip?: import('../..').HoneyCSSPropertyValue<"WebkitMaskClip">;
|
|
640
|
-
$WebkitMaskComposite?: import('../..').HoneyCSSPropertyValue<"WebkitMaskComposite">;
|
|
641
|
-
$WebkitMaskImage?: import('../..').HoneyCSSPropertyValue<"WebkitMaskImage">;
|
|
642
|
-
$WebkitMaskOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitMaskOrigin">;
|
|
643
|
-
$WebkitMaskPosition?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPosition">;
|
|
644
|
-
$WebkitMaskPositionX?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPositionX">;
|
|
645
|
-
$WebkitMaskPositionY?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPositionY">;
|
|
646
|
-
$WebkitMaskRepeat?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeat">;
|
|
647
|
-
$WebkitMaskRepeatX?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeatX">;
|
|
648
|
-
$WebkitMaskRepeatY?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeatY">;
|
|
649
|
-
$WebkitMaskSize?: import('../..').HoneyCSSPropertyValue<"WebkitMaskSize">;
|
|
650
|
-
$WebkitMaxInlineSize?: import('../..').HoneyCSSPropertyValue<"WebkitMaxInlineSize">;
|
|
651
|
-
$WebkitOrder?: import('../..').HoneyCSSPropertyValue<"WebkitOrder">;
|
|
652
|
-
$WebkitOverflowScrolling?: import('../..').HoneyCSSPropertyValue<"WebkitOverflowScrolling">;
|
|
653
|
-
$WebkitPaddingEnd?: import('../..').HoneyCSSPropertyValue<"WebkitPaddingEnd">;
|
|
654
|
-
$WebkitPaddingStart?: import('../..').HoneyCSSPropertyValue<"WebkitPaddingStart">;
|
|
655
|
-
$WebkitPerspective?: import('../..').HoneyCSSPropertyValue<"WebkitPerspective">;
|
|
656
|
-
$WebkitPerspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitPerspectiveOrigin">;
|
|
657
|
-
$WebkitPrintColorAdjust?: import('../..').HoneyCSSPropertyValue<"WebkitPrintColorAdjust">;
|
|
658
|
-
$WebkitRubyPosition?: import('../..').HoneyCSSPropertyValue<"WebkitRubyPosition">;
|
|
659
|
-
$WebkitScrollSnapType?: import('../..').HoneyCSSPropertyValue<"WebkitScrollSnapType">;
|
|
660
|
-
$WebkitShapeMargin?: import('../..').HoneyCSSPropertyValue<"WebkitShapeMargin">;
|
|
661
|
-
$WebkitTapHighlightColor?: import('../..').HoneyCSSPropertyValue<"WebkitTapHighlightColor">;
|
|
662
|
-
$WebkitTextCombine?: import('../..').HoneyCSSPropertyValue<"WebkitTextCombine">;
|
|
663
|
-
$WebkitTextDecorationColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationColor">;
|
|
664
|
-
$WebkitTextDecorationLine?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationLine">;
|
|
665
|
-
$WebkitTextDecorationSkip?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationSkip">;
|
|
666
|
-
$WebkitTextDecorationStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationStyle">;
|
|
667
|
-
$WebkitTextEmphasisColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisColor">;
|
|
668
|
-
$WebkitTextEmphasisPosition?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisPosition">;
|
|
669
|
-
$WebkitTextEmphasisStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisStyle">;
|
|
670
|
-
$WebkitTextFillColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextFillColor">;
|
|
671
|
-
$WebkitTextOrientation?: import('../..').HoneyCSSPropertyValue<"WebkitTextOrientation">;
|
|
672
|
-
$WebkitTextSizeAdjust?: import('../..').HoneyCSSPropertyValue<"WebkitTextSizeAdjust">;
|
|
673
|
-
$WebkitTextStrokeColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextStrokeColor">;
|
|
674
|
-
$WebkitTextStrokeWidth?: import('../..').HoneyCSSPropertyValue<"WebkitTextStrokeWidth">;
|
|
675
|
-
$WebkitTextUnderlinePosition?: import('../..').HoneyCSSPropertyValue<"WebkitTextUnderlinePosition">;
|
|
676
|
-
$WebkitTouchCallout?: import('../..').HoneyCSSPropertyValue<"WebkitTouchCallout">;
|
|
677
|
-
$WebkitTransform?: import('../..').HoneyCSSPropertyValue<"WebkitTransform">;
|
|
678
|
-
$WebkitTransformOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitTransformOrigin">;
|
|
679
|
-
$WebkitTransformStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTransformStyle">;
|
|
680
|
-
$WebkitTransitionDelay?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionDelay">;
|
|
681
|
-
$WebkitTransitionDuration?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionDuration">;
|
|
682
|
-
$WebkitTransitionProperty?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionProperty">;
|
|
683
|
-
$WebkitTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionTimingFunction">;
|
|
684
|
-
$WebkitUserModify?: import('../..').HoneyCSSPropertyValue<"WebkitUserModify">;
|
|
685
|
-
$WebkitUserSelect?: import('../..').HoneyCSSPropertyValue<"WebkitUserSelect">;
|
|
686
|
-
$WebkitWritingMode?: import('../..').HoneyCSSPropertyValue<"WebkitWritingMode">;
|
|
687
|
-
$MozAnimation?: import('../..').HoneyCSSPropertyValue<"MozAnimation">;
|
|
688
|
-
$MozBorderImage?: import('../..').HoneyCSSPropertyValue<"MozBorderImage">;
|
|
689
|
-
$MozColumnRule?: import('../..').HoneyCSSPropertyValue<"MozColumnRule">;
|
|
690
|
-
$MozColumns?: import('../..').HoneyCSSPropertyValue<"MozColumns">;
|
|
691
|
-
$MozOutlineRadius?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadius">;
|
|
692
|
-
$msContentZoomLimit?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimit">;
|
|
693
|
-
$msContentZoomSnap?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnap">;
|
|
694
|
-
$msFlex?: import('../..').HoneyCSSPropertyValue<"msFlex">;
|
|
695
|
-
$msScrollLimit?: import('../..').HoneyCSSPropertyValue<"msScrollLimit">;
|
|
696
|
-
$msScrollSnapX?: import('../..').HoneyCSSPropertyValue<"msScrollSnapX">;
|
|
697
|
-
$msScrollSnapY?: import('../..').HoneyCSSPropertyValue<"msScrollSnapY">;
|
|
698
|
-
$msTransition?: import('../..').HoneyCSSPropertyValue<"msTransition">;
|
|
699
|
-
$WebkitAnimation?: import('../..').HoneyCSSPropertyValue<"WebkitAnimation">;
|
|
700
|
-
$WebkitBorderBefore?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBefore">;
|
|
701
|
-
$WebkitBorderImage?: import('../..').HoneyCSSPropertyValue<"WebkitBorderImage">;
|
|
702
|
-
$WebkitBorderRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderRadius">;
|
|
703
|
-
$WebkitColumnRule?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRule">;
|
|
704
|
-
$WebkitColumns?: import('../..').HoneyCSSPropertyValue<"WebkitColumns">;
|
|
705
|
-
$WebkitFlex?: import('../..').HoneyCSSPropertyValue<"WebkitFlex">;
|
|
706
|
-
$WebkitFlexFlow?: import('../..').HoneyCSSPropertyValue<"WebkitFlexFlow">;
|
|
707
|
-
$WebkitMask?: import('../..').HoneyCSSPropertyValue<"WebkitMask">;
|
|
708
|
-
$WebkitMaskBoxImage?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImage">;
|
|
709
|
-
$WebkitTextEmphasis?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasis">;
|
|
710
|
-
$WebkitTextStroke?: import('../..').HoneyCSSPropertyValue<"WebkitTextStroke">;
|
|
711
|
-
$WebkitTransition?: import('../..').HoneyCSSPropertyValue<"WebkitTransition">;
|
|
712
|
-
$azimuth?: import('../..').HoneyCSSPropertyValue<"azimuth">;
|
|
713
|
-
$boxAlign?: import('../..').HoneyCSSPropertyValue<"boxAlign">;
|
|
714
|
-
$boxDirection?: import('../..').HoneyCSSPropertyValue<"boxDirection">;
|
|
715
|
-
$boxFlex?: import('../..').HoneyCSSPropertyValue<"boxFlex">;
|
|
716
|
-
$boxFlexGroup?: import('../..').HoneyCSSPropertyValue<"boxFlexGroup">;
|
|
717
|
-
$boxLines?: import('../..').HoneyCSSPropertyValue<"boxLines">;
|
|
718
|
-
$boxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"boxOrdinalGroup">;
|
|
719
|
-
$boxOrient?: import('../..').HoneyCSSPropertyValue<"boxOrient">;
|
|
720
|
-
$boxPack?: import('../..').HoneyCSSPropertyValue<"boxPack">;
|
|
721
|
-
$clip?: import('../..').HoneyCSSPropertyValue<"clip">;
|
|
722
|
-
$gridColumnGap?: import('../..').HoneyCSSPropertyValue<"gridColumnGap">;
|
|
723
|
-
$gridGap?: import('../..').HoneyCSSPropertyValue<"gridGap">;
|
|
724
|
-
$gridRowGap?: import('../..').HoneyCSSPropertyValue<"gridRowGap">;
|
|
725
|
-
$imeMode?: import('../..').HoneyCSSPropertyValue<"imeMode">;
|
|
726
|
-
$offsetBlock?: import('../..').HoneyCSSPropertyValue<"offsetBlock">;
|
|
727
|
-
$offsetBlockEnd?: import('../..').HoneyCSSPropertyValue<"offsetBlockEnd">;
|
|
728
|
-
$offsetBlockStart?: import('../..').HoneyCSSPropertyValue<"offsetBlockStart">;
|
|
729
|
-
$offsetInline?: import('../..').HoneyCSSPropertyValue<"offsetInline">;
|
|
730
|
-
$offsetInlineEnd?: import('../..').HoneyCSSPropertyValue<"offsetInlineEnd">;
|
|
731
|
-
$offsetInlineStart?: import('../..').HoneyCSSPropertyValue<"offsetInlineStart">;
|
|
732
|
-
$scrollSnapCoordinate?: import('../..').HoneyCSSPropertyValue<"scrollSnapCoordinate">;
|
|
733
|
-
$scrollSnapDestination?: import('../..').HoneyCSSPropertyValue<"scrollSnapDestination">;
|
|
734
|
-
$scrollSnapPointsX?: import('../..').HoneyCSSPropertyValue<"scrollSnapPointsX">;
|
|
735
|
-
$scrollSnapPointsY?: import('../..').HoneyCSSPropertyValue<"scrollSnapPointsY">;
|
|
736
|
-
$scrollSnapTypeX?: import('../..').HoneyCSSPropertyValue<"scrollSnapTypeX">;
|
|
737
|
-
$scrollSnapTypeY?: import('../..').HoneyCSSPropertyValue<"scrollSnapTypeY">;
|
|
738
|
-
$KhtmlBoxAlign?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxAlign">;
|
|
739
|
-
$KhtmlBoxDirection?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxDirection">;
|
|
740
|
-
$KhtmlBoxFlex?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxFlex">;
|
|
741
|
-
$KhtmlBoxFlexGroup?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxFlexGroup">;
|
|
742
|
-
$KhtmlBoxLines?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxLines">;
|
|
743
|
-
$KhtmlBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxOrdinalGroup">;
|
|
744
|
-
$KhtmlBoxOrient?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxOrient">;
|
|
745
|
-
$KhtmlBoxPack?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxPack">;
|
|
746
|
-
$KhtmlLineBreak?: import('../..').HoneyCSSPropertyValue<"KhtmlLineBreak">;
|
|
747
|
-
$KhtmlOpacity?: import('../..').HoneyCSSPropertyValue<"KhtmlOpacity">;
|
|
748
|
-
$KhtmlUserSelect?: import('../..').HoneyCSSPropertyValue<"KhtmlUserSelect">;
|
|
749
|
-
$MozBackfaceVisibility?: import('../..').HoneyCSSPropertyValue<"MozBackfaceVisibility">;
|
|
750
|
-
$MozBackgroundClip?: import('../..').HoneyCSSPropertyValue<"MozBackgroundClip">;
|
|
751
|
-
$MozBackgroundInlinePolicy?: import('../..').HoneyCSSPropertyValue<"MozBackgroundInlinePolicy">;
|
|
752
|
-
$MozBackgroundOrigin?: import('../..').HoneyCSSPropertyValue<"MozBackgroundOrigin">;
|
|
753
|
-
$MozBackgroundSize?: import('../..').HoneyCSSPropertyValue<"MozBackgroundSize">;
|
|
754
|
-
$MozBorderRadius?: import('../..').HoneyCSSPropertyValue<"MozBorderRadius">;
|
|
755
|
-
$MozBorderRadiusBottomleft?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusBottomleft">;
|
|
756
|
-
$MozBorderRadiusBottomright?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusBottomright">;
|
|
757
|
-
$MozBorderRadiusTopleft?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusTopleft">;
|
|
758
|
-
$MozBorderRadiusTopright?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusTopright">;
|
|
759
|
-
$MozBoxAlign?: import('../..').HoneyCSSPropertyValue<"MozBoxAlign">;
|
|
760
|
-
$MozBoxDirection?: import('../..').HoneyCSSPropertyValue<"MozBoxDirection">;
|
|
761
|
-
$MozBoxFlex?: import('../..').HoneyCSSPropertyValue<"MozBoxFlex">;
|
|
762
|
-
$MozBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"MozBoxOrdinalGroup">;
|
|
763
|
-
$MozBoxOrient?: import('../..').HoneyCSSPropertyValue<"MozBoxOrient">;
|
|
764
|
-
$MozBoxPack?: import('../..').HoneyCSSPropertyValue<"MozBoxPack">;
|
|
765
|
-
$MozBoxShadow?: import('../..').HoneyCSSPropertyValue<"MozBoxShadow">;
|
|
766
|
-
$MozFloatEdge?: import('../..').HoneyCSSPropertyValue<"MozFloatEdge">;
|
|
767
|
-
$MozForceBrokenImageIcon?: import('../..').HoneyCSSPropertyValue<"MozForceBrokenImageIcon">;
|
|
768
|
-
$MozOpacity?: import('../..').HoneyCSSPropertyValue<"MozOpacity">;
|
|
769
|
-
$MozOutline?: import('../..').HoneyCSSPropertyValue<"MozOutline">;
|
|
770
|
-
$MozOutlineColor?: import('../..').HoneyCSSPropertyValue<"MozOutlineColor">;
|
|
771
|
-
$MozOutlineStyle?: import('../..').HoneyCSSPropertyValue<"MozOutlineStyle">;
|
|
772
|
-
$MozOutlineWidth?: import('../..').HoneyCSSPropertyValue<"MozOutlineWidth">;
|
|
773
|
-
$MozPerspective?: import('../..').HoneyCSSPropertyValue<"MozPerspective">;
|
|
774
|
-
$MozPerspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"MozPerspectiveOrigin">;
|
|
775
|
-
$MozTextAlignLast?: import('../..').HoneyCSSPropertyValue<"MozTextAlignLast">;
|
|
776
|
-
$MozTextDecorationColor?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationColor">;
|
|
777
|
-
$MozTextDecorationLine?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationLine">;
|
|
778
|
-
$MozTextDecorationStyle?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationStyle">;
|
|
779
|
-
$MozTransform?: import('../..').HoneyCSSPropertyValue<"MozTransform">;
|
|
780
|
-
$MozTransformOrigin?: import('../..').HoneyCSSPropertyValue<"MozTransformOrigin">;
|
|
781
|
-
$MozTransformStyle?: import('../..').HoneyCSSPropertyValue<"MozTransformStyle">;
|
|
782
|
-
$MozTransition?: import('../..').HoneyCSSPropertyValue<"MozTransition">;
|
|
783
|
-
$MozTransitionDelay?: import('../..').HoneyCSSPropertyValue<"MozTransitionDelay">;
|
|
784
|
-
$MozTransitionDuration?: import('../..').HoneyCSSPropertyValue<"MozTransitionDuration">;
|
|
785
|
-
$MozTransitionProperty?: import('../..').HoneyCSSPropertyValue<"MozTransitionProperty">;
|
|
786
|
-
$MozTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"MozTransitionTimingFunction">;
|
|
787
|
-
$MozUserInput?: import('../..').HoneyCSSPropertyValue<"MozUserInput">;
|
|
788
|
-
$msImeMode?: import('../..').HoneyCSSPropertyValue<"msImeMode">;
|
|
789
|
-
$OAnimation?: import('../..').HoneyCSSPropertyValue<"OAnimation">;
|
|
790
|
-
$OAnimationDelay?: import('../..').HoneyCSSPropertyValue<"OAnimationDelay">;
|
|
791
|
-
$OAnimationDirection?: import('../..').HoneyCSSPropertyValue<"OAnimationDirection">;
|
|
792
|
-
$OAnimationDuration?: import('../..').HoneyCSSPropertyValue<"OAnimationDuration">;
|
|
793
|
-
$OAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"OAnimationFillMode">;
|
|
794
|
-
$OAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"OAnimationIterationCount">;
|
|
795
|
-
$OAnimationName?: import('../..').HoneyCSSPropertyValue<"OAnimationName">;
|
|
796
|
-
$OAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"OAnimationPlayState">;
|
|
797
|
-
$OAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"OAnimationTimingFunction">;
|
|
798
|
-
$OBackgroundSize?: import('../..').HoneyCSSPropertyValue<"OBackgroundSize">;
|
|
799
|
-
$OBorderImage?: import('../..').HoneyCSSPropertyValue<"OBorderImage">;
|
|
800
|
-
$OObjectFit?: import('../..').HoneyCSSPropertyValue<"OObjectFit">;
|
|
801
|
-
$OObjectPosition?: import('../..').HoneyCSSPropertyValue<"OObjectPosition">;
|
|
802
|
-
$OTabSize?: import('../..').HoneyCSSPropertyValue<"OTabSize">;
|
|
803
|
-
$OTextOverflow?: import('../..').HoneyCSSPropertyValue<"OTextOverflow">;
|
|
804
|
-
$OTransform?: import('../..').HoneyCSSPropertyValue<"OTransform">;
|
|
805
|
-
$OTransformOrigin?: import('../..').HoneyCSSPropertyValue<"OTransformOrigin">;
|
|
806
|
-
$OTransition?: import('../..').HoneyCSSPropertyValue<"OTransition">;
|
|
807
|
-
$OTransitionDelay?: import('../..').HoneyCSSPropertyValue<"OTransitionDelay">;
|
|
808
|
-
$OTransitionDuration?: import('../..').HoneyCSSPropertyValue<"OTransitionDuration">;
|
|
809
|
-
$OTransitionProperty?: import('../..').HoneyCSSPropertyValue<"OTransitionProperty">;
|
|
810
|
-
$OTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"OTransitionTimingFunction">;
|
|
811
|
-
$WebkitBoxAlign?: import('../..').HoneyCSSPropertyValue<"WebkitBoxAlign">;
|
|
812
|
-
$WebkitBoxDirection?: import('../..').HoneyCSSPropertyValue<"WebkitBoxDirection">;
|
|
813
|
-
$WebkitBoxFlex?: import('../..').HoneyCSSPropertyValue<"WebkitBoxFlex">;
|
|
814
|
-
$WebkitBoxFlexGroup?: import('../..').HoneyCSSPropertyValue<"WebkitBoxFlexGroup">;
|
|
815
|
-
$WebkitBoxLines?: import('../..').HoneyCSSPropertyValue<"WebkitBoxLines">;
|
|
816
|
-
$WebkitBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"WebkitBoxOrdinalGroup">;
|
|
817
|
-
$WebkitBoxOrient?: import('../..').HoneyCSSPropertyValue<"WebkitBoxOrient">;
|
|
818
|
-
$WebkitBoxPack?: import('../..').HoneyCSSPropertyValue<"WebkitBoxPack">;
|
|
819
|
-
$alignmentBaseline?: import('../..').HoneyCSSPropertyValue<"alignmentBaseline">;
|
|
820
|
-
$baselineShift?: import('../..').HoneyCSSPropertyValue<"baselineShift">;
|
|
821
|
-
$clipRule?: import('../..').HoneyCSSPropertyValue<"clipRule">;
|
|
822
|
-
$colorInterpolation?: import('../..').HoneyCSSPropertyValue<"colorInterpolation">;
|
|
823
|
-
$colorRendering?: import('../..').HoneyCSSPropertyValue<"colorRendering">;
|
|
824
|
-
$dominantBaseline?: import('../..').HoneyCSSPropertyValue<"dominantBaseline">;
|
|
825
|
-
$fill?: import('../..').HoneyCSSPropertyValue<"fill"> | undefined;
|
|
826
|
-
$fillOpacity?: import('../..').HoneyCSSPropertyValue<"fillOpacity">;
|
|
827
|
-
$fillRule?: import('../..').HoneyCSSPropertyValue<"fillRule">;
|
|
828
|
-
$floodColor?: import('../..').HoneyCSSPropertyValue<"floodColor">;
|
|
829
|
-
$floodOpacity?: import('../..').HoneyCSSPropertyValue<"floodOpacity">;
|
|
830
|
-
$glyphOrientationVertical?: import('../..').HoneyCSSPropertyValue<"glyphOrientationVertical">;
|
|
831
|
-
$lightingColor?: import('../..').HoneyCSSPropertyValue<"lightingColor">;
|
|
832
|
-
$marker?: import('../..').HoneyCSSPropertyValue<"marker">;
|
|
833
|
-
$markerEnd?: import('../..').HoneyCSSPropertyValue<"markerEnd">;
|
|
834
|
-
$markerMid?: import('../..').HoneyCSSPropertyValue<"markerMid">;
|
|
835
|
-
$markerStart?: import('../..').HoneyCSSPropertyValue<"markerStart">;
|
|
836
|
-
$shapeRendering?: import('../..').HoneyCSSPropertyValue<"shapeRendering">;
|
|
837
|
-
$stopColor?: import('../..').HoneyCSSPropertyValue<"stopColor">;
|
|
838
|
-
$stopOpacity?: import('../..').HoneyCSSPropertyValue<"stopOpacity">;
|
|
839
|
-
$stroke?: import('../..').HoneyCSSPropertyValue<"stroke"> | undefined;
|
|
840
|
-
$strokeDasharray?: import('../..').HoneyCSSPropertyValue<"strokeDasharray">;
|
|
841
|
-
$strokeDashoffset?: import('../..').HoneyCSSPropertyValue<"strokeDashoffset">;
|
|
842
|
-
$strokeLinecap?: import('../..').HoneyCSSPropertyValue<"strokeLinecap">;
|
|
843
|
-
$strokeLinejoin?: import('../..').HoneyCSSPropertyValue<"strokeLinejoin">;
|
|
844
|
-
$strokeMiterlimit?: import('../..').HoneyCSSPropertyValue<"strokeMiterlimit">;
|
|
845
|
-
$strokeOpacity?: import('../..').HoneyCSSPropertyValue<"strokeOpacity">;
|
|
846
|
-
$strokeWidth?: import('../..').HoneyCSSPropertyValue<"strokeWidth">;
|
|
847
|
-
$textAnchor?: import('../..').HoneyCSSPropertyValue<"textAnchor">;
|
|
848
|
-
$vectorEffect?: import('../..').HoneyCSSPropertyValue<"vectorEffect">;
|
|
849
|
-
}> & {
|
|
850
|
-
modifiers?: import('../..').HoneyModifierResultFn[];
|
|
851
|
-
} & Partial<{
|
|
852
|
-
$accentColor?: import('../..').HoneyCSSPropertyValue<"accentColor">;
|
|
853
|
-
$alignContent?: import('../..').HoneyCSSPropertyValue<"alignContent">;
|
|
854
|
-
$alignItems?: import('../..').HoneyCSSPropertyValue<"alignItems">;
|
|
855
|
-
$alignSelf?: import('../..').HoneyCSSPropertyValue<"alignSelf">;
|
|
856
|
-
$alignTracks?: import('../..').HoneyCSSPropertyValue<"alignTracks">;
|
|
857
|
-
$animationComposition?: import('../..').HoneyCSSPropertyValue<"animationComposition">;
|
|
858
|
-
$animationDelay?: import('../..').HoneyCSSPropertyValue<"animationDelay">;
|
|
859
|
-
$animationDirection?: import('../..').HoneyCSSPropertyValue<"animationDirection">;
|
|
860
|
-
$animationDuration?: import('../..').HoneyCSSPropertyValue<"animationDuration">;
|
|
861
|
-
$animationFillMode?: import('../..').HoneyCSSPropertyValue<"animationFillMode">;
|
|
862
|
-
$animationIterationCount?: import('../..').HoneyCSSPropertyValue<"animationIterationCount">;
|
|
863
|
-
$animationName?: import('../..').HoneyCSSPropertyValue<"animationName">;
|
|
864
|
-
$animationPlayState?: import('../..').HoneyCSSPropertyValue<"animationPlayState">;
|
|
865
|
-
$animationRangeEnd?: import('../..').HoneyCSSPropertyValue<"animationRangeEnd">;
|
|
866
|
-
$animationRangeStart?: import('../..').HoneyCSSPropertyValue<"animationRangeStart">;
|
|
867
|
-
$animationTimeline?: import('../..').HoneyCSSPropertyValue<"animationTimeline">;
|
|
868
|
-
$animationTimingFunction?: import('../..').HoneyCSSPropertyValue<"animationTimingFunction">;
|
|
869
|
-
$appearance?: import('../..').HoneyCSSPropertyValue<"appearance">;
|
|
870
|
-
$aspectRatio?: import('../..').HoneyCSSPropertyValue<"aspectRatio">;
|
|
871
|
-
$backdropFilter?: import('../..').HoneyCSSPropertyValue<"backdropFilter">;
|
|
872
|
-
$backfaceVisibility?: import('../..').HoneyCSSPropertyValue<"backfaceVisibility">;
|
|
873
|
-
$backgroundAttachment?: import('../..').HoneyCSSPropertyValue<"backgroundAttachment">;
|
|
874
|
-
$backgroundBlendMode?: import('../..').HoneyCSSPropertyValue<"backgroundBlendMode">;
|
|
875
|
-
$backgroundClip?: import('../..').HoneyCSSPropertyValue<"backgroundClip">;
|
|
876
|
-
$backgroundColor?: import('../..').HoneyCSSPropertyValue<"backgroundColor"> | undefined;
|
|
877
|
-
$backgroundImage?: import('../..').HoneyCSSPropertyValue<"backgroundImage">;
|
|
878
|
-
$backgroundOrigin?: import('../..').HoneyCSSPropertyValue<"backgroundOrigin">;
|
|
879
|
-
$backgroundPositionX?: import('../..').HoneyCSSPropertyValue<"backgroundPositionX">;
|
|
880
|
-
$backgroundPositionY?: import('../..').HoneyCSSPropertyValue<"backgroundPositionY">;
|
|
881
|
-
$backgroundRepeat?: import('../..').HoneyCSSPropertyValue<"backgroundRepeat">;
|
|
882
|
-
$backgroundSize?: import('../..').HoneyCSSPropertyValue<"backgroundSize">;
|
|
883
|
-
$blockOverflow?: import('../..').HoneyCSSPropertyValue<"blockOverflow">;
|
|
884
|
-
$blockSize?: import('../..').HoneyCSSPropertyValue<"blockSize">;
|
|
885
|
-
$borderBlockColor?: import('../..').HoneyCSSPropertyValue<"borderBlockColor">;
|
|
886
|
-
$borderBlockEndColor?: import('../..').HoneyCSSPropertyValue<"borderBlockEndColor">;
|
|
887
|
-
$borderBlockEndStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockEndStyle">;
|
|
888
|
-
$borderBlockEndWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockEndWidth">;
|
|
889
|
-
$borderBlockStartColor?: import('../..').HoneyCSSPropertyValue<"borderBlockStartColor">;
|
|
890
|
-
$borderBlockStartStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockStartStyle">;
|
|
891
|
-
$borderBlockStartWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockStartWidth">;
|
|
892
|
-
$borderBlockStyle?: import('../..').HoneyCSSPropertyValue<"borderBlockStyle">;
|
|
893
|
-
$borderBlockWidth?: import('../..').HoneyCSSPropertyValue<"borderBlockWidth">;
|
|
894
|
-
$borderBottomColor?: import('../..').HoneyCSSPropertyValue<"borderBottomColor"> | undefined;
|
|
895
|
-
$borderBottomLeftRadius?: import('../..').HoneyCSSPropertyValue<"borderBottomLeftRadius">;
|
|
896
|
-
$borderBottomRightRadius?: import('../..').HoneyCSSPropertyValue<"borderBottomRightRadius">;
|
|
897
|
-
$borderBottomStyle?: import('../..').HoneyCSSPropertyValue<"borderBottomStyle">;
|
|
898
|
-
$borderBottomWidth?: import('../..').HoneyCSSPropertyValue<"borderBottomWidth">;
|
|
899
|
-
$borderCollapse?: import('../..').HoneyCSSPropertyValue<"borderCollapse">;
|
|
900
|
-
$borderEndEndRadius?: import('../..').HoneyCSSPropertyValue<"borderEndEndRadius">;
|
|
901
|
-
$borderEndStartRadius?: import('../..').HoneyCSSPropertyValue<"borderEndStartRadius">;
|
|
902
|
-
$borderImageOutset?: import('../..').HoneyCSSPropertyValue<"borderImageOutset">;
|
|
903
|
-
$borderImageRepeat?: import('../..').HoneyCSSPropertyValue<"borderImageRepeat">;
|
|
904
|
-
$borderImageSlice?: import('../..').HoneyCSSPropertyValue<"borderImageSlice">;
|
|
905
|
-
$borderImageSource?: import('../..').HoneyCSSPropertyValue<"borderImageSource">;
|
|
906
|
-
$borderImageWidth?: import('../..').HoneyCSSPropertyValue<"borderImageWidth">;
|
|
907
|
-
$borderInlineColor?: import('../..').HoneyCSSPropertyValue<"borderInlineColor">;
|
|
908
|
-
$borderInlineEndColor?: import('../..').HoneyCSSPropertyValue<"borderInlineEndColor">;
|
|
909
|
-
$borderInlineEndStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineEndStyle">;
|
|
910
|
-
$borderInlineEndWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineEndWidth">;
|
|
911
|
-
$borderInlineStartColor?: import('../..').HoneyCSSPropertyValue<"borderInlineStartColor">;
|
|
912
|
-
$borderInlineStartStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineStartStyle">;
|
|
913
|
-
$borderInlineStartWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineStartWidth">;
|
|
914
|
-
$borderInlineStyle?: import('../..').HoneyCSSPropertyValue<"borderInlineStyle">;
|
|
915
|
-
$borderInlineWidth?: import('../..').HoneyCSSPropertyValue<"borderInlineWidth">;
|
|
916
|
-
$borderLeftColor?: import('../..').HoneyCSSPropertyValue<"borderLeftColor"> | undefined;
|
|
917
|
-
$borderLeftStyle?: import('../..').HoneyCSSPropertyValue<"borderLeftStyle">;
|
|
918
|
-
$borderLeftWidth?: import('../..').HoneyCSSPropertyValue<"borderLeftWidth">;
|
|
919
|
-
$borderRightColor?: import('../..').HoneyCSSPropertyValue<"borderRightColor"> | undefined;
|
|
920
|
-
$borderRightStyle?: import('../..').HoneyCSSPropertyValue<"borderRightStyle">;
|
|
921
|
-
$borderRightWidth?: import('../..').HoneyCSSPropertyValue<"borderRightWidth">;
|
|
922
|
-
$borderSpacing?: import('../..').HoneyCSSPropertyValue<"borderSpacing">;
|
|
923
|
-
$borderStartEndRadius?: import('../..').HoneyCSSPropertyValue<"borderStartEndRadius">;
|
|
924
|
-
$borderStartStartRadius?: import('../..').HoneyCSSPropertyValue<"borderStartStartRadius">;
|
|
925
|
-
$borderTopColor?: import('../..').HoneyCSSPropertyValue<"borderTopColor"> | undefined;
|
|
926
|
-
$borderTopLeftRadius?: import('../..').HoneyCSSPropertyValue<"borderTopLeftRadius">;
|
|
927
|
-
$borderTopRightRadius?: import('../..').HoneyCSSPropertyValue<"borderTopRightRadius">;
|
|
928
|
-
$borderTopStyle?: import('../..').HoneyCSSPropertyValue<"borderTopStyle">;
|
|
929
|
-
$borderTopWidth?: import('../..').HoneyCSSPropertyValue<"borderTopWidth">;
|
|
930
|
-
$bottom?: import('../..').HoneyCSSPropertyValue<"bottom">;
|
|
931
|
-
$boxDecorationBreak?: import('../..').HoneyCSSPropertyValue<"boxDecorationBreak">;
|
|
932
|
-
$boxShadow?: import('../..').HoneyCSSPropertyValue<"boxShadow">;
|
|
933
|
-
$boxSizing?: import('../..').HoneyCSSPropertyValue<"boxSizing">;
|
|
934
|
-
$breakAfter?: import('../..').HoneyCSSPropertyValue<"breakAfter">;
|
|
935
|
-
$breakBefore?: import('../..').HoneyCSSPropertyValue<"breakBefore">;
|
|
936
|
-
$breakInside?: import('../..').HoneyCSSPropertyValue<"breakInside">;
|
|
937
|
-
$captionSide?: import('../..').HoneyCSSPropertyValue<"captionSide">;
|
|
938
|
-
$caretColor?: import('../..').HoneyCSSPropertyValue<"caretColor">;
|
|
939
|
-
$caretShape?: import('../..').HoneyCSSPropertyValue<"caretShape">;
|
|
940
|
-
$clear?: import('../..').HoneyCSSPropertyValue<"clear">;
|
|
941
|
-
$clipPath?: import('../..').HoneyCSSPropertyValue<"clipPath">;
|
|
942
|
-
$color?: import('../..').HoneyCSSPropertyValue<"color"> | undefined;
|
|
943
|
-
$colorAdjust?: import('../..').HoneyCSSPropertyValue<"colorAdjust">;
|
|
944
|
-
$colorScheme?: import('../..').HoneyCSSPropertyValue<"colorScheme">;
|
|
945
|
-
$columnCount?: import('../..').HoneyCSSPropertyValue<"columnCount">;
|
|
946
|
-
$columnFill?: import('../..').HoneyCSSPropertyValue<"columnFill">;
|
|
947
|
-
$columnGap?: import('../..').HoneyCSSPropertyValue<"columnGap">;
|
|
948
|
-
$columnRuleColor?: import('../..').HoneyCSSPropertyValue<"columnRuleColor">;
|
|
949
|
-
$columnRuleStyle?: import('../..').HoneyCSSPropertyValue<"columnRuleStyle">;
|
|
950
|
-
$columnRuleWidth?: import('../..').HoneyCSSPropertyValue<"columnRuleWidth">;
|
|
951
|
-
$columnSpan?: import('../..').HoneyCSSPropertyValue<"columnSpan">;
|
|
952
|
-
$columnWidth?: import('../..').HoneyCSSPropertyValue<"columnWidth">;
|
|
953
|
-
$contain?: import('../..').HoneyCSSPropertyValue<"contain">;
|
|
954
|
-
$containIntrinsicBlockSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicBlockSize">;
|
|
955
|
-
$containIntrinsicHeight?: import('../..').HoneyCSSPropertyValue<"containIntrinsicHeight">;
|
|
956
|
-
$containIntrinsicInlineSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicInlineSize">;
|
|
957
|
-
$containIntrinsicWidth?: import('../..').HoneyCSSPropertyValue<"containIntrinsicWidth">;
|
|
958
|
-
$containerName?: import('../..').HoneyCSSPropertyValue<"containerName">;
|
|
959
|
-
$containerType?: import('../..').HoneyCSSPropertyValue<"containerType">;
|
|
960
|
-
$content?: import('../..').HoneyCSSPropertyValue<"content">;
|
|
961
|
-
$contentVisibility?: import('../..').HoneyCSSPropertyValue<"contentVisibility">;
|
|
962
|
-
$counterIncrement?: import('../..').HoneyCSSPropertyValue<"counterIncrement">;
|
|
963
|
-
$counterReset?: import('../..').HoneyCSSPropertyValue<"counterReset">;
|
|
964
|
-
$counterSet?: import('../..').HoneyCSSPropertyValue<"counterSet">;
|
|
965
|
-
$cursor?: import('../..').HoneyCSSPropertyValue<"cursor">;
|
|
966
|
-
$direction?: import('../..').HoneyCSSPropertyValue<"direction">;
|
|
967
|
-
$display?: import('../..').HoneyCSSPropertyValue<"display">;
|
|
968
|
-
$emptyCells?: import('../..').HoneyCSSPropertyValue<"emptyCells">;
|
|
969
|
-
$filter?: import('../..').HoneyCSSPropertyValue<"filter">;
|
|
970
|
-
$flexBasis?: import('../..').HoneyCSSPropertyValue<"flexBasis">;
|
|
971
|
-
$flexDirection?: import('../..').HoneyCSSPropertyValue<"flexDirection">;
|
|
972
|
-
$flexGrow?: import('../..').HoneyCSSPropertyValue<"flexGrow">;
|
|
973
|
-
$flexShrink?: import('../..').HoneyCSSPropertyValue<"flexShrink">;
|
|
974
|
-
$flexWrap?: import('../..').HoneyCSSPropertyValue<"flexWrap">;
|
|
975
|
-
$float?: import('../..').HoneyCSSPropertyValue<"float">;
|
|
976
|
-
$fontFamily?: import('../..').HoneyCSSPropertyValue<"fontFamily">;
|
|
977
|
-
$fontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"fontFeatureSettings">;
|
|
978
|
-
$fontKerning?: import('../..').HoneyCSSPropertyValue<"fontKerning">;
|
|
979
|
-
$fontLanguageOverride?: import('../..').HoneyCSSPropertyValue<"fontLanguageOverride">;
|
|
980
|
-
$fontOpticalSizing?: import('../..').HoneyCSSPropertyValue<"fontOpticalSizing">;
|
|
981
|
-
$fontPalette?: import('../..').HoneyCSSPropertyValue<"fontPalette">;
|
|
982
|
-
$fontSize?: import('../..').HoneyCSSPropertyValue<"fontSize">;
|
|
983
|
-
$fontSizeAdjust?: import('../..').HoneyCSSPropertyValue<"fontSizeAdjust">;
|
|
984
|
-
$fontSmooth?: import('../..').HoneyCSSPropertyValue<"fontSmooth">;
|
|
985
|
-
$fontStretch?: import('../..').HoneyCSSPropertyValue<"fontStretch">;
|
|
986
|
-
$fontStyle?: import('../..').HoneyCSSPropertyValue<"fontStyle">;
|
|
987
|
-
$fontSynthesis?: import('../..').HoneyCSSPropertyValue<"fontSynthesis">;
|
|
988
|
-
$fontSynthesisPosition?: import('../..').HoneyCSSPropertyValue<"fontSynthesisPosition">;
|
|
989
|
-
$fontSynthesisSmallCaps?: import('../..').HoneyCSSPropertyValue<"fontSynthesisSmallCaps">;
|
|
990
|
-
$fontSynthesisStyle?: import('../..').HoneyCSSPropertyValue<"fontSynthesisStyle">;
|
|
991
|
-
$fontSynthesisWeight?: import('../..').HoneyCSSPropertyValue<"fontSynthesisWeight">;
|
|
992
|
-
$fontVariant?: import('../..').HoneyCSSPropertyValue<"fontVariant">;
|
|
993
|
-
$fontVariantAlternates?: import('../..').HoneyCSSPropertyValue<"fontVariantAlternates">;
|
|
994
|
-
$fontVariantCaps?: import('../..').HoneyCSSPropertyValue<"fontVariantCaps">;
|
|
995
|
-
$fontVariantEastAsian?: import('../..').HoneyCSSPropertyValue<"fontVariantEastAsian">;
|
|
996
|
-
$fontVariantEmoji?: import('../..').HoneyCSSPropertyValue<"fontVariantEmoji">;
|
|
997
|
-
$fontVariantLigatures?: import('../..').HoneyCSSPropertyValue<"fontVariantLigatures">;
|
|
998
|
-
$fontVariantNumeric?: import('../..').HoneyCSSPropertyValue<"fontVariantNumeric">;
|
|
999
|
-
$fontVariantPosition?: import('../..').HoneyCSSPropertyValue<"fontVariantPosition">;
|
|
1000
|
-
$fontVariationSettings?: import('../..').HoneyCSSPropertyValue<"fontVariationSettings">;
|
|
1001
|
-
$fontWeight?: import('../..').HoneyCSSPropertyValue<"fontWeight">;
|
|
1002
|
-
$forcedColorAdjust?: import('../..').HoneyCSSPropertyValue<"forcedColorAdjust">;
|
|
1003
|
-
$gridAutoColumns?: import('../..').HoneyCSSPropertyValue<"gridAutoColumns">;
|
|
1004
|
-
$gridAutoFlow?: import('../..').HoneyCSSPropertyValue<"gridAutoFlow">;
|
|
1005
|
-
$gridAutoRows?: import('../..').HoneyCSSPropertyValue<"gridAutoRows">;
|
|
1006
|
-
$gridColumnEnd?: import('../..').HoneyCSSPropertyValue<"gridColumnEnd">;
|
|
1007
|
-
$gridColumnStart?: import('../..').HoneyCSSPropertyValue<"gridColumnStart">;
|
|
1008
|
-
$gridRowEnd?: import('../..').HoneyCSSPropertyValue<"gridRowEnd">;
|
|
1009
|
-
$gridRowStart?: import('../..').HoneyCSSPropertyValue<"gridRowStart">;
|
|
1010
|
-
$gridTemplateAreas?: import('../..').HoneyCSSPropertyValue<"gridTemplateAreas">;
|
|
1011
|
-
$gridTemplateColumns?: import('../..').HoneyCSSPropertyValue<"gridTemplateColumns">;
|
|
1012
|
-
$gridTemplateRows?: import('../..').HoneyCSSPropertyValue<"gridTemplateRows">;
|
|
1013
|
-
$hangingPunctuation?: import('../..').HoneyCSSPropertyValue<"hangingPunctuation">;
|
|
1014
|
-
$height?: import('../..').HoneyCSSPropertyValue<"height">;
|
|
1015
|
-
$hyphenateCharacter?: import('../..').HoneyCSSPropertyValue<"hyphenateCharacter">;
|
|
1016
|
-
$hyphenateLimitChars?: import('../..').HoneyCSSPropertyValue<"hyphenateLimitChars">;
|
|
1017
|
-
$hyphens?: import('../..').HoneyCSSPropertyValue<"hyphens">;
|
|
1018
|
-
$imageOrientation?: import('../..').HoneyCSSPropertyValue<"imageOrientation">;
|
|
1019
|
-
$imageRendering?: import('../..').HoneyCSSPropertyValue<"imageRendering">;
|
|
1020
|
-
$imageResolution?: import('../..').HoneyCSSPropertyValue<"imageResolution">;
|
|
1021
|
-
$initialLetter?: import('../..').HoneyCSSPropertyValue<"initialLetter">;
|
|
1022
|
-
$inlineSize?: import('../..').HoneyCSSPropertyValue<"inlineSize">;
|
|
1023
|
-
$inputSecurity?: import('../..').HoneyCSSPropertyValue<"inputSecurity">;
|
|
1024
|
-
$insetBlockEnd?: import('../..').HoneyCSSPropertyValue<"insetBlockEnd">;
|
|
1025
|
-
$insetBlockStart?: import('../..').HoneyCSSPropertyValue<"insetBlockStart">;
|
|
1026
|
-
$insetInlineEnd?: import('../..').HoneyCSSPropertyValue<"insetInlineEnd">;
|
|
1027
|
-
$insetInlineStart?: import('../..').HoneyCSSPropertyValue<"insetInlineStart">;
|
|
1028
|
-
$isolation?: import('../..').HoneyCSSPropertyValue<"isolation">;
|
|
1029
|
-
$justifyContent?: import('../..').HoneyCSSPropertyValue<"justifyContent">;
|
|
1030
|
-
$justifyItems?: import('../..').HoneyCSSPropertyValue<"justifyItems">;
|
|
1031
|
-
$justifySelf?: import('../..').HoneyCSSPropertyValue<"justifySelf">;
|
|
1032
|
-
$justifyTracks?: import('../..').HoneyCSSPropertyValue<"justifyTracks">;
|
|
1033
|
-
$left?: import('../..').HoneyCSSPropertyValue<"left">;
|
|
1034
|
-
$letterSpacing?: import('../..').HoneyCSSPropertyValue<"letterSpacing">;
|
|
1035
|
-
$lineBreak?: import('../..').HoneyCSSPropertyValue<"lineBreak">;
|
|
1036
|
-
$lineHeight?: import('../..').HoneyCSSPropertyValue<"lineHeight">;
|
|
1037
|
-
$lineHeightStep?: import('../..').HoneyCSSPropertyValue<"lineHeightStep">;
|
|
1038
|
-
$listStyleImage?: import('../..').HoneyCSSPropertyValue<"listStyleImage">;
|
|
1039
|
-
$listStylePosition?: import('../..').HoneyCSSPropertyValue<"listStylePosition">;
|
|
1040
|
-
$listStyleType?: import('../..').HoneyCSSPropertyValue<"listStyleType">;
|
|
1041
|
-
$marginBlockEnd?: import('../..').HoneyCSSPropertyValue<"marginBlockEnd">;
|
|
1042
|
-
$marginBlockStart?: import('../..').HoneyCSSPropertyValue<"marginBlockStart">;
|
|
1043
|
-
$marginBottom?: import('../..').HoneyCSSPropertyValue<"marginBottom">;
|
|
1044
|
-
$marginInlineEnd?: import('../..').HoneyCSSPropertyValue<"marginInlineEnd">;
|
|
1045
|
-
$marginInlineStart?: import('../..').HoneyCSSPropertyValue<"marginInlineStart">;
|
|
1046
|
-
$marginLeft?: import('../..').HoneyCSSPropertyValue<"marginLeft">;
|
|
1047
|
-
$marginRight?: import('../..').HoneyCSSPropertyValue<"marginRight">;
|
|
1048
|
-
$marginTop?: import('../..').HoneyCSSPropertyValue<"marginTop">;
|
|
1049
|
-
$marginTrim?: import('../..').HoneyCSSPropertyValue<"marginTrim">;
|
|
1050
|
-
$maskBorderMode?: import('../..').HoneyCSSPropertyValue<"maskBorderMode">;
|
|
1051
|
-
$maskBorderOutset?: import('../..').HoneyCSSPropertyValue<"maskBorderOutset">;
|
|
1052
|
-
$maskBorderRepeat?: import('../..').HoneyCSSPropertyValue<"maskBorderRepeat">;
|
|
1053
|
-
$maskBorderSlice?: import('../..').HoneyCSSPropertyValue<"maskBorderSlice">;
|
|
1054
|
-
$maskBorderSource?: import('../..').HoneyCSSPropertyValue<"maskBorderSource">;
|
|
1055
|
-
$maskBorderWidth?: import('../..').HoneyCSSPropertyValue<"maskBorderWidth">;
|
|
1056
|
-
$maskClip?: import('../..').HoneyCSSPropertyValue<"maskClip">;
|
|
1057
|
-
$maskComposite?: import('../..').HoneyCSSPropertyValue<"maskComposite">;
|
|
1058
|
-
$maskImage?: import('../..').HoneyCSSPropertyValue<"maskImage">;
|
|
1059
|
-
$maskMode?: import('../..').HoneyCSSPropertyValue<"maskMode">;
|
|
1060
|
-
$maskOrigin?: import('../..').HoneyCSSPropertyValue<"maskOrigin">;
|
|
1061
|
-
$maskPosition?: import('../..').HoneyCSSPropertyValue<"maskPosition">;
|
|
1062
|
-
$maskRepeat?: import('../..').HoneyCSSPropertyValue<"maskRepeat">;
|
|
1063
|
-
$maskSize?: import('../..').HoneyCSSPropertyValue<"maskSize">;
|
|
1064
|
-
$maskType?: import('../..').HoneyCSSPropertyValue<"maskType">;
|
|
1065
|
-
$masonryAutoFlow?: import('../..').HoneyCSSPropertyValue<"masonryAutoFlow">;
|
|
1066
|
-
$mathDepth?: import('../..').HoneyCSSPropertyValue<"mathDepth">;
|
|
1067
|
-
$mathShift?: import('../..').HoneyCSSPropertyValue<"mathShift">;
|
|
1068
|
-
$mathStyle?: import('../..').HoneyCSSPropertyValue<"mathStyle">;
|
|
1069
|
-
$maxBlockSize?: import('../..').HoneyCSSPropertyValue<"maxBlockSize">;
|
|
1070
|
-
$maxHeight?: import('../..').HoneyCSSPropertyValue<"maxHeight">;
|
|
1071
|
-
$maxInlineSize?: import('../..').HoneyCSSPropertyValue<"maxInlineSize">;
|
|
1072
|
-
$maxLines?: import('../..').HoneyCSSPropertyValue<"maxLines">;
|
|
1073
|
-
$maxWidth?: import('../..').HoneyCSSPropertyValue<"maxWidth">;
|
|
1074
|
-
$minBlockSize?: import('../..').HoneyCSSPropertyValue<"minBlockSize">;
|
|
1075
|
-
$minHeight?: import('../..').HoneyCSSPropertyValue<"minHeight">;
|
|
1076
|
-
$minInlineSize?: import('../..').HoneyCSSPropertyValue<"minInlineSize">;
|
|
1077
|
-
$minWidth?: import('../..').HoneyCSSPropertyValue<"minWidth">;
|
|
1078
|
-
$mixBlendMode?: import('../..').HoneyCSSPropertyValue<"mixBlendMode">;
|
|
1079
|
-
$motionDistance?: import('../..').HoneyCSSPropertyValue<"motionDistance">;
|
|
1080
|
-
$motionPath?: import('../..').HoneyCSSPropertyValue<"motionPath">;
|
|
1081
|
-
$motionRotation?: import('../..').HoneyCSSPropertyValue<"motionRotation">;
|
|
1082
|
-
$objectFit?: import('../..').HoneyCSSPropertyValue<"objectFit">;
|
|
1083
|
-
$objectPosition?: import('../..').HoneyCSSPropertyValue<"objectPosition">;
|
|
1084
|
-
$offsetAnchor?: import('../..').HoneyCSSPropertyValue<"offsetAnchor">;
|
|
1085
|
-
$offsetDistance?: import('../..').HoneyCSSPropertyValue<"offsetDistance">;
|
|
1086
|
-
$offsetPath?: import('../..').HoneyCSSPropertyValue<"offsetPath">;
|
|
1087
|
-
$offsetPosition?: import('../..').HoneyCSSPropertyValue<"offsetPosition">;
|
|
1088
|
-
$offsetRotate?: import('../..').HoneyCSSPropertyValue<"offsetRotate">;
|
|
1089
|
-
$offsetRotation?: import('../..').HoneyCSSPropertyValue<"offsetRotation">;
|
|
1090
|
-
$opacity?: import('../..').HoneyCSSPropertyValue<"opacity">;
|
|
1091
|
-
$order?: import('../..').HoneyCSSPropertyValue<"order">;
|
|
1092
|
-
$orphans?: import('../..').HoneyCSSPropertyValue<"orphans">;
|
|
1093
|
-
$outlineColor?: import('../..').HoneyCSSPropertyValue<"outlineColor"> | undefined;
|
|
1094
|
-
$outlineOffset?: import('../..').HoneyCSSPropertyValue<"outlineOffset">;
|
|
1095
|
-
$outlineStyle?: import('../..').HoneyCSSPropertyValue<"outlineStyle">;
|
|
1096
|
-
$outlineWidth?: import('../..').HoneyCSSPropertyValue<"outlineWidth">;
|
|
1097
|
-
$overflowAnchor?: import('../..').HoneyCSSPropertyValue<"overflowAnchor">;
|
|
1098
|
-
$overflowBlock?: import('../..').HoneyCSSPropertyValue<"overflowBlock">;
|
|
1099
|
-
$overflowClipBox?: import('../..').HoneyCSSPropertyValue<"overflowClipBox">;
|
|
1100
|
-
$overflowClipMargin?: import('../..').HoneyCSSPropertyValue<"overflowClipMargin">;
|
|
1101
|
-
$overflowInline?: import('../..').HoneyCSSPropertyValue<"overflowInline">;
|
|
1102
|
-
$overflowWrap?: import('../..').HoneyCSSPropertyValue<"overflowWrap">;
|
|
1103
|
-
$overflowX?: import('../..').HoneyCSSPropertyValue<"overflowX">;
|
|
1104
|
-
$overflowY?: import('../..').HoneyCSSPropertyValue<"overflowY">;
|
|
1105
|
-
$overlay?: import('../..').HoneyCSSPropertyValue<"overlay">;
|
|
1106
|
-
$overscrollBehaviorBlock?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorBlock">;
|
|
1107
|
-
$overscrollBehaviorInline?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorInline">;
|
|
1108
|
-
$overscrollBehaviorX?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorX">;
|
|
1109
|
-
$overscrollBehaviorY?: import('../..').HoneyCSSPropertyValue<"overscrollBehaviorY">;
|
|
1110
|
-
$paddingBlockEnd?: import('../..').HoneyCSSPropertyValue<"paddingBlockEnd">;
|
|
1111
|
-
$paddingBlockStart?: import('../..').HoneyCSSPropertyValue<"paddingBlockStart">;
|
|
1112
|
-
$paddingBottom?: import('../..').HoneyCSSPropertyValue<"paddingBottom">;
|
|
1113
|
-
$paddingInlineEnd?: import('../..').HoneyCSSPropertyValue<"paddingInlineEnd">;
|
|
1114
|
-
$paddingInlineStart?: import('../..').HoneyCSSPropertyValue<"paddingInlineStart">;
|
|
1115
|
-
$paddingLeft?: import('../..').HoneyCSSPropertyValue<"paddingLeft">;
|
|
1116
|
-
$paddingRight?: import('../..').HoneyCSSPropertyValue<"paddingRight">;
|
|
1117
|
-
$paddingTop?: import('../..').HoneyCSSPropertyValue<"paddingTop">;
|
|
1118
|
-
$page?: import('../..').HoneyCSSPropertyValue<"page">;
|
|
1119
|
-
$pageBreakAfter?: import('../..').HoneyCSSPropertyValue<"pageBreakAfter">;
|
|
1120
|
-
$pageBreakBefore?: import('../..').HoneyCSSPropertyValue<"pageBreakBefore">;
|
|
1121
|
-
$pageBreakInside?: import('../..').HoneyCSSPropertyValue<"pageBreakInside">;
|
|
1122
|
-
$paintOrder?: import('../..').HoneyCSSPropertyValue<"paintOrder">;
|
|
1123
|
-
$perspective?: import('../..').HoneyCSSPropertyValue<"perspective">;
|
|
1124
|
-
$perspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"perspectiveOrigin">;
|
|
1125
|
-
$pointerEvents?: import('../..').HoneyCSSPropertyValue<"pointerEvents">;
|
|
1126
|
-
$position?: import('../..').HoneyCSSPropertyValue<"position">;
|
|
1127
|
-
$printColorAdjust?: import('../..').HoneyCSSPropertyValue<"printColorAdjust">;
|
|
1128
|
-
$quotes?: import('../..').HoneyCSSPropertyValue<"quotes">;
|
|
1129
|
-
$resize?: import('../..').HoneyCSSPropertyValue<"resize">;
|
|
1130
|
-
$right?: import('../..').HoneyCSSPropertyValue<"right">;
|
|
1131
|
-
$rotate?: import('../..').HoneyCSSPropertyValue<"rotate">;
|
|
1132
|
-
$rowGap?: import('../..').HoneyCSSPropertyValue<"rowGap">;
|
|
1133
|
-
$rubyAlign?: import('../..').HoneyCSSPropertyValue<"rubyAlign">;
|
|
1134
|
-
$rubyMerge?: import('../..').HoneyCSSPropertyValue<"rubyMerge">;
|
|
1135
|
-
$rubyPosition?: import('../..').HoneyCSSPropertyValue<"rubyPosition">;
|
|
1136
|
-
$scale?: import('../..').HoneyCSSPropertyValue<"scale">;
|
|
1137
|
-
$scrollBehavior?: import('../..').HoneyCSSPropertyValue<"scrollBehavior">;
|
|
1138
|
-
$scrollMarginBlockEnd?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlockEnd">;
|
|
1139
|
-
$scrollMarginBlockStart?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlockStart">;
|
|
1140
|
-
$scrollMarginBottom?: import('../..').HoneyCSSPropertyValue<"scrollMarginBottom">;
|
|
1141
|
-
$scrollMarginInlineEnd?: import('../..').HoneyCSSPropertyValue<"scrollMarginInlineEnd">;
|
|
1142
|
-
$scrollMarginInlineStart?: import('../..').HoneyCSSPropertyValue<"scrollMarginInlineStart">;
|
|
1143
|
-
$scrollMarginLeft?: import('../..').HoneyCSSPropertyValue<"scrollMarginLeft">;
|
|
1144
|
-
$scrollMarginRight?: import('../..').HoneyCSSPropertyValue<"scrollMarginRight">;
|
|
1145
|
-
$scrollMarginTop?: import('../..').HoneyCSSPropertyValue<"scrollMarginTop">;
|
|
1146
|
-
$scrollPaddingBlockEnd?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlockEnd">;
|
|
1147
|
-
$scrollPaddingBlockStart?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlockStart">;
|
|
1148
|
-
$scrollPaddingBottom?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBottom">;
|
|
1149
|
-
$scrollPaddingInlineEnd?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInlineEnd">;
|
|
1150
|
-
$scrollPaddingInlineStart?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInlineStart">;
|
|
1151
|
-
$scrollPaddingLeft?: import('../..').HoneyCSSPropertyValue<"scrollPaddingLeft">;
|
|
1152
|
-
$scrollPaddingRight?: import('../..').HoneyCSSPropertyValue<"scrollPaddingRight">;
|
|
1153
|
-
$scrollPaddingTop?: import('../..').HoneyCSSPropertyValue<"scrollPaddingTop">;
|
|
1154
|
-
$scrollSnapAlign?: import('../..').HoneyCSSPropertyValue<"scrollSnapAlign">;
|
|
1155
|
-
$scrollSnapMarginBottom?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginBottom">;
|
|
1156
|
-
$scrollSnapMarginLeft?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginLeft">;
|
|
1157
|
-
$scrollSnapMarginRight?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginRight">;
|
|
1158
|
-
$scrollSnapMarginTop?: import('../..').HoneyCSSPropertyValue<"scrollSnapMarginTop">;
|
|
1159
|
-
$scrollSnapStop?: import('../..').HoneyCSSPropertyValue<"scrollSnapStop">;
|
|
1160
|
-
$scrollSnapType?: import('../..').HoneyCSSPropertyValue<"scrollSnapType">;
|
|
1161
|
-
$scrollTimelineAxis?: import('../..').HoneyCSSPropertyValue<"scrollTimelineAxis">;
|
|
1162
|
-
$scrollTimelineName?: import('../..').HoneyCSSPropertyValue<"scrollTimelineName">;
|
|
1163
|
-
$scrollbarColor?: import('../..').HoneyCSSPropertyValue<"scrollbarColor">;
|
|
1164
|
-
$scrollbarGutter?: import('../..').HoneyCSSPropertyValue<"scrollbarGutter">;
|
|
1165
|
-
$scrollbarWidth?: import('../..').HoneyCSSPropertyValue<"scrollbarWidth">;
|
|
1166
|
-
$shapeImageThreshold?: import('../..').HoneyCSSPropertyValue<"shapeImageThreshold">;
|
|
1167
|
-
$shapeMargin?: import('../..').HoneyCSSPropertyValue<"shapeMargin">;
|
|
1168
|
-
$shapeOutside?: import('../..').HoneyCSSPropertyValue<"shapeOutside">;
|
|
1169
|
-
$tabSize?: import('../..').HoneyCSSPropertyValue<"tabSize">;
|
|
1170
|
-
$tableLayout?: import('../..').HoneyCSSPropertyValue<"tableLayout">;
|
|
1171
|
-
$textAlign?: import('../..').HoneyCSSPropertyValue<"textAlign">;
|
|
1172
|
-
$textAlignLast?: import('../..').HoneyCSSPropertyValue<"textAlignLast">;
|
|
1173
|
-
$textCombineUpright?: import('../..').HoneyCSSPropertyValue<"textCombineUpright">;
|
|
1174
|
-
$textDecorationColor?: import('../..').HoneyCSSPropertyValue<"textDecorationColor"> | undefined;
|
|
1175
|
-
$textDecorationLine?: import('../..').HoneyCSSPropertyValue<"textDecorationLine">;
|
|
1176
|
-
$textDecorationSkip?: import('../..').HoneyCSSPropertyValue<"textDecorationSkip">;
|
|
1177
|
-
$textDecorationSkipInk?: import('../..').HoneyCSSPropertyValue<"textDecorationSkipInk">;
|
|
1178
|
-
$textDecorationStyle?: import('../..').HoneyCSSPropertyValue<"textDecorationStyle">;
|
|
1179
|
-
$textDecorationThickness?: import('../..').HoneyCSSPropertyValue<"textDecorationThickness">;
|
|
1180
|
-
$textEmphasisColor?: import('../..').HoneyCSSPropertyValue<"textEmphasisColor">;
|
|
1181
|
-
$textEmphasisPosition?: import('../..').HoneyCSSPropertyValue<"textEmphasisPosition">;
|
|
1182
|
-
$textEmphasisStyle?: import('../..').HoneyCSSPropertyValue<"textEmphasisStyle">;
|
|
1183
|
-
$textIndent?: import('../..').HoneyCSSPropertyValue<"textIndent">;
|
|
1184
|
-
$textJustify?: import('../..').HoneyCSSPropertyValue<"textJustify">;
|
|
1185
|
-
$textOrientation?: import('../..').HoneyCSSPropertyValue<"textOrientation">;
|
|
1186
|
-
$textOverflow?: import('../..').HoneyCSSPropertyValue<"textOverflow">;
|
|
1187
|
-
$textRendering?: import('../..').HoneyCSSPropertyValue<"textRendering">;
|
|
1188
|
-
$textShadow?: import('../..').HoneyCSSPropertyValue<"textShadow">;
|
|
1189
|
-
$textSizeAdjust?: import('../..').HoneyCSSPropertyValue<"textSizeAdjust">;
|
|
1190
|
-
$textTransform?: import('../..').HoneyCSSPropertyValue<"textTransform">;
|
|
1191
|
-
$textUnderlineOffset?: import('../..').HoneyCSSPropertyValue<"textUnderlineOffset">;
|
|
1192
|
-
$textUnderlinePosition?: import('../..').HoneyCSSPropertyValue<"textUnderlinePosition">;
|
|
1193
|
-
$textWrap?: import('../..').HoneyCSSPropertyValue<"textWrap">;
|
|
1194
|
-
$timelineScope?: import('../..').HoneyCSSPropertyValue<"timelineScope">;
|
|
1195
|
-
$top?: import('../..').HoneyCSSPropertyValue<"top">;
|
|
1196
|
-
$touchAction?: import('../..').HoneyCSSPropertyValue<"touchAction">;
|
|
1197
|
-
$transform?: import('../..').HoneyCSSPropertyValue<"transform">;
|
|
1198
|
-
$transformBox?: import('../..').HoneyCSSPropertyValue<"transformBox">;
|
|
1199
|
-
$transformOrigin?: import('../..').HoneyCSSPropertyValue<"transformOrigin">;
|
|
1200
|
-
$transformStyle?: import('../..').HoneyCSSPropertyValue<"transformStyle">;
|
|
1201
|
-
$transitionBehavior?: import('../..').HoneyCSSPropertyValue<"transitionBehavior">;
|
|
1202
|
-
$transitionDelay?: import('../..').HoneyCSSPropertyValue<"transitionDelay">;
|
|
1203
|
-
$transitionDuration?: import('../..').HoneyCSSPropertyValue<"transitionDuration">;
|
|
1204
|
-
$transitionProperty?: import('../..').HoneyCSSPropertyValue<"transitionProperty">;
|
|
1205
|
-
$transitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"transitionTimingFunction">;
|
|
1206
|
-
$translate?: import('../..').HoneyCSSPropertyValue<"translate">;
|
|
1207
|
-
$unicodeBidi?: import('../..').HoneyCSSPropertyValue<"unicodeBidi">;
|
|
1208
|
-
$userSelect?: import('../..').HoneyCSSPropertyValue<"userSelect">;
|
|
1209
|
-
$verticalAlign?: import('../..').HoneyCSSPropertyValue<"verticalAlign">;
|
|
1210
|
-
$viewTimelineAxis?: import('../..').HoneyCSSPropertyValue<"viewTimelineAxis">;
|
|
1211
|
-
$viewTimelineInset?: import('../..').HoneyCSSPropertyValue<"viewTimelineInset">;
|
|
1212
|
-
$viewTimelineName?: import('../..').HoneyCSSPropertyValue<"viewTimelineName">;
|
|
1213
|
-
$viewTransitionName?: import('../..').HoneyCSSPropertyValue<"viewTransitionName">;
|
|
1214
|
-
$visibility?: import('../..').HoneyCSSPropertyValue<"visibility">;
|
|
1215
|
-
$whiteSpace?: import('../..').HoneyCSSPropertyValue<"whiteSpace">;
|
|
1216
|
-
$whiteSpaceCollapse?: import('../..').HoneyCSSPropertyValue<"whiteSpaceCollapse">;
|
|
1217
|
-
$whiteSpaceTrim?: import('../..').HoneyCSSPropertyValue<"whiteSpaceTrim">;
|
|
1218
|
-
$widows?: import('../..').HoneyCSSPropertyValue<"widows">;
|
|
1219
|
-
$width?: import('../..').HoneyCSSPropertyValue<"width">;
|
|
1220
|
-
$willChange?: import('../..').HoneyCSSPropertyValue<"willChange">;
|
|
1221
|
-
$wordBreak?: import('../..').HoneyCSSPropertyValue<"wordBreak">;
|
|
1222
|
-
$wordSpacing?: import('../..').HoneyCSSPropertyValue<"wordSpacing">;
|
|
1223
|
-
$wordWrap?: import('../..').HoneyCSSPropertyValue<"wordWrap">;
|
|
1224
|
-
$writingMode?: import('../..').HoneyCSSPropertyValue<"writingMode">;
|
|
1225
|
-
$zIndex?: import('../..').HoneyCSSPropertyValue<"zIndex">;
|
|
1226
|
-
$zoom?: import('../..').HoneyCSSPropertyValue<"zoom">;
|
|
1227
|
-
$all?: import('../..').HoneyCSSPropertyValue<"all">;
|
|
1228
|
-
$animation?: import('../..').HoneyCSSPropertyValue<"animation">;
|
|
1229
|
-
$animationRange?: import('../..').HoneyCSSPropertyValue<"animationRange">;
|
|
1230
|
-
$background?: import('../..').HoneyCSSPropertyValue<"background">;
|
|
1231
|
-
$backgroundPosition?: import('../..').HoneyCSSPropertyValue<"backgroundPosition">;
|
|
1232
|
-
$border?: import('../..').HoneyCSSPropertyValue<"border">;
|
|
1233
|
-
$borderBlock?: import('../..').HoneyCSSPropertyValue<"borderBlock">;
|
|
1234
|
-
$borderBlockEnd?: import('../..').HoneyCSSPropertyValue<"borderBlockEnd">;
|
|
1235
|
-
$borderBlockStart?: import('../..').HoneyCSSPropertyValue<"borderBlockStart">;
|
|
1236
|
-
$borderBottom?: import('../..').HoneyCSSPropertyValue<"borderBottom">;
|
|
1237
|
-
$borderColor?: import('../..').HoneyCSSPropertyValue<"borderColor"> | undefined;
|
|
1238
|
-
$borderImage?: import('../..').HoneyCSSPropertyValue<"borderImage">;
|
|
1239
|
-
$borderInline?: import('../..').HoneyCSSPropertyValue<"borderInline">;
|
|
1240
|
-
$borderInlineEnd?: import('../..').HoneyCSSPropertyValue<"borderInlineEnd">;
|
|
1241
|
-
$borderInlineStart?: import('../..').HoneyCSSPropertyValue<"borderInlineStart">;
|
|
1242
|
-
$borderLeft?: import('../..').HoneyCSSPropertyValue<"borderLeft">;
|
|
1243
|
-
$borderRadius?: import('../..').HoneyCSSPropertyValue<"borderRadius">;
|
|
1244
|
-
$borderRight?: import('../..').HoneyCSSPropertyValue<"borderRight">;
|
|
1245
|
-
$borderStyle?: import('../..').HoneyCSSPropertyValue<"borderStyle">;
|
|
1246
|
-
$borderTop?: import('../..').HoneyCSSPropertyValue<"borderTop">;
|
|
1247
|
-
$borderWidth?: import('../..').HoneyCSSPropertyValue<"borderWidth">;
|
|
1248
|
-
$caret?: import('../..').HoneyCSSPropertyValue<"caret">;
|
|
1249
|
-
$columnRule?: import('../..').HoneyCSSPropertyValue<"columnRule">;
|
|
1250
|
-
$columns?: import('../..').HoneyCSSPropertyValue<"columns">;
|
|
1251
|
-
$containIntrinsicSize?: import('../..').HoneyCSSPropertyValue<"containIntrinsicSize">;
|
|
1252
|
-
$container?: import('../..').HoneyCSSPropertyValue<"container">;
|
|
1253
|
-
$flex?: import('../..').HoneyCSSPropertyValue<"flex">;
|
|
1254
|
-
$flexFlow?: import('../..').HoneyCSSPropertyValue<"flexFlow">;
|
|
1255
|
-
$font?: import('../..').HoneyCSSPropertyValue<"font">;
|
|
1256
|
-
$gap?: import('../..').HoneyCSSPropertyValue<"gap">;
|
|
1257
|
-
$grid?: import('../..').HoneyCSSPropertyValue<"grid">;
|
|
1258
|
-
$gridArea?: import('../..').HoneyCSSPropertyValue<"gridArea">;
|
|
1259
|
-
$gridColumn?: import('../..').HoneyCSSPropertyValue<"gridColumn">;
|
|
1260
|
-
$gridRow?: import('../..').HoneyCSSPropertyValue<"gridRow">;
|
|
1261
|
-
$gridTemplate?: import('../..').HoneyCSSPropertyValue<"gridTemplate">;
|
|
1262
|
-
$inset?: import('../..').HoneyCSSPropertyValue<"inset">;
|
|
1263
|
-
$insetBlock?: import('../..').HoneyCSSPropertyValue<"insetBlock">;
|
|
1264
|
-
$insetInline?: import('../..').HoneyCSSPropertyValue<"insetInline">;
|
|
1265
|
-
$lineClamp?: import('../..').HoneyCSSPropertyValue<"lineClamp">;
|
|
1266
|
-
$listStyle?: import('../..').HoneyCSSPropertyValue<"listStyle">;
|
|
1267
|
-
$margin?: import('../..').HoneyCSSPropertyValue<"margin">;
|
|
1268
|
-
$marginBlock?: import('../..').HoneyCSSPropertyValue<"marginBlock">;
|
|
1269
|
-
$marginInline?: import('../..').HoneyCSSPropertyValue<"marginInline">;
|
|
1270
|
-
$mask?: import('../..').HoneyCSSPropertyValue<"mask">;
|
|
1271
|
-
$maskBorder?: import('../..').HoneyCSSPropertyValue<"maskBorder">;
|
|
1272
|
-
$motion?: import('../..').HoneyCSSPropertyValue<"motion">;
|
|
1273
|
-
$offset?: import('../..').HoneyCSSPropertyValue<"offset">;
|
|
1274
|
-
$outline?: import('../..').HoneyCSSPropertyValue<"outline">;
|
|
1275
|
-
$overflow?: import('../..').HoneyCSSPropertyValue<"overflow">;
|
|
1276
|
-
$overscrollBehavior?: import('../..').HoneyCSSPropertyValue<"overscrollBehavior">;
|
|
1277
|
-
$padding?: import('../..').HoneyCSSPropertyValue<"padding">;
|
|
1278
|
-
$paddingBlock?: import('../..').HoneyCSSPropertyValue<"paddingBlock">;
|
|
1279
|
-
$paddingInline?: import('../..').HoneyCSSPropertyValue<"paddingInline">;
|
|
1280
|
-
$placeContent?: import('../..').HoneyCSSPropertyValue<"placeContent">;
|
|
1281
|
-
$placeItems?: import('../..').HoneyCSSPropertyValue<"placeItems">;
|
|
1282
|
-
$placeSelf?: import('../..').HoneyCSSPropertyValue<"placeSelf">;
|
|
1283
|
-
$scrollMargin?: import('../..').HoneyCSSPropertyValue<"scrollMargin">;
|
|
1284
|
-
$scrollMarginBlock?: import('../..').HoneyCSSPropertyValue<"scrollMarginBlock">;
|
|
1285
|
-
$scrollMarginInline?: import('../..').HoneyCSSPropertyValue<"scrollMarginInline">;
|
|
1286
|
-
$scrollPadding?: import('../..').HoneyCSSPropertyValue<"scrollPadding">;
|
|
1287
|
-
$scrollPaddingBlock?: import('../..').HoneyCSSPropertyValue<"scrollPaddingBlock">;
|
|
1288
|
-
$scrollPaddingInline?: import('../..').HoneyCSSPropertyValue<"scrollPaddingInline">;
|
|
1289
|
-
$scrollSnapMargin?: import('../..').HoneyCSSPropertyValue<"scrollSnapMargin">;
|
|
1290
|
-
$scrollTimeline?: import('../..').HoneyCSSPropertyValue<"scrollTimeline">;
|
|
1291
|
-
$textDecoration?: import('../..').HoneyCSSPropertyValue<"textDecoration">;
|
|
1292
|
-
$textEmphasis?: import('../..').HoneyCSSPropertyValue<"textEmphasis">;
|
|
1293
|
-
$transition?: import('../..').HoneyCSSPropertyValue<"transition">;
|
|
1294
|
-
$viewTimeline?: import('../..').HoneyCSSPropertyValue<"viewTimeline">;
|
|
1295
|
-
$MozAnimationDelay?: import('../..').HoneyCSSPropertyValue<"MozAnimationDelay">;
|
|
1296
|
-
$MozAnimationDirection?: import('../..').HoneyCSSPropertyValue<"MozAnimationDirection">;
|
|
1297
|
-
$MozAnimationDuration?: import('../..').HoneyCSSPropertyValue<"MozAnimationDuration">;
|
|
1298
|
-
$MozAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"MozAnimationFillMode">;
|
|
1299
|
-
$MozAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"MozAnimationIterationCount">;
|
|
1300
|
-
$MozAnimationName?: import('../..').HoneyCSSPropertyValue<"MozAnimationName">;
|
|
1301
|
-
$MozAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"MozAnimationPlayState">;
|
|
1302
|
-
$MozAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"MozAnimationTimingFunction">;
|
|
1303
|
-
$MozAppearance?: import('../..').HoneyCSSPropertyValue<"MozAppearance">;
|
|
1304
|
-
$MozBinding?: import('../..').HoneyCSSPropertyValue<"MozBinding">;
|
|
1305
|
-
$MozBorderBottomColors?: import('../..').HoneyCSSPropertyValue<"MozBorderBottomColors">;
|
|
1306
|
-
$MozBorderEndColor?: import('../..').HoneyCSSPropertyValue<"MozBorderEndColor">;
|
|
1307
|
-
$MozBorderEndStyle?: import('../..').HoneyCSSPropertyValue<"MozBorderEndStyle">;
|
|
1308
|
-
$MozBorderEndWidth?: import('../..').HoneyCSSPropertyValue<"MozBorderEndWidth">;
|
|
1309
|
-
$MozBorderLeftColors?: import('../..').HoneyCSSPropertyValue<"MozBorderLeftColors">;
|
|
1310
|
-
$MozBorderRightColors?: import('../..').HoneyCSSPropertyValue<"MozBorderRightColors">;
|
|
1311
|
-
$MozBorderStartColor?: import('../..').HoneyCSSPropertyValue<"MozBorderStartColor">;
|
|
1312
|
-
$MozBorderStartStyle?: import('../..').HoneyCSSPropertyValue<"MozBorderStartStyle">;
|
|
1313
|
-
$MozBorderTopColors?: import('../..').HoneyCSSPropertyValue<"MozBorderTopColors">;
|
|
1314
|
-
$MozBoxSizing?: import('../..').HoneyCSSPropertyValue<"MozBoxSizing">;
|
|
1315
|
-
$MozColumnCount?: import('../..').HoneyCSSPropertyValue<"MozColumnCount">;
|
|
1316
|
-
$MozColumnFill?: import('../..').HoneyCSSPropertyValue<"MozColumnFill">;
|
|
1317
|
-
$MozColumnRuleColor?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleColor">;
|
|
1318
|
-
$MozColumnRuleStyle?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleStyle">;
|
|
1319
|
-
$MozColumnRuleWidth?: import('../..').HoneyCSSPropertyValue<"MozColumnRuleWidth">;
|
|
1320
|
-
$MozColumnWidth?: import('../..').HoneyCSSPropertyValue<"MozColumnWidth">;
|
|
1321
|
-
$MozContextProperties?: import('../..').HoneyCSSPropertyValue<"MozContextProperties">;
|
|
1322
|
-
$MozFontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"MozFontFeatureSettings">;
|
|
1323
|
-
$MozFontLanguageOverride?: import('../..').HoneyCSSPropertyValue<"MozFontLanguageOverride">;
|
|
1324
|
-
$MozHyphens?: import('../..').HoneyCSSPropertyValue<"MozHyphens">;
|
|
1325
|
-
$MozImageRegion?: import('../..').HoneyCSSPropertyValue<"MozImageRegion">;
|
|
1326
|
-
$MozMarginEnd?: import('../..').HoneyCSSPropertyValue<"MozMarginEnd">;
|
|
1327
|
-
$MozMarginStart?: import('../..').HoneyCSSPropertyValue<"MozMarginStart">;
|
|
1328
|
-
$MozOrient?: import('../..').HoneyCSSPropertyValue<"MozOrient">;
|
|
1329
|
-
$MozOsxFontSmoothing?: import('../..').HoneyCSSPropertyValue<"MozOsxFontSmoothing">;
|
|
1330
|
-
$MozOutlineRadiusBottomleft?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusBottomleft">;
|
|
1331
|
-
$MozOutlineRadiusBottomright?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusBottomright">;
|
|
1332
|
-
$MozOutlineRadiusTopleft?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusTopleft">;
|
|
1333
|
-
$MozOutlineRadiusTopright?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadiusTopright">;
|
|
1334
|
-
$MozPaddingEnd?: import('../..').HoneyCSSPropertyValue<"MozPaddingEnd">;
|
|
1335
|
-
$MozPaddingStart?: import('../..').HoneyCSSPropertyValue<"MozPaddingStart">;
|
|
1336
|
-
$MozStackSizing?: import('../..').HoneyCSSPropertyValue<"MozStackSizing">;
|
|
1337
|
-
$MozTabSize?: import('../..').HoneyCSSPropertyValue<"MozTabSize">;
|
|
1338
|
-
$MozTextBlink?: import('../..').HoneyCSSPropertyValue<"MozTextBlink">;
|
|
1339
|
-
$MozTextSizeAdjust?: import('../..').HoneyCSSPropertyValue<"MozTextSizeAdjust">;
|
|
1340
|
-
$MozUserFocus?: import('../..').HoneyCSSPropertyValue<"MozUserFocus">;
|
|
1341
|
-
$MozUserModify?: import('../..').HoneyCSSPropertyValue<"MozUserModify">;
|
|
1342
|
-
$MozUserSelect?: import('../..').HoneyCSSPropertyValue<"MozUserSelect">;
|
|
1343
|
-
$MozWindowDragging?: import('../..').HoneyCSSPropertyValue<"MozWindowDragging">;
|
|
1344
|
-
$MozWindowShadow?: import('../..').HoneyCSSPropertyValue<"MozWindowShadow">;
|
|
1345
|
-
$msAccelerator?: import('../..').HoneyCSSPropertyValue<"msAccelerator">;
|
|
1346
|
-
$msBlockProgression?: import('../..').HoneyCSSPropertyValue<"msBlockProgression">;
|
|
1347
|
-
$msContentZoomChaining?: import('../..').HoneyCSSPropertyValue<"msContentZoomChaining">;
|
|
1348
|
-
$msContentZoomLimitMax?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimitMax">;
|
|
1349
|
-
$msContentZoomLimitMin?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimitMin">;
|
|
1350
|
-
$msContentZoomSnapPoints?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnapPoints">;
|
|
1351
|
-
$msContentZoomSnapType?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnapType">;
|
|
1352
|
-
$msContentZooming?: import('../..').HoneyCSSPropertyValue<"msContentZooming">;
|
|
1353
|
-
$msFilter?: import('../..').HoneyCSSPropertyValue<"msFilter">;
|
|
1354
|
-
$msFlexDirection?: import('../..').HoneyCSSPropertyValue<"msFlexDirection">;
|
|
1355
|
-
$msFlexPositive?: import('../..').HoneyCSSPropertyValue<"msFlexPositive">;
|
|
1356
|
-
$msFlowFrom?: import('../..').HoneyCSSPropertyValue<"msFlowFrom">;
|
|
1357
|
-
$msFlowInto?: import('../..').HoneyCSSPropertyValue<"msFlowInto">;
|
|
1358
|
-
$msGridColumns?: import('../..').HoneyCSSPropertyValue<"msGridColumns">;
|
|
1359
|
-
$msGridRows?: import('../..').HoneyCSSPropertyValue<"msGridRows">;
|
|
1360
|
-
$msHighContrastAdjust?: import('../..').HoneyCSSPropertyValue<"msHighContrastAdjust">;
|
|
1361
|
-
$msHyphenateLimitChars?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitChars">;
|
|
1362
|
-
$msHyphenateLimitLines?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitLines">;
|
|
1363
|
-
$msHyphenateLimitZone?: import('../..').HoneyCSSPropertyValue<"msHyphenateLimitZone">;
|
|
1364
|
-
$msHyphens?: import('../..').HoneyCSSPropertyValue<"msHyphens">;
|
|
1365
|
-
$msImeAlign?: import('../..').HoneyCSSPropertyValue<"msImeAlign">;
|
|
1366
|
-
$msLineBreak?: import('../..').HoneyCSSPropertyValue<"msLineBreak">;
|
|
1367
|
-
$msOrder?: import('../..').HoneyCSSPropertyValue<"msOrder">;
|
|
1368
|
-
$msOverflowStyle?: import('../..').HoneyCSSPropertyValue<"msOverflowStyle">;
|
|
1369
|
-
$msOverflowX?: import('../..').HoneyCSSPropertyValue<"msOverflowX">;
|
|
1370
|
-
$msOverflowY?: import('../..').HoneyCSSPropertyValue<"msOverflowY">;
|
|
1371
|
-
$msScrollChaining?: import('../..').HoneyCSSPropertyValue<"msScrollChaining">;
|
|
1372
|
-
$msScrollLimitXMax?: import('../..').HoneyCSSPropertyValue<"msScrollLimitXMax">;
|
|
1373
|
-
$msScrollLimitXMin?: import('../..').HoneyCSSPropertyValue<"msScrollLimitXMin">;
|
|
1374
|
-
$msScrollLimitYMax?: import('../..').HoneyCSSPropertyValue<"msScrollLimitYMax">;
|
|
1375
|
-
$msScrollLimitYMin?: import('../..').HoneyCSSPropertyValue<"msScrollLimitYMin">;
|
|
1376
|
-
$msScrollRails?: import('../..').HoneyCSSPropertyValue<"msScrollRails">;
|
|
1377
|
-
$msScrollSnapPointsX?: import('../..').HoneyCSSPropertyValue<"msScrollSnapPointsX">;
|
|
1378
|
-
$msScrollSnapPointsY?: import('../..').HoneyCSSPropertyValue<"msScrollSnapPointsY">;
|
|
1379
|
-
$msScrollSnapType?: import('../..').HoneyCSSPropertyValue<"msScrollSnapType">;
|
|
1380
|
-
$msScrollTranslation?: import('../..').HoneyCSSPropertyValue<"msScrollTranslation">;
|
|
1381
|
-
$msScrollbar3dlightColor?: import('../..').HoneyCSSPropertyValue<"msScrollbar3dlightColor">;
|
|
1382
|
-
$msScrollbarArrowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarArrowColor">;
|
|
1383
|
-
$msScrollbarBaseColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarBaseColor">;
|
|
1384
|
-
$msScrollbarDarkshadowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarDarkshadowColor">;
|
|
1385
|
-
$msScrollbarFaceColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarFaceColor">;
|
|
1386
|
-
$msScrollbarHighlightColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarHighlightColor">;
|
|
1387
|
-
$msScrollbarShadowColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarShadowColor">;
|
|
1388
|
-
$msScrollbarTrackColor?: import('../..').HoneyCSSPropertyValue<"msScrollbarTrackColor">;
|
|
1389
|
-
$msTextAutospace?: import('../..').HoneyCSSPropertyValue<"msTextAutospace">;
|
|
1390
|
-
$msTextCombineHorizontal?: import('../..').HoneyCSSPropertyValue<"msTextCombineHorizontal">;
|
|
1391
|
-
$msTextOverflow?: import('../..').HoneyCSSPropertyValue<"msTextOverflow">;
|
|
1392
|
-
$msTouchAction?: import('../..').HoneyCSSPropertyValue<"msTouchAction">;
|
|
1393
|
-
$msTouchSelect?: import('../..').HoneyCSSPropertyValue<"msTouchSelect">;
|
|
1394
|
-
$msTransform?: import('../..').HoneyCSSPropertyValue<"msTransform">;
|
|
1395
|
-
$msTransformOrigin?: import('../..').HoneyCSSPropertyValue<"msTransformOrigin">;
|
|
1396
|
-
$msTransitionDelay?: import('../..').HoneyCSSPropertyValue<"msTransitionDelay">;
|
|
1397
|
-
$msTransitionDuration?: import('../..').HoneyCSSPropertyValue<"msTransitionDuration">;
|
|
1398
|
-
$msTransitionProperty?: import('../..').HoneyCSSPropertyValue<"msTransitionProperty">;
|
|
1399
|
-
$msTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"msTransitionTimingFunction">;
|
|
1400
|
-
$msUserSelect?: import('../..').HoneyCSSPropertyValue<"msUserSelect">;
|
|
1401
|
-
$msWordBreak?: import('../..').HoneyCSSPropertyValue<"msWordBreak">;
|
|
1402
|
-
$msWrapFlow?: import('../..').HoneyCSSPropertyValue<"msWrapFlow">;
|
|
1403
|
-
$msWrapMargin?: import('../..').HoneyCSSPropertyValue<"msWrapMargin">;
|
|
1404
|
-
$msWrapThrough?: import('../..').HoneyCSSPropertyValue<"msWrapThrough">;
|
|
1405
|
-
$msWritingMode?: import('../..').HoneyCSSPropertyValue<"msWritingMode">;
|
|
1406
|
-
$WebkitAlignContent?: import('../..').HoneyCSSPropertyValue<"WebkitAlignContent">;
|
|
1407
|
-
$WebkitAlignItems?: import('../..').HoneyCSSPropertyValue<"WebkitAlignItems">;
|
|
1408
|
-
$WebkitAlignSelf?: import('../..').HoneyCSSPropertyValue<"WebkitAlignSelf">;
|
|
1409
|
-
$WebkitAnimationDelay?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDelay">;
|
|
1410
|
-
$WebkitAnimationDirection?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDirection">;
|
|
1411
|
-
$WebkitAnimationDuration?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationDuration">;
|
|
1412
|
-
$WebkitAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationFillMode">;
|
|
1413
|
-
$WebkitAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationIterationCount">;
|
|
1414
|
-
$WebkitAnimationName?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationName">;
|
|
1415
|
-
$WebkitAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationPlayState">;
|
|
1416
|
-
$WebkitAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"WebkitAnimationTimingFunction">;
|
|
1417
|
-
$WebkitAppearance?: import('../..').HoneyCSSPropertyValue<"WebkitAppearance">;
|
|
1418
|
-
$WebkitBackdropFilter?: import('../..').HoneyCSSPropertyValue<"WebkitBackdropFilter">;
|
|
1419
|
-
$WebkitBackfaceVisibility?: import('../..').HoneyCSSPropertyValue<"WebkitBackfaceVisibility">;
|
|
1420
|
-
$WebkitBackgroundClip?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundClip">;
|
|
1421
|
-
$WebkitBackgroundOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundOrigin">;
|
|
1422
|
-
$WebkitBackgroundSize?: import('../..').HoneyCSSPropertyValue<"WebkitBackgroundSize">;
|
|
1423
|
-
$WebkitBorderBeforeColor?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeColor">;
|
|
1424
|
-
$WebkitBorderBeforeStyle?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeStyle">;
|
|
1425
|
-
$WebkitBorderBeforeWidth?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBeforeWidth">;
|
|
1426
|
-
$WebkitBorderBottomLeftRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBottomLeftRadius">;
|
|
1427
|
-
$WebkitBorderBottomRightRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBottomRightRadius">;
|
|
1428
|
-
$WebkitBorderImageSlice?: import('../..').HoneyCSSPropertyValue<"WebkitBorderImageSlice">;
|
|
1429
|
-
$WebkitBorderTopLeftRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderTopLeftRadius">;
|
|
1430
|
-
$WebkitBorderTopRightRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderTopRightRadius">;
|
|
1431
|
-
$WebkitBoxDecorationBreak?: import('../..').HoneyCSSPropertyValue<"WebkitBoxDecorationBreak">;
|
|
1432
|
-
$WebkitBoxReflect?: import('../..').HoneyCSSPropertyValue<"WebkitBoxReflect">;
|
|
1433
|
-
$WebkitBoxShadow?: import('../..').HoneyCSSPropertyValue<"WebkitBoxShadow">;
|
|
1434
|
-
$WebkitBoxSizing?: import('../..').HoneyCSSPropertyValue<"WebkitBoxSizing">;
|
|
1435
|
-
$WebkitClipPath?: import('../..').HoneyCSSPropertyValue<"WebkitClipPath">;
|
|
1436
|
-
$WebkitColumnCount?: import('../..').HoneyCSSPropertyValue<"WebkitColumnCount">;
|
|
1437
|
-
$WebkitColumnFill?: import('../..').HoneyCSSPropertyValue<"WebkitColumnFill">;
|
|
1438
|
-
$WebkitColumnRuleColor?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleColor">;
|
|
1439
|
-
$WebkitColumnRuleStyle?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleStyle">;
|
|
1440
|
-
$WebkitColumnRuleWidth?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRuleWidth">;
|
|
1441
|
-
$WebkitColumnSpan?: import('../..').HoneyCSSPropertyValue<"WebkitColumnSpan">;
|
|
1442
|
-
$WebkitColumnWidth?: import('../..').HoneyCSSPropertyValue<"WebkitColumnWidth">;
|
|
1443
|
-
$WebkitFilter?: import('../..').HoneyCSSPropertyValue<"WebkitFilter">;
|
|
1444
|
-
$WebkitFlexBasis?: import('../..').HoneyCSSPropertyValue<"WebkitFlexBasis">;
|
|
1445
|
-
$WebkitFlexDirection?: import('../..').HoneyCSSPropertyValue<"WebkitFlexDirection">;
|
|
1446
|
-
$WebkitFlexGrow?: import('../..').HoneyCSSPropertyValue<"WebkitFlexGrow">;
|
|
1447
|
-
$WebkitFlexShrink?: import('../..').HoneyCSSPropertyValue<"WebkitFlexShrink">;
|
|
1448
|
-
$WebkitFlexWrap?: import('../..').HoneyCSSPropertyValue<"WebkitFlexWrap">;
|
|
1449
|
-
$WebkitFontFeatureSettings?: import('../..').HoneyCSSPropertyValue<"WebkitFontFeatureSettings">;
|
|
1450
|
-
$WebkitFontKerning?: import('../..').HoneyCSSPropertyValue<"WebkitFontKerning">;
|
|
1451
|
-
$WebkitFontSmoothing?: import('../..').HoneyCSSPropertyValue<"WebkitFontSmoothing">;
|
|
1452
|
-
$WebkitFontVariantLigatures?: import('../..').HoneyCSSPropertyValue<"WebkitFontVariantLigatures">;
|
|
1453
|
-
$WebkitHyphenateCharacter?: import('../..').HoneyCSSPropertyValue<"WebkitHyphenateCharacter">;
|
|
1454
|
-
$WebkitHyphens?: import('../..').HoneyCSSPropertyValue<"WebkitHyphens">;
|
|
1455
|
-
$WebkitInitialLetter?: import('../..').HoneyCSSPropertyValue<"WebkitInitialLetter">;
|
|
1456
|
-
$WebkitJustifyContent?: import('../..').HoneyCSSPropertyValue<"WebkitJustifyContent">;
|
|
1457
|
-
$WebkitLineBreak?: import('../..').HoneyCSSPropertyValue<"WebkitLineBreak">;
|
|
1458
|
-
$WebkitLineClamp?: import('../..').HoneyCSSPropertyValue<"WebkitLineClamp">;
|
|
1459
|
-
$WebkitMarginEnd?: import('../..').HoneyCSSPropertyValue<"WebkitMarginEnd">;
|
|
1460
|
-
$WebkitMarginStart?: import('../..').HoneyCSSPropertyValue<"WebkitMarginStart">;
|
|
1461
|
-
$WebkitMaskAttachment?: import('../..').HoneyCSSPropertyValue<"WebkitMaskAttachment">;
|
|
1462
|
-
$WebkitMaskBoxImageOutset?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageOutset">;
|
|
1463
|
-
$WebkitMaskBoxImageRepeat?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageRepeat">;
|
|
1464
|
-
$WebkitMaskBoxImageSlice?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageSlice">;
|
|
1465
|
-
$WebkitMaskBoxImageSource?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageSource">;
|
|
1466
|
-
$WebkitMaskBoxImageWidth?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImageWidth">;
|
|
1467
|
-
$WebkitMaskClip?: import('../..').HoneyCSSPropertyValue<"WebkitMaskClip">;
|
|
1468
|
-
$WebkitMaskComposite?: import('../..').HoneyCSSPropertyValue<"WebkitMaskComposite">;
|
|
1469
|
-
$WebkitMaskImage?: import('../..').HoneyCSSPropertyValue<"WebkitMaskImage">;
|
|
1470
|
-
$WebkitMaskOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitMaskOrigin">;
|
|
1471
|
-
$WebkitMaskPosition?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPosition">;
|
|
1472
|
-
$WebkitMaskPositionX?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPositionX">;
|
|
1473
|
-
$WebkitMaskPositionY?: import('../..').HoneyCSSPropertyValue<"WebkitMaskPositionY">;
|
|
1474
|
-
$WebkitMaskRepeat?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeat">;
|
|
1475
|
-
$WebkitMaskRepeatX?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeatX">;
|
|
1476
|
-
$WebkitMaskRepeatY?: import('../..').HoneyCSSPropertyValue<"WebkitMaskRepeatY">;
|
|
1477
|
-
$WebkitMaskSize?: import('../..').HoneyCSSPropertyValue<"WebkitMaskSize">;
|
|
1478
|
-
$WebkitMaxInlineSize?: import('../..').HoneyCSSPropertyValue<"WebkitMaxInlineSize">;
|
|
1479
|
-
$WebkitOrder?: import('../..').HoneyCSSPropertyValue<"WebkitOrder">;
|
|
1480
|
-
$WebkitOverflowScrolling?: import('../..').HoneyCSSPropertyValue<"WebkitOverflowScrolling">;
|
|
1481
|
-
$WebkitPaddingEnd?: import('../..').HoneyCSSPropertyValue<"WebkitPaddingEnd">;
|
|
1482
|
-
$WebkitPaddingStart?: import('../..').HoneyCSSPropertyValue<"WebkitPaddingStart">;
|
|
1483
|
-
$WebkitPerspective?: import('../..').HoneyCSSPropertyValue<"WebkitPerspective">;
|
|
1484
|
-
$WebkitPerspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitPerspectiveOrigin">;
|
|
1485
|
-
$WebkitPrintColorAdjust?: import('../..').HoneyCSSPropertyValue<"WebkitPrintColorAdjust">;
|
|
1486
|
-
$WebkitRubyPosition?: import('../..').HoneyCSSPropertyValue<"WebkitRubyPosition">;
|
|
1487
|
-
$WebkitScrollSnapType?: import('../..').HoneyCSSPropertyValue<"WebkitScrollSnapType">;
|
|
1488
|
-
$WebkitShapeMargin?: import('../..').HoneyCSSPropertyValue<"WebkitShapeMargin">;
|
|
1489
|
-
$WebkitTapHighlightColor?: import('../..').HoneyCSSPropertyValue<"WebkitTapHighlightColor">;
|
|
1490
|
-
$WebkitTextCombine?: import('../..').HoneyCSSPropertyValue<"WebkitTextCombine">;
|
|
1491
|
-
$WebkitTextDecorationColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationColor">;
|
|
1492
|
-
$WebkitTextDecorationLine?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationLine">;
|
|
1493
|
-
$WebkitTextDecorationSkip?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationSkip">;
|
|
1494
|
-
$WebkitTextDecorationStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTextDecorationStyle">;
|
|
1495
|
-
$WebkitTextEmphasisColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisColor">;
|
|
1496
|
-
$WebkitTextEmphasisPosition?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisPosition">;
|
|
1497
|
-
$WebkitTextEmphasisStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasisStyle">;
|
|
1498
|
-
$WebkitTextFillColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextFillColor">;
|
|
1499
|
-
$WebkitTextOrientation?: import('../..').HoneyCSSPropertyValue<"WebkitTextOrientation">;
|
|
1500
|
-
$WebkitTextSizeAdjust?: import('../..').HoneyCSSPropertyValue<"WebkitTextSizeAdjust">;
|
|
1501
|
-
$WebkitTextStrokeColor?: import('../..').HoneyCSSPropertyValue<"WebkitTextStrokeColor">;
|
|
1502
|
-
$WebkitTextStrokeWidth?: import('../..').HoneyCSSPropertyValue<"WebkitTextStrokeWidth">;
|
|
1503
|
-
$WebkitTextUnderlinePosition?: import('../..').HoneyCSSPropertyValue<"WebkitTextUnderlinePosition">;
|
|
1504
|
-
$WebkitTouchCallout?: import('../..').HoneyCSSPropertyValue<"WebkitTouchCallout">;
|
|
1505
|
-
$WebkitTransform?: import('../..').HoneyCSSPropertyValue<"WebkitTransform">;
|
|
1506
|
-
$WebkitTransformOrigin?: import('../..').HoneyCSSPropertyValue<"WebkitTransformOrigin">;
|
|
1507
|
-
$WebkitTransformStyle?: import('../..').HoneyCSSPropertyValue<"WebkitTransformStyle">;
|
|
1508
|
-
$WebkitTransitionDelay?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionDelay">;
|
|
1509
|
-
$WebkitTransitionDuration?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionDuration">;
|
|
1510
|
-
$WebkitTransitionProperty?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionProperty">;
|
|
1511
|
-
$WebkitTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"WebkitTransitionTimingFunction">;
|
|
1512
|
-
$WebkitUserModify?: import('../..').HoneyCSSPropertyValue<"WebkitUserModify">;
|
|
1513
|
-
$WebkitUserSelect?: import('../..').HoneyCSSPropertyValue<"WebkitUserSelect">;
|
|
1514
|
-
$WebkitWritingMode?: import('../..').HoneyCSSPropertyValue<"WebkitWritingMode">;
|
|
1515
|
-
$MozAnimation?: import('../..').HoneyCSSPropertyValue<"MozAnimation">;
|
|
1516
|
-
$MozBorderImage?: import('../..').HoneyCSSPropertyValue<"MozBorderImage">;
|
|
1517
|
-
$MozColumnRule?: import('../..').HoneyCSSPropertyValue<"MozColumnRule">;
|
|
1518
|
-
$MozColumns?: import('../..').HoneyCSSPropertyValue<"MozColumns">;
|
|
1519
|
-
$MozOutlineRadius?: import('../..').HoneyCSSPropertyValue<"MozOutlineRadius">;
|
|
1520
|
-
$msContentZoomLimit?: import('../..').HoneyCSSPropertyValue<"msContentZoomLimit">;
|
|
1521
|
-
$msContentZoomSnap?: import('../..').HoneyCSSPropertyValue<"msContentZoomSnap">;
|
|
1522
|
-
$msFlex?: import('../..').HoneyCSSPropertyValue<"msFlex">;
|
|
1523
|
-
$msScrollLimit?: import('../..').HoneyCSSPropertyValue<"msScrollLimit">;
|
|
1524
|
-
$msScrollSnapX?: import('../..').HoneyCSSPropertyValue<"msScrollSnapX">;
|
|
1525
|
-
$msScrollSnapY?: import('../..').HoneyCSSPropertyValue<"msScrollSnapY">;
|
|
1526
|
-
$msTransition?: import('../..').HoneyCSSPropertyValue<"msTransition">;
|
|
1527
|
-
$WebkitAnimation?: import('../..').HoneyCSSPropertyValue<"WebkitAnimation">;
|
|
1528
|
-
$WebkitBorderBefore?: import('../..').HoneyCSSPropertyValue<"WebkitBorderBefore">;
|
|
1529
|
-
$WebkitBorderImage?: import('../..').HoneyCSSPropertyValue<"WebkitBorderImage">;
|
|
1530
|
-
$WebkitBorderRadius?: import('../..').HoneyCSSPropertyValue<"WebkitBorderRadius">;
|
|
1531
|
-
$WebkitColumnRule?: import('../..').HoneyCSSPropertyValue<"WebkitColumnRule">;
|
|
1532
|
-
$WebkitColumns?: import('../..').HoneyCSSPropertyValue<"WebkitColumns">;
|
|
1533
|
-
$WebkitFlex?: import('../..').HoneyCSSPropertyValue<"WebkitFlex">;
|
|
1534
|
-
$WebkitFlexFlow?: import('../..').HoneyCSSPropertyValue<"WebkitFlexFlow">;
|
|
1535
|
-
$WebkitMask?: import('../..').HoneyCSSPropertyValue<"WebkitMask">;
|
|
1536
|
-
$WebkitMaskBoxImage?: import('../..').HoneyCSSPropertyValue<"WebkitMaskBoxImage">;
|
|
1537
|
-
$WebkitTextEmphasis?: import('../..').HoneyCSSPropertyValue<"WebkitTextEmphasis">;
|
|
1538
|
-
$WebkitTextStroke?: import('../..').HoneyCSSPropertyValue<"WebkitTextStroke">;
|
|
1539
|
-
$WebkitTransition?: import('../..').HoneyCSSPropertyValue<"WebkitTransition">;
|
|
1540
|
-
$azimuth?: import('../..').HoneyCSSPropertyValue<"azimuth">;
|
|
1541
|
-
$boxAlign?: import('../..').HoneyCSSPropertyValue<"boxAlign">;
|
|
1542
|
-
$boxDirection?: import('../..').HoneyCSSPropertyValue<"boxDirection">;
|
|
1543
|
-
$boxFlex?: import('../..').HoneyCSSPropertyValue<"boxFlex">;
|
|
1544
|
-
$boxFlexGroup?: import('../..').HoneyCSSPropertyValue<"boxFlexGroup">;
|
|
1545
|
-
$boxLines?: import('../..').HoneyCSSPropertyValue<"boxLines">;
|
|
1546
|
-
$boxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"boxOrdinalGroup">;
|
|
1547
|
-
$boxOrient?: import('../..').HoneyCSSPropertyValue<"boxOrient">;
|
|
1548
|
-
$boxPack?: import('../..').HoneyCSSPropertyValue<"boxPack">;
|
|
1549
|
-
$clip?: import('../..').HoneyCSSPropertyValue<"clip">;
|
|
1550
|
-
$gridColumnGap?: import('../..').HoneyCSSPropertyValue<"gridColumnGap">;
|
|
1551
|
-
$gridGap?: import('../..').HoneyCSSPropertyValue<"gridGap">;
|
|
1552
|
-
$gridRowGap?: import('../..').HoneyCSSPropertyValue<"gridRowGap">;
|
|
1553
|
-
$imeMode?: import('../..').HoneyCSSPropertyValue<"imeMode">;
|
|
1554
|
-
$offsetBlock?: import('../..').HoneyCSSPropertyValue<"offsetBlock">;
|
|
1555
|
-
$offsetBlockEnd?: import('../..').HoneyCSSPropertyValue<"offsetBlockEnd">;
|
|
1556
|
-
$offsetBlockStart?: import('../..').HoneyCSSPropertyValue<"offsetBlockStart">;
|
|
1557
|
-
$offsetInline?: import('../..').HoneyCSSPropertyValue<"offsetInline">;
|
|
1558
|
-
$offsetInlineEnd?: import('../..').HoneyCSSPropertyValue<"offsetInlineEnd">;
|
|
1559
|
-
$offsetInlineStart?: import('../..').HoneyCSSPropertyValue<"offsetInlineStart">;
|
|
1560
|
-
$scrollSnapCoordinate?: import('../..').HoneyCSSPropertyValue<"scrollSnapCoordinate">;
|
|
1561
|
-
$scrollSnapDestination?: import('../..').HoneyCSSPropertyValue<"scrollSnapDestination">;
|
|
1562
|
-
$scrollSnapPointsX?: import('../..').HoneyCSSPropertyValue<"scrollSnapPointsX">;
|
|
1563
|
-
$scrollSnapPointsY?: import('../..').HoneyCSSPropertyValue<"scrollSnapPointsY">;
|
|
1564
|
-
$scrollSnapTypeX?: import('../..').HoneyCSSPropertyValue<"scrollSnapTypeX">;
|
|
1565
|
-
$scrollSnapTypeY?: import('../..').HoneyCSSPropertyValue<"scrollSnapTypeY">;
|
|
1566
|
-
$KhtmlBoxAlign?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxAlign">;
|
|
1567
|
-
$KhtmlBoxDirection?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxDirection">;
|
|
1568
|
-
$KhtmlBoxFlex?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxFlex">;
|
|
1569
|
-
$KhtmlBoxFlexGroup?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxFlexGroup">;
|
|
1570
|
-
$KhtmlBoxLines?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxLines">;
|
|
1571
|
-
$KhtmlBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxOrdinalGroup">;
|
|
1572
|
-
$KhtmlBoxOrient?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxOrient">;
|
|
1573
|
-
$KhtmlBoxPack?: import('../..').HoneyCSSPropertyValue<"KhtmlBoxPack">;
|
|
1574
|
-
$KhtmlLineBreak?: import('../..').HoneyCSSPropertyValue<"KhtmlLineBreak">;
|
|
1575
|
-
$KhtmlOpacity?: import('../..').HoneyCSSPropertyValue<"KhtmlOpacity">;
|
|
1576
|
-
$KhtmlUserSelect?: import('../..').HoneyCSSPropertyValue<"KhtmlUserSelect">;
|
|
1577
|
-
$MozBackfaceVisibility?: import('../..').HoneyCSSPropertyValue<"MozBackfaceVisibility">;
|
|
1578
|
-
$MozBackgroundClip?: import('../..').HoneyCSSPropertyValue<"MozBackgroundClip">;
|
|
1579
|
-
$MozBackgroundInlinePolicy?: import('../..').HoneyCSSPropertyValue<"MozBackgroundInlinePolicy">;
|
|
1580
|
-
$MozBackgroundOrigin?: import('../..').HoneyCSSPropertyValue<"MozBackgroundOrigin">;
|
|
1581
|
-
$MozBackgroundSize?: import('../..').HoneyCSSPropertyValue<"MozBackgroundSize">;
|
|
1582
|
-
$MozBorderRadius?: import('../..').HoneyCSSPropertyValue<"MozBorderRadius">;
|
|
1583
|
-
$MozBorderRadiusBottomleft?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusBottomleft">;
|
|
1584
|
-
$MozBorderRadiusBottomright?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusBottomright">;
|
|
1585
|
-
$MozBorderRadiusTopleft?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusTopleft">;
|
|
1586
|
-
$MozBorderRadiusTopright?: import('../..').HoneyCSSPropertyValue<"MozBorderRadiusTopright">;
|
|
1587
|
-
$MozBoxAlign?: import('../..').HoneyCSSPropertyValue<"MozBoxAlign">;
|
|
1588
|
-
$MozBoxDirection?: import('../..').HoneyCSSPropertyValue<"MozBoxDirection">;
|
|
1589
|
-
$MozBoxFlex?: import('../..').HoneyCSSPropertyValue<"MozBoxFlex">;
|
|
1590
|
-
$MozBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"MozBoxOrdinalGroup">;
|
|
1591
|
-
$MozBoxOrient?: import('../..').HoneyCSSPropertyValue<"MozBoxOrient">;
|
|
1592
|
-
$MozBoxPack?: import('../..').HoneyCSSPropertyValue<"MozBoxPack">;
|
|
1593
|
-
$MozBoxShadow?: import('../..').HoneyCSSPropertyValue<"MozBoxShadow">;
|
|
1594
|
-
$MozFloatEdge?: import('../..').HoneyCSSPropertyValue<"MozFloatEdge">;
|
|
1595
|
-
$MozForceBrokenImageIcon?: import('../..').HoneyCSSPropertyValue<"MozForceBrokenImageIcon">;
|
|
1596
|
-
$MozOpacity?: import('../..').HoneyCSSPropertyValue<"MozOpacity">;
|
|
1597
|
-
$MozOutline?: import('../..').HoneyCSSPropertyValue<"MozOutline">;
|
|
1598
|
-
$MozOutlineColor?: import('../..').HoneyCSSPropertyValue<"MozOutlineColor">;
|
|
1599
|
-
$MozOutlineStyle?: import('../..').HoneyCSSPropertyValue<"MozOutlineStyle">;
|
|
1600
|
-
$MozOutlineWidth?: import('../..').HoneyCSSPropertyValue<"MozOutlineWidth">;
|
|
1601
|
-
$MozPerspective?: import('../..').HoneyCSSPropertyValue<"MozPerspective">;
|
|
1602
|
-
$MozPerspectiveOrigin?: import('../..').HoneyCSSPropertyValue<"MozPerspectiveOrigin">;
|
|
1603
|
-
$MozTextAlignLast?: import('../..').HoneyCSSPropertyValue<"MozTextAlignLast">;
|
|
1604
|
-
$MozTextDecorationColor?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationColor">;
|
|
1605
|
-
$MozTextDecorationLine?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationLine">;
|
|
1606
|
-
$MozTextDecorationStyle?: import('../..').HoneyCSSPropertyValue<"MozTextDecorationStyle">;
|
|
1607
|
-
$MozTransform?: import('../..').HoneyCSSPropertyValue<"MozTransform">;
|
|
1608
|
-
$MozTransformOrigin?: import('../..').HoneyCSSPropertyValue<"MozTransformOrigin">;
|
|
1609
|
-
$MozTransformStyle?: import('../..').HoneyCSSPropertyValue<"MozTransformStyle">;
|
|
1610
|
-
$MozTransition?: import('../..').HoneyCSSPropertyValue<"MozTransition">;
|
|
1611
|
-
$MozTransitionDelay?: import('../..').HoneyCSSPropertyValue<"MozTransitionDelay">;
|
|
1612
|
-
$MozTransitionDuration?: import('../..').HoneyCSSPropertyValue<"MozTransitionDuration">;
|
|
1613
|
-
$MozTransitionProperty?: import('../..').HoneyCSSPropertyValue<"MozTransitionProperty">;
|
|
1614
|
-
$MozTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"MozTransitionTimingFunction">;
|
|
1615
|
-
$MozUserInput?: import('../..').HoneyCSSPropertyValue<"MozUserInput">;
|
|
1616
|
-
$msImeMode?: import('../..').HoneyCSSPropertyValue<"msImeMode">;
|
|
1617
|
-
$OAnimation?: import('../..').HoneyCSSPropertyValue<"OAnimation">;
|
|
1618
|
-
$OAnimationDelay?: import('../..').HoneyCSSPropertyValue<"OAnimationDelay">;
|
|
1619
|
-
$OAnimationDirection?: import('../..').HoneyCSSPropertyValue<"OAnimationDirection">;
|
|
1620
|
-
$OAnimationDuration?: import('../..').HoneyCSSPropertyValue<"OAnimationDuration">;
|
|
1621
|
-
$OAnimationFillMode?: import('../..').HoneyCSSPropertyValue<"OAnimationFillMode">;
|
|
1622
|
-
$OAnimationIterationCount?: import('../..').HoneyCSSPropertyValue<"OAnimationIterationCount">;
|
|
1623
|
-
$OAnimationName?: import('../..').HoneyCSSPropertyValue<"OAnimationName">;
|
|
1624
|
-
$OAnimationPlayState?: import('../..').HoneyCSSPropertyValue<"OAnimationPlayState">;
|
|
1625
|
-
$OAnimationTimingFunction?: import('../..').HoneyCSSPropertyValue<"OAnimationTimingFunction">;
|
|
1626
|
-
$OBackgroundSize?: import('../..').HoneyCSSPropertyValue<"OBackgroundSize">;
|
|
1627
|
-
$OBorderImage?: import('../..').HoneyCSSPropertyValue<"OBorderImage">;
|
|
1628
|
-
$OObjectFit?: import('../..').HoneyCSSPropertyValue<"OObjectFit">;
|
|
1629
|
-
$OObjectPosition?: import('../..').HoneyCSSPropertyValue<"OObjectPosition">;
|
|
1630
|
-
$OTabSize?: import('../..').HoneyCSSPropertyValue<"OTabSize">;
|
|
1631
|
-
$OTextOverflow?: import('../..').HoneyCSSPropertyValue<"OTextOverflow">;
|
|
1632
|
-
$OTransform?: import('../..').HoneyCSSPropertyValue<"OTransform">;
|
|
1633
|
-
$OTransformOrigin?: import('../..').HoneyCSSPropertyValue<"OTransformOrigin">;
|
|
1634
|
-
$OTransition?: import('../..').HoneyCSSPropertyValue<"OTransition">;
|
|
1635
|
-
$OTransitionDelay?: import('../..').HoneyCSSPropertyValue<"OTransitionDelay">;
|
|
1636
|
-
$OTransitionDuration?: import('../..').HoneyCSSPropertyValue<"OTransitionDuration">;
|
|
1637
|
-
$OTransitionProperty?: import('../..').HoneyCSSPropertyValue<"OTransitionProperty">;
|
|
1638
|
-
$OTransitionTimingFunction?: import('../..').HoneyCSSPropertyValue<"OTransitionTimingFunction">;
|
|
1639
|
-
$WebkitBoxAlign?: import('../..').HoneyCSSPropertyValue<"WebkitBoxAlign">;
|
|
1640
|
-
$WebkitBoxDirection?: import('../..').HoneyCSSPropertyValue<"WebkitBoxDirection">;
|
|
1641
|
-
$WebkitBoxFlex?: import('../..').HoneyCSSPropertyValue<"WebkitBoxFlex">;
|
|
1642
|
-
$WebkitBoxFlexGroup?: import('../..').HoneyCSSPropertyValue<"WebkitBoxFlexGroup">;
|
|
1643
|
-
$WebkitBoxLines?: import('../..').HoneyCSSPropertyValue<"WebkitBoxLines">;
|
|
1644
|
-
$WebkitBoxOrdinalGroup?: import('../..').HoneyCSSPropertyValue<"WebkitBoxOrdinalGroup">;
|
|
1645
|
-
$WebkitBoxOrient?: import('../..').HoneyCSSPropertyValue<"WebkitBoxOrient">;
|
|
1646
|
-
$WebkitBoxPack?: import('../..').HoneyCSSPropertyValue<"WebkitBoxPack">;
|
|
1647
|
-
$alignmentBaseline?: import('../..').HoneyCSSPropertyValue<"alignmentBaseline">;
|
|
1648
|
-
$baselineShift?: import('../..').HoneyCSSPropertyValue<"baselineShift">;
|
|
1649
|
-
$clipRule?: import('../..').HoneyCSSPropertyValue<"clipRule">;
|
|
1650
|
-
$colorInterpolation?: import('../..').HoneyCSSPropertyValue<"colorInterpolation">;
|
|
1651
|
-
$colorRendering?: import('../..').HoneyCSSPropertyValue<"colorRendering">;
|
|
1652
|
-
$dominantBaseline?: import('../..').HoneyCSSPropertyValue<"dominantBaseline">;
|
|
1653
|
-
$fill?: import('../..').HoneyCSSPropertyValue<"fill"> | undefined;
|
|
1654
|
-
$fillOpacity?: import('../..').HoneyCSSPropertyValue<"fillOpacity">;
|
|
1655
|
-
$fillRule?: import('../..').HoneyCSSPropertyValue<"fillRule">;
|
|
1656
|
-
$floodColor?: import('../..').HoneyCSSPropertyValue<"floodColor">;
|
|
1657
|
-
$floodOpacity?: import('../..').HoneyCSSPropertyValue<"floodOpacity">;
|
|
1658
|
-
$glyphOrientationVertical?: import('../..').HoneyCSSPropertyValue<"glyphOrientationVertical">;
|
|
1659
|
-
$lightingColor?: import('../..').HoneyCSSPropertyValue<"lightingColor">;
|
|
1660
|
-
$marker?: import('../..').HoneyCSSPropertyValue<"marker">;
|
|
1661
|
-
$markerEnd?: import('../..').HoneyCSSPropertyValue<"markerEnd">;
|
|
1662
|
-
$markerMid?: import('../..').HoneyCSSPropertyValue<"markerMid">;
|
|
1663
|
-
$markerStart?: import('../..').HoneyCSSPropertyValue<"markerStart">;
|
|
1664
|
-
$shapeRendering?: import('../..').HoneyCSSPropertyValue<"shapeRendering">;
|
|
1665
|
-
$stopColor?: import('../..').HoneyCSSPropertyValue<"stopColor">;
|
|
1666
|
-
$stopOpacity?: import('../..').HoneyCSSPropertyValue<"stopOpacity">;
|
|
1667
|
-
$stroke?: import('../..').HoneyCSSPropertyValue<"stroke"> | undefined;
|
|
1668
|
-
$strokeDasharray?: import('../..').HoneyCSSPropertyValue<"strokeDasharray">;
|
|
1669
|
-
$strokeDashoffset?: import('../..').HoneyCSSPropertyValue<"strokeDashoffset">;
|
|
1670
|
-
$strokeLinecap?: import('../..').HoneyCSSPropertyValue<"strokeLinecap">;
|
|
1671
|
-
$strokeLinejoin?: import('../..').HoneyCSSPropertyValue<"strokeLinejoin">;
|
|
1672
|
-
$strokeMiterlimit?: import('../..').HoneyCSSPropertyValue<"strokeMiterlimit">;
|
|
1673
|
-
$strokeOpacity?: import('../..').HoneyCSSPropertyValue<"strokeOpacity">;
|
|
1674
|
-
$strokeWidth?: import('../..').HoneyCSSPropertyValue<"strokeWidth">;
|
|
1675
|
-
$textAnchor?: import('../..').HoneyCSSPropertyValue<"textAnchor">;
|
|
1676
|
-
$vectorEffect?: import('../..').HoneyCSSPropertyValue<"vectorEffect">;
|
|
1677
|
-
}> & {
|
|
1678
|
-
/**
|
|
1679
|
-
* Total number of columns in the grid.
|
|
1680
|
-
*/
|
|
1681
|
-
columns: number;
|
|
1682
|
-
/**
|
|
1683
|
-
* Spacing between grid columns.
|
|
1684
|
-
*/
|
|
1685
|
-
spacing: number | undefined;
|
|
1686
|
-
/**
|
|
1687
|
-
* Number of columns this component should take.
|
|
1688
|
-
*
|
|
1689
|
-
* @default 1
|
|
1690
|
-
*/
|
|
1691
|
-
takeColumns?: number;
|
|
1692
|
-
}, never>;
|
|
32
|
+
export declare const HoneyGridColumnStyled: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<Omit<import('styled-components').FastOmit<import('react').DetailedHTMLProps<HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "$width" | "$height" | "$margin" | "$marginTop" | "$marginRight" | "$marginBottom" | "$marginLeft" | "$padding" | "$paddingTop" | "$paddingRight" | "$paddingBottom" | "$paddingLeft" | "$top" | "$right" | "$bottom" | "$left" | "$gap" | "$rowGap" | "$columnGap" | "$accentColor" | "$alignContent" | "$alignItems" | "$alignSelf" | "$alignTracks" | "$animationComposition" | "$animationDelay" | "$animationDirection" | "$animationDuration" | "$animationFillMode" | "$animationIterationCount" | "$animationName" | "$animationPlayState" | "$animationRangeEnd" | "$animationRangeStart" | "$animationTimeline" | "$animationTimingFunction" | "$appearance" | "$aspectRatio" | "$backdropFilter" | "$backfaceVisibility" | "$backgroundAttachment" | "$backgroundBlendMode" | "$backgroundClip" | "$backgroundColor" | "$backgroundImage" | "$backgroundOrigin" | "$backgroundPositionX" | "$backgroundPositionY" | "$backgroundRepeat" | "$backgroundSize" | "$blockOverflow" | "$blockSize" | "$borderBlockColor" | "$borderBlockEndColor" | "$borderBlockEndStyle" | "$borderBlockEndWidth" | "$borderBlockStartColor" | "$borderBlockStartStyle" | "$borderBlockStartWidth" | "$borderBlockStyle" | "$borderBlockWidth" | "$borderBottomColor" | "$borderBottomLeftRadius" | "$borderBottomRightRadius" | "$borderBottomStyle" | "$borderBottomWidth" | "$borderCollapse" | "$borderEndEndRadius" | "$borderEndStartRadius" | "$borderImageOutset" | "$borderImageRepeat" | "$borderImageSlice" | "$borderImageSource" | "$borderImageWidth" | "$borderInlineColor" | "$borderInlineEndColor" | "$borderInlineEndStyle" | "$borderInlineEndWidth" | "$borderInlineStartColor" | "$borderInlineStartStyle" | "$borderInlineStartWidth" | "$borderInlineStyle" | "$borderInlineWidth" | "$borderLeftColor" | "$borderLeftStyle" | "$borderLeftWidth" | "$borderRightColor" | "$borderRightStyle" | "$borderRightWidth" | "$borderSpacing" | "$borderStartEndRadius" | "$borderStartStartRadius" | "$borderTopColor" | "$borderTopLeftRadius" | "$borderTopRightRadius" | "$borderTopStyle" | "$borderTopWidth" | "$boxDecorationBreak" | "$boxShadow" | "$boxSizing" | "$breakAfter" | "$breakBefore" | "$breakInside" | "$captionSide" | "$caretColor" | "$caretShape" | "$clear" | "$clipPath" | "$color" | "$colorAdjust" | "$colorScheme" | "$columnCount" | "$columnFill" | "$columnRuleColor" | "$columnRuleStyle" | "$columnRuleWidth" | "$columnSpan" | "$columnWidth" | "$contain" | "$containIntrinsicBlockSize" | "$containIntrinsicHeight" | "$containIntrinsicInlineSize" | "$containIntrinsicWidth" | "$containerName" | "$containerType" | "$content" | "$contentVisibility" | "$counterIncrement" | "$counterReset" | "$counterSet" | "$cursor" | "$direction" | "$display" | "$emptyCells" | "$filter" | "$flexBasis" | "$flexDirection" | "$flexGrow" | "$flexShrink" | "$flexWrap" | "$float" | "$fontFamily" | "$fontFeatureSettings" | "$fontKerning" | "$fontLanguageOverride" | "$fontOpticalSizing" | "$fontPalette" | "$fontSize" | "$fontSizeAdjust" | "$fontSmooth" | "$fontStretch" | "$fontStyle" | "$fontSynthesis" | "$fontSynthesisPosition" | "$fontSynthesisSmallCaps" | "$fontSynthesisStyle" | "$fontSynthesisWeight" | "$fontVariant" | "$fontVariantAlternates" | "$fontVariantCaps" | "$fontVariantEastAsian" | "$fontVariantEmoji" | "$fontVariantLigatures" | "$fontVariantNumeric" | "$fontVariantPosition" | "$fontVariationSettings" | "$fontWeight" | "$forcedColorAdjust" | "$gridAutoColumns" | "$gridAutoFlow" | "$gridAutoRows" | "$gridColumnEnd" | "$gridColumnStart" | "$gridRowEnd" | "$gridRowStart" | "$gridTemplateAreas" | "$gridTemplateColumns" | "$gridTemplateRows" | "$hangingPunctuation" | "$hyphenateCharacter" | "$hyphenateLimitChars" | "$hyphens" | "$imageOrientation" | "$imageRendering" | "$imageResolution" | "$initialLetter" | "$inlineSize" | "$inputSecurity" | "$insetBlockEnd" | "$insetBlockStart" | "$insetInlineEnd" | "$insetInlineStart" | "$isolation" | "$justifyContent" | "$justifyItems" | "$justifySelf" | "$justifyTracks" | "$letterSpacing" | "$lineBreak" | "$lineHeight" | "$lineHeightStep" | "$listStyleImage" | "$listStylePosition" | "$listStyleType" | "$marginBlockEnd" | "$marginBlockStart" | "$marginInlineEnd" | "$marginInlineStart" | "$marginTrim" | "$maskBorderMode" | "$maskBorderOutset" | "$maskBorderRepeat" | "$maskBorderSlice" | "$maskBorderSource" | "$maskBorderWidth" | "$maskClip" | "$maskComposite" | "$maskImage" | "$maskMode" | "$maskOrigin" | "$maskPosition" | "$maskRepeat" | "$maskSize" | "$maskType" | "$masonryAutoFlow" | "$mathDepth" | "$mathShift" | "$mathStyle" | "$maxBlockSize" | "$maxHeight" | "$maxInlineSize" | "$maxLines" | "$maxWidth" | "$minBlockSize" | "$minHeight" | "$minInlineSize" | "$minWidth" | "$mixBlendMode" | "$motionDistance" | "$motionPath" | "$motionRotation" | "$objectFit" | "$objectPosition" | "$offsetAnchor" | "$offsetDistance" | "$offsetPath" | "$offsetPosition" | "$offsetRotate" | "$offsetRotation" | "$opacity" | "$order" | "$orphans" | "$outlineColor" | "$outlineOffset" | "$outlineStyle" | "$outlineWidth" | "$overflowAnchor" | "$overflowBlock" | "$overflowClipBox" | "$overflowClipMargin" | "$overflowInline" | "$overflowWrap" | "$overflowX" | "$overflowY" | "$overlay" | "$overscrollBehaviorBlock" | "$overscrollBehaviorInline" | "$overscrollBehaviorX" | "$overscrollBehaviorY" | "$paddingBlockEnd" | "$paddingBlockStart" | "$paddingInlineEnd" | "$paddingInlineStart" | "$page" | "$pageBreakAfter" | "$pageBreakBefore" | "$pageBreakInside" | "$paintOrder" | "$perspective" | "$perspectiveOrigin" | "$pointerEvents" | "$position" | "$printColorAdjust" | "$quotes" | "$resize" | "$rotate" | "$rubyAlign" | "$rubyMerge" | "$rubyPosition" | "$scale" | "$scrollBehavior" | "$scrollMarginBlockEnd" | "$scrollMarginBlockStart" | "$scrollMarginBottom" | "$scrollMarginInlineEnd" | "$scrollMarginInlineStart" | "$scrollMarginLeft" | "$scrollMarginRight" | "$scrollMarginTop" | "$scrollPaddingBlockEnd" | "$scrollPaddingBlockStart" | "$scrollPaddingBottom" | "$scrollPaddingInlineEnd" | "$scrollPaddingInlineStart" | "$scrollPaddingLeft" | "$scrollPaddingRight" | "$scrollPaddingTop" | "$scrollSnapAlign" | "$scrollSnapMarginBottom" | "$scrollSnapMarginLeft" | "$scrollSnapMarginRight" | "$scrollSnapMarginTop" | "$scrollSnapStop" | "$scrollSnapType" | "$scrollTimelineAxis" | "$scrollTimelineName" | "$scrollbarColor" | "$scrollbarGutter" | "$scrollbarWidth" | "$shapeImageThreshold" | "$shapeMargin" | "$shapeOutside" | "$tabSize" | "$tableLayout" | "$textAlign" | "$textAlignLast" | "$textCombineUpright" | "$textDecorationColor" | "$textDecorationLine" | "$textDecorationSkip" | "$textDecorationSkipInk" | "$textDecorationStyle" | "$textDecorationThickness" | "$textEmphasisColor" | "$textEmphasisPosition" | "$textEmphasisStyle" | "$textIndent" | "$textJustify" | "$textOrientation" | "$textOverflow" | "$textRendering" | "$textShadow" | "$textSizeAdjust" | "$textTransform" | "$textUnderlineOffset" | "$textUnderlinePosition" | "$textWrap" | "$timelineScope" | "$touchAction" | "$transform" | "$transformBox" | "$transformOrigin" | "$transformStyle" | "$transitionBehavior" | "$transitionDelay" | "$transitionDuration" | "$transitionProperty" | "$transitionTimingFunction" | "$translate" | "$unicodeBidi" | "$userSelect" | "$verticalAlign" | "$viewTimelineAxis" | "$viewTimelineInset" | "$viewTimelineName" | "$viewTransitionName" | "$visibility" | "$whiteSpace" | "$whiteSpaceCollapse" | "$whiteSpaceTrim" | "$widows" | "$willChange" | "$wordBreak" | "$wordSpacing" | "$wordWrap" | "$writingMode" | "$zIndex" | "$zoom" | "$all" | "$animation" | "$animationRange" | "$background" | "$backgroundPosition" | "$border" | "$borderBlock" | "$borderBlockEnd" | "$borderBlockStart" | "$borderBottom" | "$borderColor" | "$borderImage" | "$borderInline" | "$borderInlineEnd" | "$borderInlineStart" | "$borderLeft" | "$borderRadius" | "$borderRight" | "$borderStyle" | "$borderTop" | "$borderWidth" | "$caret" | "$columnRule" | "$columns" | "$containIntrinsicSize" | "$container" | "$flex" | "$flexFlow" | "$font" | "$grid" | "$gridArea" | "$gridColumn" | "$gridRow" | "$gridTemplate" | "$inset" | "$insetBlock" | "$insetInline" | "$lineClamp" | "$listStyle" | "$marginBlock" | "$marginInline" | "$mask" | "$maskBorder" | "$motion" | "$offset" | "$outline" | "$overflow" | "$overscrollBehavior" | "$paddingBlock" | "$paddingInline" | "$placeContent" | "$placeItems" | "$placeSelf" | "$scrollMargin" | "$scrollMarginBlock" | "$scrollMarginInline" | "$scrollPadding" | "$scrollPaddingBlock" | "$scrollPaddingInline" | "$scrollSnapMargin" | "$scrollTimeline" | "$textDecoration" | "$textEmphasis" | "$transition" | "$viewTimeline" | "$MozAnimationDelay" | "$MozAnimationDirection" | "$MozAnimationDuration" | "$MozAnimationFillMode" | "$MozAnimationIterationCount" | "$MozAnimationName" | "$MozAnimationPlayState" | "$MozAnimationTimingFunction" | "$MozAppearance" | "$MozBinding" | "$MozBorderBottomColors" | "$MozBorderEndColor" | "$MozBorderEndStyle" | "$MozBorderEndWidth" | "$MozBorderLeftColors" | "$MozBorderRightColors" | "$MozBorderStartColor" | "$MozBorderStartStyle" | "$MozBorderTopColors" | "$MozBoxSizing" | "$MozColumnCount" | "$MozColumnFill" | "$MozColumnRuleColor" | "$MozColumnRuleStyle" | "$MozColumnRuleWidth" | "$MozColumnWidth" | "$MozContextProperties" | "$MozFontFeatureSettings" | "$MozFontLanguageOverride" | "$MozHyphens" | "$MozImageRegion" | "$MozMarginEnd" | "$MozMarginStart" | "$MozOrient" | "$MozOsxFontSmoothing" | "$MozOutlineRadiusBottomleft" | "$MozOutlineRadiusBottomright" | "$MozOutlineRadiusTopleft" | "$MozOutlineRadiusTopright" | "$MozPaddingEnd" | "$MozPaddingStart" | "$MozStackSizing" | "$MozTabSize" | "$MozTextBlink" | "$MozTextSizeAdjust" | "$MozUserFocus" | "$MozUserModify" | "$MozUserSelect" | "$MozWindowDragging" | "$MozWindowShadow" | "$msAccelerator" | "$msBlockProgression" | "$msContentZoomChaining" | "$msContentZoomLimitMax" | "$msContentZoomLimitMin" | "$msContentZoomSnapPoints" | "$msContentZoomSnapType" | "$msContentZooming" | "$msFilter" | "$msFlexDirection" | "$msFlexPositive" | "$msFlowFrom" | "$msFlowInto" | "$msGridColumns" | "$msGridRows" | "$msHighContrastAdjust" | "$msHyphenateLimitChars" | "$msHyphenateLimitLines" | "$msHyphenateLimitZone" | "$msHyphens" | "$msImeAlign" | "$msLineBreak" | "$msOrder" | "$msOverflowStyle" | "$msOverflowX" | "$msOverflowY" | "$msScrollChaining" | "$msScrollLimitXMax" | "$msScrollLimitXMin" | "$msScrollLimitYMax" | "$msScrollLimitYMin" | "$msScrollRails" | "$msScrollSnapPointsX" | "$msScrollSnapPointsY" | "$msScrollSnapType" | "$msScrollTranslation" | "$msScrollbar3dlightColor" | "$msScrollbarArrowColor" | "$msScrollbarBaseColor" | "$msScrollbarDarkshadowColor" | "$msScrollbarFaceColor" | "$msScrollbarHighlightColor" | "$msScrollbarShadowColor" | "$msScrollbarTrackColor" | "$msTextAutospace" | "$msTextCombineHorizontal" | "$msTextOverflow" | "$msTouchAction" | "$msTouchSelect" | "$msTransform" | "$msTransformOrigin" | "$msTransitionDelay" | "$msTransitionDuration" | "$msTransitionProperty" | "$msTransitionTimingFunction" | "$msUserSelect" | "$msWordBreak" | "$msWrapFlow" | "$msWrapMargin" | "$msWrapThrough" | "$msWritingMode" | "$WebkitAlignContent" | "$WebkitAlignItems" | "$WebkitAlignSelf" | "$WebkitAnimationDelay" | "$WebkitAnimationDirection" | "$WebkitAnimationDuration" | "$WebkitAnimationFillMode" | "$WebkitAnimationIterationCount" | "$WebkitAnimationName" | "$WebkitAnimationPlayState" | "$WebkitAnimationTimingFunction" | "$WebkitAppearance" | "$WebkitBackdropFilter" | "$WebkitBackfaceVisibility" | "$WebkitBackgroundClip" | "$WebkitBackgroundOrigin" | "$WebkitBackgroundSize" | "$WebkitBorderBeforeColor" | "$WebkitBorderBeforeStyle" | "$WebkitBorderBeforeWidth" | "$WebkitBorderBottomLeftRadius" | "$WebkitBorderBottomRightRadius" | "$WebkitBorderImageSlice" | "$WebkitBorderTopLeftRadius" | "$WebkitBorderTopRightRadius" | "$WebkitBoxDecorationBreak" | "$WebkitBoxReflect" | "$WebkitBoxShadow" | "$WebkitBoxSizing" | "$WebkitClipPath" | "$WebkitColumnCount" | "$WebkitColumnFill" | "$WebkitColumnRuleColor" | "$WebkitColumnRuleStyle" | "$WebkitColumnRuleWidth" | "$WebkitColumnSpan" | "$WebkitColumnWidth" | "$WebkitFilter" | "$WebkitFlexBasis" | "$WebkitFlexDirection" | "$WebkitFlexGrow" | "$WebkitFlexShrink" | "$WebkitFlexWrap" | "$WebkitFontFeatureSettings" | "$WebkitFontKerning" | "$WebkitFontSmoothing" | "$WebkitFontVariantLigatures" | "$WebkitHyphenateCharacter" | "$WebkitHyphens" | "$WebkitInitialLetter" | "$WebkitJustifyContent" | "$WebkitLineBreak" | "$WebkitLineClamp" | "$WebkitMarginEnd" | "$WebkitMarginStart" | "$WebkitMaskAttachment" | "$WebkitMaskBoxImageOutset" | "$WebkitMaskBoxImageRepeat" | "$WebkitMaskBoxImageSlice" | "$WebkitMaskBoxImageSource" | "$WebkitMaskBoxImageWidth" | "$WebkitMaskClip" | "$WebkitMaskComposite" | "$WebkitMaskImage" | "$WebkitMaskOrigin" | "$WebkitMaskPosition" | "$WebkitMaskPositionX" | "$WebkitMaskPositionY" | "$WebkitMaskRepeat" | "$WebkitMaskRepeatX" | "$WebkitMaskRepeatY" | "$WebkitMaskSize" | "$WebkitMaxInlineSize" | "$WebkitOrder" | "$WebkitOverflowScrolling" | "$WebkitPaddingEnd" | "$WebkitPaddingStart" | "$WebkitPerspective" | "$WebkitPerspectiveOrigin" | "$WebkitPrintColorAdjust" | "$WebkitRubyPosition" | "$WebkitScrollSnapType" | "$WebkitShapeMargin" | "$WebkitTapHighlightColor" | "$WebkitTextCombine" | "$WebkitTextDecorationColor" | "$WebkitTextDecorationLine" | "$WebkitTextDecorationSkip" | "$WebkitTextDecorationStyle" | "$WebkitTextEmphasisColor" | "$WebkitTextEmphasisPosition" | "$WebkitTextEmphasisStyle" | "$WebkitTextFillColor" | "$WebkitTextOrientation" | "$WebkitTextSizeAdjust" | "$WebkitTextStrokeColor" | "$WebkitTextStrokeWidth" | "$WebkitTextUnderlinePosition" | "$WebkitTouchCallout" | "$WebkitTransform" | "$WebkitTransformOrigin" | "$WebkitTransformStyle" | "$WebkitTransitionDelay" | "$WebkitTransitionDuration" | "$WebkitTransitionProperty" | "$WebkitTransitionTimingFunction" | "$WebkitUserModify" | "$WebkitUserSelect" | "$WebkitWritingMode" | "$MozAnimation" | "$MozBorderImage" | "$MozColumnRule" | "$MozColumns" | "$MozOutlineRadius" | "$msContentZoomLimit" | "$msContentZoomSnap" | "$msFlex" | "$msScrollLimit" | "$msScrollSnapX" | "$msScrollSnapY" | "$msTransition" | "$WebkitAnimation" | "$WebkitBorderBefore" | "$WebkitBorderImage" | "$WebkitBorderRadius" | "$WebkitColumnRule" | "$WebkitColumns" | "$WebkitFlex" | "$WebkitFlexFlow" | "$WebkitMask" | "$WebkitMaskBoxImage" | "$WebkitTextEmphasis" | "$WebkitTextStroke" | "$WebkitTransition" | "$azimuth" | "$boxAlign" | "$boxDirection" | "$boxFlex" | "$boxFlexGroup" | "$boxLines" | "$boxOrdinalGroup" | "$boxOrient" | "$boxPack" | "$clip" | "$gridColumnGap" | "$gridGap" | "$gridRowGap" | "$imeMode" | "$offsetBlock" | "$offsetBlockEnd" | "$offsetBlockStart" | "$offsetInline" | "$offsetInlineEnd" | "$offsetInlineStart" | "$scrollSnapCoordinate" | "$scrollSnapDestination" | "$scrollSnapPointsX" | "$scrollSnapPointsY" | "$scrollSnapTypeX" | "$scrollSnapTypeY" | "$KhtmlBoxAlign" | "$KhtmlBoxDirection" | "$KhtmlBoxFlex" | "$KhtmlBoxFlexGroup" | "$KhtmlBoxLines" | "$KhtmlBoxOrdinalGroup" | "$KhtmlBoxOrient" | "$KhtmlBoxPack" | "$KhtmlLineBreak" | "$KhtmlOpacity" | "$KhtmlUserSelect" | "$MozBackfaceVisibility" | "$MozBackgroundClip" | "$MozBackgroundInlinePolicy" | "$MozBackgroundOrigin" | "$MozBackgroundSize" | "$MozBorderRadius" | "$MozBorderRadiusBottomleft" | "$MozBorderRadiusBottomright" | "$MozBorderRadiusTopleft" | "$MozBorderRadiusTopright" | "$MozBoxAlign" | "$MozBoxDirection" | "$MozBoxFlex" | "$MozBoxOrdinalGroup" | "$MozBoxOrient" | "$MozBoxPack" | "$MozBoxShadow" | "$MozFloatEdge" | "$MozForceBrokenImageIcon" | "$MozOpacity" | "$MozOutline" | "$MozOutlineColor" | "$MozOutlineStyle" | "$MozOutlineWidth" | "$MozPerspective" | "$MozPerspectiveOrigin" | "$MozTextAlignLast" | "$MozTextDecorationColor" | "$MozTextDecorationLine" | "$MozTextDecorationStyle" | "$MozTransform" | "$MozTransformOrigin" | "$MozTransformStyle" | "$MozTransition" | "$MozTransitionDelay" | "$MozTransitionDuration" | "$MozTransitionProperty" | "$MozTransitionTimingFunction" | "$MozUserInput" | "$msImeMode" | "$OAnimation" | "$OAnimationDelay" | "$OAnimationDirection" | "$OAnimationDuration" | "$OAnimationFillMode" | "$OAnimationIterationCount" | "$OAnimationName" | "$OAnimationPlayState" | "$OAnimationTimingFunction" | "$OBackgroundSize" | "$OBorderImage" | "$OObjectFit" | "$OObjectPosition" | "$OTabSize" | "$OTextOverflow" | "$OTransform" | "$OTransformOrigin" | "$OTransition" | "$OTransitionDelay" | "$OTransitionDuration" | "$OTransitionProperty" | "$OTransitionTimingFunction" | "$WebkitBoxAlign" | "$WebkitBoxDirection" | "$WebkitBoxFlex" | "$WebkitBoxFlexGroup" | "$WebkitBoxLines" | "$WebkitBoxOrdinalGroup" | "$WebkitBoxOrient" | "$WebkitBoxPack" | "$alignmentBaseline" | "$baselineShift" | "$clipRule" | "$colorInterpolation" | "$colorRendering" | "$dominantBaseline" | "$fill" | "$fillOpacity" | "$fillRule" | "$floodColor" | "$floodOpacity" | "$glyphOrientationVertical" | "$lightingColor" | "$marker" | "$markerEnd" | "$markerMid" | "$markerStart" | "$shapeRendering" | "$stopColor" | "$stopOpacity" | "$stroke" | "$strokeDasharray" | "$strokeDashoffset" | "$strokeLinecap" | "$strokeLinejoin" | "$strokeMiterlimit" | "$strokeOpacity" | "$strokeWidth" | "$textAnchor" | "$vectorEffect" | keyof HTMLAttributes<HTMLDivElement> | "modifiers"> & HTMLAttributes<HTMLDivElement> & import('../../types').HoneyPrefixedCSSProperties & {
|
|
33
|
+
modifiers?: import('../../types').HoneyModifierResultFn[];
|
|
34
|
+
}, "ref"> & {
|
|
35
|
+
ref?: ((instance: HTMLDivElement | null) => void | import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import('react').DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import('react').RefObject<HTMLDivElement> | null | undefined;
|
|
36
|
+
}, HoneyGridColumnStyledProps>> & string;
|