@mekari/pixel3-styled-system 0.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.
Files changed (211) hide show
  1. package/.turbo/turbo-build.log +16 -0
  2. package/chunks/packages__accordion__src__accordion.css +10 -0
  3. package/chunks/packages__avatar2__src__modules__avatar.recipes.css +166 -0
  4. package/chunks/packages__avatar__src__avatar.style.css +150 -0
  5. package/chunks/packages__avatar__src__avatar.styles.css +171 -0
  6. package/chunks/packages__avatar__src__modules__avatar.recipes.css +191 -0
  7. package/chunks/packages__core__node_modules__@mekari__pixel3-accordion__src__accordion.css +10 -0
  8. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar2__src__modules__avatar.recipes.css +166 -0
  9. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.css +16 -0
  10. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.style.css +150 -0
  11. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__avatar.styles.css +171 -0
  12. package/chunks/packages__core__node_modules__@mekari__pixel3-avatar__src__modules__avatar.recipes.css +191 -0
  13. package/css/conditions.mjs +34 -0
  14. package/css/css.d.ts +9 -0
  15. package/css/css.mjs +44 -0
  16. package/css/cva.d.ts +6 -0
  17. package/css/cva.mjs +85 -0
  18. package/css/cx.d.ts +5 -0
  19. package/css/cx.mjs +15 -0
  20. package/css/index.d.ts +5 -0
  21. package/css/index.mjs +4 -0
  22. package/css/sva.d.ts +4 -0
  23. package/css/sva.mjs +35 -0
  24. package/global.css +59 -0
  25. package/helpers.mjs +300 -0
  26. package/jsx/aspect-ratio.d.ts +10 -0
  27. package/jsx/aspect-ratio.mjs +16 -0
  28. package/jsx/bleed.d.ts +10 -0
  29. package/jsx/bleed.mjs +16 -0
  30. package/jsx/box.d.ts +10 -0
  31. package/jsx/box.mjs +16 -0
  32. package/jsx/center.d.ts +10 -0
  33. package/jsx/center.mjs +16 -0
  34. package/jsx/circle.d.ts +10 -0
  35. package/jsx/circle.mjs +16 -0
  36. package/jsx/container.d.ts +10 -0
  37. package/jsx/container.mjs +16 -0
  38. package/jsx/divider.d.ts +10 -0
  39. package/jsx/divider.mjs +16 -0
  40. package/jsx/factory-helper.mjs +22 -0
  41. package/jsx/factory.d.ts +4 -0
  42. package/jsx/factory.mjs +85 -0
  43. package/jsx/flex.d.ts +10 -0
  44. package/jsx/flex.mjs +16 -0
  45. package/jsx/float.d.ts +10 -0
  46. package/jsx/float.mjs +16 -0
  47. package/jsx/grid-item.d.ts +10 -0
  48. package/jsx/grid-item.mjs +16 -0
  49. package/jsx/grid.d.ts +10 -0
  50. package/jsx/grid.mjs +16 -0
  51. package/jsx/hstack.d.ts +10 -0
  52. package/jsx/hstack.mjs +16 -0
  53. package/jsx/index.d.ts +27 -0
  54. package/jsx/index.mjs +22 -0
  55. package/jsx/is-valid-prop.d.ts +5 -0
  56. package/jsx/is-valid-prop.mjs +17 -0
  57. package/jsx/link-box.d.ts +10 -0
  58. package/jsx/link-box.mjs +16 -0
  59. package/jsx/link-overlay.d.ts +10 -0
  60. package/jsx/link-overlay.mjs +16 -0
  61. package/jsx/spacer.d.ts +10 -0
  62. package/jsx/spacer.mjs +16 -0
  63. package/jsx/square.d.ts +10 -0
  64. package/jsx/square.mjs +16 -0
  65. package/jsx/stack.d.ts +10 -0
  66. package/jsx/stack.mjs +16 -0
  67. package/jsx/visually-hidden.d.ts +10 -0
  68. package/jsx/visually-hidden.mjs +16 -0
  69. package/jsx/vstack.d.ts +10 -0
  70. package/jsx/vstack.mjs +16 -0
  71. package/jsx/wrap.d.ts +10 -0
  72. package/jsx/wrap.mjs +16 -0
  73. package/package.json +40 -0
  74. package/patterns/aspect-ratio.d.ts +21 -0
  75. package/patterns/aspect-ratio.mjs +35 -0
  76. package/patterns/bleed.d.ts +22 -0
  77. package/patterns/bleed.mjs +19 -0
  78. package/patterns/box.d.ts +21 -0
  79. package/patterns/box.mjs +12 -0
  80. package/patterns/center.d.ts +21 -0
  81. package/patterns/center.mjs +18 -0
  82. package/patterns/circle.d.ts +21 -0
  83. package/patterns/circle.mjs +22 -0
  84. package/patterns/container.d.ts +21 -0
  85. package/patterns/container.mjs +18 -0
  86. package/patterns/divider.d.ts +23 -0
  87. package/patterns/divider.mjs +21 -0
  88. package/patterns/flex.d.ts +27 -0
  89. package/patterns/flex.mjs +23 -0
  90. package/patterns/float.d.ts +24 -0
  91. package/patterns/float.mjs +45 -0
  92. package/patterns/grid-item.d.ts +26 -0
  93. package/patterns/grid-item.mjs +22 -0
  94. package/patterns/grid.d.ts +25 -0
  95. package/patterns/grid.mjs +22 -0
  96. package/patterns/hstack.d.ts +22 -0
  97. package/patterns/hstack.mjs +20 -0
  98. package/patterns/index.d.ts +21 -0
  99. package/patterns/index.mjs +20 -0
  100. package/patterns/link-box.d.ts +21 -0
  101. package/patterns/link-box.mjs +19 -0
  102. package/patterns/link-overlay.d.ts +21 -0
  103. package/patterns/link-overlay.mjs +24 -0
  104. package/patterns/spacer.d.ts +21 -0
  105. package/patterns/spacer.mjs +18 -0
  106. package/patterns/square.d.ts +21 -0
  107. package/patterns/square.mjs +21 -0
  108. package/patterns/stack.d.ts +24 -0
  109. package/patterns/stack.mjs +20 -0
  110. package/patterns/visually-hidden.d.ts +21 -0
  111. package/patterns/visually-hidden.mjs +15 -0
  112. package/patterns/vstack.d.ts +22 -0
  113. package/patterns/vstack.mjs +20 -0
  114. package/patterns/wrap.d.ts +25 -0
  115. package/patterns/wrap.mjs +22 -0
  116. package/recipes/accordion.d.ts +27 -0
  117. package/recipes/accordion.mjs +50 -0
  118. package/recipes/avatar-group-recipe.d.ts +27 -0
  119. package/recipes/avatar-group-recipe.mjs +43 -0
  120. package/recipes/avatar-group-slot-recipe.d.ts +27 -0
  121. package/recipes/avatar-group-slot-recipe.mjs +43 -0
  122. package/recipes/avatar-recipe.d.ts +30 -0
  123. package/recipes/avatar-recipe.mjs +122 -0
  124. package/recipes/avatar-slot-recipe.d.ts +29 -0
  125. package/recipes/avatar-slot-recipe.mjs +116 -0
  126. package/recipes/badge-recipe.d.ts +29 -0
  127. package/recipes/badge-recipe.mjs +160 -0
  128. package/recipes/button-group-recipe.d.ts +27 -0
  129. package/recipes/button-group-recipe.mjs +22 -0
  130. package/recipes/button-recipe.d.ts +28 -0
  131. package/recipes/button-recipe.mjs +94 -0
  132. package/recipes/checkbox-slot-recipe.d.ts +27 -0
  133. package/recipes/checkbox-slot-recipe.mjs +38 -0
  134. package/recipes/create-recipe.d.ts +1 -0
  135. package/recipes/create-recipe.mjs +79 -0
  136. package/recipes/icon-recipe.d.ts +27 -0
  137. package/recipes/icon-recipe.mjs +29 -0
  138. package/recipes/index.d.ts +30 -0
  139. package/recipes/index.mjs +29 -0
  140. package/recipes/input-addon-recipe.d.ts +29 -0
  141. package/recipes/input-addon-recipe.mjs +107 -0
  142. package/recipes/input-addon-slot-recipe.d.ts +28 -0
  143. package/recipes/input-addon-slot-recipe.mjs +45 -0
  144. package/recipes/input-group-recipe.d.ts +27 -0
  145. package/recipes/input-group-recipe.mjs +30 -0
  146. package/recipes/input-group-slot-recipe.d.ts +27 -0
  147. package/recipes/input-group-slot-recipe.mjs +30 -0
  148. package/recipes/input-recipe.d.ts +30 -0
  149. package/recipes/input-recipe.mjs +63 -0
  150. package/recipes/input-slot-recipe.d.ts +28 -0
  151. package/recipes/input-slot-recipe.mjs +53 -0
  152. package/recipes/popover-content-recipe.d.ts +28 -0
  153. package/recipes/popover-content-recipe.mjs +34 -0
  154. package/recipes/popover-list-item-recipe.d.ts +27 -0
  155. package/recipes/popover-list-item-recipe.mjs +22 -0
  156. package/recipes/popover-list-recipe.d.ts +27 -0
  157. package/recipes/popover-list-recipe.mjs +22 -0
  158. package/recipes/progress-slot-recipe.d.ts +28 -0
  159. package/recipes/progress-slot-recipe.mjs +57 -0
  160. package/recipes/radio-slot-recipe.d.ts +27 -0
  161. package/recipes/radio-slot-recipe.mjs +38 -0
  162. package/recipes/select-slot-recipe.d.ts +27 -0
  163. package/recipes/select-slot-recipe.mjs +51 -0
  164. package/recipes/selected-border-recipe.d.ts +28 -0
  165. package/recipes/selected-border-recipe.mjs +88 -0
  166. package/recipes/shared-slot-recipe.d.ts +27 -0
  167. package/recipes/shared-slot-recipe.mjs +30 -0
  168. package/recipes/spinner-recipe.d.ts +27 -0
  169. package/recipes/spinner-recipe.mjs +29 -0
  170. package/recipes/tab-list-recipe.d.ts +27 -0
  171. package/recipes/tab-list-recipe.mjs +22 -0
  172. package/recipes/tab-recipe.d.ts +28 -0
  173. package/recipes/tab-recipe.mjs +87 -0
  174. package/recipes/table-container-recipe.d.ts +27 -0
  175. package/recipes/table-container-recipe.mjs +22 -0
  176. package/recipes/table-head-recipe.d.ts +27 -0
  177. package/recipes/table-head-recipe.mjs +22 -0
  178. package/recipes/table-recipe.d.ts +27 -0
  179. package/recipes/table-recipe.mjs +22 -0
  180. package/recipes/tag-recipe.d.ts +28 -0
  181. package/recipes/tag-recipe.mjs +66 -0
  182. package/recipes/tag-slot-recipe.d.ts +28 -0
  183. package/recipes/tag-slot-recipe.mjs +66 -0
  184. package/recipes/text-recipe.d.ts +28 -0
  185. package/recipes/text-recipe.mjs +40 -0
  186. package/recipes/textarea-recipe.d.ts +27 -0
  187. package/recipes/textarea-recipe.mjs +26 -0
  188. package/recipes/toggle-slot-recipe.d.ts +27 -0
  189. package/recipes/toggle-slot-recipe.mjs +38 -0
  190. package/recipes/tooltip-recipe.d.ts +27 -0
  191. package/recipes/tooltip-recipe.mjs +22 -0
  192. package/reset.css +214 -0
  193. package/styles.css +246 -0
  194. package/tokens/index.css +179 -0
  195. package/tokens/index.d.ts +9 -0
  196. package/tokens/index.mjs +848 -0
  197. package/tokens/keyframes.css +23 -0
  198. package/tokens/tokens.d.ts +57 -0
  199. package/types/composition.d.ts +111 -0
  200. package/types/conditions.d.ts +256 -0
  201. package/types/csstype.d.ts +20749 -0
  202. package/types/global.d.ts +19 -0
  203. package/types/index.d.ts +8 -0
  204. package/types/jsx.d.ts +54 -0
  205. package/types/parts.d.ts +8 -0
  206. package/types/pattern.d.ts +63 -0
  207. package/types/prop-type.d.ts +317 -0
  208. package/types/recipe.d.ts +146 -0
  209. package/types/selectors.d.ts +59 -0
  210. package/types/style-props.d.ts +653 -0
  211. package/types/system-types.d.ts +93 -0
@@ -0,0 +1,653 @@
1
+ /* eslint-disable */
2
+ import type { ConditionalValue } from './conditions';
3
+ import type { PropertyValue } from './prop-type';
4
+ import type { Token } from '../tokens/index';
5
+
6
+ export type CssVarProperties = {
7
+ [key in `--${string}`]?: ConditionalValue<Token | (string & {}) | (number & {})>
8
+ }
9
+
10
+ export interface SystemProperties {
11
+ WebkitAppearance?: PropertyValue<'WebkitAppearance'>
12
+ WebkitBorderBefore?: PropertyValue<'WebkitBorderBefore'>
13
+ WebkitBorderBeforeColor?: PropertyValue<'WebkitBorderBeforeColor'>
14
+ WebkitBorderBeforeStyle?: PropertyValue<'WebkitBorderBeforeStyle'>
15
+ WebkitBorderBeforeWidth?: PropertyValue<'WebkitBorderBeforeWidth'>
16
+ WebkitBoxReflect?: PropertyValue<'WebkitBoxReflect'>
17
+ WebkitLineClamp?: PropertyValue<'WebkitLineClamp'>
18
+ WebkitMask?: PropertyValue<'WebkitMask'>
19
+ WebkitMaskAttachment?: PropertyValue<'WebkitMaskAttachment'>
20
+ WebkitMaskClip?: PropertyValue<'WebkitMaskClip'>
21
+ WebkitMaskComposite?: PropertyValue<'WebkitMaskComposite'>
22
+ WebkitMaskImage?: PropertyValue<'WebkitMaskImage'>
23
+ WebkitMaskOrigin?: PropertyValue<'WebkitMaskOrigin'>
24
+ WebkitMaskPosition?: PropertyValue<'WebkitMaskPosition'>
25
+ WebkitMaskPositionX?: PropertyValue<'WebkitMaskPositionX'>
26
+ WebkitMaskPositionY?: PropertyValue<'WebkitMaskPositionY'>
27
+ WebkitMaskRepeat?: PropertyValue<'WebkitMaskRepeat'>
28
+ WebkitMaskRepeatX?: PropertyValue<'WebkitMaskRepeatX'>
29
+ WebkitMaskRepeatY?: PropertyValue<'WebkitMaskRepeatY'>
30
+ WebkitMaskSize?: PropertyValue<'WebkitMaskSize'>
31
+ WebkitOverflowScrolling?: PropertyValue<'WebkitOverflowScrolling'>
32
+ WebkitTapHighlightColor?: PropertyValue<'WebkitTapHighlightColor'>
33
+ WebkitTextFillColor?: PropertyValue<'WebkitTextFillColor'>
34
+ WebkitTextStroke?: PropertyValue<'WebkitTextStroke'>
35
+ WebkitTextStrokeColor?: PropertyValue<'WebkitTextStrokeColor'>
36
+ WebkitTextStrokeWidth?: PropertyValue<'WebkitTextStrokeWidth'>
37
+ WebkitTouchCallout?: PropertyValue<'WebkitTouchCallout'>
38
+ WebkitUserModify?: PropertyValue<'WebkitUserModify'>
39
+ accentColor?: PropertyValue<'accentColor'>
40
+ alignContent?: PropertyValue<'alignContent'>
41
+ alignItems?: PropertyValue<'alignItems'>
42
+ alignSelf?: PropertyValue<'alignSelf'>
43
+ alignTracks?: PropertyValue<'alignTracks'>
44
+ all?: PropertyValue<'all'>
45
+ animation?: PropertyValue<'animation'>
46
+ animationComposition?: PropertyValue<'animationComposition'>
47
+ animationDelay?: PropertyValue<'animationDelay'>
48
+ animationDirection?: PropertyValue<'animationDirection'>
49
+ animationDuration?: PropertyValue<'animationDuration'>
50
+ animationFillMode?: PropertyValue<'animationFillMode'>
51
+ animationIterationCount?: PropertyValue<'animationIterationCount'>
52
+ animationName?: PropertyValue<'animationName'>
53
+ animationPlayState?: PropertyValue<'animationPlayState'>
54
+ animationTimingFunction?: PropertyValue<'animationTimingFunction'>
55
+ animationTimeline?: PropertyValue<'animationTimeline'>
56
+ appearance?: PropertyValue<'appearance'>
57
+ aspectRatio?: PropertyValue<'aspectRatio'>
58
+ azimuth?: PropertyValue<'azimuth'>
59
+ backdropFilter?: PropertyValue<'backdropFilter'>
60
+ backfaceVisibility?: PropertyValue<'backfaceVisibility'>
61
+ background?: PropertyValue<'background'>
62
+ backgroundAttachment?: PropertyValue<'backgroundAttachment'>
63
+ backgroundBlendMode?: PropertyValue<'backgroundBlendMode'>
64
+ backgroundClip?: PropertyValue<'backgroundClip'>
65
+ backgroundColor?: PropertyValue<'backgroundColor'>
66
+ backgroundImage?: PropertyValue<'backgroundImage'>
67
+ backgroundOrigin?: PropertyValue<'backgroundOrigin'>
68
+ backgroundPosition?: PropertyValue<'backgroundPosition'>
69
+ backgroundPositionX?: PropertyValue<'backgroundPositionX'>
70
+ backgroundPositionY?: PropertyValue<'backgroundPositionY'>
71
+ backgroundRepeat?: PropertyValue<'backgroundRepeat'>
72
+ backgroundSize?: PropertyValue<'backgroundSize'>
73
+ blockOverflow?: PropertyValue<'blockOverflow'>
74
+ blockSize?: PropertyValue<'blockSize'>
75
+ border?: PropertyValue<'border'>
76
+ borderBlock?: PropertyValue<'borderBlock'>
77
+ borderBlockColor?: PropertyValue<'borderBlockColor'>
78
+ borderBlockStyle?: PropertyValue<'borderBlockStyle'>
79
+ borderBlockWidth?: PropertyValue<'borderBlockWidth'>
80
+ borderBlockEnd?: PropertyValue<'borderBlockEnd'>
81
+ borderBlockEndColor?: PropertyValue<'borderBlockEndColor'>
82
+ borderBlockEndStyle?: PropertyValue<'borderBlockEndStyle'>
83
+ borderBlockEndWidth?: PropertyValue<'borderBlockEndWidth'>
84
+ borderBlockStart?: PropertyValue<'borderBlockStart'>
85
+ borderBlockStartColor?: PropertyValue<'borderBlockStartColor'>
86
+ borderBlockStartStyle?: PropertyValue<'borderBlockStartStyle'>
87
+ borderBlockStartWidth?: PropertyValue<'borderBlockStartWidth'>
88
+ borderBottom?: PropertyValue<'borderBottom'>
89
+ borderBottomColor?: PropertyValue<'borderBottomColor'>
90
+ borderBottomLeftRadius?: PropertyValue<'borderBottomLeftRadius'>
91
+ borderBottomRightRadius?: PropertyValue<'borderBottomRightRadius'>
92
+ borderBottomStyle?: PropertyValue<'borderBottomStyle'>
93
+ borderBottomWidth?: PropertyValue<'borderBottomWidth'>
94
+ borderCollapse?: PropertyValue<'borderCollapse'>
95
+ borderColor?: PropertyValue<'borderColor'>
96
+ borderEndEndRadius?: PropertyValue<'borderEndEndRadius'>
97
+ borderEndStartRadius?: PropertyValue<'borderEndStartRadius'>
98
+ borderImage?: PropertyValue<'borderImage'>
99
+ borderImageOutset?: PropertyValue<'borderImageOutset'>
100
+ borderImageRepeat?: PropertyValue<'borderImageRepeat'>
101
+ borderImageSlice?: PropertyValue<'borderImageSlice'>
102
+ borderImageSource?: PropertyValue<'borderImageSource'>
103
+ borderImageWidth?: PropertyValue<'borderImageWidth'>
104
+ borderInline?: PropertyValue<'borderInline'>
105
+ borderInlineEnd?: PropertyValue<'borderInlineEnd'>
106
+ borderInlineColor?: PropertyValue<'borderInlineColor'>
107
+ borderInlineStyle?: PropertyValue<'borderInlineStyle'>
108
+ borderInlineWidth?: PropertyValue<'borderInlineWidth'>
109
+ borderInlineEndColor?: PropertyValue<'borderInlineEndColor'>
110
+ borderInlineEndStyle?: PropertyValue<'borderInlineEndStyle'>
111
+ borderInlineEndWidth?: PropertyValue<'borderInlineEndWidth'>
112
+ borderInlineStart?: PropertyValue<'borderInlineStart'>
113
+ borderInlineStartColor?: PropertyValue<'borderInlineStartColor'>
114
+ borderInlineStartStyle?: PropertyValue<'borderInlineStartStyle'>
115
+ borderInlineStartWidth?: PropertyValue<'borderInlineStartWidth'>
116
+ borderLeft?: PropertyValue<'borderLeft'>
117
+ borderLeftColor?: PropertyValue<'borderLeftColor'>
118
+ borderLeftStyle?: PropertyValue<'borderLeftStyle'>
119
+ borderLeftWidth?: PropertyValue<'borderLeftWidth'>
120
+ borderRadius?: PropertyValue<'borderRadius'>
121
+ borderRight?: PropertyValue<'borderRight'>
122
+ borderRightColor?: PropertyValue<'borderRightColor'>
123
+ borderRightStyle?: PropertyValue<'borderRightStyle'>
124
+ borderRightWidth?: PropertyValue<'borderRightWidth'>
125
+ borderSpacing?: PropertyValue<'borderSpacing'>
126
+ borderStartEndRadius?: PropertyValue<'borderStartEndRadius'>
127
+ borderStartStartRadius?: PropertyValue<'borderStartStartRadius'>
128
+ borderStyle?: PropertyValue<'borderStyle'>
129
+ borderTop?: PropertyValue<'borderTop'>
130
+ borderTopColor?: PropertyValue<'borderTopColor'>
131
+ borderTopLeftRadius?: PropertyValue<'borderTopLeftRadius'>
132
+ borderTopRightRadius?: PropertyValue<'borderTopRightRadius'>
133
+ borderTopStyle?: PropertyValue<'borderTopStyle'>
134
+ borderTopWidth?: PropertyValue<'borderTopWidth'>
135
+ borderWidth?: PropertyValue<'borderWidth'>
136
+ bottom?: PropertyValue<'bottom'>
137
+ boxAlign?: PropertyValue<'boxAlign'>
138
+ boxDecorationBreak?: PropertyValue<'boxDecorationBreak'>
139
+ boxDirection?: PropertyValue<'boxDirection'>
140
+ boxFlex?: PropertyValue<'boxFlex'>
141
+ boxFlexGroup?: PropertyValue<'boxFlexGroup'>
142
+ boxLines?: PropertyValue<'boxLines'>
143
+ boxOrdinalGroup?: PropertyValue<'boxOrdinalGroup'>
144
+ boxOrient?: PropertyValue<'boxOrient'>
145
+ boxPack?: PropertyValue<'boxPack'>
146
+ boxShadow?: PropertyValue<'boxShadow'>
147
+ boxSizing?: PropertyValue<'boxSizing'>
148
+ breakAfter?: PropertyValue<'breakAfter'>
149
+ breakBefore?: PropertyValue<'breakBefore'>
150
+ breakInside?: PropertyValue<'breakInside'>
151
+ captionSide?: PropertyValue<'captionSide'>
152
+ caret?: PropertyValue<'caret'>
153
+ caretColor?: PropertyValue<'caretColor'>
154
+ caretShape?: PropertyValue<'caretShape'>
155
+ clear?: PropertyValue<'clear'>
156
+ clip?: PropertyValue<'clip'>
157
+ clipPath?: PropertyValue<'clipPath'>
158
+ color?: PropertyValue<'color'>
159
+ colorScheme?: PropertyValue<'colorScheme'>
160
+ columnCount?: PropertyValue<'columnCount'>
161
+ columnFill?: PropertyValue<'columnFill'>
162
+ columnGap?: PropertyValue<'columnGap'>
163
+ columnRule?: PropertyValue<'columnRule'>
164
+ columnRuleColor?: PropertyValue<'columnRuleColor'>
165
+ columnRuleStyle?: PropertyValue<'columnRuleStyle'>
166
+ columnRuleWidth?: PropertyValue<'columnRuleWidth'>
167
+ columnSpan?: PropertyValue<'columnSpan'>
168
+ columnWidth?: PropertyValue<'columnWidth'>
169
+ columns?: PropertyValue<'columns'>
170
+ contain?: PropertyValue<'contain'>
171
+ containIntrinsicSize?: PropertyValue<'containIntrinsicSize'>
172
+ containIntrinsicBlockSize?: PropertyValue<'containIntrinsicBlockSize'>
173
+ containIntrinsicHeight?: PropertyValue<'containIntrinsicHeight'>
174
+ containIntrinsicInlineSize?: PropertyValue<'containIntrinsicInlineSize'>
175
+ containIntrinsicWidth?: PropertyValue<'containIntrinsicWidth'>
176
+ container?: PropertyValue<'container'>
177
+ containerName?: PropertyValue<'containerName'>
178
+ containerType?: PropertyValue<'containerType'>
179
+ content?: PropertyValue<'content'>
180
+ contentVisibility?: PropertyValue<'contentVisibility'>
181
+ counterIncrement?: PropertyValue<'counterIncrement'>
182
+ counterReset?: PropertyValue<'counterReset'>
183
+ counterSet?: PropertyValue<'counterSet'>
184
+ cursor?: PropertyValue<'cursor'>
185
+ direction?: PropertyValue<'direction'>
186
+ display?: PropertyValue<'display'>
187
+ emptyCells?: PropertyValue<'emptyCells'>
188
+ filter?: PropertyValue<'filter'>
189
+ flex?: PropertyValue<'flex'>
190
+ flexBasis?: PropertyValue<'flexBasis'>
191
+ flexDirection?: PropertyValue<'flexDirection'>
192
+ flexFlow?: PropertyValue<'flexFlow'>
193
+ flexGrow?: PropertyValue<'flexGrow'>
194
+ flexShrink?: PropertyValue<'flexShrink'>
195
+ flexWrap?: PropertyValue<'flexWrap'>
196
+ float?: PropertyValue<'float'>
197
+ font?: PropertyValue<'font'>
198
+ fontFamily?: PropertyValue<'fontFamily'>
199
+ fontFeatureSettings?: PropertyValue<'fontFeatureSettings'>
200
+ fontKerning?: PropertyValue<'fontKerning'>
201
+ fontLanguageOverride?: PropertyValue<'fontLanguageOverride'>
202
+ fontOpticalSizing?: PropertyValue<'fontOpticalSizing'>
203
+ fontPalette?: PropertyValue<'fontPalette'>
204
+ fontVariationSettings?: PropertyValue<'fontVariationSettings'>
205
+ fontSize?: PropertyValue<'fontSize'>
206
+ fontSizeAdjust?: PropertyValue<'fontSizeAdjust'>
207
+ fontSmooth?: PropertyValue<'fontSmooth'>
208
+ fontStretch?: PropertyValue<'fontStretch'>
209
+ fontStyle?: PropertyValue<'fontStyle'>
210
+ fontSynthesis?: PropertyValue<'fontSynthesis'>
211
+ fontVariant?: PropertyValue<'fontVariant'>
212
+ fontVariantAlternates?: PropertyValue<'fontVariantAlternates'>
213
+ fontVariantCaps?: PropertyValue<'fontVariantCaps'>
214
+ fontVariantEastAsian?: PropertyValue<'fontVariantEastAsian'>
215
+ fontVariantEmoji?: PropertyValue<'fontVariantEmoji'>
216
+ fontVariantLigatures?: PropertyValue<'fontVariantLigatures'>
217
+ fontVariantNumeric?: PropertyValue<'fontVariantNumeric'>
218
+ fontVariantPosition?: PropertyValue<'fontVariantPosition'>
219
+ fontWeight?: PropertyValue<'fontWeight'>
220
+ forcedColorAdjust?: PropertyValue<'forcedColorAdjust'>
221
+ gap?: PropertyValue<'gap'>
222
+ grid?: PropertyValue<'grid'>
223
+ gridArea?: PropertyValue<'gridArea'>
224
+ gridAutoColumns?: PropertyValue<'gridAutoColumns'>
225
+ gridAutoFlow?: PropertyValue<'gridAutoFlow'>
226
+ gridAutoRows?: PropertyValue<'gridAutoRows'>
227
+ gridColumn?: PropertyValue<'gridColumn'>
228
+ gridColumnEnd?: PropertyValue<'gridColumnEnd'>
229
+ gridColumnGap?: PropertyValue<'gridColumnGap'>
230
+ gridColumnStart?: PropertyValue<'gridColumnStart'>
231
+ gridGap?: PropertyValue<'gridGap'>
232
+ gridRow?: PropertyValue<'gridRow'>
233
+ gridRowEnd?: PropertyValue<'gridRowEnd'>
234
+ gridRowGap?: PropertyValue<'gridRowGap'>
235
+ gridRowStart?: PropertyValue<'gridRowStart'>
236
+ gridTemplate?: PropertyValue<'gridTemplate'>
237
+ gridTemplateAreas?: PropertyValue<'gridTemplateAreas'>
238
+ gridTemplateColumns?: PropertyValue<'gridTemplateColumns'>
239
+ gridTemplateRows?: PropertyValue<'gridTemplateRows'>
240
+ hangingPunctuation?: PropertyValue<'hangingPunctuation'>
241
+ height?: PropertyValue<'height'>
242
+ hyphenateCharacter?: PropertyValue<'hyphenateCharacter'>
243
+ hyphenateLimitChars?: PropertyValue<'hyphenateLimitChars'>
244
+ hyphens?: PropertyValue<'hyphens'>
245
+ imageOrientation?: PropertyValue<'imageOrientation'>
246
+ imageRendering?: PropertyValue<'imageRendering'>
247
+ imageResolution?: PropertyValue<'imageResolution'>
248
+ imeMode?: PropertyValue<'imeMode'>
249
+ initialLetter?: PropertyValue<'initialLetter'>
250
+ initialLetterAlign?: PropertyValue<'initialLetterAlign'>
251
+ inlineSize?: PropertyValue<'inlineSize'>
252
+ inputSecurity?: PropertyValue<'inputSecurity'>
253
+ inset?: PropertyValue<'inset'>
254
+ insetBlock?: PropertyValue<'insetBlock'>
255
+ insetBlockEnd?: PropertyValue<'insetBlockEnd'>
256
+ insetBlockStart?: PropertyValue<'insetBlockStart'>
257
+ insetInline?: PropertyValue<'insetInline'>
258
+ insetInlineEnd?: PropertyValue<'insetInlineEnd'>
259
+ insetInlineStart?: PropertyValue<'insetInlineStart'>
260
+ isolation?: PropertyValue<'isolation'>
261
+ justifyContent?: PropertyValue<'justifyContent'>
262
+ justifyItems?: PropertyValue<'justifyItems'>
263
+ justifySelf?: PropertyValue<'justifySelf'>
264
+ justifyTracks?: PropertyValue<'justifyTracks'>
265
+ left?: PropertyValue<'left'>
266
+ letterSpacing?: PropertyValue<'letterSpacing'>
267
+ lineBreak?: PropertyValue<'lineBreak'>
268
+ lineClamp?: PropertyValue<'lineClamp'>
269
+ lineHeight?: PropertyValue<'lineHeight'>
270
+ lineHeightStep?: PropertyValue<'lineHeightStep'>
271
+ listStyle?: PropertyValue<'listStyle'>
272
+ listStyleImage?: PropertyValue<'listStyleImage'>
273
+ listStylePosition?: PropertyValue<'listStylePosition'>
274
+ listStyleType?: PropertyValue<'listStyleType'>
275
+ margin?: PropertyValue<'margin'>
276
+ marginBlock?: PropertyValue<'marginBlock'>
277
+ marginBlockEnd?: PropertyValue<'marginBlockEnd'>
278
+ marginBlockStart?: PropertyValue<'marginBlockStart'>
279
+ marginBottom?: PropertyValue<'marginBottom'>
280
+ marginInline?: PropertyValue<'marginInline'>
281
+ marginInlineEnd?: PropertyValue<'marginInlineEnd'>
282
+ marginInlineStart?: PropertyValue<'marginInlineStart'>
283
+ marginLeft?: PropertyValue<'marginLeft'>
284
+ marginRight?: PropertyValue<'marginRight'>
285
+ marginTop?: PropertyValue<'marginTop'>
286
+ marginTrim?: PropertyValue<'marginTrim'>
287
+ mask?: PropertyValue<'mask'>
288
+ maskBorder?: PropertyValue<'maskBorder'>
289
+ maskBorderMode?: PropertyValue<'maskBorderMode'>
290
+ maskBorderOutset?: PropertyValue<'maskBorderOutset'>
291
+ maskBorderRepeat?: PropertyValue<'maskBorderRepeat'>
292
+ maskBorderSlice?: PropertyValue<'maskBorderSlice'>
293
+ maskBorderSource?: PropertyValue<'maskBorderSource'>
294
+ maskBorderWidth?: PropertyValue<'maskBorderWidth'>
295
+ maskClip?: PropertyValue<'maskClip'>
296
+ maskComposite?: PropertyValue<'maskComposite'>
297
+ maskImage?: PropertyValue<'maskImage'>
298
+ maskMode?: PropertyValue<'maskMode'>
299
+ maskOrigin?: PropertyValue<'maskOrigin'>
300
+ maskPosition?: PropertyValue<'maskPosition'>
301
+ maskRepeat?: PropertyValue<'maskRepeat'>
302
+ maskSize?: PropertyValue<'maskSize'>
303
+ maskType?: PropertyValue<'maskType'>
304
+ masonryAutoFlow?: PropertyValue<'masonryAutoFlow'>
305
+ mathDepth?: PropertyValue<'mathDepth'>
306
+ mathShift?: PropertyValue<'mathShift'>
307
+ mathStyle?: PropertyValue<'mathStyle'>
308
+ maxBlockSize?: PropertyValue<'maxBlockSize'>
309
+ maxHeight?: PropertyValue<'maxHeight'>
310
+ maxInlineSize?: PropertyValue<'maxInlineSize'>
311
+ maxLines?: PropertyValue<'maxLines'>
312
+ maxWidth?: PropertyValue<'maxWidth'>
313
+ minBlockSize?: PropertyValue<'minBlockSize'>
314
+ minHeight?: PropertyValue<'minHeight'>
315
+ minInlineSize?: PropertyValue<'minInlineSize'>
316
+ minWidth?: PropertyValue<'minWidth'>
317
+ mixBlendMode?: PropertyValue<'mixBlendMode'>
318
+ objectFit?: PropertyValue<'objectFit'>
319
+ objectPosition?: PropertyValue<'objectPosition'>
320
+ offset?: PropertyValue<'offset'>
321
+ offsetAnchor?: PropertyValue<'offsetAnchor'>
322
+ offsetDistance?: PropertyValue<'offsetDistance'>
323
+ offsetPath?: PropertyValue<'offsetPath'>
324
+ offsetPosition?: PropertyValue<'offsetPosition'>
325
+ offsetRotate?: PropertyValue<'offsetRotate'>
326
+ opacity?: PropertyValue<'opacity'>
327
+ order?: PropertyValue<'order'>
328
+ orphans?: PropertyValue<'orphans'>
329
+ outline?: PropertyValue<'outline'>
330
+ outlineColor?: PropertyValue<'outlineColor'>
331
+ outlineOffset?: PropertyValue<'outlineOffset'>
332
+ outlineStyle?: PropertyValue<'outlineStyle'>
333
+ outlineWidth?: PropertyValue<'outlineWidth'>
334
+ overflow?: PropertyValue<'overflow'>
335
+ overflowAnchor?: PropertyValue<'overflowAnchor'>
336
+ overflowBlock?: PropertyValue<'overflowBlock'>
337
+ overflowClipBox?: PropertyValue<'overflowClipBox'>
338
+ overflowClipMargin?: PropertyValue<'overflowClipMargin'>
339
+ overflowInline?: PropertyValue<'overflowInline'>
340
+ overflowWrap?: PropertyValue<'overflowWrap'>
341
+ overflowX?: PropertyValue<'overflowX'>
342
+ overflowY?: PropertyValue<'overflowY'>
343
+ overscrollBehavior?: PropertyValue<'overscrollBehavior'>
344
+ overscrollBehaviorBlock?: PropertyValue<'overscrollBehaviorBlock'>
345
+ overscrollBehaviorInline?: PropertyValue<'overscrollBehaviorInline'>
346
+ overscrollBehaviorX?: PropertyValue<'overscrollBehaviorX'>
347
+ overscrollBehaviorY?: PropertyValue<'overscrollBehaviorY'>
348
+ padding?: PropertyValue<'padding'>
349
+ paddingBlock?: PropertyValue<'paddingBlock'>
350
+ paddingBlockEnd?: PropertyValue<'paddingBlockEnd'>
351
+ paddingBlockStart?: PropertyValue<'paddingBlockStart'>
352
+ paddingBottom?: PropertyValue<'paddingBottom'>
353
+ paddingInline?: PropertyValue<'paddingInline'>
354
+ paddingInlineEnd?: PropertyValue<'paddingInlineEnd'>
355
+ paddingInlineStart?: PropertyValue<'paddingInlineStart'>
356
+ paddingLeft?: PropertyValue<'paddingLeft'>
357
+ paddingRight?: PropertyValue<'paddingRight'>
358
+ paddingTop?: PropertyValue<'paddingTop'>
359
+ page?: PropertyValue<'page'>
360
+ pageBreakAfter?: PropertyValue<'pageBreakAfter'>
361
+ pageBreakBefore?: PropertyValue<'pageBreakBefore'>
362
+ pageBreakInside?: PropertyValue<'pageBreakInside'>
363
+ paintOrder?: PropertyValue<'paintOrder'>
364
+ perspective?: PropertyValue<'perspective'>
365
+ perspectiveOrigin?: PropertyValue<'perspectiveOrigin'>
366
+ placeContent?: PropertyValue<'placeContent'>
367
+ placeItems?: PropertyValue<'placeItems'>
368
+ placeSelf?: PropertyValue<'placeSelf'>
369
+ pointerEvents?: PropertyValue<'pointerEvents'>
370
+ position?: PropertyValue<'position'>
371
+ printColorAdjust?: PropertyValue<'printColorAdjust'>
372
+ quotes?: PropertyValue<'quotes'>
373
+ resize?: PropertyValue<'resize'>
374
+ right?: PropertyValue<'right'>
375
+ rotate?: PropertyValue<'rotate'>
376
+ rowGap?: PropertyValue<'rowGap'>
377
+ rubyAlign?: PropertyValue<'rubyAlign'>
378
+ rubyMerge?: PropertyValue<'rubyMerge'>
379
+ rubyPosition?: PropertyValue<'rubyPosition'>
380
+ scale?: PropertyValue<'scale'>
381
+ scrollbarColor?: PropertyValue<'scrollbarColor'>
382
+ scrollbarGutter?: PropertyValue<'scrollbarGutter'>
383
+ scrollbarWidth?: PropertyValue<'scrollbarWidth'>
384
+ scrollBehavior?: PropertyValue<'scrollBehavior'>
385
+ scrollMargin?: PropertyValue<'scrollMargin'>
386
+ scrollMarginBlock?: PropertyValue<'scrollMarginBlock'>
387
+ scrollMarginBlockStart?: PropertyValue<'scrollMarginBlockStart'>
388
+ scrollMarginBlockEnd?: PropertyValue<'scrollMarginBlockEnd'>
389
+ scrollMarginBottom?: PropertyValue<'scrollMarginBottom'>
390
+ scrollMarginInline?: PropertyValue<'scrollMarginInline'>
391
+ scrollMarginInlineStart?: PropertyValue<'scrollMarginInlineStart'>
392
+ scrollMarginInlineEnd?: PropertyValue<'scrollMarginInlineEnd'>
393
+ scrollMarginLeft?: PropertyValue<'scrollMarginLeft'>
394
+ scrollMarginRight?: PropertyValue<'scrollMarginRight'>
395
+ scrollMarginTop?: PropertyValue<'scrollMarginTop'>
396
+ scrollPadding?: PropertyValue<'scrollPadding'>
397
+ scrollPaddingBlock?: PropertyValue<'scrollPaddingBlock'>
398
+ scrollPaddingBlockStart?: PropertyValue<'scrollPaddingBlockStart'>
399
+ scrollPaddingBlockEnd?: PropertyValue<'scrollPaddingBlockEnd'>
400
+ scrollPaddingBottom?: PropertyValue<'scrollPaddingBottom'>
401
+ scrollPaddingInline?: PropertyValue<'scrollPaddingInline'>
402
+ scrollPaddingInlineStart?: PropertyValue<'scrollPaddingInlineStart'>
403
+ scrollPaddingInlineEnd?: PropertyValue<'scrollPaddingInlineEnd'>
404
+ scrollPaddingLeft?: PropertyValue<'scrollPaddingLeft'>
405
+ scrollPaddingRight?: PropertyValue<'scrollPaddingRight'>
406
+ scrollPaddingTop?: PropertyValue<'scrollPaddingTop'>
407
+ scrollSnapAlign?: PropertyValue<'scrollSnapAlign'>
408
+ scrollSnapCoordinate?: PropertyValue<'scrollSnapCoordinate'>
409
+ scrollSnapDestination?: PropertyValue<'scrollSnapDestination'>
410
+ scrollSnapPointsX?: PropertyValue<'scrollSnapPointsX'>
411
+ scrollSnapPointsY?: PropertyValue<'scrollSnapPointsY'>
412
+ scrollSnapStop?: PropertyValue<'scrollSnapStop'>
413
+ scrollSnapType?: PropertyValue<'scrollSnapType'>
414
+ scrollSnapTypeX?: PropertyValue<'scrollSnapTypeX'>
415
+ scrollSnapTypeY?: PropertyValue<'scrollSnapTypeY'>
416
+ scrollTimeline?: PropertyValue<'scrollTimeline'>
417
+ scrollTimelineAxis?: PropertyValue<'scrollTimelineAxis'>
418
+ scrollTimelineName?: PropertyValue<'scrollTimelineName'>
419
+ shapeImageThreshold?: PropertyValue<'shapeImageThreshold'>
420
+ shapeMargin?: PropertyValue<'shapeMargin'>
421
+ shapeOutside?: PropertyValue<'shapeOutside'>
422
+ tabSize?: PropertyValue<'tabSize'>
423
+ tableLayout?: PropertyValue<'tableLayout'>
424
+ textAlign?: PropertyValue<'textAlign'>
425
+ textAlignLast?: PropertyValue<'textAlignLast'>
426
+ textCombineUpright?: PropertyValue<'textCombineUpright'>
427
+ textDecoration?: PropertyValue<'textDecoration'>
428
+ textDecorationColor?: PropertyValue<'textDecorationColor'>
429
+ textDecorationLine?: PropertyValue<'textDecorationLine'>
430
+ textDecorationSkip?: PropertyValue<'textDecorationSkip'>
431
+ textDecorationSkipInk?: PropertyValue<'textDecorationSkipInk'>
432
+ textDecorationStyle?: PropertyValue<'textDecorationStyle'>
433
+ textDecorationThickness?: PropertyValue<'textDecorationThickness'>
434
+ textEmphasis?: PropertyValue<'textEmphasis'>
435
+ textEmphasisColor?: PropertyValue<'textEmphasisColor'>
436
+ textEmphasisPosition?: PropertyValue<'textEmphasisPosition'>
437
+ textEmphasisStyle?: PropertyValue<'textEmphasisStyle'>
438
+ textIndent?: PropertyValue<'textIndent'>
439
+ textJustify?: PropertyValue<'textJustify'>
440
+ textOrientation?: PropertyValue<'textOrientation'>
441
+ textOverflow?: PropertyValue<'textOverflow'>
442
+ textRendering?: PropertyValue<'textRendering'>
443
+ textShadow?: PropertyValue<'textShadow'>
444
+ textSizeAdjust?: PropertyValue<'textSizeAdjust'>
445
+ textTransform?: PropertyValue<'textTransform'>
446
+ textUnderlineOffset?: PropertyValue<'textUnderlineOffset'>
447
+ textUnderlinePosition?: PropertyValue<'textUnderlinePosition'>
448
+ top?: PropertyValue<'top'>
449
+ touchAction?: PropertyValue<'touchAction'>
450
+ transform?: PropertyValue<'transform'>
451
+ transformBox?: PropertyValue<'transformBox'>
452
+ transformOrigin?: PropertyValue<'transformOrigin'>
453
+ transformStyle?: PropertyValue<'transformStyle'>
454
+ transition?: PropertyValue<'transition'>
455
+ transitionDelay?: PropertyValue<'transitionDelay'>
456
+ transitionDuration?: PropertyValue<'transitionDuration'>
457
+ transitionProperty?: PropertyValue<'transitionProperty'>
458
+ transitionTimingFunction?: PropertyValue<'transitionTimingFunction'>
459
+ translate?: PropertyValue<'translate'>
460
+ unicodeBidi?: PropertyValue<'unicodeBidi'>
461
+ userSelect?: PropertyValue<'userSelect'>
462
+ verticalAlign?: PropertyValue<'verticalAlign'>
463
+ viewTransitionName?: PropertyValue<'viewTransitionName'>
464
+ visibility?: PropertyValue<'visibility'>
465
+ whiteSpace?: PropertyValue<'whiteSpace'>
466
+ widows?: PropertyValue<'widows'>
467
+ width?: PropertyValue<'width'>
468
+ willChange?: PropertyValue<'willChange'>
469
+ wordBreak?: PropertyValue<'wordBreak'>
470
+ wordSpacing?: PropertyValue<'wordSpacing'>
471
+ wordWrap?: PropertyValue<'wordWrap'>
472
+ writingMode?: PropertyValue<'writingMode'>
473
+ zIndex?: PropertyValue<'zIndex'>
474
+ zoom?: PropertyValue<'zoom'>
475
+ alignmentBaseline?: PropertyValue<'alignmentBaseline'>
476
+ baselineShift?: PropertyValue<'baselineShift'>
477
+ clipRule?: PropertyValue<'clipRule'>
478
+ colorInterpolation?: PropertyValue<'colorInterpolation'>
479
+ colorRendering?: PropertyValue<'colorRendering'>
480
+ dominantBaseline?: PropertyValue<'dominantBaseline'>
481
+ fill?: PropertyValue<'fill'>
482
+ fillOpacity?: PropertyValue<'fillOpacity'>
483
+ fillRule?: PropertyValue<'fillRule'>
484
+ floodColor?: PropertyValue<'floodColor'>
485
+ floodOpacity?: PropertyValue<'floodOpacity'>
486
+ glyphOrientationVertical?: PropertyValue<'glyphOrientationVertical'>
487
+ lightingColor?: PropertyValue<'lightingColor'>
488
+ marker?: PropertyValue<'marker'>
489
+ markerEnd?: PropertyValue<'markerEnd'>
490
+ markerMid?: PropertyValue<'markerMid'>
491
+ markerStart?: PropertyValue<'markerStart'>
492
+ shapeRendering?: PropertyValue<'shapeRendering'>
493
+ stopColor?: PropertyValue<'stopColor'>
494
+ stopOpacity?: PropertyValue<'stopOpacity'>
495
+ stroke?: PropertyValue<'stroke'>
496
+ strokeDasharray?: PropertyValue<'strokeDasharray'>
497
+ strokeDashoffset?: PropertyValue<'strokeDashoffset'>
498
+ strokeLinecap?: PropertyValue<'strokeLinecap'>
499
+ strokeLinejoin?: PropertyValue<'strokeLinejoin'>
500
+ strokeMiterlimit?: PropertyValue<'strokeMiterlimit'>
501
+ strokeOpacity?: PropertyValue<'strokeOpacity'>
502
+ strokeWidth?: PropertyValue<'strokeWidth'>
503
+ textAnchor?: PropertyValue<'textAnchor'>
504
+ vectorEffect?: PropertyValue<'vectorEffect'>
505
+ pos?: PropertyValue<'pos'>
506
+ insetEnd?: PropertyValue<'insetEnd'>
507
+ end?: PropertyValue<'end'>
508
+ insetStart?: PropertyValue<'insetStart'>
509
+ start?: PropertyValue<'start'>
510
+ flexDir?: PropertyValue<'flexDir'>
511
+ p?: PropertyValue<'p'>
512
+ pl?: PropertyValue<'pl'>
513
+ pr?: PropertyValue<'pr'>
514
+ pt?: PropertyValue<'pt'>
515
+ pb?: PropertyValue<'pb'>
516
+ py?: PropertyValue<'py'>
517
+ paddingY?: PropertyValue<'paddingY'>
518
+ paddingX?: PropertyValue<'paddingX'>
519
+ px?: PropertyValue<'px'>
520
+ pe?: PropertyValue<'pe'>
521
+ paddingEnd?: PropertyValue<'paddingEnd'>
522
+ ps?: PropertyValue<'ps'>
523
+ paddingStart?: PropertyValue<'paddingStart'>
524
+ ml?: PropertyValue<'ml'>
525
+ mr?: PropertyValue<'mr'>
526
+ mt?: PropertyValue<'mt'>
527
+ mb?: PropertyValue<'mb'>
528
+ m?: PropertyValue<'m'>
529
+ my?: PropertyValue<'my'>
530
+ marginY?: PropertyValue<'marginY'>
531
+ mx?: PropertyValue<'mx'>
532
+ marginX?: PropertyValue<'marginX'>
533
+ me?: PropertyValue<'me'>
534
+ marginEnd?: PropertyValue<'marginEnd'>
535
+ ms?: PropertyValue<'ms'>
536
+ marginStart?: PropertyValue<'marginStart'>
537
+ ringWidth?: PropertyValue<'ringWidth'>
538
+ ringColor?: PropertyValue<'ringColor'>
539
+ ring?: PropertyValue<'ring'>
540
+ ringOffset?: PropertyValue<'ringOffset'>
541
+ w?: PropertyValue<'w'>
542
+ minW?: PropertyValue<'minW'>
543
+ maxW?: PropertyValue<'maxW'>
544
+ h?: PropertyValue<'h'>
545
+ minH?: PropertyValue<'minH'>
546
+ maxH?: PropertyValue<'maxH'>
547
+ bgPosition?: PropertyValue<'bgPosition'>
548
+ bgPositionX?: PropertyValue<'bgPositionX'>
549
+ bgPositionY?: PropertyValue<'bgPositionY'>
550
+ bgAttachment?: PropertyValue<'bgAttachment'>
551
+ bgClip?: PropertyValue<'bgClip'>
552
+ bg?: PropertyValue<'bg'>
553
+ bgColor?: PropertyValue<'bgColor'>
554
+ bgOrigin?: PropertyValue<'bgOrigin'>
555
+ bgImage?: PropertyValue<'bgImage'>
556
+ bgRepeat?: PropertyValue<'bgRepeat'>
557
+ bgBlendMode?: PropertyValue<'bgBlendMode'>
558
+ bgSize?: PropertyValue<'bgSize'>
559
+ bgGradient?: PropertyValue<'bgGradient'>
560
+ rounded?: PropertyValue<'rounded'>
561
+ roundedTopLeft?: PropertyValue<'roundedTopLeft'>
562
+ roundedTopRight?: PropertyValue<'roundedTopRight'>
563
+ roundedBottomRight?: PropertyValue<'roundedBottomRight'>
564
+ roundedBottomLeft?: PropertyValue<'roundedBottomLeft'>
565
+ roundedTop?: PropertyValue<'roundedTop'>
566
+ roundedRight?: PropertyValue<'roundedRight'>
567
+ roundedBottom?: PropertyValue<'roundedBottom'>
568
+ roundedLeft?: PropertyValue<'roundedLeft'>
569
+ roundedStartStart?: PropertyValue<'roundedStartStart'>
570
+ roundedStartEnd?: PropertyValue<'roundedStartEnd'>
571
+ roundedStart?: PropertyValue<'roundedStart'>
572
+ roundedEndStart?: PropertyValue<'roundedEndStart'>
573
+ roundedEndEnd?: PropertyValue<'roundedEndEnd'>
574
+ roundedEnd?: PropertyValue<'roundedEnd'>
575
+ borderX?: PropertyValue<'borderX'>
576
+ borderXWidth?: PropertyValue<'borderXWidth'>
577
+ borderXColor?: PropertyValue<'borderXColor'>
578
+ borderY?: PropertyValue<'borderY'>
579
+ borderYWidth?: PropertyValue<'borderYWidth'>
580
+ borderYColor?: PropertyValue<'borderYColor'>
581
+ borderStart?: PropertyValue<'borderStart'>
582
+ borderStartWidth?: PropertyValue<'borderStartWidth'>
583
+ borderStartColor?: PropertyValue<'borderStartColor'>
584
+ borderEnd?: PropertyValue<'borderEnd'>
585
+ borderEndWidth?: PropertyValue<'borderEndWidth'>
586
+ borderEndColor?: PropertyValue<'borderEndColor'>
587
+ shadow?: PropertyValue<'shadow'>
588
+ shadowColor?: PropertyValue<'shadowColor'>
589
+ x?: PropertyValue<'x'>
590
+ y?: PropertyValue<'y'>
591
+ insetX?: PropertyValue<'insetX'>
592
+ insetY?: PropertyValue<'insetY'>
593
+ hideFrom?: PropertyValue<'hideFrom'>
594
+ hideBelow?: PropertyValue<'hideBelow'>
595
+ divideX?: PropertyValue<'divideX'>
596
+ divideY?: PropertyValue<'divideY'>
597
+ divideColor?: PropertyValue<'divideColor'>
598
+ divideStyle?: PropertyValue<'divideStyle'>
599
+ fontSmoothing?: PropertyValue<'fontSmoothing'>
600
+ textWrap?: PropertyValue<'textWrap'>
601
+ truncate?: PropertyValue<'truncate'>
602
+ backgroundGradient?: PropertyValue<'backgroundGradient'>
603
+ textGradient?: PropertyValue<'textGradient'>
604
+ gradientFrom?: PropertyValue<'gradientFrom'>
605
+ gradientTo?: PropertyValue<'gradientTo'>
606
+ gradientVia?: PropertyValue<'gradientVia'>
607
+ borderTopRadius?: PropertyValue<'borderTopRadius'>
608
+ borderRightRadius?: PropertyValue<'borderRightRadius'>
609
+ borderBottomRadius?: PropertyValue<'borderBottomRadius'>
610
+ borderLeftRadius?: PropertyValue<'borderLeftRadius'>
611
+ borderStartRadius?: PropertyValue<'borderStartRadius'>
612
+ borderEndRadius?: PropertyValue<'borderEndRadius'>
613
+ boxShadowColor?: PropertyValue<'boxShadowColor'>
614
+ brightness?: PropertyValue<'brightness'>
615
+ contrast?: PropertyValue<'contrast'>
616
+ grayscale?: PropertyValue<'grayscale'>
617
+ hueRotate?: PropertyValue<'hueRotate'>
618
+ invert?: PropertyValue<'invert'>
619
+ saturate?: PropertyValue<'saturate'>
620
+ sepia?: PropertyValue<'sepia'>
621
+ dropShadow?: PropertyValue<'dropShadow'>
622
+ blur?: PropertyValue<'blur'>
623
+ backdropBlur?: PropertyValue<'backdropBlur'>
624
+ backdropBrightness?: PropertyValue<'backdropBrightness'>
625
+ backdropContrast?: PropertyValue<'backdropContrast'>
626
+ backdropGrayscale?: PropertyValue<'backdropGrayscale'>
627
+ backdropHueRotate?: PropertyValue<'backdropHueRotate'>
628
+ backdropInvert?: PropertyValue<'backdropInvert'>
629
+ backdropOpacity?: PropertyValue<'backdropOpacity'>
630
+ backdropSaturate?: PropertyValue<'backdropSaturate'>
631
+ backdropSepia?: PropertyValue<'backdropSepia'>
632
+ borderSpacingX?: PropertyValue<'borderSpacingX'>
633
+ borderSpacingY?: PropertyValue<'borderSpacingY'>
634
+ scaleX?: PropertyValue<'scaleX'>
635
+ scaleY?: PropertyValue<'scaleY'>
636
+ translateX?: PropertyValue<'translateX'>
637
+ translateY?: PropertyValue<'translateY'>
638
+ scrollbar?: PropertyValue<'scrollbar'>
639
+ scrollMarginX?: PropertyValue<'scrollMarginX'>
640
+ scrollMarginY?: PropertyValue<'scrollMarginY'>
641
+ scrollPaddingX?: PropertyValue<'scrollPaddingX'>
642
+ scrollPaddingY?: PropertyValue<'scrollPaddingY'>
643
+ scrollSnapStrictness?: PropertyValue<'scrollSnapStrictness'>
644
+ scrollSnapMargin?: PropertyValue<'scrollSnapMargin'>
645
+ scrollSnapMarginTop?: PropertyValue<'scrollSnapMarginTop'>
646
+ scrollSnapMarginBottom?: PropertyValue<'scrollSnapMarginBottom'>
647
+ scrollSnapMarginLeft?: PropertyValue<'scrollSnapMarginLeft'>
648
+ scrollSnapMarginRight?: PropertyValue<'scrollSnapMarginRight'>
649
+ srOnly?: PropertyValue<'srOnly'>
650
+ debug?: PropertyValue<'debug'>
651
+ colorPalette?: PropertyValue<'colorPalette'>
652
+ textStyle?: PropertyValue<'textStyle'>
653
+ }