lism-css 0.8.3 → 0.9.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 (200) hide show
  1. package/bin/script-build-css.js +1 -1
  2. package/config/__prop_list.js +1 -1
  3. package/config/default-config.ts +9 -0
  4. package/config/defaults/__props-memo.js +4 -4
  5. package/config/defaults/{props.js → props.ts} +8 -8
  6. package/config/defaults/{states.js → states.ts} +14 -13
  7. package/config/defaults/{tokens.js → tokens.ts} +1 -1
  8. package/config/helper/{getSvgUrl.js → getSvgUrl.ts} +1 -3
  9. package/config/helper/{minifyHtml.js → minifyHtml.ts} +1 -1
  10. package/config/helper.test.ts +238 -0
  11. package/config/helper.ts +79 -0
  12. package/config/{index.js → index.ts} +17 -4
  13. package/config/tsconfig.json +18 -0
  14. package/config.d.ts +2 -0
  15. package/config.js +1 -1
  16. package/dist/components/Box/Box.d.ts +4 -1
  17. package/dist/components/Box/index.d.ts +1 -1
  18. package/dist/components/Center/Center.d.ts +4 -1
  19. package/dist/components/Center/index.d.ts +1 -1
  20. package/dist/components/Cluster/Cluster.d.ts +4 -1
  21. package/dist/components/Cluster/index.js +2 -2
  22. package/dist/components/Columns/Columns.d.ts +4 -1
  23. package/dist/components/Container/Container.d.ts +6 -4
  24. package/dist/components/Dummy/Dummy.d.ts +10 -8
  25. package/dist/components/Dummy/getContent.d.ts +13 -7
  26. package/dist/components/Dummy/getContent.js +7 -6
  27. package/dist/components/Dummy/index.js +8 -7
  28. package/dist/components/Flex/Flex.d.ts +4 -1
  29. package/dist/components/Flow/Flow.d.ts +4 -1
  30. package/dist/components/Flow/index.d.ts +1 -1
  31. package/dist/components/FluidCols/FluidCols.d.ts +4 -1
  32. package/dist/components/Frame/Frame.d.ts +4 -1
  33. package/dist/components/Grid/Grid.d.ts +4 -1
  34. package/dist/components/HTML/HTML.d.ts +16 -13
  35. package/dist/components/HTML/index.d.ts +13 -13
  36. package/dist/components/HTML/index.js +3 -3
  37. package/dist/components/HTML/index2.js +30 -29
  38. package/dist/components/Layer/Layer.d.ts +6 -1
  39. package/dist/components/Layer/Layer.test.d.ts +1 -0
  40. package/dist/components/Layer/getProps.d.ts +5 -1
  41. package/dist/components/LinkBox/LinkBox.d.ts +4 -4
  42. package/dist/components/LinkBox/script.d.ts +3 -0
  43. package/dist/components/Lism/Lism.d.ts +28 -7
  44. package/dist/components/Lism/Lism.stories.d.ts +667 -0
  45. package/dist/components/Lism/Lism.test.d.ts +1 -0
  46. package/dist/components/Lism/index.d.ts +1 -3
  47. package/dist/components/Lism/index.js +3 -3
  48. package/dist/components/SideMain/SideMain.d.ts +4 -1
  49. package/dist/components/Stack/Stack.d.ts +4 -1
  50. package/dist/components/SwitchCols/SwitchCols.d.ts +4 -1
  51. package/dist/components/Wrapper/Wrapper.d.ts +6 -4
  52. package/dist/components/atomic/Decorator/Decorator.d.ts +2 -1
  53. package/dist/components/atomic/Decorator/getProps.d.ts +10 -12
  54. package/dist/components/atomic/Decorator/getProps.js +10 -9
  55. package/dist/components/atomic/Divider/Divider.d.ts +2 -1
  56. package/dist/components/atomic/Divider/getProps.d.ts +2 -7
  57. package/dist/components/atomic/Divider/getProps.js +8 -7
  58. package/dist/components/atomic/Icon/Icon.d.ts +4 -3
  59. package/dist/components/atomic/Icon/SVG.d.ts +8 -9
  60. package/dist/components/atomic/Icon/getProps.d.ts +21 -12
  61. package/dist/components/atomic/Icon/getProps.js +31 -25
  62. package/dist/components/atomic/Icon/index.js +9 -8
  63. package/dist/components/atomic/Icon/presets.d.ts +2 -2
  64. package/dist/components/atomic/Media/Media.d.ts +2 -1
  65. package/dist/components/atomic/Media/getProps.d.ts +9 -1
  66. package/dist/components/atomic/Media/getProps.js +5 -6
  67. package/dist/components/atomic/Media/index.js +3 -3
  68. package/dist/components/atomic/Spacer/Spacer.d.ts +2 -1
  69. package/dist/components/atomic/Spacer/getProps.d.ts +2 -7
  70. package/dist/components/atomic/Spacer/getProps.js +8 -2
  71. package/dist/components/getFilterProps.d.ts +10 -1
  72. package/dist/components/getFilterProps.js +15 -5
  73. package/dist/components/getFilterProps.test.d.ts +1 -0
  74. package/dist/components/index.js +46 -50
  75. package/dist/components/setMaybeTransformStyles.d.ts +12 -1
  76. package/dist/components/setMaybeTransformStyles.js +4 -4
  77. package/dist/components/setMaybeTransformStyles.test.d.ts +1 -0
  78. package/dist/config/default-config.d.ts +854 -0
  79. package/dist/config/defaults/props.d.ts +812 -0
  80. package/dist/config/defaults/props.js +4 -4
  81. package/dist/config/defaults/states.d.ts +30 -0
  82. package/dist/config/defaults/states.js +12 -11
  83. package/dist/config/defaults/tokens.d.ts +28 -0
  84. package/dist/config/helper/getSvgUrl.d.ts +5 -0
  85. package/dist/config/helper/minifyHtml.d.ts +5 -0
  86. package/dist/config/helper.d.ts +21 -0
  87. package/dist/config/helper.js +14 -18
  88. package/dist/config/index.d.ts +1707 -0
  89. package/dist/config/index.js +15 -11
  90. package/dist/css/base/set.css +1 -1
  91. package/dist/css/base.css +1 -1
  92. package/dist/css/main.css +1 -1
  93. package/dist/css/main_no_layer.css +1 -1
  94. package/dist/css/modules/layout.css +1 -1
  95. package/dist/css/modules/state.css +1 -1
  96. package/dist/css/props.css +1 -1
  97. package/dist/css/reset.css +1 -1
  98. package/dist/css/utility.css +1 -1
  99. package/dist/lib/LismPropsData.test.d.ts +1 -0
  100. package/dist/lib/getBpData.d.ts +9 -1
  101. package/dist/lib/getBpData.js +16 -10
  102. package/dist/lib/getBpData.test.d.ts +1 -0
  103. package/dist/lib/getLayoutProps.d.ts +22 -1
  104. package/dist/lib/getLayoutProps.js +20 -20
  105. package/dist/lib/getLayoutProps.test.d.ts +1 -0
  106. package/dist/lib/getLismProps.d.ts +77 -2
  107. package/dist/lib/getLismProps.js +127 -111
  108. package/dist/lib/getLismProps.test.d.ts +1 -0
  109. package/dist/lib/getMaybeCssVar.d.ts +5 -3
  110. package/dist/lib/getMaybeCssVar.js +15 -15
  111. package/dist/lib/getMaybeCssVar.test.d.ts +1 -0
  112. package/dist/lib/getMaybeTokenValue.d.ts +10 -1
  113. package/dist/lib/getMaybeTokenValue.js +21 -21
  114. package/dist/lib/getMaybeTokenValue.test.d.ts +1 -0
  115. package/dist/lib/getUtilKey.d.ts +7 -1
  116. package/dist/lib/getUtilKey.js +6 -6
  117. package/dist/lib/getUtilKey.test.d.ts +1 -0
  118. package/dist/lib/helper/atts.d.ts +6 -3
  119. package/dist/lib/helper/atts.test.d.ts +1 -0
  120. package/dist/lib/helper/filterEmptyObj.d.ts +20 -1
  121. package/dist/lib/helper/filterEmptyObj.js +6 -5
  122. package/dist/lib/helper/filterEmptyObj.test.d.ts +1 -0
  123. package/dist/lib/helper/hasSomeKeys.d.ts +1 -1
  124. package/dist/lib/helper/isNumStr.d.ts +4 -1
  125. package/dist/lib/helper/isNumStr.test.d.ts +1 -0
  126. package/dist/lib/helper/objMap.d.ts +8 -1
  127. package/dist/lib/helper/objMap.test.d.ts +1 -0
  128. package/dist/lib/helper/splitWithComma.d.ts +1 -1
  129. package/dist/lib/helper/splitWithComma.test.d.ts +1 -0
  130. package/dist/lib/isPresetValue.d.ts +3 -1
  131. package/dist/lib/isPresetValue.js +10 -3
  132. package/dist/lib/isPresetValue.test.d.ts +1 -0
  133. package/dist/lib/isTokenValue.d.ts +1 -1
  134. package/dist/lib/isTokenValue.js +24 -7
  135. package/dist/lib/isTokenValue.test.d.ts +1 -0
  136. package/dist/lib/types/LayoutProps.d.ts +50 -0
  137. package/dist/lib/types/PropValueTypes.d.ts +83 -0
  138. package/dist/lib/types/PropValueTypes.spec-d.d.ts +1 -0
  139. package/dist/lib/types/ResponsiveProps.d.ts +50 -0
  140. package/dist/lib/types/ResponsiveProps.spec-d.d.ts +1 -0
  141. package/dist/lib/types/StateProps.d.ts +27 -0
  142. package/dist/lib/types/StateProps.spec-d.d.ts +1 -0
  143. package/dist/lib/types/utils.d.ts +79 -0
  144. package/dist/lib/types/utils.spec-d.d.ts +1 -0
  145. package/dist/lib/types.d.ts +2 -0
  146. package/package.json +39 -20
  147. package/packages/astro/Lism/index.js +0 -2
  148. package/packages/astro/index.js +0 -2
  149. package/src/scss/_auto_output.scss +2 -1
  150. package/src/scss/_prop-config.scss +19 -0
  151. package/src/scss/_with_layer.scss +7 -11
  152. package/src/scss/base/{_base.scss → _html.scss} +2 -3
  153. package/src/scss/base/index.scss +6 -6
  154. package/src/scss/base/set/_bp.scss +2 -2
  155. package/src/scss/base/set/_cqUnit.scss +31 -0
  156. package/src/scss/{modules/state → base/set}/_gutter.scss +1 -1
  157. package/src/scss/base/set/_hov.scss +4 -4
  158. package/src/scss/base/set/_innerRs.scss +1 -1
  159. package/src/scss/base/set/_mask.scss +1 -1
  160. package/src/scss/base/set/_plain.scss +3 -1
  161. package/src/scss/base/set/_transition.scss +1 -1
  162. package/src/scss/base/set/index.scss +2 -2
  163. package/src/scss/base/{set → tokens}/_shadow.scss +2 -2
  164. package/src/scss/base/{_typography.scss → tokens/_typography.scss} +2 -8
  165. package/src/scss/modules/layout/_flex.scss +4 -0
  166. package/src/scss/modules/layout/_flow.scss +1 -1
  167. package/src/scss/modules/layout/_grid.scss +4 -0
  168. package/src/scss/modules/state/_container.scss +2 -2
  169. package/src/scss/modules/state/_wrapper.scss +2 -2
  170. package/src/scss/modules/state/index.scss +0 -1
  171. package/src/scss/props/_size.scss +1 -1
  172. package/src/scss/reset.scss +10 -3
  173. package/src/scss/utility/_cbox.scss +1 -1
  174. package/src/scss/utility/_clipText.scss +4 -0
  175. package/src/scss/utility/_hidden.scss +3 -3
  176. package/src/scss/utility/_itemDivider.scss +1 -1
  177. package/src/scss/utility/_linkExpand.scss +1 -1
  178. package/src/scss/{base/set → utility}/_snap.scss +1 -1
  179. package/src/scss/utility/_trimHL.scss +5 -4
  180. package/src/scss/utility/index.scss +2 -0
  181. package/config/default-config.js +0 -9
  182. package/config/helper.js +0 -67
  183. package/dist/components/Lism/Link.d.ts +0 -1
  184. package/dist/components/Lism/Link.js +0 -8
  185. package/dist/components/Lism/Text.d.ts +0 -1
  186. package/dist/components/Lism/Text.js +0 -8
  187. package/dist/components/Lism/__Lism_with_forwardRef.d.ts +0 -5
  188. package/dist/components/Test/Test.d.ts +0 -9
  189. package/dist/components/Test/TestItem.d.ts +0 -2
  190. package/dist/components/Test/TestRoot.d.ts +0 -4
  191. package/dist/components/Test/index.d.ts +0 -7
  192. package/dist/components/__Core/Core.d.ts +0 -11
  193. package/dist/components/__Core/index.d.ts +0 -1
  194. package/packages/astro/Lism/Link.astro +0 -10
  195. package/packages/astro/Lism/Text.astro +0 -10
  196. package/packages/astro/Test/Test.astro +0 -14
  197. package/packages/astro/Test/TestItem.astro +0 -14
  198. package/packages/astro/Test/index.js +0 -4
  199. /package/src/scss/base/{_property.scss → tokens/_property.scss} +0 -0
  200. /package/src/scss/base/{_tokens.scss → tokens/_tokens.scss} +0 -0
@@ -0,0 +1,1707 @@
1
+ export declare const CONFIG: {
2
+ tokens: {
3
+ readonly fz: readonly ["root", "base", "5xl", "4xl", "3xl", "2xl", "xl", "l", "m", "s", "xs", "2xs"];
4
+ readonly lh: readonly ["base", "xs", "s", "l"];
5
+ readonly hl: readonly ["base", "xs", "s", "l"];
6
+ readonly lts: readonly ["base", "s", "l"];
7
+ readonly ff: readonly ["base", "accent", "mono"];
8
+ readonly fw: readonly ["thin", "light", "normal", "medium", "bold", "black"];
9
+ readonly o: readonly ["-10", "-20", "-30"];
10
+ readonly bdrs: readonly ["5", "10", "20", "30", "40", "50", "99", "inner"];
11
+ readonly bxsh: readonly ["5", "10", "20", "30", "40", "50"];
12
+ readonly sz: readonly ["xs", "s", "m", "l", "xl", "min", "full", "container"];
13
+ readonly ar: readonly ["og"];
14
+ readonly space: {
15
+ readonly pre: "--s";
16
+ readonly values: readonly ["5", "10", "15", "20", "30", "40", "50", "60", "70", "80"];
17
+ };
18
+ readonly c: {
19
+ readonly pre: "--";
20
+ readonly values: readonly ["base", "base-2", "text", "text-2", "divider", "link", "brand", "accent"];
21
+ };
22
+ readonly palette: {
23
+ readonly pre: "--";
24
+ readonly values: readonly ["red", "blue", "green", "yellow", "purple", "orange", "pink", "gray", "white", "black", "keycolor"];
25
+ };
26
+ readonly writing: readonly ["vertical"];
27
+ readonly flow: readonly ["s", "l"];
28
+ };
29
+ props: {
30
+ readonly f: {
31
+ readonly prop: "font";
32
+ readonly presets: readonly ["inherit"];
33
+ };
34
+ readonly fz: {
35
+ readonly prop: "fontSize";
36
+ readonly token: "fz";
37
+ readonly tokenClass: 1;
38
+ readonly bp: 1;
39
+ readonly alwaysVar: 1;
40
+ };
41
+ readonly fw: {
42
+ readonly prop: "fontWeight";
43
+ readonly token: "fw";
44
+ readonly tokenClass: 1;
45
+ };
46
+ readonly ff: {
47
+ readonly prop: "fontFamily";
48
+ readonly token: "ff";
49
+ readonly tokenClass: 1;
50
+ };
51
+ readonly fs: {
52
+ readonly prop: "fontStyle";
53
+ readonly presets: readonly ["italic"];
54
+ readonly shorthands: {
55
+ readonly i: "italic";
56
+ };
57
+ };
58
+ readonly lh: {
59
+ readonly prop: "lineHeight";
60
+ readonly presets: readonly ["1"];
61
+ readonly token: "hl";
62
+ readonly tokenClass: 2;
63
+ readonly exUtility: {
64
+ readonly 1: "";
65
+ };
66
+ };
67
+ readonly hl: {
68
+ readonly isVar: 1;
69
+ readonly token: "hl";
70
+ readonly tokenClass: 0;
71
+ readonly bp: 1;
72
+ };
73
+ readonly lts: {
74
+ readonly prop: "letterSpacing";
75
+ readonly token: "lts";
76
+ readonly tokenClass: 1;
77
+ };
78
+ readonly ta: {
79
+ readonly prop: "textAlign";
80
+ readonly presets: readonly ["center", "left", "right"];
81
+ };
82
+ readonly td: {
83
+ readonly prop: "textDecoration";
84
+ readonly utils: {
85
+ readonly none: "none";
86
+ };
87
+ };
88
+ readonly tt: {
89
+ readonly prop: "textTransform";
90
+ readonly utils: {
91
+ readonly upper: "uppercase";
92
+ readonly lower: "lowercase";
93
+ };
94
+ };
95
+ readonly d: {
96
+ readonly prop: "display";
97
+ readonly presets: readonly ["none", "block"];
98
+ readonly utils: {
99
+ readonly 'in-flex': "inline-flex";
100
+ };
101
+ readonly bp: 1;
102
+ };
103
+ readonly o: {
104
+ readonly prop: "opacity";
105
+ readonly presets: readonly ["0"];
106
+ readonly token: "o";
107
+ readonly tokenClass: 1;
108
+ };
109
+ readonly v: {
110
+ readonly prop: "visibility";
111
+ readonly presets: readonly ["hidden"];
112
+ };
113
+ readonly ov: {
114
+ readonly prop: "overflow";
115
+ readonly presets: readonly ["hidden", "auto", "clip"];
116
+ };
117
+ readonly 'ov-x': {
118
+ readonly prop: "overflowX";
119
+ readonly presets: readonly ["clip", "auto", "scroll"];
120
+ };
121
+ readonly 'ov-y': {
122
+ readonly prop: "overflowY";
123
+ readonly presets: readonly ["clip", "auto", "scroll"];
124
+ };
125
+ readonly ar: {
126
+ readonly prop: "aspectRatio";
127
+ readonly presets: readonly ["21/9", "16/9", "3/2", "1/1"];
128
+ readonly token: "ar";
129
+ readonly tokenClass: 1;
130
+ readonly bp: 1;
131
+ };
132
+ readonly w: {
133
+ readonly prop: "width";
134
+ readonly utils: {
135
+ readonly fit: "fit-content";
136
+ };
137
+ readonly presets: readonly ["100%"];
138
+ readonly token: "sz";
139
+ readonly bp: 1;
140
+ };
141
+ readonly h: {
142
+ readonly prop: "height";
143
+ readonly utils: {
144
+ readonly fit: "fit-content";
145
+ };
146
+ readonly presets: readonly ["100%"];
147
+ readonly token: "sz";
148
+ readonly bp: 1;
149
+ };
150
+ readonly 'min-w': {
151
+ readonly prop: "minWidth";
152
+ readonly presets: readonly ["100%"];
153
+ readonly token: "sz";
154
+ readonly bp: 1;
155
+ };
156
+ readonly 'max-w': {
157
+ readonly prop: "maxWidth";
158
+ readonly presets: readonly ["100%"];
159
+ readonly token: "sz";
160
+ readonly bp: 1;
161
+ };
162
+ readonly 'min-h': {
163
+ readonly prop: "minHeight";
164
+ readonly presets: readonly ["100%"];
165
+ readonly token: "sz";
166
+ readonly bp: 1;
167
+ };
168
+ readonly 'max-h': {
169
+ readonly prop: "maxHeight";
170
+ readonly presets: readonly ["100%"];
171
+ readonly token: "sz";
172
+ readonly bp: 1;
173
+ };
174
+ readonly sz: {
175
+ readonly prop: "inlineSize";
176
+ readonly token: "sz";
177
+ };
178
+ readonly 'min-sz': {
179
+ readonly prop: "minInlineSize";
180
+ readonly token: "sz";
181
+ };
182
+ readonly 'max-sz': {
183
+ readonly prop: "maxInlineSize";
184
+ readonly token: "sz";
185
+ readonly tokenClass: 1;
186
+ readonly exUtility: {
187
+ readonly min: "";
188
+ readonly full: "";
189
+ readonly container: "";
190
+ };
191
+ };
192
+ readonly ysz: {
193
+ readonly prop: "blockSize";
194
+ readonly token: "sz";
195
+ };
196
+ readonly 'min-ysz': {
197
+ readonly prop: "minBlockSize";
198
+ readonly token: "sz";
199
+ };
200
+ readonly 'max-ysz': {
201
+ readonly prop: "maxBlockSize";
202
+ readonly token: "sz";
203
+ };
204
+ readonly bg: {
205
+ readonly prop: "background";
206
+ readonly bp: 1;
207
+ };
208
+ readonly bgi: {
209
+ readonly prop: "backgroundImage";
210
+ };
211
+ readonly bgr: {
212
+ readonly prop: "backgroundRepeat";
213
+ readonly presets: readonly ["no-repeat"];
214
+ };
215
+ readonly bgp: {
216
+ readonly prop: "backgroundPosition";
217
+ readonly presets: readonly ["center"];
218
+ };
219
+ readonly bgsz: {
220
+ readonly prop: "backgroundSize";
221
+ readonly presets: readonly ["cover", "contain"];
222
+ };
223
+ readonly bgc: {
224
+ readonly prop: "backgroundColor";
225
+ readonly presets: readonly ["base", "base-2", "text", "brand", "accent", "inherit", "transparent"];
226
+ readonly token: "color";
227
+ readonly exUtility: {
228
+ readonly inherit: {
229
+ readonly 'background-color': "inherit";
230
+ };
231
+ };
232
+ readonly alwaysVar: 1;
233
+ };
234
+ readonly c: {
235
+ readonly prop: "color";
236
+ readonly presets: readonly ["base", "text", "text-2", "brand", "accent", "inherit"];
237
+ readonly token: "color";
238
+ readonly exUtility: {
239
+ readonly inherit: {
240
+ readonly color: "inherit";
241
+ };
242
+ };
243
+ readonly alwaysVar: 1;
244
+ };
245
+ readonly keycolor: {
246
+ readonly isVar: 1;
247
+ readonly token: "color";
248
+ };
249
+ readonly bd: {
250
+ readonly prop: "border";
251
+ readonly presets: readonly ["none"];
252
+ };
253
+ readonly bds: {
254
+ readonly isVar: 1;
255
+ readonly presets: readonly ["dashed", "dotted", "double"];
256
+ };
257
+ readonly bdc: {
258
+ readonly isVar: 1;
259
+ readonly presets: readonly ["brand", "accent", "divider", "inherit", "transparent"];
260
+ readonly utils: {
261
+ readonly cc: "currentColor";
262
+ };
263
+ readonly token: "color";
264
+ };
265
+ readonly bdw: {
266
+ readonly isVar: 1;
267
+ readonly bp: 1;
268
+ };
269
+ readonly 'bd-x': {
270
+ readonly prop: "borderInline";
271
+ };
272
+ readonly 'bd-y': {
273
+ readonly prop: "borderBlock";
274
+ };
275
+ readonly 'bd-x-s': {
276
+ readonly prop: "borderInlineStart";
277
+ };
278
+ readonly 'bd-x-e': {
279
+ readonly prop: "borderInlineEnd";
280
+ };
281
+ readonly 'bd-y-s': {
282
+ readonly prop: "borderBlockStart";
283
+ };
284
+ readonly 'bd-y-e': {
285
+ readonly prop: "borderBlockEnd";
286
+ };
287
+ readonly 'bd-t': {
288
+ readonly prop: "borderTop";
289
+ };
290
+ readonly 'bd-b': {
291
+ readonly prop: "borderBottom";
292
+ };
293
+ readonly 'bd-l': {
294
+ readonly prop: "borderLeft";
295
+ };
296
+ readonly 'bd-r': {
297
+ readonly prop: "borderRight";
298
+ };
299
+ readonly bdrs: {
300
+ readonly prop: "borderRadius";
301
+ readonly presets: readonly ["0"];
302
+ readonly token: "bdrs";
303
+ readonly tokenClass: 1;
304
+ readonly bp: 1;
305
+ readonly alwaysVar: 1;
306
+ readonly overwriteBaseVar: 1;
307
+ };
308
+ readonly 'bdrs-tl': {
309
+ readonly prop: "borderTopLeftRadius";
310
+ readonly token: "bdrs";
311
+ };
312
+ readonly 'bdrs-tr': {
313
+ readonly prop: "borderTopRightRadius";
314
+ readonly token: "bdrs";
315
+ };
316
+ readonly 'bdrs-br': {
317
+ readonly prop: "borderBottomRightRadius";
318
+ readonly token: "bdrs";
319
+ };
320
+ readonly 'bdrs-bl': {
321
+ readonly prop: "borderBottomLeftRadius";
322
+ readonly token: "bdrs";
323
+ };
324
+ readonly 'bdrs-ss': {
325
+ readonly prop: "borderStartStartRadius";
326
+ readonly token: "bdrs";
327
+ };
328
+ readonly 'bdrs-se': {
329
+ readonly prop: "borderStartEndRadius";
330
+ readonly token: "bdrs";
331
+ };
332
+ readonly 'bdrs-es': {
333
+ readonly prop: "borderEndStartRadius";
334
+ readonly token: "bdrs";
335
+ };
336
+ readonly 'bdrs-ee': {
337
+ readonly prop: "borderEndEndRadius";
338
+ readonly token: "bdrs";
339
+ };
340
+ readonly bxsh: {
341
+ readonly prop: "boxShadow";
342
+ readonly utils: {
343
+ readonly 0: "none";
344
+ };
345
+ readonly token: "bxsh";
346
+ readonly tokenClass: 1;
347
+ readonly bp: 1;
348
+ readonly alwaysVar: 1;
349
+ };
350
+ readonly pos: {
351
+ readonly prop: "position";
352
+ readonly presets: readonly ["static", "fixed", "sticky"];
353
+ readonly utils: {
354
+ readonly rel: "relative";
355
+ readonly abs: "absolute";
356
+ };
357
+ };
358
+ readonly z: {
359
+ readonly prop: "zIndex";
360
+ readonly presets: readonly ["-1", "0", "1", "99"];
361
+ };
362
+ readonly t: {
363
+ readonly prop: "top";
364
+ readonly utils: {
365
+ readonly 0: "0%";
366
+ };
367
+ readonly presets: readonly ["50%", "100%"];
368
+ readonly token: "space";
369
+ };
370
+ readonly l: {
371
+ readonly prop: "left";
372
+ readonly utils: {
373
+ readonly 0: "0%";
374
+ };
375
+ readonly presets: readonly ["50%", "100%"];
376
+ readonly token: "space";
377
+ };
378
+ readonly r: {
379
+ readonly prop: "right";
380
+ readonly utils: {
381
+ readonly 0: "0%";
382
+ };
383
+ readonly presets: readonly ["50%", "100%"];
384
+ readonly token: "space";
385
+ };
386
+ readonly b: {
387
+ readonly prop: "bottom";
388
+ readonly utils: {
389
+ readonly 0: "0%";
390
+ };
391
+ readonly presets: readonly ["50%", "100%"];
392
+ readonly token: "space";
393
+ };
394
+ readonly i: {
395
+ readonly prop: "inset";
396
+ readonly utils: {
397
+ readonly 0: "0%";
398
+ };
399
+ readonly token: "space";
400
+ };
401
+ readonly 'i-x': {
402
+ readonly prop: "insetInline";
403
+ readonly token: "space";
404
+ };
405
+ readonly 'i-y': {
406
+ readonly prop: "insetBlock";
407
+ readonly token: "space";
408
+ };
409
+ readonly 'i-x-s': {
410
+ readonly prop: "insetInlineStart";
411
+ readonly token: "space";
412
+ };
413
+ readonly 'i-x-e': {
414
+ readonly prop: "insetInlineEnd";
415
+ readonly token: "space";
416
+ };
417
+ readonly 'i-y-s': {
418
+ readonly prop: "insetBlockStart";
419
+ readonly token: "space";
420
+ };
421
+ readonly 'i-y-e': {
422
+ readonly prop: "insetBlockEnd";
423
+ readonly token: "space";
424
+ };
425
+ readonly p: {
426
+ readonly prop: "padding";
427
+ readonly presets: readonly ["0"];
428
+ readonly token: "space";
429
+ readonly tokenClass: 1;
430
+ readonly alwaysVar: 1;
431
+ readonly overwriteBaseVar: 1;
432
+ readonly bp: 1;
433
+ };
434
+ readonly px: {
435
+ readonly prop: "paddingInline";
436
+ readonly presets: readonly ["0"];
437
+ readonly token: "space";
438
+ readonly tokenClass: 1;
439
+ readonly alwaysVar: 1;
440
+ readonly bp: 1;
441
+ };
442
+ readonly py: {
443
+ readonly prop: "paddingBlock";
444
+ readonly presets: readonly ["0"];
445
+ readonly token: "space";
446
+ readonly tokenClass: 1;
447
+ readonly alwaysVar: 1;
448
+ readonly bp: 1;
449
+ };
450
+ readonly 'px-s': {
451
+ readonly prop: "paddingInlineStart";
452
+ readonly token: "space";
453
+ readonly bp: 1;
454
+ };
455
+ readonly 'px-e': {
456
+ readonly prop: "paddingInlineEnd";
457
+ readonly token: "space";
458
+ readonly bp: 1;
459
+ };
460
+ readonly 'py-s': {
461
+ readonly prop: "paddingBlockStart";
462
+ readonly token: "space";
463
+ readonly bp: 1;
464
+ };
465
+ readonly 'py-e': {
466
+ readonly prop: "paddingBlockEnd";
467
+ readonly token: "space";
468
+ readonly bp: 1;
469
+ };
470
+ readonly pl: {
471
+ readonly prop: "paddingLeft";
472
+ readonly token: "space";
473
+ readonly bp: 1;
474
+ };
475
+ readonly pr: {
476
+ readonly prop: "paddingRight";
477
+ readonly token: "space";
478
+ readonly bp: 1;
479
+ };
480
+ readonly pt: {
481
+ readonly prop: "paddingTop";
482
+ readonly token: "space";
483
+ readonly bp: 1;
484
+ };
485
+ readonly pb: {
486
+ readonly prop: "paddingBottom";
487
+ readonly token: "space";
488
+ readonly bp: 1;
489
+ };
490
+ readonly m: {
491
+ readonly prop: "margin";
492
+ readonly presets: readonly ["auto", "0"];
493
+ readonly token: "space";
494
+ readonly tokenClass: 1;
495
+ readonly alwaysVar: 1;
496
+ readonly overwriteBaseVar: 1;
497
+ readonly bp: 1;
498
+ };
499
+ readonly mx: {
500
+ readonly prop: "marginInline";
501
+ readonly presets: readonly ["auto", "0"];
502
+ readonly token: "space";
503
+ readonly tokenClass: 1;
504
+ readonly alwaysVar: 1;
505
+ readonly bp: 1;
506
+ };
507
+ readonly my: {
508
+ readonly prop: "marginBlock";
509
+ readonly presets: readonly ["auto", "0"];
510
+ readonly token: "space";
511
+ readonly tokenClass: 1;
512
+ readonly alwaysVar: 1;
513
+ readonly bp: 1;
514
+ };
515
+ readonly 'mx-s': {
516
+ readonly prop: "marginInlineStart";
517
+ readonly presets: readonly ["auto"];
518
+ readonly token: "space";
519
+ readonly bp: 1;
520
+ };
521
+ readonly 'mx-e': {
522
+ readonly prop: "marginInlineEnd";
523
+ readonly presets: readonly ["auto"];
524
+ readonly token: "space";
525
+ readonly bp: 1;
526
+ };
527
+ readonly 'my-s': {
528
+ readonly prop: "marginBlockStart";
529
+ readonly token: "space";
530
+ readonly bp: 1;
531
+ readonly presets: readonly ["auto", "0"];
532
+ readonly tokenClass: 1;
533
+ };
534
+ readonly 'my-e': {
535
+ readonly prop: "marginBlockEnd";
536
+ readonly presets: readonly ["auto"];
537
+ readonly token: "space";
538
+ readonly bp: 1;
539
+ };
540
+ readonly ml: {
541
+ readonly prop: "marginLeft";
542
+ readonly token: "space";
543
+ readonly bp: 1;
544
+ };
545
+ readonly mr: {
546
+ readonly prop: "marginRight";
547
+ readonly token: "space";
548
+ readonly bp: 1;
549
+ };
550
+ readonly mt: {
551
+ readonly prop: "marginTop";
552
+ readonly token: "space";
553
+ readonly bp: 1;
554
+ };
555
+ readonly mb: {
556
+ readonly prop: "marginBottom";
557
+ readonly token: "space";
558
+ readonly bp: 1;
559
+ };
560
+ readonly g: {
561
+ readonly prop: "gap";
562
+ readonly presets: readonly ["0", "inherit"];
563
+ readonly exUtility: {
564
+ readonly inherit: {
565
+ readonly gap: "inherit";
566
+ };
567
+ };
568
+ readonly token: "space";
569
+ readonly tokenClass: 1;
570
+ readonly alwaysVar: 1;
571
+ readonly overwriteBaseVar: 1;
572
+ readonly bp: 1;
573
+ };
574
+ readonly 'g-x': {
575
+ readonly prop: "columnGap";
576
+ readonly token: "space";
577
+ readonly bp: 1;
578
+ };
579
+ readonly 'g-y': {
580
+ readonly prop: "rowGap";
581
+ readonly token: "space";
582
+ readonly bp: 1;
583
+ };
584
+ readonly cols: {
585
+ readonly isVar: 1;
586
+ readonly bp: 1;
587
+ };
588
+ readonly rows: {
589
+ readonly isVar: 1;
590
+ readonly bp: 1;
591
+ };
592
+ readonly fxf: {
593
+ readonly prop: "flexFlow";
594
+ };
595
+ readonly fxw: {
596
+ readonly prop: "flexWrap";
597
+ readonly presets: readonly ["wrap"];
598
+ readonly bp: 1;
599
+ };
600
+ readonly fxd: {
601
+ readonly prop: "flexDirection";
602
+ readonly utils: {
603
+ readonly col: "column";
604
+ readonly 'col-r': "column-reverse";
605
+ readonly 'row-r': "row-reverse";
606
+ };
607
+ readonly bp: 1;
608
+ };
609
+ readonly fx: {
610
+ readonly prop: "flex";
611
+ readonly presets: readonly ["1"];
612
+ readonly bp: 1;
613
+ };
614
+ readonly fxg: {
615
+ readonly prop: "flexGrow";
616
+ readonly presets: readonly ["1"];
617
+ };
618
+ readonly fxsh: {
619
+ readonly prop: "flexShrink";
620
+ readonly presets: readonly ["0"];
621
+ };
622
+ readonly fxb: {
623
+ readonly prop: "flexBasis";
624
+ readonly bp: 1;
625
+ };
626
+ readonly gt: {
627
+ readonly prop: "gridTemplate";
628
+ readonly presets: readonly ["repeat"];
629
+ readonly exUtility: {
630
+ readonly repeat: {
631
+ readonly 'grid-template': "repeat(var(--rows,1), 1fr) / repeat(var(--cols,1), 1fr)";
632
+ };
633
+ };
634
+ readonly bp: 1;
635
+ };
636
+ readonly gta: {
637
+ readonly prop: "gridTemplateAreas";
638
+ readonly bp: 1;
639
+ };
640
+ readonly gtc: {
641
+ readonly prop: "gridTemplateColumns";
642
+ readonly presets: readonly ["subgrid"];
643
+ readonly bp: 1;
644
+ };
645
+ readonly gtr: {
646
+ readonly prop: "gridTemplateRows";
647
+ readonly presets: readonly ["subgrid"];
648
+ readonly bp: 1;
649
+ };
650
+ readonly gaf: {
651
+ readonly prop: "gridAutoFlow";
652
+ readonly utils: {
653
+ readonly row: "row";
654
+ readonly col: "column";
655
+ };
656
+ readonly bp: 1;
657
+ };
658
+ readonly gac: {
659
+ readonly prop: "gridAutoColumns";
660
+ };
661
+ readonly gar: {
662
+ readonly prop: "gridAutoRows";
663
+ };
664
+ readonly ga: {
665
+ readonly prop: "gridArea";
666
+ readonly utils: {
667
+ readonly '1/1': "1 / 1";
668
+ };
669
+ readonly bp: 1;
670
+ };
671
+ readonly gc: {
672
+ readonly prop: "gridColumn";
673
+ readonly utils: {
674
+ readonly '1/-1': "1 / -1";
675
+ };
676
+ readonly bp: 1;
677
+ };
678
+ readonly gr: {
679
+ readonly prop: "gridRow";
680
+ readonly utils: {
681
+ readonly '1/-1': "1 / -1";
682
+ };
683
+ readonly bp: 1;
684
+ };
685
+ readonly gcs: {
686
+ readonly prop: "gridColumnStart";
687
+ };
688
+ readonly gce: {
689
+ readonly prop: "gridColumnEnd";
690
+ };
691
+ readonly grs: {
692
+ readonly prop: "gridRowStart";
693
+ };
694
+ readonly gre: {
695
+ readonly prop: "gridRowEnd";
696
+ };
697
+ readonly ai: {
698
+ readonly prop: "alignItems";
699
+ readonly presets: readonly ["start", "center", "end", "stretch"];
700
+ readonly utils: {
701
+ readonly 'flex-s': "flex-start";
702
+ readonly 'flex-e': "flex-end";
703
+ };
704
+ readonly shorthands: {
705
+ readonly s: "start";
706
+ readonly e: "end";
707
+ readonly c: "center";
708
+ readonly fs: "flex-s";
709
+ readonly fe: "flex-e";
710
+ };
711
+ readonly bp: 1;
712
+ };
713
+ readonly ac: {
714
+ readonly prop: "alignContent";
715
+ readonly presets: readonly ["start", "center", "end"];
716
+ readonly utils: {
717
+ readonly between: "space-between";
718
+ readonly 'flex-s': "flex-start";
719
+ readonly 'flex-e': "flex-end";
720
+ };
721
+ readonly shorthands: {
722
+ readonly s: "start";
723
+ readonly e: "end";
724
+ readonly c: "center";
725
+ readonly fs: "flex-s";
726
+ readonly fe: "flex-e";
727
+ };
728
+ readonly bp: 1;
729
+ };
730
+ readonly ji: {
731
+ readonly prop: "justifyItems";
732
+ readonly presets: readonly ["start", "center", "end", "stretch"];
733
+ readonly utils: {
734
+ readonly 'flex-s': "flex-start";
735
+ readonly 'flex-e': "flex-end";
736
+ };
737
+ readonly shorthands: {
738
+ readonly s: "start";
739
+ readonly e: "end";
740
+ readonly c: "center";
741
+ readonly fs: "flex-s";
742
+ readonly fe: "flex-e";
743
+ };
744
+ readonly bp: 1;
745
+ };
746
+ readonly jc: {
747
+ readonly prop: "justifyContent";
748
+ readonly presets: readonly ["start", "center", "end"];
749
+ readonly utils: {
750
+ readonly between: "space-between";
751
+ readonly 'flex-s': "flex-start";
752
+ readonly 'flex-e': "flex-end";
753
+ };
754
+ readonly shorthands: {
755
+ readonly s: "start";
756
+ readonly e: "end";
757
+ readonly c: "center";
758
+ readonly fs: "flex-s";
759
+ readonly fe: "flex-e";
760
+ };
761
+ readonly bp: 1;
762
+ };
763
+ readonly pi: {
764
+ readonly prop: "placeItems";
765
+ readonly presets: readonly ["start", "center", "end"];
766
+ };
767
+ readonly pc: {
768
+ readonly prop: "placeContent";
769
+ readonly presets: readonly ["start", "center", "end"];
770
+ };
771
+ readonly aslf: {
772
+ readonly prop: "alignSelf";
773
+ readonly presets: readonly ["start", "center", "end", "stretch"];
774
+ readonly shorthands: {
775
+ readonly s: "start";
776
+ readonly e: "end";
777
+ readonly c: "center";
778
+ readonly fs: "flex-s";
779
+ readonly fe: "flex-e";
780
+ };
781
+ };
782
+ readonly jslf: {
783
+ readonly prop: "justifySelf";
784
+ readonly presets: readonly ["start", "center", "end", "stretch"];
785
+ readonly shorthands: {
786
+ readonly s: "start";
787
+ readonly e: "end";
788
+ readonly c: "center";
789
+ readonly fs: "flex-s";
790
+ readonly fe: "flex-e";
791
+ };
792
+ };
793
+ readonly pslf: {
794
+ readonly prop: "placeSelf";
795
+ readonly presets: readonly ["start", "center", "end"];
796
+ };
797
+ readonly order: {
798
+ readonly prop: "order";
799
+ readonly presets: readonly ["0", "-1", "1"];
800
+ };
801
+ readonly ovwrap: {
802
+ readonly prop: "overflowWrap";
803
+ readonly utils: {
804
+ readonly any: "anywhere";
805
+ };
806
+ };
807
+ readonly whspace: {
808
+ readonly prop: "whiteSpace";
809
+ readonly presets: readonly ["nowrap"];
810
+ };
811
+ readonly float: {
812
+ readonly prop: "float";
813
+ readonly presets: readonly ["left", "right"];
814
+ };
815
+ readonly clear: {
816
+ readonly prop: "clear";
817
+ readonly presets: readonly ["both"];
818
+ };
819
+ readonly isolation: {
820
+ readonly prop: "isolation";
821
+ readonly presets: readonly ["isolate"];
822
+ };
823
+ };
824
+ states: {
825
+ readonly isContainer: "is--container";
826
+ readonly isWrapper: {
827
+ readonly className: "is--wrapper";
828
+ readonly preset: readonly ["s", "l"];
829
+ readonly presetClass: "-contentSize";
830
+ readonly customVar: "--contentSize";
831
+ readonly tokenKey: "sz";
832
+ };
833
+ readonly isLayer: "is--layer";
834
+ readonly isLinkBox: "is--linkBox";
835
+ readonly isSide: "is--side";
836
+ readonly isSkipFlow: "is--skipFlow";
837
+ readonly isVertical: "is--vertical";
838
+ readonly setGutter: "set--gutter";
839
+ readonly setShadow: "set--shadow";
840
+ readonly setHov: "set--hov";
841
+ readonly setTransition: "set--transition";
842
+ readonly setMask: {
843
+ readonly className: "set--mask";
844
+ readonly setStyles: (propVal: string) => {
845
+ '--maskImg': string;
846
+ };
847
+ };
848
+ readonly setPlain: "set--plain";
849
+ readonly setInnerRs: "set--innerRs";
850
+ readonly setBp: "set--bp";
851
+ readonly setCqUnit: "set--cqUnit";
852
+ };
853
+ };
854
+ export declare const TOKENS: {
855
+ readonly fz: readonly ["root", "base", "5xl", "4xl", "3xl", "2xl", "xl", "l", "m", "s", "xs", "2xs"];
856
+ readonly lh: readonly ["base", "xs", "s", "l"];
857
+ readonly hl: readonly ["base", "xs", "s", "l"];
858
+ readonly lts: readonly ["base", "s", "l"];
859
+ readonly ff: readonly ["base", "accent", "mono"];
860
+ readonly fw: readonly ["thin", "light", "normal", "medium", "bold", "black"];
861
+ readonly o: readonly ["-10", "-20", "-30"];
862
+ readonly bdrs: readonly ["5", "10", "20", "30", "40", "50", "99", "inner"];
863
+ readonly bxsh: readonly ["5", "10", "20", "30", "40", "50"];
864
+ readonly sz: readonly ["xs", "s", "m", "l", "xl", "min", "full", "container"];
865
+ readonly ar: readonly ["og"];
866
+ readonly space: {
867
+ readonly pre: "--s";
868
+ readonly values: readonly ["5", "10", "15", "20", "30", "40", "50", "60", "70", "80"];
869
+ };
870
+ readonly c: {
871
+ readonly pre: "--";
872
+ readonly values: readonly ["base", "base-2", "text", "text-2", "divider", "link", "brand", "accent"];
873
+ };
874
+ readonly palette: {
875
+ readonly pre: "--";
876
+ readonly values: readonly ["red", "blue", "green", "yellow", "purple", "orange", "pink", "gray", "white", "black", "keycolor"];
877
+ };
878
+ readonly writing: readonly ["vertical"];
879
+ readonly flow: readonly ["s", "l"];
880
+ readonly color: readonly ["base", "base-2", "text", "text-2", "divider", "link", "brand", "accent", "red", "blue", "green", "yellow", "purple", "orange", "pink", "gray", "white", "black", "keycolor"];
881
+ };
882
+ export declare const PROPS: {
883
+ readonly f: {
884
+ readonly prop: "font";
885
+ readonly presets: readonly ["inherit"];
886
+ };
887
+ readonly fz: {
888
+ readonly prop: "fontSize";
889
+ readonly token: "fz";
890
+ readonly tokenClass: 1;
891
+ readonly bp: 1;
892
+ readonly alwaysVar: 1;
893
+ };
894
+ readonly fw: {
895
+ readonly prop: "fontWeight";
896
+ readonly token: "fw";
897
+ readonly tokenClass: 1;
898
+ };
899
+ readonly ff: {
900
+ readonly prop: "fontFamily";
901
+ readonly token: "ff";
902
+ readonly tokenClass: 1;
903
+ };
904
+ readonly fs: {
905
+ readonly prop: "fontStyle";
906
+ readonly presets: readonly ["italic"];
907
+ readonly shorthands: {
908
+ readonly i: "italic";
909
+ };
910
+ };
911
+ readonly lh: {
912
+ readonly prop: "lineHeight";
913
+ readonly presets: readonly ["1"];
914
+ readonly token: "hl";
915
+ readonly tokenClass: 2;
916
+ readonly exUtility: {
917
+ readonly 1: "";
918
+ };
919
+ };
920
+ readonly hl: {
921
+ readonly isVar: 1;
922
+ readonly token: "hl";
923
+ readonly tokenClass: 0;
924
+ readonly bp: 1;
925
+ };
926
+ readonly lts: {
927
+ readonly prop: "letterSpacing";
928
+ readonly token: "lts";
929
+ readonly tokenClass: 1;
930
+ };
931
+ readonly ta: {
932
+ readonly prop: "textAlign";
933
+ readonly presets: readonly ["center", "left", "right"];
934
+ };
935
+ readonly td: {
936
+ readonly prop: "textDecoration";
937
+ readonly utils: {
938
+ readonly none: "none";
939
+ };
940
+ };
941
+ readonly tt: {
942
+ readonly prop: "textTransform";
943
+ readonly utils: {
944
+ readonly upper: "uppercase";
945
+ readonly lower: "lowercase";
946
+ };
947
+ };
948
+ readonly d: {
949
+ readonly prop: "display";
950
+ readonly presets: readonly ["none", "block"];
951
+ readonly utils: {
952
+ readonly 'in-flex': "inline-flex";
953
+ };
954
+ readonly bp: 1;
955
+ };
956
+ readonly o: {
957
+ readonly prop: "opacity";
958
+ readonly presets: readonly ["0"];
959
+ readonly token: "o";
960
+ readonly tokenClass: 1;
961
+ };
962
+ readonly v: {
963
+ readonly prop: "visibility";
964
+ readonly presets: readonly ["hidden"];
965
+ };
966
+ readonly ov: {
967
+ readonly prop: "overflow";
968
+ readonly presets: readonly ["hidden", "auto", "clip"];
969
+ };
970
+ readonly 'ov-x': {
971
+ readonly prop: "overflowX";
972
+ readonly presets: readonly ["clip", "auto", "scroll"];
973
+ };
974
+ readonly 'ov-y': {
975
+ readonly prop: "overflowY";
976
+ readonly presets: readonly ["clip", "auto", "scroll"];
977
+ };
978
+ readonly ar: {
979
+ readonly prop: "aspectRatio";
980
+ readonly presets: readonly ["21/9", "16/9", "3/2", "1/1"];
981
+ readonly token: "ar";
982
+ readonly tokenClass: 1;
983
+ readonly bp: 1;
984
+ };
985
+ readonly w: {
986
+ readonly prop: "width";
987
+ readonly utils: {
988
+ readonly fit: "fit-content";
989
+ };
990
+ readonly presets: readonly ["100%"];
991
+ readonly token: "sz";
992
+ readonly bp: 1;
993
+ };
994
+ readonly h: {
995
+ readonly prop: "height";
996
+ readonly utils: {
997
+ readonly fit: "fit-content";
998
+ };
999
+ readonly presets: readonly ["100%"];
1000
+ readonly token: "sz";
1001
+ readonly bp: 1;
1002
+ };
1003
+ readonly 'min-w': {
1004
+ readonly prop: "minWidth";
1005
+ readonly presets: readonly ["100%"];
1006
+ readonly token: "sz";
1007
+ readonly bp: 1;
1008
+ };
1009
+ readonly 'max-w': {
1010
+ readonly prop: "maxWidth";
1011
+ readonly presets: readonly ["100%"];
1012
+ readonly token: "sz";
1013
+ readonly bp: 1;
1014
+ };
1015
+ readonly 'min-h': {
1016
+ readonly prop: "minHeight";
1017
+ readonly presets: readonly ["100%"];
1018
+ readonly token: "sz";
1019
+ readonly bp: 1;
1020
+ };
1021
+ readonly 'max-h': {
1022
+ readonly prop: "maxHeight";
1023
+ readonly presets: readonly ["100%"];
1024
+ readonly token: "sz";
1025
+ readonly bp: 1;
1026
+ };
1027
+ readonly sz: {
1028
+ readonly prop: "inlineSize";
1029
+ readonly token: "sz";
1030
+ };
1031
+ readonly 'min-sz': {
1032
+ readonly prop: "minInlineSize";
1033
+ readonly token: "sz";
1034
+ };
1035
+ readonly 'max-sz': {
1036
+ readonly prop: "maxInlineSize";
1037
+ readonly token: "sz";
1038
+ readonly tokenClass: 1;
1039
+ readonly exUtility: {
1040
+ readonly min: "";
1041
+ readonly full: "";
1042
+ readonly container: "";
1043
+ };
1044
+ };
1045
+ readonly ysz: {
1046
+ readonly prop: "blockSize";
1047
+ readonly token: "sz";
1048
+ };
1049
+ readonly 'min-ysz': {
1050
+ readonly prop: "minBlockSize";
1051
+ readonly token: "sz";
1052
+ };
1053
+ readonly 'max-ysz': {
1054
+ readonly prop: "maxBlockSize";
1055
+ readonly token: "sz";
1056
+ };
1057
+ readonly bg: {
1058
+ readonly prop: "background";
1059
+ readonly bp: 1;
1060
+ };
1061
+ readonly bgi: {
1062
+ readonly prop: "backgroundImage";
1063
+ };
1064
+ readonly bgr: {
1065
+ readonly prop: "backgroundRepeat";
1066
+ readonly presets: readonly ["no-repeat"];
1067
+ };
1068
+ readonly bgp: {
1069
+ readonly prop: "backgroundPosition";
1070
+ readonly presets: readonly ["center"];
1071
+ };
1072
+ readonly bgsz: {
1073
+ readonly prop: "backgroundSize";
1074
+ readonly presets: readonly ["cover", "contain"];
1075
+ };
1076
+ readonly bgc: {
1077
+ readonly prop: "backgroundColor";
1078
+ readonly presets: readonly ["base", "base-2", "text", "brand", "accent", "inherit", "transparent"];
1079
+ readonly token: "color";
1080
+ readonly exUtility: {
1081
+ readonly inherit: {
1082
+ readonly 'background-color': "inherit";
1083
+ };
1084
+ };
1085
+ readonly alwaysVar: 1;
1086
+ };
1087
+ readonly c: {
1088
+ readonly prop: "color";
1089
+ readonly presets: readonly ["base", "text", "text-2", "brand", "accent", "inherit"];
1090
+ readonly token: "color";
1091
+ readonly exUtility: {
1092
+ readonly inherit: {
1093
+ readonly color: "inherit";
1094
+ };
1095
+ };
1096
+ readonly alwaysVar: 1;
1097
+ };
1098
+ readonly keycolor: {
1099
+ readonly isVar: 1;
1100
+ readonly token: "color";
1101
+ };
1102
+ readonly bd: {
1103
+ readonly prop: "border";
1104
+ readonly presets: readonly ["none"];
1105
+ };
1106
+ readonly bds: {
1107
+ readonly isVar: 1;
1108
+ readonly presets: readonly ["dashed", "dotted", "double"];
1109
+ };
1110
+ readonly bdc: {
1111
+ readonly isVar: 1;
1112
+ readonly presets: readonly ["brand", "accent", "divider", "inherit", "transparent"];
1113
+ readonly utils: {
1114
+ readonly cc: "currentColor";
1115
+ };
1116
+ readonly token: "color";
1117
+ };
1118
+ readonly bdw: {
1119
+ readonly isVar: 1;
1120
+ readonly bp: 1;
1121
+ };
1122
+ readonly 'bd-x': {
1123
+ readonly prop: "borderInline";
1124
+ };
1125
+ readonly 'bd-y': {
1126
+ readonly prop: "borderBlock";
1127
+ };
1128
+ readonly 'bd-x-s': {
1129
+ readonly prop: "borderInlineStart";
1130
+ };
1131
+ readonly 'bd-x-e': {
1132
+ readonly prop: "borderInlineEnd";
1133
+ };
1134
+ readonly 'bd-y-s': {
1135
+ readonly prop: "borderBlockStart";
1136
+ };
1137
+ readonly 'bd-y-e': {
1138
+ readonly prop: "borderBlockEnd";
1139
+ };
1140
+ readonly 'bd-t': {
1141
+ readonly prop: "borderTop";
1142
+ };
1143
+ readonly 'bd-b': {
1144
+ readonly prop: "borderBottom";
1145
+ };
1146
+ readonly 'bd-l': {
1147
+ readonly prop: "borderLeft";
1148
+ };
1149
+ readonly 'bd-r': {
1150
+ readonly prop: "borderRight";
1151
+ };
1152
+ readonly bdrs: {
1153
+ readonly prop: "borderRadius";
1154
+ readonly presets: readonly ["0"];
1155
+ readonly token: "bdrs";
1156
+ readonly tokenClass: 1;
1157
+ readonly bp: 1;
1158
+ readonly alwaysVar: 1;
1159
+ readonly overwriteBaseVar: 1;
1160
+ };
1161
+ readonly 'bdrs-tl': {
1162
+ readonly prop: "borderTopLeftRadius";
1163
+ readonly token: "bdrs";
1164
+ };
1165
+ readonly 'bdrs-tr': {
1166
+ readonly prop: "borderTopRightRadius";
1167
+ readonly token: "bdrs";
1168
+ };
1169
+ readonly 'bdrs-br': {
1170
+ readonly prop: "borderBottomRightRadius";
1171
+ readonly token: "bdrs";
1172
+ };
1173
+ readonly 'bdrs-bl': {
1174
+ readonly prop: "borderBottomLeftRadius";
1175
+ readonly token: "bdrs";
1176
+ };
1177
+ readonly 'bdrs-ss': {
1178
+ readonly prop: "borderStartStartRadius";
1179
+ readonly token: "bdrs";
1180
+ };
1181
+ readonly 'bdrs-se': {
1182
+ readonly prop: "borderStartEndRadius";
1183
+ readonly token: "bdrs";
1184
+ };
1185
+ readonly 'bdrs-es': {
1186
+ readonly prop: "borderEndStartRadius";
1187
+ readonly token: "bdrs";
1188
+ };
1189
+ readonly 'bdrs-ee': {
1190
+ readonly prop: "borderEndEndRadius";
1191
+ readonly token: "bdrs";
1192
+ };
1193
+ readonly bxsh: {
1194
+ readonly prop: "boxShadow";
1195
+ readonly utils: {
1196
+ readonly 0: "none";
1197
+ };
1198
+ readonly token: "bxsh";
1199
+ readonly tokenClass: 1;
1200
+ readonly bp: 1;
1201
+ readonly alwaysVar: 1;
1202
+ };
1203
+ readonly pos: {
1204
+ readonly prop: "position";
1205
+ readonly presets: readonly ["static", "fixed", "sticky"];
1206
+ readonly utils: {
1207
+ readonly rel: "relative";
1208
+ readonly abs: "absolute";
1209
+ };
1210
+ };
1211
+ readonly z: {
1212
+ readonly prop: "zIndex";
1213
+ readonly presets: readonly ["-1", "0", "1", "99"];
1214
+ };
1215
+ readonly t: {
1216
+ readonly prop: "top";
1217
+ readonly utils: {
1218
+ readonly 0: "0%";
1219
+ };
1220
+ readonly presets: readonly ["50%", "100%"];
1221
+ readonly token: "space";
1222
+ };
1223
+ readonly l: {
1224
+ readonly prop: "left";
1225
+ readonly utils: {
1226
+ readonly 0: "0%";
1227
+ };
1228
+ readonly presets: readonly ["50%", "100%"];
1229
+ readonly token: "space";
1230
+ };
1231
+ readonly r: {
1232
+ readonly prop: "right";
1233
+ readonly utils: {
1234
+ readonly 0: "0%";
1235
+ };
1236
+ readonly presets: readonly ["50%", "100%"];
1237
+ readonly token: "space";
1238
+ };
1239
+ readonly b: {
1240
+ readonly prop: "bottom";
1241
+ readonly utils: {
1242
+ readonly 0: "0%";
1243
+ };
1244
+ readonly presets: readonly ["50%", "100%"];
1245
+ readonly token: "space";
1246
+ };
1247
+ readonly i: {
1248
+ readonly prop: "inset";
1249
+ readonly utils: {
1250
+ readonly 0: "0%";
1251
+ };
1252
+ readonly token: "space";
1253
+ };
1254
+ readonly 'i-x': {
1255
+ readonly prop: "insetInline";
1256
+ readonly token: "space";
1257
+ };
1258
+ readonly 'i-y': {
1259
+ readonly prop: "insetBlock";
1260
+ readonly token: "space";
1261
+ };
1262
+ readonly 'i-x-s': {
1263
+ readonly prop: "insetInlineStart";
1264
+ readonly token: "space";
1265
+ };
1266
+ readonly 'i-x-e': {
1267
+ readonly prop: "insetInlineEnd";
1268
+ readonly token: "space";
1269
+ };
1270
+ readonly 'i-y-s': {
1271
+ readonly prop: "insetBlockStart";
1272
+ readonly token: "space";
1273
+ };
1274
+ readonly 'i-y-e': {
1275
+ readonly prop: "insetBlockEnd";
1276
+ readonly token: "space";
1277
+ };
1278
+ readonly p: {
1279
+ readonly prop: "padding";
1280
+ readonly presets: readonly ["0"];
1281
+ readonly token: "space";
1282
+ readonly tokenClass: 1;
1283
+ readonly alwaysVar: 1;
1284
+ readonly overwriteBaseVar: 1;
1285
+ readonly bp: 1;
1286
+ };
1287
+ readonly px: {
1288
+ readonly prop: "paddingInline";
1289
+ readonly presets: readonly ["0"];
1290
+ readonly token: "space";
1291
+ readonly tokenClass: 1;
1292
+ readonly alwaysVar: 1;
1293
+ readonly bp: 1;
1294
+ };
1295
+ readonly py: {
1296
+ readonly prop: "paddingBlock";
1297
+ readonly presets: readonly ["0"];
1298
+ readonly token: "space";
1299
+ readonly tokenClass: 1;
1300
+ readonly alwaysVar: 1;
1301
+ readonly bp: 1;
1302
+ };
1303
+ readonly 'px-s': {
1304
+ readonly prop: "paddingInlineStart";
1305
+ readonly token: "space";
1306
+ readonly bp: 1;
1307
+ };
1308
+ readonly 'px-e': {
1309
+ readonly prop: "paddingInlineEnd";
1310
+ readonly token: "space";
1311
+ readonly bp: 1;
1312
+ };
1313
+ readonly 'py-s': {
1314
+ readonly prop: "paddingBlockStart";
1315
+ readonly token: "space";
1316
+ readonly bp: 1;
1317
+ };
1318
+ readonly 'py-e': {
1319
+ readonly prop: "paddingBlockEnd";
1320
+ readonly token: "space";
1321
+ readonly bp: 1;
1322
+ };
1323
+ readonly pl: {
1324
+ readonly prop: "paddingLeft";
1325
+ readonly token: "space";
1326
+ readonly bp: 1;
1327
+ };
1328
+ readonly pr: {
1329
+ readonly prop: "paddingRight";
1330
+ readonly token: "space";
1331
+ readonly bp: 1;
1332
+ };
1333
+ readonly pt: {
1334
+ readonly prop: "paddingTop";
1335
+ readonly token: "space";
1336
+ readonly bp: 1;
1337
+ };
1338
+ readonly pb: {
1339
+ readonly prop: "paddingBottom";
1340
+ readonly token: "space";
1341
+ readonly bp: 1;
1342
+ };
1343
+ readonly m: {
1344
+ readonly prop: "margin";
1345
+ readonly presets: readonly ["auto", "0"];
1346
+ readonly token: "space";
1347
+ readonly tokenClass: 1;
1348
+ readonly alwaysVar: 1;
1349
+ readonly overwriteBaseVar: 1;
1350
+ readonly bp: 1;
1351
+ };
1352
+ readonly mx: {
1353
+ readonly prop: "marginInline";
1354
+ readonly presets: readonly ["auto", "0"];
1355
+ readonly token: "space";
1356
+ readonly tokenClass: 1;
1357
+ readonly alwaysVar: 1;
1358
+ readonly bp: 1;
1359
+ };
1360
+ readonly my: {
1361
+ readonly prop: "marginBlock";
1362
+ readonly presets: readonly ["auto", "0"];
1363
+ readonly token: "space";
1364
+ readonly tokenClass: 1;
1365
+ readonly alwaysVar: 1;
1366
+ readonly bp: 1;
1367
+ };
1368
+ readonly 'mx-s': {
1369
+ readonly prop: "marginInlineStart";
1370
+ readonly presets: readonly ["auto"];
1371
+ readonly token: "space";
1372
+ readonly bp: 1;
1373
+ };
1374
+ readonly 'mx-e': {
1375
+ readonly prop: "marginInlineEnd";
1376
+ readonly presets: readonly ["auto"];
1377
+ readonly token: "space";
1378
+ readonly bp: 1;
1379
+ };
1380
+ readonly 'my-s': {
1381
+ readonly prop: "marginBlockStart";
1382
+ readonly token: "space";
1383
+ readonly bp: 1;
1384
+ readonly presets: readonly ["auto", "0"];
1385
+ readonly tokenClass: 1;
1386
+ };
1387
+ readonly 'my-e': {
1388
+ readonly prop: "marginBlockEnd";
1389
+ readonly presets: readonly ["auto"];
1390
+ readonly token: "space";
1391
+ readonly bp: 1;
1392
+ };
1393
+ readonly ml: {
1394
+ readonly prop: "marginLeft";
1395
+ readonly token: "space";
1396
+ readonly bp: 1;
1397
+ };
1398
+ readonly mr: {
1399
+ readonly prop: "marginRight";
1400
+ readonly token: "space";
1401
+ readonly bp: 1;
1402
+ };
1403
+ readonly mt: {
1404
+ readonly prop: "marginTop";
1405
+ readonly token: "space";
1406
+ readonly bp: 1;
1407
+ };
1408
+ readonly mb: {
1409
+ readonly prop: "marginBottom";
1410
+ readonly token: "space";
1411
+ readonly bp: 1;
1412
+ };
1413
+ readonly g: {
1414
+ readonly prop: "gap";
1415
+ readonly presets: readonly ["0", "inherit"];
1416
+ readonly exUtility: {
1417
+ readonly inherit: {
1418
+ readonly gap: "inherit";
1419
+ };
1420
+ };
1421
+ readonly token: "space";
1422
+ readonly tokenClass: 1;
1423
+ readonly alwaysVar: 1;
1424
+ readonly overwriteBaseVar: 1;
1425
+ readonly bp: 1;
1426
+ };
1427
+ readonly 'g-x': {
1428
+ readonly prop: "columnGap";
1429
+ readonly token: "space";
1430
+ readonly bp: 1;
1431
+ };
1432
+ readonly 'g-y': {
1433
+ readonly prop: "rowGap";
1434
+ readonly token: "space";
1435
+ readonly bp: 1;
1436
+ };
1437
+ readonly cols: {
1438
+ readonly isVar: 1;
1439
+ readonly bp: 1;
1440
+ };
1441
+ readonly rows: {
1442
+ readonly isVar: 1;
1443
+ readonly bp: 1;
1444
+ };
1445
+ readonly fxf: {
1446
+ readonly prop: "flexFlow";
1447
+ };
1448
+ readonly fxw: {
1449
+ readonly prop: "flexWrap";
1450
+ readonly presets: readonly ["wrap"];
1451
+ readonly bp: 1;
1452
+ };
1453
+ readonly fxd: {
1454
+ readonly prop: "flexDirection";
1455
+ readonly utils: {
1456
+ readonly col: "column";
1457
+ readonly 'col-r': "column-reverse";
1458
+ readonly 'row-r': "row-reverse";
1459
+ };
1460
+ readonly bp: 1;
1461
+ };
1462
+ readonly fx: {
1463
+ readonly prop: "flex";
1464
+ readonly presets: readonly ["1"];
1465
+ readonly bp: 1;
1466
+ };
1467
+ readonly fxg: {
1468
+ readonly prop: "flexGrow";
1469
+ readonly presets: readonly ["1"];
1470
+ };
1471
+ readonly fxsh: {
1472
+ readonly prop: "flexShrink";
1473
+ readonly presets: readonly ["0"];
1474
+ };
1475
+ readonly fxb: {
1476
+ readonly prop: "flexBasis";
1477
+ readonly bp: 1;
1478
+ };
1479
+ readonly gt: {
1480
+ readonly prop: "gridTemplate";
1481
+ readonly presets: readonly ["repeat"];
1482
+ readonly exUtility: {
1483
+ readonly repeat: {
1484
+ readonly 'grid-template': "repeat(var(--rows,1), 1fr) / repeat(var(--cols,1), 1fr)";
1485
+ };
1486
+ };
1487
+ readonly bp: 1;
1488
+ };
1489
+ readonly gta: {
1490
+ readonly prop: "gridTemplateAreas";
1491
+ readonly bp: 1;
1492
+ };
1493
+ readonly gtc: {
1494
+ readonly prop: "gridTemplateColumns";
1495
+ readonly presets: readonly ["subgrid"];
1496
+ readonly bp: 1;
1497
+ };
1498
+ readonly gtr: {
1499
+ readonly prop: "gridTemplateRows";
1500
+ readonly presets: readonly ["subgrid"];
1501
+ readonly bp: 1;
1502
+ };
1503
+ readonly gaf: {
1504
+ readonly prop: "gridAutoFlow";
1505
+ readonly utils: {
1506
+ readonly row: "row";
1507
+ readonly col: "column";
1508
+ };
1509
+ readonly bp: 1;
1510
+ };
1511
+ readonly gac: {
1512
+ readonly prop: "gridAutoColumns";
1513
+ };
1514
+ readonly gar: {
1515
+ readonly prop: "gridAutoRows";
1516
+ };
1517
+ readonly ga: {
1518
+ readonly prop: "gridArea";
1519
+ readonly utils: {
1520
+ readonly '1/1': "1 / 1";
1521
+ };
1522
+ readonly bp: 1;
1523
+ };
1524
+ readonly gc: {
1525
+ readonly prop: "gridColumn";
1526
+ readonly utils: {
1527
+ readonly '1/-1': "1 / -1";
1528
+ };
1529
+ readonly bp: 1;
1530
+ };
1531
+ readonly gr: {
1532
+ readonly prop: "gridRow";
1533
+ readonly utils: {
1534
+ readonly '1/-1': "1 / -1";
1535
+ };
1536
+ readonly bp: 1;
1537
+ };
1538
+ readonly gcs: {
1539
+ readonly prop: "gridColumnStart";
1540
+ };
1541
+ readonly gce: {
1542
+ readonly prop: "gridColumnEnd";
1543
+ };
1544
+ readonly grs: {
1545
+ readonly prop: "gridRowStart";
1546
+ };
1547
+ readonly gre: {
1548
+ readonly prop: "gridRowEnd";
1549
+ };
1550
+ readonly ai: {
1551
+ readonly prop: "alignItems";
1552
+ readonly presets: readonly ["start", "center", "end", "stretch"];
1553
+ readonly utils: {
1554
+ readonly 'flex-s': "flex-start";
1555
+ readonly 'flex-e': "flex-end";
1556
+ };
1557
+ readonly shorthands: {
1558
+ readonly s: "start";
1559
+ readonly e: "end";
1560
+ readonly c: "center";
1561
+ readonly fs: "flex-s";
1562
+ readonly fe: "flex-e";
1563
+ };
1564
+ readonly bp: 1;
1565
+ };
1566
+ readonly ac: {
1567
+ readonly prop: "alignContent";
1568
+ readonly presets: readonly ["start", "center", "end"];
1569
+ readonly utils: {
1570
+ readonly between: "space-between";
1571
+ readonly 'flex-s': "flex-start";
1572
+ readonly 'flex-e': "flex-end";
1573
+ };
1574
+ readonly shorthands: {
1575
+ readonly s: "start";
1576
+ readonly e: "end";
1577
+ readonly c: "center";
1578
+ readonly fs: "flex-s";
1579
+ readonly fe: "flex-e";
1580
+ };
1581
+ readonly bp: 1;
1582
+ };
1583
+ readonly ji: {
1584
+ readonly prop: "justifyItems";
1585
+ readonly presets: readonly ["start", "center", "end", "stretch"];
1586
+ readonly utils: {
1587
+ readonly 'flex-s': "flex-start";
1588
+ readonly 'flex-e': "flex-end";
1589
+ };
1590
+ readonly shorthands: {
1591
+ readonly s: "start";
1592
+ readonly e: "end";
1593
+ readonly c: "center";
1594
+ readonly fs: "flex-s";
1595
+ readonly fe: "flex-e";
1596
+ };
1597
+ readonly bp: 1;
1598
+ };
1599
+ readonly jc: {
1600
+ readonly prop: "justifyContent";
1601
+ readonly presets: readonly ["start", "center", "end"];
1602
+ readonly utils: {
1603
+ readonly between: "space-between";
1604
+ readonly 'flex-s': "flex-start";
1605
+ readonly 'flex-e': "flex-end";
1606
+ };
1607
+ readonly shorthands: {
1608
+ readonly s: "start";
1609
+ readonly e: "end";
1610
+ readonly c: "center";
1611
+ readonly fs: "flex-s";
1612
+ readonly fe: "flex-e";
1613
+ };
1614
+ readonly bp: 1;
1615
+ };
1616
+ readonly pi: {
1617
+ readonly prop: "placeItems";
1618
+ readonly presets: readonly ["start", "center", "end"];
1619
+ };
1620
+ readonly pc: {
1621
+ readonly prop: "placeContent";
1622
+ readonly presets: readonly ["start", "center", "end"];
1623
+ };
1624
+ readonly aslf: {
1625
+ readonly prop: "alignSelf";
1626
+ readonly presets: readonly ["start", "center", "end", "stretch"];
1627
+ readonly shorthands: {
1628
+ readonly s: "start";
1629
+ readonly e: "end";
1630
+ readonly c: "center";
1631
+ readonly fs: "flex-s";
1632
+ readonly fe: "flex-e";
1633
+ };
1634
+ };
1635
+ readonly jslf: {
1636
+ readonly prop: "justifySelf";
1637
+ readonly presets: readonly ["start", "center", "end", "stretch"];
1638
+ readonly shorthands: {
1639
+ readonly s: "start";
1640
+ readonly e: "end";
1641
+ readonly c: "center";
1642
+ readonly fs: "flex-s";
1643
+ readonly fe: "flex-e";
1644
+ };
1645
+ };
1646
+ readonly pslf: {
1647
+ readonly prop: "placeSelf";
1648
+ readonly presets: readonly ["start", "center", "end"];
1649
+ };
1650
+ readonly order: {
1651
+ readonly prop: "order";
1652
+ readonly presets: readonly ["0", "-1", "1"];
1653
+ };
1654
+ readonly ovwrap: {
1655
+ readonly prop: "overflowWrap";
1656
+ readonly utils: {
1657
+ readonly any: "anywhere";
1658
+ };
1659
+ };
1660
+ readonly whspace: {
1661
+ readonly prop: "whiteSpace";
1662
+ readonly presets: readonly ["nowrap"];
1663
+ };
1664
+ readonly float: {
1665
+ readonly prop: "float";
1666
+ readonly presets: readonly ["left", "right"];
1667
+ };
1668
+ readonly clear: {
1669
+ readonly prop: "clear";
1670
+ readonly presets: readonly ["both"];
1671
+ };
1672
+ readonly isolation: {
1673
+ readonly prop: "isolation";
1674
+ readonly presets: readonly ["isolate"];
1675
+ };
1676
+ };
1677
+ export declare const STATES: {
1678
+ readonly isContainer: "is--container";
1679
+ readonly isWrapper: {
1680
+ readonly className: "is--wrapper";
1681
+ readonly preset: readonly ["s", "l"];
1682
+ readonly presetClass: "-contentSize";
1683
+ readonly customVar: "--contentSize";
1684
+ readonly tokenKey: "sz";
1685
+ };
1686
+ readonly isLayer: "is--layer";
1687
+ readonly isLinkBox: "is--linkBox";
1688
+ readonly isSide: "is--side";
1689
+ readonly isSkipFlow: "is--skipFlow";
1690
+ readonly isVertical: "is--vertical";
1691
+ readonly setGutter: "set--gutter";
1692
+ readonly setShadow: "set--shadow";
1693
+ readonly setHov: "set--hov";
1694
+ readonly setTransition: "set--transition";
1695
+ readonly setMask: {
1696
+ readonly className: "set--mask";
1697
+ readonly setStyles: (propVal: string) => {
1698
+ '--maskImg': string;
1699
+ };
1700
+ };
1701
+ readonly setPlain: "set--plain";
1702
+ readonly setInnerRs: "set--innerRs";
1703
+ readonly setBp: "set--bp";
1704
+ readonly setCqUnit: "set--cqUnit";
1705
+ };
1706
+ export declare const BREAK_POINTS: readonly ["sm", "md", "lg", "xl"];
1707
+ export declare const BREAK_POINTS_ALL: readonly ["base", "sm", "md", "lg", "xl"];