@react-hive/honey-layout 1.0.0-beta

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