@react-hive/honey-layout 1.0.0-beta → 1.0.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 +830 -2
- package/dist/components/HoneyGrid/HoneyGrid.d.ts +1 -1
- package/dist/components/HoneyGrid/HoneyGrid.styled.d.ts +832 -7
- package/dist/components/HoneyGrid/hooks/index.d.ts +1 -1
- package/dist/components/HoneyGridColumn/HoneyGridColumn.styled.d.ts +830 -4
- package/dist/components/HoneyLazyContent.d.ts +8 -8
- package/dist/components/HoneyList/HoneyList.d.ts +8 -8
- package/dist/components/HoneyList/HoneyList.types.d.ts +31 -0
- package/dist/components/HoneyLoopingList/HoneyLoopingList.d.ts +832 -2
- package/dist/constants.d.ts +0 -2
- package/dist/helpers.d.ts +27 -833
- package/dist/hooks/use-honey-drag.d.ts +1 -1
- package/dist/hooks/use-honey-media-query.d.ts +6 -5
- package/dist/index.js +614 -631
- package/dist/providers/HoneyLayoutProvider.d.ts +16 -0
- package/dist/providers/HoneyLayoutThemeOverride.d.ts +15 -0
- package/dist/providers/index.d.ts +2 -1
- package/dist/types.d.ts +7 -7
- package/dist/utils.d.ts +1 -1
- package/package.json +9 -9
- package/dist/providers/HoneyThemeProvider.d.ts +0 -14
- /package/dist/components/HoneyGrid/hooks/{useCurrentHoneyGrid.d.ts → use-current-honey-grid.d.ts} +0 -0
|
@@ -1,6 +1,834 @@
|
|
|
1
1
|
import { HTMLAttributes } from 'react';
|
|
2
2
|
import { HoneyCSSProperties, HoneyModifierResultFn } from '../types';
|
|
3
|
-
export type HoneyBoxProps
|
|
3
|
+
export type HoneyBoxProps = HoneyCSSProperties & {
|
|
4
4
|
modifiers?: HoneyModifierResultFn[];
|
|
5
5
|
};
|
|
6
|
-
export declare const HoneyBox: import('styled-components').StyledComponent<"div", import('styled-components').DefaultTheme,
|
|
6
|
+
export declare const HoneyBox: import('styled-components').StyledComponent<"div", import('styled-components').DefaultTheme, HTMLAttributes<HTMLDivElement> & Partial<{
|
|
7
|
+
$accentColor?: import('../types').HoneyCSSPropertyValue<"accentColor">;
|
|
8
|
+
$alignContent?: import('../types').HoneyCSSPropertyValue<"alignContent">;
|
|
9
|
+
$alignItems?: import('../types').HoneyCSSPropertyValue<"alignItems">;
|
|
10
|
+
$alignSelf?: import('../types').HoneyCSSPropertyValue<"alignSelf">;
|
|
11
|
+
$alignTracks?: import('../types').HoneyCSSPropertyValue<"alignTracks">;
|
|
12
|
+
$animationComposition?: import('../types').HoneyCSSPropertyValue<"animationComposition">;
|
|
13
|
+
$animationDelay?: import('../types').HoneyCSSPropertyValue<"animationDelay">;
|
|
14
|
+
$animationDirection?: import('../types').HoneyCSSPropertyValue<"animationDirection">;
|
|
15
|
+
$animationDuration?: import('../types').HoneyCSSPropertyValue<"animationDuration">;
|
|
16
|
+
$animationFillMode?: import('../types').HoneyCSSPropertyValue<"animationFillMode">;
|
|
17
|
+
$animationIterationCount?: import('../types').HoneyCSSPropertyValue<"animationIterationCount">;
|
|
18
|
+
$animationName?: import('../types').HoneyCSSPropertyValue<"animationName">;
|
|
19
|
+
$animationPlayState?: import('../types').HoneyCSSPropertyValue<"animationPlayState">;
|
|
20
|
+
$animationRangeEnd?: import('../types').HoneyCSSPropertyValue<"animationRangeEnd">;
|
|
21
|
+
$animationRangeStart?: import('../types').HoneyCSSPropertyValue<"animationRangeStart">;
|
|
22
|
+
$animationTimeline?: import('../types').HoneyCSSPropertyValue<"animationTimeline">;
|
|
23
|
+
$animationTimingFunction?: import('../types').HoneyCSSPropertyValue<"animationTimingFunction">;
|
|
24
|
+
$appearance?: import('../types').HoneyCSSPropertyValue<"appearance">;
|
|
25
|
+
$aspectRatio?: import('../types').HoneyCSSPropertyValue<"aspectRatio">;
|
|
26
|
+
$backdropFilter?: import('../types').HoneyCSSPropertyValue<"backdropFilter">;
|
|
27
|
+
$backfaceVisibility?: import('../types').HoneyCSSPropertyValue<"backfaceVisibility">;
|
|
28
|
+
$backgroundAttachment?: import('../types').HoneyCSSPropertyValue<"backgroundAttachment">;
|
|
29
|
+
$backgroundBlendMode?: import('../types').HoneyCSSPropertyValue<"backgroundBlendMode">;
|
|
30
|
+
$backgroundClip?: import('../types').HoneyCSSPropertyValue<"backgroundClip">;
|
|
31
|
+
$backgroundColor?: import('../types').HoneyCSSPropertyValue<"backgroundColor"> | undefined;
|
|
32
|
+
$backgroundImage?: import('../types').HoneyCSSPropertyValue<"backgroundImage">;
|
|
33
|
+
$backgroundOrigin?: import('../types').HoneyCSSPropertyValue<"backgroundOrigin">;
|
|
34
|
+
$backgroundPositionX?: import('../types').HoneyCSSPropertyValue<"backgroundPositionX">;
|
|
35
|
+
$backgroundPositionY?: import('../types').HoneyCSSPropertyValue<"backgroundPositionY">;
|
|
36
|
+
$backgroundRepeat?: import('../types').HoneyCSSPropertyValue<"backgroundRepeat">;
|
|
37
|
+
$backgroundSize?: import('../types').HoneyCSSPropertyValue<"backgroundSize">;
|
|
38
|
+
$blockOverflow?: import('../types').HoneyCSSPropertyValue<"blockOverflow">;
|
|
39
|
+
$blockSize?: import('../types').HoneyCSSPropertyValue<"blockSize">;
|
|
40
|
+
$borderBlockColor?: import('../types').HoneyCSSPropertyValue<"borderBlockColor">;
|
|
41
|
+
$borderBlockEndColor?: import('../types').HoneyCSSPropertyValue<"borderBlockEndColor">;
|
|
42
|
+
$borderBlockEndStyle?: import('../types').HoneyCSSPropertyValue<"borderBlockEndStyle">;
|
|
43
|
+
$borderBlockEndWidth?: import('../types').HoneyCSSPropertyValue<"borderBlockEndWidth">;
|
|
44
|
+
$borderBlockStartColor?: import('../types').HoneyCSSPropertyValue<"borderBlockStartColor">;
|
|
45
|
+
$borderBlockStartStyle?: import('../types').HoneyCSSPropertyValue<"borderBlockStartStyle">;
|
|
46
|
+
$borderBlockStartWidth?: import('../types').HoneyCSSPropertyValue<"borderBlockStartWidth">;
|
|
47
|
+
$borderBlockStyle?: import('../types').HoneyCSSPropertyValue<"borderBlockStyle">;
|
|
48
|
+
$borderBlockWidth?: import('../types').HoneyCSSPropertyValue<"borderBlockWidth">;
|
|
49
|
+
$borderBottomColor?: import('../types').HoneyCSSPropertyValue<"borderBottomColor"> | undefined;
|
|
50
|
+
$borderBottomLeftRadius?: import('../types').HoneyCSSPropertyValue<"borderBottomLeftRadius">;
|
|
51
|
+
$borderBottomRightRadius?: import('../types').HoneyCSSPropertyValue<"borderBottomRightRadius">;
|
|
52
|
+
$borderBottomStyle?: import('../types').HoneyCSSPropertyValue<"borderBottomStyle">;
|
|
53
|
+
$borderBottomWidth?: import('../types').HoneyCSSPropertyValue<"borderBottomWidth">;
|
|
54
|
+
$borderCollapse?: import('../types').HoneyCSSPropertyValue<"borderCollapse">;
|
|
55
|
+
$borderEndEndRadius?: import('../types').HoneyCSSPropertyValue<"borderEndEndRadius">;
|
|
56
|
+
$borderEndStartRadius?: import('../types').HoneyCSSPropertyValue<"borderEndStartRadius">;
|
|
57
|
+
$borderImageOutset?: import('../types').HoneyCSSPropertyValue<"borderImageOutset">;
|
|
58
|
+
$borderImageRepeat?: import('../types').HoneyCSSPropertyValue<"borderImageRepeat">;
|
|
59
|
+
$borderImageSlice?: import('../types').HoneyCSSPropertyValue<"borderImageSlice">;
|
|
60
|
+
$borderImageSource?: import('../types').HoneyCSSPropertyValue<"borderImageSource">;
|
|
61
|
+
$borderImageWidth?: import('../types').HoneyCSSPropertyValue<"borderImageWidth">;
|
|
62
|
+
$borderInlineColor?: import('../types').HoneyCSSPropertyValue<"borderInlineColor">;
|
|
63
|
+
$borderInlineEndColor?: import('../types').HoneyCSSPropertyValue<"borderInlineEndColor">;
|
|
64
|
+
$borderInlineEndStyle?: import('../types').HoneyCSSPropertyValue<"borderInlineEndStyle">;
|
|
65
|
+
$borderInlineEndWidth?: import('../types').HoneyCSSPropertyValue<"borderInlineEndWidth">;
|
|
66
|
+
$borderInlineStartColor?: import('../types').HoneyCSSPropertyValue<"borderInlineStartColor">;
|
|
67
|
+
$borderInlineStartStyle?: import('../types').HoneyCSSPropertyValue<"borderInlineStartStyle">;
|
|
68
|
+
$borderInlineStartWidth?: import('../types').HoneyCSSPropertyValue<"borderInlineStartWidth">;
|
|
69
|
+
$borderInlineStyle?: import('../types').HoneyCSSPropertyValue<"borderInlineStyle">;
|
|
70
|
+
$borderInlineWidth?: import('../types').HoneyCSSPropertyValue<"borderInlineWidth">;
|
|
71
|
+
$borderLeftColor?: import('../types').HoneyCSSPropertyValue<"borderLeftColor"> | undefined;
|
|
72
|
+
$borderLeftStyle?: import('../types').HoneyCSSPropertyValue<"borderLeftStyle">;
|
|
73
|
+
$borderLeftWidth?: import('../types').HoneyCSSPropertyValue<"borderLeftWidth">;
|
|
74
|
+
$borderRightColor?: import('../types').HoneyCSSPropertyValue<"borderRightColor"> | undefined;
|
|
75
|
+
$borderRightStyle?: import('../types').HoneyCSSPropertyValue<"borderRightStyle">;
|
|
76
|
+
$borderRightWidth?: import('../types').HoneyCSSPropertyValue<"borderRightWidth">;
|
|
77
|
+
$borderSpacing?: import('../types').HoneyCSSPropertyValue<"borderSpacing">;
|
|
78
|
+
$borderStartEndRadius?: import('../types').HoneyCSSPropertyValue<"borderStartEndRadius">;
|
|
79
|
+
$borderStartStartRadius?: import('../types').HoneyCSSPropertyValue<"borderStartStartRadius">;
|
|
80
|
+
$borderTopColor?: import('../types').HoneyCSSPropertyValue<"borderTopColor"> | undefined;
|
|
81
|
+
$borderTopLeftRadius?: import('../types').HoneyCSSPropertyValue<"borderTopLeftRadius">;
|
|
82
|
+
$borderTopRightRadius?: import('../types').HoneyCSSPropertyValue<"borderTopRightRadius">;
|
|
83
|
+
$borderTopStyle?: import('../types').HoneyCSSPropertyValue<"borderTopStyle">;
|
|
84
|
+
$borderTopWidth?: import('../types').HoneyCSSPropertyValue<"borderTopWidth">;
|
|
85
|
+
$bottom?: import('../types').HoneyCSSPropertyValue<"bottom">;
|
|
86
|
+
$boxDecorationBreak?: import('../types').HoneyCSSPropertyValue<"boxDecorationBreak">;
|
|
87
|
+
$boxShadow?: import('../types').HoneyCSSPropertyValue<"boxShadow">;
|
|
88
|
+
$boxSizing?: import('../types').HoneyCSSPropertyValue<"boxSizing">;
|
|
89
|
+
$breakAfter?: import('../types').HoneyCSSPropertyValue<"breakAfter">;
|
|
90
|
+
$breakBefore?: import('../types').HoneyCSSPropertyValue<"breakBefore">;
|
|
91
|
+
$breakInside?: import('../types').HoneyCSSPropertyValue<"breakInside">;
|
|
92
|
+
$captionSide?: import('../types').HoneyCSSPropertyValue<"captionSide">;
|
|
93
|
+
$caretColor?: import('../types').HoneyCSSPropertyValue<"caretColor">;
|
|
94
|
+
$caretShape?: import('../types').HoneyCSSPropertyValue<"caretShape">;
|
|
95
|
+
$clear?: import('../types').HoneyCSSPropertyValue<"clear">;
|
|
96
|
+
$clipPath?: import('../types').HoneyCSSPropertyValue<"clipPath">;
|
|
97
|
+
$color?: import('../types').HoneyCSSPropertyValue<"color"> | undefined;
|
|
98
|
+
$colorAdjust?: import('../types').HoneyCSSPropertyValue<"colorAdjust">;
|
|
99
|
+
$colorScheme?: import('../types').HoneyCSSPropertyValue<"colorScheme">;
|
|
100
|
+
$columnCount?: import('../types').HoneyCSSPropertyValue<"columnCount">;
|
|
101
|
+
$columnFill?: import('../types').HoneyCSSPropertyValue<"columnFill">;
|
|
102
|
+
$columnGap?: import('../types').HoneyCSSPropertyValue<"columnGap">;
|
|
103
|
+
$columnRuleColor?: import('../types').HoneyCSSPropertyValue<"columnRuleColor">;
|
|
104
|
+
$columnRuleStyle?: import('../types').HoneyCSSPropertyValue<"columnRuleStyle">;
|
|
105
|
+
$columnRuleWidth?: import('../types').HoneyCSSPropertyValue<"columnRuleWidth">;
|
|
106
|
+
$columnSpan?: import('../types').HoneyCSSPropertyValue<"columnSpan">;
|
|
107
|
+
$columnWidth?: import('../types').HoneyCSSPropertyValue<"columnWidth">;
|
|
108
|
+
$contain?: import('../types').HoneyCSSPropertyValue<"contain">;
|
|
109
|
+
$containIntrinsicBlockSize?: import('../types').HoneyCSSPropertyValue<"containIntrinsicBlockSize">;
|
|
110
|
+
$containIntrinsicHeight?: import('../types').HoneyCSSPropertyValue<"containIntrinsicHeight">;
|
|
111
|
+
$containIntrinsicInlineSize?: import('../types').HoneyCSSPropertyValue<"containIntrinsicInlineSize">;
|
|
112
|
+
$containIntrinsicWidth?: import('../types').HoneyCSSPropertyValue<"containIntrinsicWidth">;
|
|
113
|
+
$containerName?: import('../types').HoneyCSSPropertyValue<"containerName">;
|
|
114
|
+
$containerType?: import('../types').HoneyCSSPropertyValue<"containerType">;
|
|
115
|
+
$content?: import('../types').HoneyCSSPropertyValue<"content">;
|
|
116
|
+
$contentVisibility?: import('../types').HoneyCSSPropertyValue<"contentVisibility">;
|
|
117
|
+
$counterIncrement?: import('../types').HoneyCSSPropertyValue<"counterIncrement">;
|
|
118
|
+
$counterReset?: import('../types').HoneyCSSPropertyValue<"counterReset">;
|
|
119
|
+
$counterSet?: import('../types').HoneyCSSPropertyValue<"counterSet">;
|
|
120
|
+
$cursor?: import('../types').HoneyCSSPropertyValue<"cursor">;
|
|
121
|
+
$direction?: import('../types').HoneyCSSPropertyValue<"direction">;
|
|
122
|
+
$display?: import('../types').HoneyCSSPropertyValue<"display">;
|
|
123
|
+
$emptyCells?: import('../types').HoneyCSSPropertyValue<"emptyCells">;
|
|
124
|
+
$filter?: import('../types').HoneyCSSPropertyValue<"filter">;
|
|
125
|
+
$flexBasis?: import('../types').HoneyCSSPropertyValue<"flexBasis">;
|
|
126
|
+
$flexDirection?: import('../types').HoneyCSSPropertyValue<"flexDirection">;
|
|
127
|
+
$flexGrow?: import('../types').HoneyCSSPropertyValue<"flexGrow">;
|
|
128
|
+
$flexShrink?: import('../types').HoneyCSSPropertyValue<"flexShrink">;
|
|
129
|
+
$flexWrap?: import('../types').HoneyCSSPropertyValue<"flexWrap">;
|
|
130
|
+
$float?: import('../types').HoneyCSSPropertyValue<"float">;
|
|
131
|
+
$fontFamily?: import('../types').HoneyCSSPropertyValue<"fontFamily">;
|
|
132
|
+
$fontFeatureSettings?: import('../types').HoneyCSSPropertyValue<"fontFeatureSettings">;
|
|
133
|
+
$fontKerning?: import('../types').HoneyCSSPropertyValue<"fontKerning">;
|
|
134
|
+
$fontLanguageOverride?: import('../types').HoneyCSSPropertyValue<"fontLanguageOverride">;
|
|
135
|
+
$fontOpticalSizing?: import('../types').HoneyCSSPropertyValue<"fontOpticalSizing">;
|
|
136
|
+
$fontPalette?: import('../types').HoneyCSSPropertyValue<"fontPalette">;
|
|
137
|
+
$fontSize?: import('../types').HoneyCSSPropertyValue<"fontSize">;
|
|
138
|
+
$fontSizeAdjust?: import('../types').HoneyCSSPropertyValue<"fontSizeAdjust">;
|
|
139
|
+
$fontSmooth?: import('../types').HoneyCSSPropertyValue<"fontSmooth">;
|
|
140
|
+
$fontStretch?: import('../types').HoneyCSSPropertyValue<"fontStretch">;
|
|
141
|
+
$fontStyle?: import('../types').HoneyCSSPropertyValue<"fontStyle">;
|
|
142
|
+
$fontSynthesis?: import('../types').HoneyCSSPropertyValue<"fontSynthesis">;
|
|
143
|
+
$fontSynthesisPosition?: import('../types').HoneyCSSPropertyValue<"fontSynthesisPosition">;
|
|
144
|
+
$fontSynthesisSmallCaps?: import('../types').HoneyCSSPropertyValue<"fontSynthesisSmallCaps">;
|
|
145
|
+
$fontSynthesisStyle?: import('../types').HoneyCSSPropertyValue<"fontSynthesisStyle">;
|
|
146
|
+
$fontSynthesisWeight?: import('../types').HoneyCSSPropertyValue<"fontSynthesisWeight">;
|
|
147
|
+
$fontVariant?: import('../types').HoneyCSSPropertyValue<"fontVariant">;
|
|
148
|
+
$fontVariantAlternates?: import('../types').HoneyCSSPropertyValue<"fontVariantAlternates">;
|
|
149
|
+
$fontVariantCaps?: import('../types').HoneyCSSPropertyValue<"fontVariantCaps">;
|
|
150
|
+
$fontVariantEastAsian?: import('../types').HoneyCSSPropertyValue<"fontVariantEastAsian">;
|
|
151
|
+
$fontVariantEmoji?: import('../types').HoneyCSSPropertyValue<"fontVariantEmoji">;
|
|
152
|
+
$fontVariantLigatures?: import('../types').HoneyCSSPropertyValue<"fontVariantLigatures">;
|
|
153
|
+
$fontVariantNumeric?: import('../types').HoneyCSSPropertyValue<"fontVariantNumeric">;
|
|
154
|
+
$fontVariantPosition?: import('../types').HoneyCSSPropertyValue<"fontVariantPosition">;
|
|
155
|
+
$fontVariationSettings?: import('../types').HoneyCSSPropertyValue<"fontVariationSettings">;
|
|
156
|
+
$fontWeight?: import('../types').HoneyCSSPropertyValue<"fontWeight">;
|
|
157
|
+
$forcedColorAdjust?: import('../types').HoneyCSSPropertyValue<"forcedColorAdjust">;
|
|
158
|
+
$gridAutoColumns?: import('../types').HoneyCSSPropertyValue<"gridAutoColumns">;
|
|
159
|
+
$gridAutoFlow?: import('../types').HoneyCSSPropertyValue<"gridAutoFlow">;
|
|
160
|
+
$gridAutoRows?: import('../types').HoneyCSSPropertyValue<"gridAutoRows">;
|
|
161
|
+
$gridColumnEnd?: import('../types').HoneyCSSPropertyValue<"gridColumnEnd">;
|
|
162
|
+
$gridColumnStart?: import('../types').HoneyCSSPropertyValue<"gridColumnStart">;
|
|
163
|
+
$gridRowEnd?: import('../types').HoneyCSSPropertyValue<"gridRowEnd">;
|
|
164
|
+
$gridRowStart?: import('../types').HoneyCSSPropertyValue<"gridRowStart">;
|
|
165
|
+
$gridTemplateAreas?: import('../types').HoneyCSSPropertyValue<"gridTemplateAreas">;
|
|
166
|
+
$gridTemplateColumns?: import('../types').HoneyCSSPropertyValue<"gridTemplateColumns">;
|
|
167
|
+
$gridTemplateRows?: import('../types').HoneyCSSPropertyValue<"gridTemplateRows">;
|
|
168
|
+
$hangingPunctuation?: import('../types').HoneyCSSPropertyValue<"hangingPunctuation">;
|
|
169
|
+
$height?: import('../types').HoneyCSSPropertyValue<"height">;
|
|
170
|
+
$hyphenateCharacter?: import('../types').HoneyCSSPropertyValue<"hyphenateCharacter">;
|
|
171
|
+
$hyphenateLimitChars?: import('../types').HoneyCSSPropertyValue<"hyphenateLimitChars">;
|
|
172
|
+
$hyphens?: import('../types').HoneyCSSPropertyValue<"hyphens">;
|
|
173
|
+
$imageOrientation?: import('../types').HoneyCSSPropertyValue<"imageOrientation">;
|
|
174
|
+
$imageRendering?: import('../types').HoneyCSSPropertyValue<"imageRendering">;
|
|
175
|
+
$imageResolution?: import('../types').HoneyCSSPropertyValue<"imageResolution">;
|
|
176
|
+
$initialLetter?: import('../types').HoneyCSSPropertyValue<"initialLetter">;
|
|
177
|
+
$inlineSize?: import('../types').HoneyCSSPropertyValue<"inlineSize">;
|
|
178
|
+
$inputSecurity?: import('../types').HoneyCSSPropertyValue<"inputSecurity">;
|
|
179
|
+
$insetBlockEnd?: import('../types').HoneyCSSPropertyValue<"insetBlockEnd">;
|
|
180
|
+
$insetBlockStart?: import('../types').HoneyCSSPropertyValue<"insetBlockStart">;
|
|
181
|
+
$insetInlineEnd?: import('../types').HoneyCSSPropertyValue<"insetInlineEnd">;
|
|
182
|
+
$insetInlineStart?: import('../types').HoneyCSSPropertyValue<"insetInlineStart">;
|
|
183
|
+
$isolation?: import('../types').HoneyCSSPropertyValue<"isolation">;
|
|
184
|
+
$justifyContent?: import('../types').HoneyCSSPropertyValue<"justifyContent">;
|
|
185
|
+
$justifyItems?: import('../types').HoneyCSSPropertyValue<"justifyItems">;
|
|
186
|
+
$justifySelf?: import('../types').HoneyCSSPropertyValue<"justifySelf">;
|
|
187
|
+
$justifyTracks?: import('../types').HoneyCSSPropertyValue<"justifyTracks">;
|
|
188
|
+
$left?: import('../types').HoneyCSSPropertyValue<"left">;
|
|
189
|
+
$letterSpacing?: import('../types').HoneyCSSPropertyValue<"letterSpacing">;
|
|
190
|
+
$lineBreak?: import('../types').HoneyCSSPropertyValue<"lineBreak">;
|
|
191
|
+
$lineHeight?: import('../types').HoneyCSSPropertyValue<"lineHeight">;
|
|
192
|
+
$lineHeightStep?: import('../types').HoneyCSSPropertyValue<"lineHeightStep">;
|
|
193
|
+
$listStyleImage?: import('../types').HoneyCSSPropertyValue<"listStyleImage">;
|
|
194
|
+
$listStylePosition?: import('../types').HoneyCSSPropertyValue<"listStylePosition">;
|
|
195
|
+
$listStyleType?: import('../types').HoneyCSSPropertyValue<"listStyleType">;
|
|
196
|
+
$marginBlockEnd?: import('../types').HoneyCSSPropertyValue<"marginBlockEnd">;
|
|
197
|
+
$marginBlockStart?: import('../types').HoneyCSSPropertyValue<"marginBlockStart">;
|
|
198
|
+
$marginBottom?: import('../types').HoneyCSSPropertyValue<"marginBottom">;
|
|
199
|
+
$marginInlineEnd?: import('../types').HoneyCSSPropertyValue<"marginInlineEnd">;
|
|
200
|
+
$marginInlineStart?: import('../types').HoneyCSSPropertyValue<"marginInlineStart">;
|
|
201
|
+
$marginLeft?: import('../types').HoneyCSSPropertyValue<"marginLeft">;
|
|
202
|
+
$marginRight?: import('../types').HoneyCSSPropertyValue<"marginRight">;
|
|
203
|
+
$marginTop?: import('../types').HoneyCSSPropertyValue<"marginTop">;
|
|
204
|
+
$marginTrim?: import('../types').HoneyCSSPropertyValue<"marginTrim">;
|
|
205
|
+
$maskBorderMode?: import('../types').HoneyCSSPropertyValue<"maskBorderMode">;
|
|
206
|
+
$maskBorderOutset?: import('../types').HoneyCSSPropertyValue<"maskBorderOutset">;
|
|
207
|
+
$maskBorderRepeat?: import('../types').HoneyCSSPropertyValue<"maskBorderRepeat">;
|
|
208
|
+
$maskBorderSlice?: import('../types').HoneyCSSPropertyValue<"maskBorderSlice">;
|
|
209
|
+
$maskBorderSource?: import('../types').HoneyCSSPropertyValue<"maskBorderSource">;
|
|
210
|
+
$maskBorderWidth?: import('../types').HoneyCSSPropertyValue<"maskBorderWidth">;
|
|
211
|
+
$maskClip?: import('../types').HoneyCSSPropertyValue<"maskClip">;
|
|
212
|
+
$maskComposite?: import('../types').HoneyCSSPropertyValue<"maskComposite">;
|
|
213
|
+
$maskImage?: import('../types').HoneyCSSPropertyValue<"maskImage">;
|
|
214
|
+
$maskMode?: import('../types').HoneyCSSPropertyValue<"maskMode">;
|
|
215
|
+
$maskOrigin?: import('../types').HoneyCSSPropertyValue<"maskOrigin">;
|
|
216
|
+
$maskPosition?: import('../types').HoneyCSSPropertyValue<"maskPosition">;
|
|
217
|
+
$maskRepeat?: import('../types').HoneyCSSPropertyValue<"maskRepeat">;
|
|
218
|
+
$maskSize?: import('../types').HoneyCSSPropertyValue<"maskSize">;
|
|
219
|
+
$maskType?: import('../types').HoneyCSSPropertyValue<"maskType">;
|
|
220
|
+
$masonryAutoFlow?: import('../types').HoneyCSSPropertyValue<"masonryAutoFlow">;
|
|
221
|
+
$mathDepth?: import('../types').HoneyCSSPropertyValue<"mathDepth">;
|
|
222
|
+
$mathShift?: import('../types').HoneyCSSPropertyValue<"mathShift">;
|
|
223
|
+
$mathStyle?: import('../types').HoneyCSSPropertyValue<"mathStyle">;
|
|
224
|
+
$maxBlockSize?: import('../types').HoneyCSSPropertyValue<"maxBlockSize">;
|
|
225
|
+
$maxHeight?: import('../types').HoneyCSSPropertyValue<"maxHeight">;
|
|
226
|
+
$maxInlineSize?: import('../types').HoneyCSSPropertyValue<"maxInlineSize">;
|
|
227
|
+
$maxLines?: import('../types').HoneyCSSPropertyValue<"maxLines">;
|
|
228
|
+
$maxWidth?: import('../types').HoneyCSSPropertyValue<"maxWidth">;
|
|
229
|
+
$minBlockSize?: import('../types').HoneyCSSPropertyValue<"minBlockSize">;
|
|
230
|
+
$minHeight?: import('../types').HoneyCSSPropertyValue<"minHeight">;
|
|
231
|
+
$minInlineSize?: import('../types').HoneyCSSPropertyValue<"minInlineSize">;
|
|
232
|
+
$minWidth?: import('../types').HoneyCSSPropertyValue<"minWidth">;
|
|
233
|
+
$mixBlendMode?: import('../types').HoneyCSSPropertyValue<"mixBlendMode">;
|
|
234
|
+
$motionDistance?: import('../types').HoneyCSSPropertyValue<"motionDistance">;
|
|
235
|
+
$motionPath?: import('../types').HoneyCSSPropertyValue<"motionPath">;
|
|
236
|
+
$motionRotation?: import('../types').HoneyCSSPropertyValue<"motionRotation">;
|
|
237
|
+
$objectFit?: import('../types').HoneyCSSPropertyValue<"objectFit">;
|
|
238
|
+
$objectPosition?: import('../types').HoneyCSSPropertyValue<"objectPosition">;
|
|
239
|
+
$offsetAnchor?: import('../types').HoneyCSSPropertyValue<"offsetAnchor">;
|
|
240
|
+
$offsetDistance?: import('../types').HoneyCSSPropertyValue<"offsetDistance">;
|
|
241
|
+
$offsetPath?: import('../types').HoneyCSSPropertyValue<"offsetPath">;
|
|
242
|
+
$offsetPosition?: import('../types').HoneyCSSPropertyValue<"offsetPosition">;
|
|
243
|
+
$offsetRotate?: import('../types').HoneyCSSPropertyValue<"offsetRotate">;
|
|
244
|
+
$offsetRotation?: import('../types').HoneyCSSPropertyValue<"offsetRotation">;
|
|
245
|
+
$opacity?: import('../types').HoneyCSSPropertyValue<"opacity">;
|
|
246
|
+
$order?: import('../types').HoneyCSSPropertyValue<"order">;
|
|
247
|
+
$orphans?: import('../types').HoneyCSSPropertyValue<"orphans">;
|
|
248
|
+
$outlineColor?: import('../types').HoneyCSSPropertyValue<"outlineColor"> | undefined;
|
|
249
|
+
$outlineOffset?: import('../types').HoneyCSSPropertyValue<"outlineOffset">;
|
|
250
|
+
$outlineStyle?: import('../types').HoneyCSSPropertyValue<"outlineStyle">;
|
|
251
|
+
$outlineWidth?: import('../types').HoneyCSSPropertyValue<"outlineWidth">;
|
|
252
|
+
$overflowAnchor?: import('../types').HoneyCSSPropertyValue<"overflowAnchor">;
|
|
253
|
+
$overflowBlock?: import('../types').HoneyCSSPropertyValue<"overflowBlock">;
|
|
254
|
+
$overflowClipBox?: import('../types').HoneyCSSPropertyValue<"overflowClipBox">;
|
|
255
|
+
$overflowClipMargin?: import('../types').HoneyCSSPropertyValue<"overflowClipMargin">;
|
|
256
|
+
$overflowInline?: import('../types').HoneyCSSPropertyValue<"overflowInline">;
|
|
257
|
+
$overflowWrap?: import('../types').HoneyCSSPropertyValue<"overflowWrap">;
|
|
258
|
+
$overflowX?: import('../types').HoneyCSSPropertyValue<"overflowX">;
|
|
259
|
+
$overflowY?: import('../types').HoneyCSSPropertyValue<"overflowY">;
|
|
260
|
+
$overlay?: import('../types').HoneyCSSPropertyValue<"overlay">;
|
|
261
|
+
$overscrollBehaviorBlock?: import('../types').HoneyCSSPropertyValue<"overscrollBehaviorBlock">;
|
|
262
|
+
$overscrollBehaviorInline?: import('../types').HoneyCSSPropertyValue<"overscrollBehaviorInline">;
|
|
263
|
+
$overscrollBehaviorX?: import('../types').HoneyCSSPropertyValue<"overscrollBehaviorX">;
|
|
264
|
+
$overscrollBehaviorY?: import('../types').HoneyCSSPropertyValue<"overscrollBehaviorY">;
|
|
265
|
+
$paddingBlockEnd?: import('../types').HoneyCSSPropertyValue<"paddingBlockEnd">;
|
|
266
|
+
$paddingBlockStart?: import('../types').HoneyCSSPropertyValue<"paddingBlockStart">;
|
|
267
|
+
$paddingBottom?: import('../types').HoneyCSSPropertyValue<"paddingBottom">;
|
|
268
|
+
$paddingInlineEnd?: import('../types').HoneyCSSPropertyValue<"paddingInlineEnd">;
|
|
269
|
+
$paddingInlineStart?: import('../types').HoneyCSSPropertyValue<"paddingInlineStart">;
|
|
270
|
+
$paddingLeft?: import('../types').HoneyCSSPropertyValue<"paddingLeft">;
|
|
271
|
+
$paddingRight?: import('../types').HoneyCSSPropertyValue<"paddingRight">;
|
|
272
|
+
$paddingTop?: import('../types').HoneyCSSPropertyValue<"paddingTop">;
|
|
273
|
+
$page?: import('../types').HoneyCSSPropertyValue<"page">;
|
|
274
|
+
$pageBreakAfter?: import('../types').HoneyCSSPropertyValue<"pageBreakAfter">;
|
|
275
|
+
$pageBreakBefore?: import('../types').HoneyCSSPropertyValue<"pageBreakBefore">;
|
|
276
|
+
$pageBreakInside?: import('../types').HoneyCSSPropertyValue<"pageBreakInside">;
|
|
277
|
+
$paintOrder?: import('../types').HoneyCSSPropertyValue<"paintOrder">;
|
|
278
|
+
$perspective?: import('../types').HoneyCSSPropertyValue<"perspective">;
|
|
279
|
+
$perspectiveOrigin?: import('../types').HoneyCSSPropertyValue<"perspectiveOrigin">;
|
|
280
|
+
$pointerEvents?: import('../types').HoneyCSSPropertyValue<"pointerEvents">;
|
|
281
|
+
$position?: import('../types').HoneyCSSPropertyValue<"position">;
|
|
282
|
+
$printColorAdjust?: import('../types').HoneyCSSPropertyValue<"printColorAdjust">;
|
|
283
|
+
$quotes?: import('../types').HoneyCSSPropertyValue<"quotes">;
|
|
284
|
+
$resize?: import('../types').HoneyCSSPropertyValue<"resize">;
|
|
285
|
+
$right?: import('../types').HoneyCSSPropertyValue<"right">;
|
|
286
|
+
$rotate?: import('../types').HoneyCSSPropertyValue<"rotate">;
|
|
287
|
+
$rowGap?: import('../types').HoneyCSSPropertyValue<"rowGap">;
|
|
288
|
+
$rubyAlign?: import('../types').HoneyCSSPropertyValue<"rubyAlign">;
|
|
289
|
+
$rubyMerge?: import('../types').HoneyCSSPropertyValue<"rubyMerge">;
|
|
290
|
+
$rubyPosition?: import('../types').HoneyCSSPropertyValue<"rubyPosition">;
|
|
291
|
+
$scale?: import('../types').HoneyCSSPropertyValue<"scale">;
|
|
292
|
+
$scrollBehavior?: import('../types').HoneyCSSPropertyValue<"scrollBehavior">;
|
|
293
|
+
$scrollMarginBlockEnd?: import('../types').HoneyCSSPropertyValue<"scrollMarginBlockEnd">;
|
|
294
|
+
$scrollMarginBlockStart?: import('../types').HoneyCSSPropertyValue<"scrollMarginBlockStart">;
|
|
295
|
+
$scrollMarginBottom?: import('../types').HoneyCSSPropertyValue<"scrollMarginBottom">;
|
|
296
|
+
$scrollMarginInlineEnd?: import('../types').HoneyCSSPropertyValue<"scrollMarginInlineEnd">;
|
|
297
|
+
$scrollMarginInlineStart?: import('../types').HoneyCSSPropertyValue<"scrollMarginInlineStart">;
|
|
298
|
+
$scrollMarginLeft?: import('../types').HoneyCSSPropertyValue<"scrollMarginLeft">;
|
|
299
|
+
$scrollMarginRight?: import('../types').HoneyCSSPropertyValue<"scrollMarginRight">;
|
|
300
|
+
$scrollMarginTop?: import('../types').HoneyCSSPropertyValue<"scrollMarginTop">;
|
|
301
|
+
$scrollPaddingBlockEnd?: import('../types').HoneyCSSPropertyValue<"scrollPaddingBlockEnd">;
|
|
302
|
+
$scrollPaddingBlockStart?: import('../types').HoneyCSSPropertyValue<"scrollPaddingBlockStart">;
|
|
303
|
+
$scrollPaddingBottom?: import('../types').HoneyCSSPropertyValue<"scrollPaddingBottom">;
|
|
304
|
+
$scrollPaddingInlineEnd?: import('../types').HoneyCSSPropertyValue<"scrollPaddingInlineEnd">;
|
|
305
|
+
$scrollPaddingInlineStart?: import('../types').HoneyCSSPropertyValue<"scrollPaddingInlineStart">;
|
|
306
|
+
$scrollPaddingLeft?: import('../types').HoneyCSSPropertyValue<"scrollPaddingLeft">;
|
|
307
|
+
$scrollPaddingRight?: import('../types').HoneyCSSPropertyValue<"scrollPaddingRight">;
|
|
308
|
+
$scrollPaddingTop?: import('../types').HoneyCSSPropertyValue<"scrollPaddingTop">;
|
|
309
|
+
$scrollSnapAlign?: import('../types').HoneyCSSPropertyValue<"scrollSnapAlign">;
|
|
310
|
+
$scrollSnapMarginBottom?: import('../types').HoneyCSSPropertyValue<"scrollSnapMarginBottom">;
|
|
311
|
+
$scrollSnapMarginLeft?: import('../types').HoneyCSSPropertyValue<"scrollSnapMarginLeft">;
|
|
312
|
+
$scrollSnapMarginRight?: import('../types').HoneyCSSPropertyValue<"scrollSnapMarginRight">;
|
|
313
|
+
$scrollSnapMarginTop?: import('../types').HoneyCSSPropertyValue<"scrollSnapMarginTop">;
|
|
314
|
+
$scrollSnapStop?: import('../types').HoneyCSSPropertyValue<"scrollSnapStop">;
|
|
315
|
+
$scrollSnapType?: import('../types').HoneyCSSPropertyValue<"scrollSnapType">;
|
|
316
|
+
$scrollTimelineAxis?: import('../types').HoneyCSSPropertyValue<"scrollTimelineAxis">;
|
|
317
|
+
$scrollTimelineName?: import('../types').HoneyCSSPropertyValue<"scrollTimelineName">;
|
|
318
|
+
$scrollbarColor?: import('../types').HoneyCSSPropertyValue<"scrollbarColor">;
|
|
319
|
+
$scrollbarGutter?: import('../types').HoneyCSSPropertyValue<"scrollbarGutter">;
|
|
320
|
+
$scrollbarWidth?: import('../types').HoneyCSSPropertyValue<"scrollbarWidth">;
|
|
321
|
+
$shapeImageThreshold?: import('../types').HoneyCSSPropertyValue<"shapeImageThreshold">;
|
|
322
|
+
$shapeMargin?: import('../types').HoneyCSSPropertyValue<"shapeMargin">;
|
|
323
|
+
$shapeOutside?: import('../types').HoneyCSSPropertyValue<"shapeOutside">;
|
|
324
|
+
$tabSize?: import('../types').HoneyCSSPropertyValue<"tabSize">;
|
|
325
|
+
$tableLayout?: import('../types').HoneyCSSPropertyValue<"tableLayout">;
|
|
326
|
+
$textAlign?: import('../types').HoneyCSSPropertyValue<"textAlign">;
|
|
327
|
+
$textAlignLast?: import('../types').HoneyCSSPropertyValue<"textAlignLast">;
|
|
328
|
+
$textCombineUpright?: import('../types').HoneyCSSPropertyValue<"textCombineUpright">;
|
|
329
|
+
$textDecorationColor?: import('../types').HoneyCSSPropertyValue<"textDecorationColor"> | undefined;
|
|
330
|
+
$textDecorationLine?: import('../types').HoneyCSSPropertyValue<"textDecorationLine">;
|
|
331
|
+
$textDecorationSkip?: import('../types').HoneyCSSPropertyValue<"textDecorationSkip">;
|
|
332
|
+
$textDecorationSkipInk?: import('../types').HoneyCSSPropertyValue<"textDecorationSkipInk">;
|
|
333
|
+
$textDecorationStyle?: import('../types').HoneyCSSPropertyValue<"textDecorationStyle">;
|
|
334
|
+
$textDecorationThickness?: import('../types').HoneyCSSPropertyValue<"textDecorationThickness">;
|
|
335
|
+
$textEmphasisColor?: import('../types').HoneyCSSPropertyValue<"textEmphasisColor">;
|
|
336
|
+
$textEmphasisPosition?: import('../types').HoneyCSSPropertyValue<"textEmphasisPosition">;
|
|
337
|
+
$textEmphasisStyle?: import('../types').HoneyCSSPropertyValue<"textEmphasisStyle">;
|
|
338
|
+
$textIndent?: import('../types').HoneyCSSPropertyValue<"textIndent">;
|
|
339
|
+
$textJustify?: import('../types').HoneyCSSPropertyValue<"textJustify">;
|
|
340
|
+
$textOrientation?: import('../types').HoneyCSSPropertyValue<"textOrientation">;
|
|
341
|
+
$textOverflow?: import('../types').HoneyCSSPropertyValue<"textOverflow">;
|
|
342
|
+
$textRendering?: import('../types').HoneyCSSPropertyValue<"textRendering">;
|
|
343
|
+
$textShadow?: import('../types').HoneyCSSPropertyValue<"textShadow">;
|
|
344
|
+
$textSizeAdjust?: import('../types').HoneyCSSPropertyValue<"textSizeAdjust">;
|
|
345
|
+
$textTransform?: import('../types').HoneyCSSPropertyValue<"textTransform">;
|
|
346
|
+
$textUnderlineOffset?: import('../types').HoneyCSSPropertyValue<"textUnderlineOffset">;
|
|
347
|
+
$textUnderlinePosition?: import('../types').HoneyCSSPropertyValue<"textUnderlinePosition">;
|
|
348
|
+
$textWrap?: import('../types').HoneyCSSPropertyValue<"textWrap">;
|
|
349
|
+
$timelineScope?: import('../types').HoneyCSSPropertyValue<"timelineScope">;
|
|
350
|
+
$top?: import('../types').HoneyCSSPropertyValue<"top">;
|
|
351
|
+
$touchAction?: import('../types').HoneyCSSPropertyValue<"touchAction">;
|
|
352
|
+
$transform?: import('../types').HoneyCSSPropertyValue<"transform">;
|
|
353
|
+
$transformBox?: import('../types').HoneyCSSPropertyValue<"transformBox">;
|
|
354
|
+
$transformOrigin?: import('../types').HoneyCSSPropertyValue<"transformOrigin">;
|
|
355
|
+
$transformStyle?: import('../types').HoneyCSSPropertyValue<"transformStyle">;
|
|
356
|
+
$transitionBehavior?: import('../types').HoneyCSSPropertyValue<"transitionBehavior">;
|
|
357
|
+
$transitionDelay?: import('../types').HoneyCSSPropertyValue<"transitionDelay">;
|
|
358
|
+
$transitionDuration?: import('../types').HoneyCSSPropertyValue<"transitionDuration">;
|
|
359
|
+
$transitionProperty?: import('../types').HoneyCSSPropertyValue<"transitionProperty">;
|
|
360
|
+
$transitionTimingFunction?: import('../types').HoneyCSSPropertyValue<"transitionTimingFunction">;
|
|
361
|
+
$translate?: import('../types').HoneyCSSPropertyValue<"translate">;
|
|
362
|
+
$unicodeBidi?: import('../types').HoneyCSSPropertyValue<"unicodeBidi">;
|
|
363
|
+
$userSelect?: import('../types').HoneyCSSPropertyValue<"userSelect">;
|
|
364
|
+
$verticalAlign?: import('../types').HoneyCSSPropertyValue<"verticalAlign">;
|
|
365
|
+
$viewTimelineAxis?: import('../types').HoneyCSSPropertyValue<"viewTimelineAxis">;
|
|
366
|
+
$viewTimelineInset?: import('../types').HoneyCSSPropertyValue<"viewTimelineInset">;
|
|
367
|
+
$viewTimelineName?: import('../types').HoneyCSSPropertyValue<"viewTimelineName">;
|
|
368
|
+
$viewTransitionName?: import('../types').HoneyCSSPropertyValue<"viewTransitionName">;
|
|
369
|
+
$visibility?: import('../types').HoneyCSSPropertyValue<"visibility">;
|
|
370
|
+
$whiteSpace?: import('../types').HoneyCSSPropertyValue<"whiteSpace">;
|
|
371
|
+
$whiteSpaceCollapse?: import('../types').HoneyCSSPropertyValue<"whiteSpaceCollapse">;
|
|
372
|
+
$whiteSpaceTrim?: import('../types').HoneyCSSPropertyValue<"whiteSpaceTrim">;
|
|
373
|
+
$widows?: import('../types').HoneyCSSPropertyValue<"widows">;
|
|
374
|
+
$width?: import('../types').HoneyCSSPropertyValue<"width">;
|
|
375
|
+
$willChange?: import('../types').HoneyCSSPropertyValue<"willChange">;
|
|
376
|
+
$wordBreak?: import('../types').HoneyCSSPropertyValue<"wordBreak">;
|
|
377
|
+
$wordSpacing?: import('../types').HoneyCSSPropertyValue<"wordSpacing">;
|
|
378
|
+
$wordWrap?: import('../types').HoneyCSSPropertyValue<"wordWrap">;
|
|
379
|
+
$writingMode?: import('../types').HoneyCSSPropertyValue<"writingMode">;
|
|
380
|
+
$zIndex?: import('../types').HoneyCSSPropertyValue<"zIndex">;
|
|
381
|
+
$zoom?: import('../types').HoneyCSSPropertyValue<"zoom">;
|
|
382
|
+
$all?: import('../types').HoneyCSSPropertyValue<"all">;
|
|
383
|
+
$animation?: import('../types').HoneyCSSPropertyValue<"animation">;
|
|
384
|
+
$animationRange?: import('../types').HoneyCSSPropertyValue<"animationRange">;
|
|
385
|
+
$background?: import('../types').HoneyCSSPropertyValue<"background">;
|
|
386
|
+
$backgroundPosition?: import('../types').HoneyCSSPropertyValue<"backgroundPosition">;
|
|
387
|
+
$border?: import('../types').HoneyCSSPropertyValue<"border">;
|
|
388
|
+
$borderBlock?: import('../types').HoneyCSSPropertyValue<"borderBlock">;
|
|
389
|
+
$borderBlockEnd?: import('../types').HoneyCSSPropertyValue<"borderBlockEnd">;
|
|
390
|
+
$borderBlockStart?: import('../types').HoneyCSSPropertyValue<"borderBlockStart">;
|
|
391
|
+
$borderBottom?: import('../types').HoneyCSSPropertyValue<"borderBottom">;
|
|
392
|
+
$borderColor?: import('../types').HoneyCSSPropertyValue<"borderColor"> | undefined;
|
|
393
|
+
$borderImage?: import('../types').HoneyCSSPropertyValue<"borderImage">;
|
|
394
|
+
$borderInline?: import('../types').HoneyCSSPropertyValue<"borderInline">;
|
|
395
|
+
$borderInlineEnd?: import('../types').HoneyCSSPropertyValue<"borderInlineEnd">;
|
|
396
|
+
$borderInlineStart?: import('../types').HoneyCSSPropertyValue<"borderInlineStart">;
|
|
397
|
+
$borderLeft?: import('../types').HoneyCSSPropertyValue<"borderLeft">;
|
|
398
|
+
$borderRadius?: import('../types').HoneyCSSPropertyValue<"borderRadius">;
|
|
399
|
+
$borderRight?: import('../types').HoneyCSSPropertyValue<"borderRight">;
|
|
400
|
+
$borderStyle?: import('../types').HoneyCSSPropertyValue<"borderStyle">;
|
|
401
|
+
$borderTop?: import('../types').HoneyCSSPropertyValue<"borderTop">;
|
|
402
|
+
$borderWidth?: import('../types').HoneyCSSPropertyValue<"borderWidth">;
|
|
403
|
+
$caret?: import('../types').HoneyCSSPropertyValue<"caret">;
|
|
404
|
+
$columnRule?: import('../types').HoneyCSSPropertyValue<"columnRule">;
|
|
405
|
+
$columns?: import('../types').HoneyCSSPropertyValue<"columns">;
|
|
406
|
+
$containIntrinsicSize?: import('../types').HoneyCSSPropertyValue<"containIntrinsicSize">;
|
|
407
|
+
$container?: import('../types').HoneyCSSPropertyValue<"container">;
|
|
408
|
+
$flex?: import('../types').HoneyCSSPropertyValue<"flex">;
|
|
409
|
+
$flexFlow?: import('../types').HoneyCSSPropertyValue<"flexFlow">;
|
|
410
|
+
$font?: import('../types').HoneyCSSPropertyValue<"font">;
|
|
411
|
+
$gap?: import('../types').HoneyCSSPropertyValue<"gap">;
|
|
412
|
+
$grid?: import('../types').HoneyCSSPropertyValue<"grid">;
|
|
413
|
+
$gridArea?: import('../types').HoneyCSSPropertyValue<"gridArea">;
|
|
414
|
+
$gridColumn?: import('../types').HoneyCSSPropertyValue<"gridColumn">;
|
|
415
|
+
$gridRow?: import('../types').HoneyCSSPropertyValue<"gridRow">;
|
|
416
|
+
$gridTemplate?: import('../types').HoneyCSSPropertyValue<"gridTemplate">;
|
|
417
|
+
$inset?: import('../types').HoneyCSSPropertyValue<"inset">;
|
|
418
|
+
$insetBlock?: import('../types').HoneyCSSPropertyValue<"insetBlock">;
|
|
419
|
+
$insetInline?: import('../types').HoneyCSSPropertyValue<"insetInline">;
|
|
420
|
+
$lineClamp?: import('../types').HoneyCSSPropertyValue<"lineClamp">;
|
|
421
|
+
$listStyle?: import('../types').HoneyCSSPropertyValue<"listStyle">;
|
|
422
|
+
$margin?: import('../types').HoneyCSSPropertyValue<"margin">;
|
|
423
|
+
$marginBlock?: import('../types').HoneyCSSPropertyValue<"marginBlock">;
|
|
424
|
+
$marginInline?: import('../types').HoneyCSSPropertyValue<"marginInline">;
|
|
425
|
+
$mask?: import('../types').HoneyCSSPropertyValue<"mask">;
|
|
426
|
+
$maskBorder?: import('../types').HoneyCSSPropertyValue<"maskBorder">;
|
|
427
|
+
$motion?: import('../types').HoneyCSSPropertyValue<"motion">;
|
|
428
|
+
$offset?: import('../types').HoneyCSSPropertyValue<"offset">;
|
|
429
|
+
$outline?: import('../types').HoneyCSSPropertyValue<"outline">;
|
|
430
|
+
$overflow?: import('../types').HoneyCSSPropertyValue<"overflow">;
|
|
431
|
+
$overscrollBehavior?: import('../types').HoneyCSSPropertyValue<"overscrollBehavior">;
|
|
432
|
+
$padding?: import('../types').HoneyCSSPropertyValue<"padding">;
|
|
433
|
+
$paddingBlock?: import('../types').HoneyCSSPropertyValue<"paddingBlock">;
|
|
434
|
+
$paddingInline?: import('../types').HoneyCSSPropertyValue<"paddingInline">;
|
|
435
|
+
$placeContent?: import('../types').HoneyCSSPropertyValue<"placeContent">;
|
|
436
|
+
$placeItems?: import('../types').HoneyCSSPropertyValue<"placeItems">;
|
|
437
|
+
$placeSelf?: import('../types').HoneyCSSPropertyValue<"placeSelf">;
|
|
438
|
+
$scrollMargin?: import('../types').HoneyCSSPropertyValue<"scrollMargin">;
|
|
439
|
+
$scrollMarginBlock?: import('../types').HoneyCSSPropertyValue<"scrollMarginBlock">;
|
|
440
|
+
$scrollMarginInline?: import('../types').HoneyCSSPropertyValue<"scrollMarginInline">;
|
|
441
|
+
$scrollPadding?: import('../types').HoneyCSSPropertyValue<"scrollPadding">;
|
|
442
|
+
$scrollPaddingBlock?: import('../types').HoneyCSSPropertyValue<"scrollPaddingBlock">;
|
|
443
|
+
$scrollPaddingInline?: import('../types').HoneyCSSPropertyValue<"scrollPaddingInline">;
|
|
444
|
+
$scrollSnapMargin?: import('../types').HoneyCSSPropertyValue<"scrollSnapMargin">;
|
|
445
|
+
$scrollTimeline?: import('../types').HoneyCSSPropertyValue<"scrollTimeline">;
|
|
446
|
+
$textDecoration?: import('../types').HoneyCSSPropertyValue<"textDecoration">;
|
|
447
|
+
$textEmphasis?: import('../types').HoneyCSSPropertyValue<"textEmphasis">;
|
|
448
|
+
$transition?: import('../types').HoneyCSSPropertyValue<"transition">;
|
|
449
|
+
$viewTimeline?: import('../types').HoneyCSSPropertyValue<"viewTimeline">;
|
|
450
|
+
$MozAnimationDelay?: import('../types').HoneyCSSPropertyValue<"MozAnimationDelay">;
|
|
451
|
+
$MozAnimationDirection?: import('../types').HoneyCSSPropertyValue<"MozAnimationDirection">;
|
|
452
|
+
$MozAnimationDuration?: import('../types').HoneyCSSPropertyValue<"MozAnimationDuration">;
|
|
453
|
+
$MozAnimationFillMode?: import('../types').HoneyCSSPropertyValue<"MozAnimationFillMode">;
|
|
454
|
+
$MozAnimationIterationCount?: import('../types').HoneyCSSPropertyValue<"MozAnimationIterationCount">;
|
|
455
|
+
$MozAnimationName?: import('../types').HoneyCSSPropertyValue<"MozAnimationName">;
|
|
456
|
+
$MozAnimationPlayState?: import('../types').HoneyCSSPropertyValue<"MozAnimationPlayState">;
|
|
457
|
+
$MozAnimationTimingFunction?: import('../types').HoneyCSSPropertyValue<"MozAnimationTimingFunction">;
|
|
458
|
+
$MozAppearance?: import('../types').HoneyCSSPropertyValue<"MozAppearance">;
|
|
459
|
+
$MozBinding?: import('../types').HoneyCSSPropertyValue<"MozBinding">;
|
|
460
|
+
$MozBorderBottomColors?: import('../types').HoneyCSSPropertyValue<"MozBorderBottomColors">;
|
|
461
|
+
$MozBorderEndColor?: import('../types').HoneyCSSPropertyValue<"MozBorderEndColor">;
|
|
462
|
+
$MozBorderEndStyle?: import('../types').HoneyCSSPropertyValue<"MozBorderEndStyle">;
|
|
463
|
+
$MozBorderEndWidth?: import('../types').HoneyCSSPropertyValue<"MozBorderEndWidth">;
|
|
464
|
+
$MozBorderLeftColors?: import('../types').HoneyCSSPropertyValue<"MozBorderLeftColors">;
|
|
465
|
+
$MozBorderRightColors?: import('../types').HoneyCSSPropertyValue<"MozBorderRightColors">;
|
|
466
|
+
$MozBorderStartColor?: import('../types').HoneyCSSPropertyValue<"MozBorderStartColor">;
|
|
467
|
+
$MozBorderStartStyle?: import('../types').HoneyCSSPropertyValue<"MozBorderStartStyle">;
|
|
468
|
+
$MozBorderTopColors?: import('../types').HoneyCSSPropertyValue<"MozBorderTopColors">;
|
|
469
|
+
$MozBoxSizing?: import('../types').HoneyCSSPropertyValue<"MozBoxSizing">;
|
|
470
|
+
$MozColumnCount?: import('../types').HoneyCSSPropertyValue<"MozColumnCount">;
|
|
471
|
+
$MozColumnFill?: import('../types').HoneyCSSPropertyValue<"MozColumnFill">;
|
|
472
|
+
$MozColumnRuleColor?: import('../types').HoneyCSSPropertyValue<"MozColumnRuleColor">;
|
|
473
|
+
$MozColumnRuleStyle?: import('../types').HoneyCSSPropertyValue<"MozColumnRuleStyle">;
|
|
474
|
+
$MozColumnRuleWidth?: import('../types').HoneyCSSPropertyValue<"MozColumnRuleWidth">;
|
|
475
|
+
$MozColumnWidth?: import('../types').HoneyCSSPropertyValue<"MozColumnWidth">;
|
|
476
|
+
$MozContextProperties?: import('../types').HoneyCSSPropertyValue<"MozContextProperties">;
|
|
477
|
+
$MozFontFeatureSettings?: import('../types').HoneyCSSPropertyValue<"MozFontFeatureSettings">;
|
|
478
|
+
$MozFontLanguageOverride?: import('../types').HoneyCSSPropertyValue<"MozFontLanguageOverride">;
|
|
479
|
+
$MozHyphens?: import('../types').HoneyCSSPropertyValue<"MozHyphens">;
|
|
480
|
+
$MozImageRegion?: import('../types').HoneyCSSPropertyValue<"MozImageRegion">;
|
|
481
|
+
$MozMarginEnd?: import('../types').HoneyCSSPropertyValue<"MozMarginEnd">;
|
|
482
|
+
$MozMarginStart?: import('../types').HoneyCSSPropertyValue<"MozMarginStart">;
|
|
483
|
+
$MozOrient?: import('../types').HoneyCSSPropertyValue<"MozOrient">;
|
|
484
|
+
$MozOsxFontSmoothing?: import('../types').HoneyCSSPropertyValue<"MozOsxFontSmoothing">;
|
|
485
|
+
$MozOutlineRadiusBottomleft?: import('../types').HoneyCSSPropertyValue<"MozOutlineRadiusBottomleft">;
|
|
486
|
+
$MozOutlineRadiusBottomright?: import('../types').HoneyCSSPropertyValue<"MozOutlineRadiusBottomright">;
|
|
487
|
+
$MozOutlineRadiusTopleft?: import('../types').HoneyCSSPropertyValue<"MozOutlineRadiusTopleft">;
|
|
488
|
+
$MozOutlineRadiusTopright?: import('../types').HoneyCSSPropertyValue<"MozOutlineRadiusTopright">;
|
|
489
|
+
$MozPaddingEnd?: import('../types').HoneyCSSPropertyValue<"MozPaddingEnd">;
|
|
490
|
+
$MozPaddingStart?: import('../types').HoneyCSSPropertyValue<"MozPaddingStart">;
|
|
491
|
+
$MozStackSizing?: import('../types').HoneyCSSPropertyValue<"MozStackSizing">;
|
|
492
|
+
$MozTabSize?: import('../types').HoneyCSSPropertyValue<"MozTabSize">;
|
|
493
|
+
$MozTextBlink?: import('../types').HoneyCSSPropertyValue<"MozTextBlink">;
|
|
494
|
+
$MozTextSizeAdjust?: import('../types').HoneyCSSPropertyValue<"MozTextSizeAdjust">;
|
|
495
|
+
$MozUserFocus?: import('../types').HoneyCSSPropertyValue<"MozUserFocus">;
|
|
496
|
+
$MozUserModify?: import('../types').HoneyCSSPropertyValue<"MozUserModify">;
|
|
497
|
+
$MozUserSelect?: import('../types').HoneyCSSPropertyValue<"MozUserSelect">;
|
|
498
|
+
$MozWindowDragging?: import('../types').HoneyCSSPropertyValue<"MozWindowDragging">;
|
|
499
|
+
$MozWindowShadow?: import('../types').HoneyCSSPropertyValue<"MozWindowShadow">;
|
|
500
|
+
$msAccelerator?: import('../types').HoneyCSSPropertyValue<"msAccelerator">;
|
|
501
|
+
$msBlockProgression?: import('../types').HoneyCSSPropertyValue<"msBlockProgression">;
|
|
502
|
+
$msContentZoomChaining?: import('../types').HoneyCSSPropertyValue<"msContentZoomChaining">;
|
|
503
|
+
$msContentZoomLimitMax?: import('../types').HoneyCSSPropertyValue<"msContentZoomLimitMax">;
|
|
504
|
+
$msContentZoomLimitMin?: import('../types').HoneyCSSPropertyValue<"msContentZoomLimitMin">;
|
|
505
|
+
$msContentZoomSnapPoints?: import('../types').HoneyCSSPropertyValue<"msContentZoomSnapPoints">;
|
|
506
|
+
$msContentZoomSnapType?: import('../types').HoneyCSSPropertyValue<"msContentZoomSnapType">;
|
|
507
|
+
$msContentZooming?: import('../types').HoneyCSSPropertyValue<"msContentZooming">;
|
|
508
|
+
$msFilter?: import('../types').HoneyCSSPropertyValue<"msFilter">;
|
|
509
|
+
$msFlexDirection?: import('../types').HoneyCSSPropertyValue<"msFlexDirection">;
|
|
510
|
+
$msFlexPositive?: import('../types').HoneyCSSPropertyValue<"msFlexPositive">;
|
|
511
|
+
$msFlowFrom?: import('../types').HoneyCSSPropertyValue<"msFlowFrom">;
|
|
512
|
+
$msFlowInto?: import('../types').HoneyCSSPropertyValue<"msFlowInto">;
|
|
513
|
+
$msGridColumns?: import('../types').HoneyCSSPropertyValue<"msGridColumns">;
|
|
514
|
+
$msGridRows?: import('../types').HoneyCSSPropertyValue<"msGridRows">;
|
|
515
|
+
$msHighContrastAdjust?: import('../types').HoneyCSSPropertyValue<"msHighContrastAdjust">;
|
|
516
|
+
$msHyphenateLimitChars?: import('../types').HoneyCSSPropertyValue<"msHyphenateLimitChars">;
|
|
517
|
+
$msHyphenateLimitLines?: import('../types').HoneyCSSPropertyValue<"msHyphenateLimitLines">;
|
|
518
|
+
$msHyphenateLimitZone?: import('../types').HoneyCSSPropertyValue<"msHyphenateLimitZone">;
|
|
519
|
+
$msHyphens?: import('../types').HoneyCSSPropertyValue<"msHyphens">;
|
|
520
|
+
$msImeAlign?: import('../types').HoneyCSSPropertyValue<"msImeAlign">;
|
|
521
|
+
$msLineBreak?: import('../types').HoneyCSSPropertyValue<"msLineBreak">;
|
|
522
|
+
$msOrder?: import('../types').HoneyCSSPropertyValue<"msOrder">;
|
|
523
|
+
$msOverflowStyle?: import('../types').HoneyCSSPropertyValue<"msOverflowStyle">;
|
|
524
|
+
$msOverflowX?: import('../types').HoneyCSSPropertyValue<"msOverflowX">;
|
|
525
|
+
$msOverflowY?: import('../types').HoneyCSSPropertyValue<"msOverflowY">;
|
|
526
|
+
$msScrollChaining?: import('../types').HoneyCSSPropertyValue<"msScrollChaining">;
|
|
527
|
+
$msScrollLimitXMax?: import('../types').HoneyCSSPropertyValue<"msScrollLimitXMax">;
|
|
528
|
+
$msScrollLimitXMin?: import('../types').HoneyCSSPropertyValue<"msScrollLimitXMin">;
|
|
529
|
+
$msScrollLimitYMax?: import('../types').HoneyCSSPropertyValue<"msScrollLimitYMax">;
|
|
530
|
+
$msScrollLimitYMin?: import('../types').HoneyCSSPropertyValue<"msScrollLimitYMin">;
|
|
531
|
+
$msScrollRails?: import('../types').HoneyCSSPropertyValue<"msScrollRails">;
|
|
532
|
+
$msScrollSnapPointsX?: import('../types').HoneyCSSPropertyValue<"msScrollSnapPointsX">;
|
|
533
|
+
$msScrollSnapPointsY?: import('../types').HoneyCSSPropertyValue<"msScrollSnapPointsY">;
|
|
534
|
+
$msScrollSnapType?: import('../types').HoneyCSSPropertyValue<"msScrollSnapType">;
|
|
535
|
+
$msScrollTranslation?: import('../types').HoneyCSSPropertyValue<"msScrollTranslation">;
|
|
536
|
+
$msScrollbar3dlightColor?: import('../types').HoneyCSSPropertyValue<"msScrollbar3dlightColor">;
|
|
537
|
+
$msScrollbarArrowColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarArrowColor">;
|
|
538
|
+
$msScrollbarBaseColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarBaseColor">;
|
|
539
|
+
$msScrollbarDarkshadowColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarDarkshadowColor">;
|
|
540
|
+
$msScrollbarFaceColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarFaceColor">;
|
|
541
|
+
$msScrollbarHighlightColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarHighlightColor">;
|
|
542
|
+
$msScrollbarShadowColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarShadowColor">;
|
|
543
|
+
$msScrollbarTrackColor?: import('../types').HoneyCSSPropertyValue<"msScrollbarTrackColor">;
|
|
544
|
+
$msTextAutospace?: import('../types').HoneyCSSPropertyValue<"msTextAutospace">;
|
|
545
|
+
$msTextCombineHorizontal?: import('../types').HoneyCSSPropertyValue<"msTextCombineHorizontal">;
|
|
546
|
+
$msTextOverflow?: import('../types').HoneyCSSPropertyValue<"msTextOverflow">;
|
|
547
|
+
$msTouchAction?: import('../types').HoneyCSSPropertyValue<"msTouchAction">;
|
|
548
|
+
$msTouchSelect?: import('../types').HoneyCSSPropertyValue<"msTouchSelect">;
|
|
549
|
+
$msTransform?: import('../types').HoneyCSSPropertyValue<"msTransform">;
|
|
550
|
+
$msTransformOrigin?: import('../types').HoneyCSSPropertyValue<"msTransformOrigin">;
|
|
551
|
+
$msTransitionDelay?: import('../types').HoneyCSSPropertyValue<"msTransitionDelay">;
|
|
552
|
+
$msTransitionDuration?: import('../types').HoneyCSSPropertyValue<"msTransitionDuration">;
|
|
553
|
+
$msTransitionProperty?: import('../types').HoneyCSSPropertyValue<"msTransitionProperty">;
|
|
554
|
+
$msTransitionTimingFunction?: import('../types').HoneyCSSPropertyValue<"msTransitionTimingFunction">;
|
|
555
|
+
$msUserSelect?: import('../types').HoneyCSSPropertyValue<"msUserSelect">;
|
|
556
|
+
$msWordBreak?: import('../types').HoneyCSSPropertyValue<"msWordBreak">;
|
|
557
|
+
$msWrapFlow?: import('../types').HoneyCSSPropertyValue<"msWrapFlow">;
|
|
558
|
+
$msWrapMargin?: import('../types').HoneyCSSPropertyValue<"msWrapMargin">;
|
|
559
|
+
$msWrapThrough?: import('../types').HoneyCSSPropertyValue<"msWrapThrough">;
|
|
560
|
+
$msWritingMode?: import('../types').HoneyCSSPropertyValue<"msWritingMode">;
|
|
561
|
+
$WebkitAlignContent?: import('../types').HoneyCSSPropertyValue<"WebkitAlignContent">;
|
|
562
|
+
$WebkitAlignItems?: import('../types').HoneyCSSPropertyValue<"WebkitAlignItems">;
|
|
563
|
+
$WebkitAlignSelf?: import('../types').HoneyCSSPropertyValue<"WebkitAlignSelf">;
|
|
564
|
+
$WebkitAnimationDelay?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationDelay">;
|
|
565
|
+
$WebkitAnimationDirection?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationDirection">;
|
|
566
|
+
$WebkitAnimationDuration?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationDuration">;
|
|
567
|
+
$WebkitAnimationFillMode?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationFillMode">;
|
|
568
|
+
$WebkitAnimationIterationCount?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationIterationCount">;
|
|
569
|
+
$WebkitAnimationName?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationName">;
|
|
570
|
+
$WebkitAnimationPlayState?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationPlayState">;
|
|
571
|
+
$WebkitAnimationTimingFunction?: import('../types').HoneyCSSPropertyValue<"WebkitAnimationTimingFunction">;
|
|
572
|
+
$WebkitAppearance?: import('../types').HoneyCSSPropertyValue<"WebkitAppearance">;
|
|
573
|
+
$WebkitBackdropFilter?: import('../types').HoneyCSSPropertyValue<"WebkitBackdropFilter">;
|
|
574
|
+
$WebkitBackfaceVisibility?: import('../types').HoneyCSSPropertyValue<"WebkitBackfaceVisibility">;
|
|
575
|
+
$WebkitBackgroundClip?: import('../types').HoneyCSSPropertyValue<"WebkitBackgroundClip">;
|
|
576
|
+
$WebkitBackgroundOrigin?: import('../types').HoneyCSSPropertyValue<"WebkitBackgroundOrigin">;
|
|
577
|
+
$WebkitBackgroundSize?: import('../types').HoneyCSSPropertyValue<"WebkitBackgroundSize">;
|
|
578
|
+
$WebkitBorderBeforeColor?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBeforeColor">;
|
|
579
|
+
$WebkitBorderBeforeStyle?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBeforeStyle">;
|
|
580
|
+
$WebkitBorderBeforeWidth?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBeforeWidth">;
|
|
581
|
+
$WebkitBorderBottomLeftRadius?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBottomLeftRadius">;
|
|
582
|
+
$WebkitBorderBottomRightRadius?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBottomRightRadius">;
|
|
583
|
+
$WebkitBorderImageSlice?: import('../types').HoneyCSSPropertyValue<"WebkitBorderImageSlice">;
|
|
584
|
+
$WebkitBorderTopLeftRadius?: import('../types').HoneyCSSPropertyValue<"WebkitBorderTopLeftRadius">;
|
|
585
|
+
$WebkitBorderTopRightRadius?: import('../types').HoneyCSSPropertyValue<"WebkitBorderTopRightRadius">;
|
|
586
|
+
$WebkitBoxDecorationBreak?: import('../types').HoneyCSSPropertyValue<"WebkitBoxDecorationBreak">;
|
|
587
|
+
$WebkitBoxReflect?: import('../types').HoneyCSSPropertyValue<"WebkitBoxReflect">;
|
|
588
|
+
$WebkitBoxShadow?: import('../types').HoneyCSSPropertyValue<"WebkitBoxShadow">;
|
|
589
|
+
$WebkitBoxSizing?: import('../types').HoneyCSSPropertyValue<"WebkitBoxSizing">;
|
|
590
|
+
$WebkitClipPath?: import('../types').HoneyCSSPropertyValue<"WebkitClipPath">;
|
|
591
|
+
$WebkitColumnCount?: import('../types').HoneyCSSPropertyValue<"WebkitColumnCount">;
|
|
592
|
+
$WebkitColumnFill?: import('../types').HoneyCSSPropertyValue<"WebkitColumnFill">;
|
|
593
|
+
$WebkitColumnRuleColor?: import('../types').HoneyCSSPropertyValue<"WebkitColumnRuleColor">;
|
|
594
|
+
$WebkitColumnRuleStyle?: import('../types').HoneyCSSPropertyValue<"WebkitColumnRuleStyle">;
|
|
595
|
+
$WebkitColumnRuleWidth?: import('../types').HoneyCSSPropertyValue<"WebkitColumnRuleWidth">;
|
|
596
|
+
$WebkitColumnSpan?: import('../types').HoneyCSSPropertyValue<"WebkitColumnSpan">;
|
|
597
|
+
$WebkitColumnWidth?: import('../types').HoneyCSSPropertyValue<"WebkitColumnWidth">;
|
|
598
|
+
$WebkitFilter?: import('../types').HoneyCSSPropertyValue<"WebkitFilter">;
|
|
599
|
+
$WebkitFlexBasis?: import('../types').HoneyCSSPropertyValue<"WebkitFlexBasis">;
|
|
600
|
+
$WebkitFlexDirection?: import('../types').HoneyCSSPropertyValue<"WebkitFlexDirection">;
|
|
601
|
+
$WebkitFlexGrow?: import('../types').HoneyCSSPropertyValue<"WebkitFlexGrow">;
|
|
602
|
+
$WebkitFlexShrink?: import('../types').HoneyCSSPropertyValue<"WebkitFlexShrink">;
|
|
603
|
+
$WebkitFlexWrap?: import('../types').HoneyCSSPropertyValue<"WebkitFlexWrap">;
|
|
604
|
+
$WebkitFontFeatureSettings?: import('../types').HoneyCSSPropertyValue<"WebkitFontFeatureSettings">;
|
|
605
|
+
$WebkitFontKerning?: import('../types').HoneyCSSPropertyValue<"WebkitFontKerning">;
|
|
606
|
+
$WebkitFontSmoothing?: import('../types').HoneyCSSPropertyValue<"WebkitFontSmoothing">;
|
|
607
|
+
$WebkitFontVariantLigatures?: import('../types').HoneyCSSPropertyValue<"WebkitFontVariantLigatures">;
|
|
608
|
+
$WebkitHyphenateCharacter?: import('../types').HoneyCSSPropertyValue<"WebkitHyphenateCharacter">;
|
|
609
|
+
$WebkitHyphens?: import('../types').HoneyCSSPropertyValue<"WebkitHyphens">;
|
|
610
|
+
$WebkitInitialLetter?: import('../types').HoneyCSSPropertyValue<"WebkitInitialLetter">;
|
|
611
|
+
$WebkitJustifyContent?: import('../types').HoneyCSSPropertyValue<"WebkitJustifyContent">;
|
|
612
|
+
$WebkitLineBreak?: import('../types').HoneyCSSPropertyValue<"WebkitLineBreak">;
|
|
613
|
+
$WebkitLineClamp?: import('../types').HoneyCSSPropertyValue<"WebkitLineClamp">;
|
|
614
|
+
$WebkitMarginEnd?: import('../types').HoneyCSSPropertyValue<"WebkitMarginEnd">;
|
|
615
|
+
$WebkitMarginStart?: import('../types').HoneyCSSPropertyValue<"WebkitMarginStart">;
|
|
616
|
+
$WebkitMaskAttachment?: import('../types').HoneyCSSPropertyValue<"WebkitMaskAttachment">;
|
|
617
|
+
$WebkitMaskBoxImageOutset?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImageOutset">;
|
|
618
|
+
$WebkitMaskBoxImageRepeat?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImageRepeat">;
|
|
619
|
+
$WebkitMaskBoxImageSlice?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImageSlice">;
|
|
620
|
+
$WebkitMaskBoxImageSource?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImageSource">;
|
|
621
|
+
$WebkitMaskBoxImageWidth?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImageWidth">;
|
|
622
|
+
$WebkitMaskClip?: import('../types').HoneyCSSPropertyValue<"WebkitMaskClip">;
|
|
623
|
+
$WebkitMaskComposite?: import('../types').HoneyCSSPropertyValue<"WebkitMaskComposite">;
|
|
624
|
+
$WebkitMaskImage?: import('../types').HoneyCSSPropertyValue<"WebkitMaskImage">;
|
|
625
|
+
$WebkitMaskOrigin?: import('../types').HoneyCSSPropertyValue<"WebkitMaskOrigin">;
|
|
626
|
+
$WebkitMaskPosition?: import('../types').HoneyCSSPropertyValue<"WebkitMaskPosition">;
|
|
627
|
+
$WebkitMaskPositionX?: import('../types').HoneyCSSPropertyValue<"WebkitMaskPositionX">;
|
|
628
|
+
$WebkitMaskPositionY?: import('../types').HoneyCSSPropertyValue<"WebkitMaskPositionY">;
|
|
629
|
+
$WebkitMaskRepeat?: import('../types').HoneyCSSPropertyValue<"WebkitMaskRepeat">;
|
|
630
|
+
$WebkitMaskRepeatX?: import('../types').HoneyCSSPropertyValue<"WebkitMaskRepeatX">;
|
|
631
|
+
$WebkitMaskRepeatY?: import('../types').HoneyCSSPropertyValue<"WebkitMaskRepeatY">;
|
|
632
|
+
$WebkitMaskSize?: import('../types').HoneyCSSPropertyValue<"WebkitMaskSize">;
|
|
633
|
+
$WebkitMaxInlineSize?: import('../types').HoneyCSSPropertyValue<"WebkitMaxInlineSize">;
|
|
634
|
+
$WebkitOrder?: import('../types').HoneyCSSPropertyValue<"WebkitOrder">;
|
|
635
|
+
$WebkitOverflowScrolling?: import('../types').HoneyCSSPropertyValue<"WebkitOverflowScrolling">;
|
|
636
|
+
$WebkitPaddingEnd?: import('../types').HoneyCSSPropertyValue<"WebkitPaddingEnd">;
|
|
637
|
+
$WebkitPaddingStart?: import('../types').HoneyCSSPropertyValue<"WebkitPaddingStart">;
|
|
638
|
+
$WebkitPerspective?: import('../types').HoneyCSSPropertyValue<"WebkitPerspective">;
|
|
639
|
+
$WebkitPerspectiveOrigin?: import('../types').HoneyCSSPropertyValue<"WebkitPerspectiveOrigin">;
|
|
640
|
+
$WebkitPrintColorAdjust?: import('../types').HoneyCSSPropertyValue<"WebkitPrintColorAdjust">;
|
|
641
|
+
$WebkitRubyPosition?: import('../types').HoneyCSSPropertyValue<"WebkitRubyPosition">;
|
|
642
|
+
$WebkitScrollSnapType?: import('../types').HoneyCSSPropertyValue<"WebkitScrollSnapType">;
|
|
643
|
+
$WebkitShapeMargin?: import('../types').HoneyCSSPropertyValue<"WebkitShapeMargin">;
|
|
644
|
+
$WebkitTapHighlightColor?: import('../types').HoneyCSSPropertyValue<"WebkitTapHighlightColor">;
|
|
645
|
+
$WebkitTextCombine?: import('../types').HoneyCSSPropertyValue<"WebkitTextCombine">;
|
|
646
|
+
$WebkitTextDecorationColor?: import('../types').HoneyCSSPropertyValue<"WebkitTextDecorationColor">;
|
|
647
|
+
$WebkitTextDecorationLine?: import('../types').HoneyCSSPropertyValue<"WebkitTextDecorationLine">;
|
|
648
|
+
$WebkitTextDecorationSkip?: import('../types').HoneyCSSPropertyValue<"WebkitTextDecorationSkip">;
|
|
649
|
+
$WebkitTextDecorationStyle?: import('../types').HoneyCSSPropertyValue<"WebkitTextDecorationStyle">;
|
|
650
|
+
$WebkitTextEmphasisColor?: import('../types').HoneyCSSPropertyValue<"WebkitTextEmphasisColor">;
|
|
651
|
+
$WebkitTextEmphasisPosition?: import('../types').HoneyCSSPropertyValue<"WebkitTextEmphasisPosition">;
|
|
652
|
+
$WebkitTextEmphasisStyle?: import('../types').HoneyCSSPropertyValue<"WebkitTextEmphasisStyle">;
|
|
653
|
+
$WebkitTextFillColor?: import('../types').HoneyCSSPropertyValue<"WebkitTextFillColor">;
|
|
654
|
+
$WebkitTextOrientation?: import('../types').HoneyCSSPropertyValue<"WebkitTextOrientation">;
|
|
655
|
+
$WebkitTextSizeAdjust?: import('../types').HoneyCSSPropertyValue<"WebkitTextSizeAdjust">;
|
|
656
|
+
$WebkitTextStrokeColor?: import('../types').HoneyCSSPropertyValue<"WebkitTextStrokeColor">;
|
|
657
|
+
$WebkitTextStrokeWidth?: import('../types').HoneyCSSPropertyValue<"WebkitTextStrokeWidth">;
|
|
658
|
+
$WebkitTextUnderlinePosition?: import('../types').HoneyCSSPropertyValue<"WebkitTextUnderlinePosition">;
|
|
659
|
+
$WebkitTouchCallout?: import('../types').HoneyCSSPropertyValue<"WebkitTouchCallout">;
|
|
660
|
+
$WebkitTransform?: import('../types').HoneyCSSPropertyValue<"WebkitTransform">;
|
|
661
|
+
$WebkitTransformOrigin?: import('../types').HoneyCSSPropertyValue<"WebkitTransformOrigin">;
|
|
662
|
+
$WebkitTransformStyle?: import('../types').HoneyCSSPropertyValue<"WebkitTransformStyle">;
|
|
663
|
+
$WebkitTransitionDelay?: import('../types').HoneyCSSPropertyValue<"WebkitTransitionDelay">;
|
|
664
|
+
$WebkitTransitionDuration?: import('../types').HoneyCSSPropertyValue<"WebkitTransitionDuration">;
|
|
665
|
+
$WebkitTransitionProperty?: import('../types').HoneyCSSPropertyValue<"WebkitTransitionProperty">;
|
|
666
|
+
$WebkitTransitionTimingFunction?: import('../types').HoneyCSSPropertyValue<"WebkitTransitionTimingFunction">;
|
|
667
|
+
$WebkitUserModify?: import('../types').HoneyCSSPropertyValue<"WebkitUserModify">;
|
|
668
|
+
$WebkitUserSelect?: import('../types').HoneyCSSPropertyValue<"WebkitUserSelect">;
|
|
669
|
+
$WebkitWritingMode?: import('../types').HoneyCSSPropertyValue<"WebkitWritingMode">;
|
|
670
|
+
$MozAnimation?: import('../types').HoneyCSSPropertyValue<"MozAnimation">;
|
|
671
|
+
$MozBorderImage?: import('../types').HoneyCSSPropertyValue<"MozBorderImage">;
|
|
672
|
+
$MozColumnRule?: import('../types').HoneyCSSPropertyValue<"MozColumnRule">;
|
|
673
|
+
$MozColumns?: import('../types').HoneyCSSPropertyValue<"MozColumns">;
|
|
674
|
+
$MozOutlineRadius?: import('../types').HoneyCSSPropertyValue<"MozOutlineRadius">;
|
|
675
|
+
$msContentZoomLimit?: import('../types').HoneyCSSPropertyValue<"msContentZoomLimit">;
|
|
676
|
+
$msContentZoomSnap?: import('../types').HoneyCSSPropertyValue<"msContentZoomSnap">;
|
|
677
|
+
$msFlex?: import('../types').HoneyCSSPropertyValue<"msFlex">;
|
|
678
|
+
$msScrollLimit?: import('../types').HoneyCSSPropertyValue<"msScrollLimit">;
|
|
679
|
+
$msScrollSnapX?: import('../types').HoneyCSSPropertyValue<"msScrollSnapX">;
|
|
680
|
+
$msScrollSnapY?: import('../types').HoneyCSSPropertyValue<"msScrollSnapY">;
|
|
681
|
+
$msTransition?: import('../types').HoneyCSSPropertyValue<"msTransition">;
|
|
682
|
+
$WebkitAnimation?: import('../types').HoneyCSSPropertyValue<"WebkitAnimation">;
|
|
683
|
+
$WebkitBorderBefore?: import('../types').HoneyCSSPropertyValue<"WebkitBorderBefore">;
|
|
684
|
+
$WebkitBorderImage?: import('../types').HoneyCSSPropertyValue<"WebkitBorderImage">;
|
|
685
|
+
$WebkitBorderRadius?: import('../types').HoneyCSSPropertyValue<"WebkitBorderRadius">;
|
|
686
|
+
$WebkitColumnRule?: import('../types').HoneyCSSPropertyValue<"WebkitColumnRule">;
|
|
687
|
+
$WebkitColumns?: import('../types').HoneyCSSPropertyValue<"WebkitColumns">;
|
|
688
|
+
$WebkitFlex?: import('../types').HoneyCSSPropertyValue<"WebkitFlex">;
|
|
689
|
+
$WebkitFlexFlow?: import('../types').HoneyCSSPropertyValue<"WebkitFlexFlow">;
|
|
690
|
+
$WebkitMask?: import('../types').HoneyCSSPropertyValue<"WebkitMask">;
|
|
691
|
+
$WebkitMaskBoxImage?: import('../types').HoneyCSSPropertyValue<"WebkitMaskBoxImage">;
|
|
692
|
+
$WebkitTextEmphasis?: import('../types').HoneyCSSPropertyValue<"WebkitTextEmphasis">;
|
|
693
|
+
$WebkitTextStroke?: import('../types').HoneyCSSPropertyValue<"WebkitTextStroke">;
|
|
694
|
+
$WebkitTransition?: import('../types').HoneyCSSPropertyValue<"WebkitTransition">;
|
|
695
|
+
$azimuth?: import('../types').HoneyCSSPropertyValue<"azimuth">;
|
|
696
|
+
$boxAlign?: import('../types').HoneyCSSPropertyValue<"boxAlign">;
|
|
697
|
+
$boxDirection?: import('../types').HoneyCSSPropertyValue<"boxDirection">;
|
|
698
|
+
$boxFlex?: import('../types').HoneyCSSPropertyValue<"boxFlex">;
|
|
699
|
+
$boxFlexGroup?: import('../types').HoneyCSSPropertyValue<"boxFlexGroup">;
|
|
700
|
+
$boxLines?: import('../types').HoneyCSSPropertyValue<"boxLines">;
|
|
701
|
+
$boxOrdinalGroup?: import('../types').HoneyCSSPropertyValue<"boxOrdinalGroup">;
|
|
702
|
+
$boxOrient?: import('../types').HoneyCSSPropertyValue<"boxOrient">;
|
|
703
|
+
$boxPack?: import('../types').HoneyCSSPropertyValue<"boxPack">;
|
|
704
|
+
$clip?: import('../types').HoneyCSSPropertyValue<"clip">;
|
|
705
|
+
$gridColumnGap?: import('../types').HoneyCSSPropertyValue<"gridColumnGap">;
|
|
706
|
+
$gridGap?: import('../types').HoneyCSSPropertyValue<"gridGap">;
|
|
707
|
+
$gridRowGap?: import('../types').HoneyCSSPropertyValue<"gridRowGap">;
|
|
708
|
+
$imeMode?: import('../types').HoneyCSSPropertyValue<"imeMode">;
|
|
709
|
+
$offsetBlock?: import('../types').HoneyCSSPropertyValue<"offsetBlock">;
|
|
710
|
+
$offsetBlockEnd?: import('../types').HoneyCSSPropertyValue<"offsetBlockEnd">;
|
|
711
|
+
$offsetBlockStart?: import('../types').HoneyCSSPropertyValue<"offsetBlockStart">;
|
|
712
|
+
$offsetInline?: import('../types').HoneyCSSPropertyValue<"offsetInline">;
|
|
713
|
+
$offsetInlineEnd?: import('../types').HoneyCSSPropertyValue<"offsetInlineEnd">;
|
|
714
|
+
$offsetInlineStart?: import('../types').HoneyCSSPropertyValue<"offsetInlineStart">;
|
|
715
|
+
$scrollSnapCoordinate?: import('../types').HoneyCSSPropertyValue<"scrollSnapCoordinate">;
|
|
716
|
+
$scrollSnapDestination?: import('../types').HoneyCSSPropertyValue<"scrollSnapDestination">;
|
|
717
|
+
$scrollSnapPointsX?: import('../types').HoneyCSSPropertyValue<"scrollSnapPointsX">;
|
|
718
|
+
$scrollSnapPointsY?: import('../types').HoneyCSSPropertyValue<"scrollSnapPointsY">;
|
|
719
|
+
$scrollSnapTypeX?: import('../types').HoneyCSSPropertyValue<"scrollSnapTypeX">;
|
|
720
|
+
$scrollSnapTypeY?: import('../types').HoneyCSSPropertyValue<"scrollSnapTypeY">;
|
|
721
|
+
$KhtmlBoxAlign?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxAlign">;
|
|
722
|
+
$KhtmlBoxDirection?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxDirection">;
|
|
723
|
+
$KhtmlBoxFlex?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxFlex">;
|
|
724
|
+
$KhtmlBoxFlexGroup?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxFlexGroup">;
|
|
725
|
+
$KhtmlBoxLines?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxLines">;
|
|
726
|
+
$KhtmlBoxOrdinalGroup?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxOrdinalGroup">;
|
|
727
|
+
$KhtmlBoxOrient?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxOrient">;
|
|
728
|
+
$KhtmlBoxPack?: import('../types').HoneyCSSPropertyValue<"KhtmlBoxPack">;
|
|
729
|
+
$KhtmlLineBreak?: import('../types').HoneyCSSPropertyValue<"KhtmlLineBreak">;
|
|
730
|
+
$KhtmlOpacity?: import('../types').HoneyCSSPropertyValue<"KhtmlOpacity">;
|
|
731
|
+
$KhtmlUserSelect?: import('../types').HoneyCSSPropertyValue<"KhtmlUserSelect">;
|
|
732
|
+
$MozBackfaceVisibility?: import('../types').HoneyCSSPropertyValue<"MozBackfaceVisibility">;
|
|
733
|
+
$MozBackgroundClip?: import('../types').HoneyCSSPropertyValue<"MozBackgroundClip">;
|
|
734
|
+
$MozBackgroundInlinePolicy?: import('../types').HoneyCSSPropertyValue<"MozBackgroundInlinePolicy">;
|
|
735
|
+
$MozBackgroundOrigin?: import('../types').HoneyCSSPropertyValue<"MozBackgroundOrigin">;
|
|
736
|
+
$MozBackgroundSize?: import('../types').HoneyCSSPropertyValue<"MozBackgroundSize">;
|
|
737
|
+
$MozBorderRadius?: import('../types').HoneyCSSPropertyValue<"MozBorderRadius">;
|
|
738
|
+
$MozBorderRadiusBottomleft?: import('../types').HoneyCSSPropertyValue<"MozBorderRadiusBottomleft">;
|
|
739
|
+
$MozBorderRadiusBottomright?: import('../types').HoneyCSSPropertyValue<"MozBorderRadiusBottomright">;
|
|
740
|
+
$MozBorderRadiusTopleft?: import('../types').HoneyCSSPropertyValue<"MozBorderRadiusTopleft">;
|
|
741
|
+
$MozBorderRadiusTopright?: import('../types').HoneyCSSPropertyValue<"MozBorderRadiusTopright">;
|
|
742
|
+
$MozBoxAlign?: import('../types').HoneyCSSPropertyValue<"MozBoxAlign">;
|
|
743
|
+
$MozBoxDirection?: import('../types').HoneyCSSPropertyValue<"MozBoxDirection">;
|
|
744
|
+
$MozBoxFlex?: import('../types').HoneyCSSPropertyValue<"MozBoxFlex">;
|
|
745
|
+
$MozBoxOrdinalGroup?: import('../types').HoneyCSSPropertyValue<"MozBoxOrdinalGroup">;
|
|
746
|
+
$MozBoxOrient?: import('../types').HoneyCSSPropertyValue<"MozBoxOrient">;
|
|
747
|
+
$MozBoxPack?: import('../types').HoneyCSSPropertyValue<"MozBoxPack">;
|
|
748
|
+
$MozBoxShadow?: import('../types').HoneyCSSPropertyValue<"MozBoxShadow">;
|
|
749
|
+
$MozFloatEdge?: import('../types').HoneyCSSPropertyValue<"MozFloatEdge">;
|
|
750
|
+
$MozForceBrokenImageIcon?: import('../types').HoneyCSSPropertyValue<"MozForceBrokenImageIcon">;
|
|
751
|
+
$MozOpacity?: import('../types').HoneyCSSPropertyValue<"MozOpacity">;
|
|
752
|
+
$MozOutline?: import('../types').HoneyCSSPropertyValue<"MozOutline">;
|
|
753
|
+
$MozOutlineColor?: import('../types').HoneyCSSPropertyValue<"MozOutlineColor">;
|
|
754
|
+
$MozOutlineStyle?: import('../types').HoneyCSSPropertyValue<"MozOutlineStyle">;
|
|
755
|
+
$MozOutlineWidth?: import('../types').HoneyCSSPropertyValue<"MozOutlineWidth">;
|
|
756
|
+
$MozPerspective?: import('../types').HoneyCSSPropertyValue<"MozPerspective">;
|
|
757
|
+
$MozPerspectiveOrigin?: import('../types').HoneyCSSPropertyValue<"MozPerspectiveOrigin">;
|
|
758
|
+
$MozTextAlignLast?: import('../types').HoneyCSSPropertyValue<"MozTextAlignLast">;
|
|
759
|
+
$MozTextDecorationColor?: import('../types').HoneyCSSPropertyValue<"MozTextDecorationColor">;
|
|
760
|
+
$MozTextDecorationLine?: import('../types').HoneyCSSPropertyValue<"MozTextDecorationLine">;
|
|
761
|
+
$MozTextDecorationStyle?: import('../types').HoneyCSSPropertyValue<"MozTextDecorationStyle">;
|
|
762
|
+
$MozTransform?: import('../types').HoneyCSSPropertyValue<"MozTransform">;
|
|
763
|
+
$MozTransformOrigin?: import('../types').HoneyCSSPropertyValue<"MozTransformOrigin">;
|
|
764
|
+
$MozTransformStyle?: import('../types').HoneyCSSPropertyValue<"MozTransformStyle">;
|
|
765
|
+
$MozTransition?: import('../types').HoneyCSSPropertyValue<"MozTransition">;
|
|
766
|
+
$MozTransitionDelay?: import('../types').HoneyCSSPropertyValue<"MozTransitionDelay">;
|
|
767
|
+
$MozTransitionDuration?: import('../types').HoneyCSSPropertyValue<"MozTransitionDuration">;
|
|
768
|
+
$MozTransitionProperty?: import('../types').HoneyCSSPropertyValue<"MozTransitionProperty">;
|
|
769
|
+
$MozTransitionTimingFunction?: import('../types').HoneyCSSPropertyValue<"MozTransitionTimingFunction">;
|
|
770
|
+
$MozUserInput?: import('../types').HoneyCSSPropertyValue<"MozUserInput">;
|
|
771
|
+
$msImeMode?: import('../types').HoneyCSSPropertyValue<"msImeMode">;
|
|
772
|
+
$OAnimation?: import('../types').HoneyCSSPropertyValue<"OAnimation">;
|
|
773
|
+
$OAnimationDelay?: import('../types').HoneyCSSPropertyValue<"OAnimationDelay">;
|
|
774
|
+
$OAnimationDirection?: import('../types').HoneyCSSPropertyValue<"OAnimationDirection">;
|
|
775
|
+
$OAnimationDuration?: import('../types').HoneyCSSPropertyValue<"OAnimationDuration">;
|
|
776
|
+
$OAnimationFillMode?: import('../types').HoneyCSSPropertyValue<"OAnimationFillMode">;
|
|
777
|
+
$OAnimationIterationCount?: import('../types').HoneyCSSPropertyValue<"OAnimationIterationCount">;
|
|
778
|
+
$OAnimationName?: import('../types').HoneyCSSPropertyValue<"OAnimationName">;
|
|
779
|
+
$OAnimationPlayState?: import('../types').HoneyCSSPropertyValue<"OAnimationPlayState">;
|
|
780
|
+
$OAnimationTimingFunction?: import('../types').HoneyCSSPropertyValue<"OAnimationTimingFunction">;
|
|
781
|
+
$OBackgroundSize?: import('../types').HoneyCSSPropertyValue<"OBackgroundSize">;
|
|
782
|
+
$OBorderImage?: import('../types').HoneyCSSPropertyValue<"OBorderImage">;
|
|
783
|
+
$OObjectFit?: import('../types').HoneyCSSPropertyValue<"OObjectFit">;
|
|
784
|
+
$OObjectPosition?: import('../types').HoneyCSSPropertyValue<"OObjectPosition">;
|
|
785
|
+
$OTabSize?: import('../types').HoneyCSSPropertyValue<"OTabSize">;
|
|
786
|
+
$OTextOverflow?: import('../types').HoneyCSSPropertyValue<"OTextOverflow">;
|
|
787
|
+
$OTransform?: import('../types').HoneyCSSPropertyValue<"OTransform">;
|
|
788
|
+
$OTransformOrigin?: import('../types').HoneyCSSPropertyValue<"OTransformOrigin">;
|
|
789
|
+
$OTransition?: import('../types').HoneyCSSPropertyValue<"OTransition">;
|
|
790
|
+
$OTransitionDelay?: import('../types').HoneyCSSPropertyValue<"OTransitionDelay">;
|
|
791
|
+
$OTransitionDuration?: import('../types').HoneyCSSPropertyValue<"OTransitionDuration">;
|
|
792
|
+
$OTransitionProperty?: import('../types').HoneyCSSPropertyValue<"OTransitionProperty">;
|
|
793
|
+
$OTransitionTimingFunction?: import('../types').HoneyCSSPropertyValue<"OTransitionTimingFunction">;
|
|
794
|
+
$WebkitBoxAlign?: import('../types').HoneyCSSPropertyValue<"WebkitBoxAlign">;
|
|
795
|
+
$WebkitBoxDirection?: import('../types').HoneyCSSPropertyValue<"WebkitBoxDirection">;
|
|
796
|
+
$WebkitBoxFlex?: import('../types').HoneyCSSPropertyValue<"WebkitBoxFlex">;
|
|
797
|
+
$WebkitBoxFlexGroup?: import('../types').HoneyCSSPropertyValue<"WebkitBoxFlexGroup">;
|
|
798
|
+
$WebkitBoxLines?: import('../types').HoneyCSSPropertyValue<"WebkitBoxLines">;
|
|
799
|
+
$WebkitBoxOrdinalGroup?: import('../types').HoneyCSSPropertyValue<"WebkitBoxOrdinalGroup">;
|
|
800
|
+
$WebkitBoxOrient?: import('../types').HoneyCSSPropertyValue<"WebkitBoxOrient">;
|
|
801
|
+
$WebkitBoxPack?: import('../types').HoneyCSSPropertyValue<"WebkitBoxPack">;
|
|
802
|
+
$alignmentBaseline?: import('../types').HoneyCSSPropertyValue<"alignmentBaseline">;
|
|
803
|
+
$baselineShift?: import('../types').HoneyCSSPropertyValue<"baselineShift">;
|
|
804
|
+
$clipRule?: import('../types').HoneyCSSPropertyValue<"clipRule">;
|
|
805
|
+
$colorInterpolation?: import('../types').HoneyCSSPropertyValue<"colorInterpolation">;
|
|
806
|
+
$colorRendering?: import('../types').HoneyCSSPropertyValue<"colorRendering">;
|
|
807
|
+
$dominantBaseline?: import('../types').HoneyCSSPropertyValue<"dominantBaseline">;
|
|
808
|
+
$fill?: import('../types').HoneyCSSPropertyValue<"fill"> | undefined;
|
|
809
|
+
$fillOpacity?: import('../types').HoneyCSSPropertyValue<"fillOpacity">;
|
|
810
|
+
$fillRule?: import('../types').HoneyCSSPropertyValue<"fillRule">;
|
|
811
|
+
$floodColor?: import('../types').HoneyCSSPropertyValue<"floodColor">;
|
|
812
|
+
$floodOpacity?: import('../types').HoneyCSSPropertyValue<"floodOpacity">;
|
|
813
|
+
$glyphOrientationVertical?: import('../types').HoneyCSSPropertyValue<"glyphOrientationVertical">;
|
|
814
|
+
$lightingColor?: import('../types').HoneyCSSPropertyValue<"lightingColor">;
|
|
815
|
+
$marker?: import('../types').HoneyCSSPropertyValue<"marker">;
|
|
816
|
+
$markerEnd?: import('../types').HoneyCSSPropertyValue<"markerEnd">;
|
|
817
|
+
$markerMid?: import('../types').HoneyCSSPropertyValue<"markerMid">;
|
|
818
|
+
$markerStart?: import('../types').HoneyCSSPropertyValue<"markerStart">;
|
|
819
|
+
$shapeRendering?: import('../types').HoneyCSSPropertyValue<"shapeRendering">;
|
|
820
|
+
$stopColor?: import('../types').HoneyCSSPropertyValue<"stopColor">;
|
|
821
|
+
$stopOpacity?: import('../types').HoneyCSSPropertyValue<"stopOpacity">;
|
|
822
|
+
$stroke?: import('../types').HoneyCSSPropertyValue<"stroke"> | undefined;
|
|
823
|
+
$strokeDasharray?: import('../types').HoneyCSSPropertyValue<"strokeDasharray">;
|
|
824
|
+
$strokeDashoffset?: import('../types').HoneyCSSPropertyValue<"strokeDashoffset">;
|
|
825
|
+
$strokeLinecap?: import('../types').HoneyCSSPropertyValue<"strokeLinecap">;
|
|
826
|
+
$strokeLinejoin?: import('../types').HoneyCSSPropertyValue<"strokeLinejoin">;
|
|
827
|
+
$strokeMiterlimit?: import('../types').HoneyCSSPropertyValue<"strokeMiterlimit">;
|
|
828
|
+
$strokeOpacity?: import('../types').HoneyCSSPropertyValue<"strokeOpacity">;
|
|
829
|
+
$strokeWidth?: import('../types').HoneyCSSPropertyValue<"strokeWidth">;
|
|
830
|
+
$textAnchor?: import('../types').HoneyCSSPropertyValue<"textAnchor">;
|
|
831
|
+
$vectorEffect?: import('../types').HoneyCSSPropertyValue<"vectorEffect">;
|
|
832
|
+
}> & {
|
|
833
|
+
modifiers?: HoneyModifierResultFn[];
|
|
834
|
+
}, never>;
|