@cronocode/react-box 1.5.6 → 1.5.8

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 (39) hide show
  1. package/baseSvg.module.css.cjs +1 -1
  2. package/baseSvg.module.css.mjs +2 -2
  3. package/box.cjs +1 -1
  4. package/box.mjs +10 -10
  5. package/box.module.css.cjs +1 -1
  6. package/box.module.css.mjs +2 -2
  7. package/components/dox.cjs +1 -0
  8. package/components/dox.d.ts +1463 -0
  9. package/components/dox.mjs +854 -0
  10. package/components/grid.cjs +1 -0
  11. package/components/grid.d.ts +4 -0
  12. package/components/grid.mjs +14 -0
  13. package/package.json +5 -3
  14. package/plugins.cjs +6 -5
  15. package/plugins.mjs +6 -5
  16. package/style.css +1 -1
  17. package/theme.cjs +1 -1
  18. package/{src/theme.d.ts → theme.d.ts} +1 -1
  19. package/theme.mjs +2 -2
  20. package/{src/types.d.ts → types.d.ts} +48 -37
  21. package/utils/utils.cjs +1 -1
  22. package/utils/utils.mjs +90 -70
  23. package/src/index.d.ts +0 -0
  24. /package/{src/box.d.ts → box.d.ts} +0 -0
  25. /package/{src/components → components}/baseSvg.d.ts +0 -0
  26. /package/{src/components → components}/button.d.ts +0 -0
  27. /package/{src/components → components}/checkbox.d.ts +0 -0
  28. /package/{src/components → components}/dataGrid.d.ts +0 -0
  29. /package/{src/components → components}/flex.d.ts +0 -0
  30. /package/{src/components → components}/form.d.ts +0 -0
  31. /package/{src/components → components}/radioButton.d.ts +0 -0
  32. /package/{src/components → components}/textarea.d.ts +0 -0
  33. /package/{src/components → components}/textbox.d.ts +0 -0
  34. /package/{src/components → components}/tooltip.d.ts +0 -0
  35. /package/{src/hooks → hooks}/usePortalContainer.d.ts +0 -0
  36. /package/{src/plugins.d.ts → plugins.d.ts} +0 -0
  37. /package/{src/utils → utils}/className/classNameUtils.d.ts +0 -0
  38. /package/{src/utils → utils}/form/formUtils.d.ts +0 -0
  39. /package/{src/utils → utils}/object/objectUtils.d.ts +0 -0
@@ -0,0 +1,1463 @@
1
+ import { DoxStyleProps } from './doxStyles';
2
+ export default function useStyles(props: DoxStyleProps): (string | undefined)[];
3
+ function get(key: StyleKey | AliasKey, value: string | number | boolean): string | undefined;
4
+ function flush(): void;
5
+ }
6
+ [K];
7
+ };
8
+ type Activated<T> = {
9
+ [K in keyof T as K extends string ? `${K}A` : never]: T[K];
10
+ };
11
+ export interface StyleValues {
12
+ values: Readonly<Array<string | number | boolean>>;
13
+ formatClassName?: (key: string, value: string | number | boolean) => string;
14
+ formatValue?: (key: string, value: string | number | boolean) => string;
15
+ }
16
+ export interface ThemeItem {
17
+ cssNames: string[];
18
+ formatValue: (key: string, value: string | number | boolean) => string;
19
+ }
20
+ export declare const pseudoClassSuffixes: readonly ["H", "F", "A"];
21
+ export type PseudoClassSuffix = (typeof pseudoClassSuffixes)[number];
22
+ export interface StyleItem {
23
+ cssNames: string[];
24
+ values1: StyleValues;
25
+ values2: StyleValues;
26
+ values3: StyleValues;
27
+ pseudoSuffix?: PseudoClassSuffix;
28
+ isThemeStyle?: boolean;
29
+ }
30
+ declare namespace ValueFormatters {
31
+ function rem(_key: string, value: string | number | boolean): string;
32
+ function px(_key: string, value: string | number | boolean): string;
33
+ function fraction(_key: string, value: string | number | boolean): string;
34
+ function heightWidth(key: string, value: string | number | boolean): string;
35
+ function variables(prefix: string): (key: string, value: string | number | boolean) => string;
36
+ }
37
+ declare namespace ClassNameFormatters {
38
+ function fraction(key: string, value: string | number | boolean): string;
39
+ }
40
+ export declare const themeStyles: {
41
+ shadow: {
42
+ cssNames: string[];
43
+ formatValue: (key: string, value: string | number | boolean) => string;
44
+ };
45
+ background: {
46
+ cssNames: string[];
47
+ formatValue: (key: string, value: string | number | boolean) => string;
48
+ };
49
+ color: {
50
+ cssNames: string[];
51
+ formatValue: (key: string, value: string | number | boolean) => string;
52
+ };
53
+ bgColor: {
54
+ cssNames: string[];
55
+ formatValue: (key: string, value: string | number | boolean) => string;
56
+ };
57
+ borderColor: {
58
+ cssNames: string[];
59
+ formatValue: (key: string, value: string | number | boolean) => string;
60
+ };
61
+ outlineColor: {
62
+ cssNames: string[];
63
+ formatValue: (key: string, value: string | number | boolean) => string;
64
+ };
65
+ };
66
+ export declare const doxStyles: {
67
+ display: {
68
+ cssNames: string[];
69
+ values1: {
70
+ values: readonly ["none", "block", "inline-block", "flex", "inline-flex", "grid", "inline-grid", "contents"];
71
+ };
72
+ values2: {
73
+ values: readonly [];
74
+ };
75
+ values3: {
76
+ values: readonly [];
77
+ };
78
+ };
79
+ boxSizing: {
80
+ cssNames: string[];
81
+ values1: {
82
+ values: readonly ["border-box", "content-box"];
83
+ };
84
+ values2: {
85
+ values: readonly [];
86
+ };
87
+ values3: {
88
+ values: readonly [];
89
+ };
90
+ };
91
+ width: {
92
+ cssNames: string[];
93
+ values1: {
94
+ values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
95
+ formatValue: typeof ValueFormatters.heightWidth;
96
+ };
97
+ values2: {
98
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
99
+ formatValue: typeof ValueFormatters.rem;
100
+ };
101
+ values3: {
102
+ values: readonly ["1/2", "1/3", "2/3", "1/4", "2/4", "3/4", "1/5", "2/5", "3/5", "4/5", "1/6", "2/6", "3/6", "4/6", "5/6", "1/12", "2/12", "3/12", "4/12", "5/12", "6/12", "7/12", "8/12", "9/12", "10/12", "11/12"];
103
+ formatValue: typeof ValueFormatters.fraction;
104
+ formatClassName: typeof ClassNameFormatters.fraction;
105
+ };
106
+ };
107
+ position: {
108
+ cssNames: string[];
109
+ values1: {
110
+ values: readonly ["static", "relative", "absolute", "fixed", "sticky"];
111
+ };
112
+ values2: {
113
+ values: readonly [];
114
+ };
115
+ values3: {
116
+ values: readonly [];
117
+ };
118
+ };
119
+ top: {
120
+ cssNames: string[];
121
+ values1: {
122
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
123
+ formatValue: typeof ValueFormatters.rem;
124
+ };
125
+ values2: {
126
+ values: readonly [];
127
+ };
128
+ values3: {
129
+ values: readonly [];
130
+ };
131
+ };
132
+ right: {
133
+ cssNames: string[];
134
+ values1: {
135
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
136
+ formatValue: typeof ValueFormatters.rem;
137
+ };
138
+ values2: {
139
+ values: readonly [];
140
+ };
141
+ values3: {
142
+ values: readonly [];
143
+ };
144
+ };
145
+ bottom: {
146
+ cssNames: string[];
147
+ values1: {
148
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
149
+ formatValue: typeof ValueFormatters.rem;
150
+ };
151
+ values2: {
152
+ values: readonly [];
153
+ };
154
+ values3: {
155
+ values: readonly [];
156
+ };
157
+ };
158
+ left: {
159
+ cssNames: string[];
160
+ values1: {
161
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
162
+ formatValue: typeof ValueFormatters.rem;
163
+ };
164
+ values2: {
165
+ values: readonly [];
166
+ };
167
+ values3: {
168
+ values: readonly [];
169
+ };
170
+ };
171
+ inset: {
172
+ cssNames: string[];
173
+ values1: {
174
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
175
+ formatValue: typeof ValueFormatters.rem;
176
+ };
177
+ values2: {
178
+ values: readonly [];
179
+ };
180
+ values3: {
181
+ values: readonly [];
182
+ };
183
+ };
184
+ margin: {
185
+ cssNames: string[];
186
+ values1: {
187
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
188
+ formatValue: typeof ValueFormatters.rem;
189
+ };
190
+ values2: {
191
+ values: readonly ["auto"];
192
+ };
193
+ values3: {
194
+ values: readonly [];
195
+ };
196
+ };
197
+ marginHorizontal: {
198
+ cssNames: string[];
199
+ values1: {
200
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
201
+ formatValue: typeof ValueFormatters.rem;
202
+ };
203
+ values2: {
204
+ values: readonly ["auto"];
205
+ };
206
+ values3: {
207
+ values: readonly [];
208
+ };
209
+ };
210
+ marginVertical: {
211
+ cssNames: string[];
212
+ values1: {
213
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
214
+ formatValue: typeof ValueFormatters.rem;
215
+ };
216
+ values2: {
217
+ values: readonly ["auto"];
218
+ };
219
+ values3: {
220
+ values: readonly [];
221
+ };
222
+ };
223
+ marginTop: {
224
+ cssNames: string[];
225
+ values1: {
226
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
227
+ formatValue: typeof ValueFormatters.rem;
228
+ };
229
+ values2: {
230
+ values: readonly ["auto"];
231
+ };
232
+ values3: {
233
+ values: readonly [];
234
+ };
235
+ };
236
+ marginRight: {
237
+ cssNames: string[];
238
+ values1: {
239
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
240
+ formatValue: typeof ValueFormatters.rem;
241
+ };
242
+ values2: {
243
+ values: readonly ["auto"];
244
+ };
245
+ values3: {
246
+ values: readonly [];
247
+ };
248
+ };
249
+ marginBottom: {
250
+ cssNames: string[];
251
+ values1: {
252
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
253
+ formatValue: typeof ValueFormatters.rem;
254
+ };
255
+ values2: {
256
+ values: readonly ["auto"];
257
+ };
258
+ values3: {
259
+ values: readonly [];
260
+ };
261
+ };
262
+ marginLeft: {
263
+ cssNames: string[];
264
+ values1: {
265
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
266
+ formatValue: typeof ValueFormatters.rem;
267
+ };
268
+ values2: {
269
+ values: readonly ["auto"];
270
+ };
271
+ values3: {
272
+ values: readonly [];
273
+ };
274
+ };
275
+ padding: {
276
+ cssNames: string[];
277
+ values1: {
278
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
279
+ formatValue: typeof ValueFormatters.rem;
280
+ };
281
+ values2: {
282
+ values: readonly [];
283
+ };
284
+ values3: {
285
+ values: readonly [];
286
+ };
287
+ };
288
+ paddingHorizontal: {
289
+ cssNames: string[];
290
+ values1: {
291
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
292
+ formatValue: typeof ValueFormatters.rem;
293
+ };
294
+ values2: {
295
+ values: readonly [];
296
+ };
297
+ values3: {
298
+ values: readonly [];
299
+ };
300
+ };
301
+ paddingVertical: {
302
+ cssNames: string[];
303
+ values1: {
304
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
305
+ formatValue: typeof ValueFormatters.rem;
306
+ };
307
+ values2: {
308
+ values: readonly [];
309
+ };
310
+ values3: {
311
+ values: readonly [];
312
+ };
313
+ };
314
+ paddingTop: {
315
+ cssNames: string[];
316
+ values1: {
317
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
318
+ formatValue: typeof ValueFormatters.rem;
319
+ };
320
+ values2: {
321
+ values: readonly [];
322
+ };
323
+ values3: {
324
+ values: readonly [];
325
+ };
326
+ };
327
+ paddingRight: {
328
+ cssNames: string[];
329
+ values1: {
330
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
331
+ formatValue: typeof ValueFormatters.rem;
332
+ };
333
+ values2: {
334
+ values: readonly [];
335
+ };
336
+ values3: {
337
+ values: readonly [];
338
+ };
339
+ };
340
+ paddingBottom: {
341
+ cssNames: string[];
342
+ values1: {
343
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
344
+ formatValue: typeof ValueFormatters.rem;
345
+ };
346
+ values2: {
347
+ values: readonly [];
348
+ };
349
+ values3: {
350
+ values: readonly [];
351
+ };
352
+ };
353
+ paddingLeft: {
354
+ cssNames: string[];
355
+ values1: {
356
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
357
+ formatValue: typeof ValueFormatters.rem;
358
+ };
359
+ values2: {
360
+ values: readonly [];
361
+ };
362
+ values3: {
363
+ values: readonly [];
364
+ };
365
+ };
366
+ border: {
367
+ cssNames: string[];
368
+ values1: {
369
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
370
+ formatValue: typeof ValueFormatters.px;
371
+ };
372
+ values2: {
373
+ values: readonly [];
374
+ };
375
+ values3: {
376
+ values: readonly [];
377
+ };
378
+ };
379
+ borderHorizontal: {
380
+ cssNames: string[];
381
+ values1: {
382
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
383
+ formatValue: typeof ValueFormatters.px;
384
+ };
385
+ values2: {
386
+ values: readonly [];
387
+ };
388
+ values3: {
389
+ values: readonly [];
390
+ };
391
+ };
392
+ borderVertical: {
393
+ cssNames: string[];
394
+ values1: {
395
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
396
+ formatValue: typeof ValueFormatters.px;
397
+ };
398
+ values2: {
399
+ values: readonly [];
400
+ };
401
+ values3: {
402
+ values: readonly [];
403
+ };
404
+ };
405
+ borderTop: {
406
+ cssNames: string[];
407
+ values1: {
408
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
409
+ formatValue: typeof ValueFormatters.px;
410
+ };
411
+ values2: {
412
+ values: readonly [];
413
+ };
414
+ values3: {
415
+ values: readonly [];
416
+ };
417
+ };
418
+ borderRight: {
419
+ cssNames: string[];
420
+ values1: {
421
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
422
+ formatValue: typeof ValueFormatters.px;
423
+ };
424
+ values2: {
425
+ values: readonly [];
426
+ };
427
+ values3: {
428
+ values: readonly [];
429
+ };
430
+ };
431
+ borderBottom: {
432
+ cssNames: string[];
433
+ values1: {
434
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
435
+ formatValue: typeof ValueFormatters.px;
436
+ };
437
+ values2: {
438
+ values: readonly [];
439
+ };
440
+ values3: {
441
+ values: readonly [];
442
+ };
443
+ };
444
+ borderLeft: {
445
+ cssNames: string[];
446
+ values1: {
447
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
448
+ formatValue: typeof ValueFormatters.px;
449
+ };
450
+ values2: {
451
+ values: readonly [];
452
+ };
453
+ values3: {
454
+ values: readonly [];
455
+ };
456
+ };
457
+ borderStyle: {
458
+ cssNames: string[];
459
+ values1: {
460
+ values: readonly ["solid", "dashed", "dotted", "double", "groove", "ridge", "inset", "outset", "none", "hidden"];
461
+ };
462
+ values2: {
463
+ values: readonly [];
464
+ };
465
+ values3: {
466
+ values: readonly [];
467
+ };
468
+ };
469
+ borderRadius: {
470
+ cssNames: string[];
471
+ values1: {
472
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
473
+ formatValue: typeof ValueFormatters.rem;
474
+ };
475
+ values2: {
476
+ values: readonly [];
477
+ };
478
+ values3: {
479
+ values: readonly [];
480
+ };
481
+ };
482
+ borderRadiusTop: {
483
+ cssNames: string[];
484
+ values1: {
485
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
486
+ formatValue: typeof ValueFormatters.rem;
487
+ };
488
+ values2: {
489
+ values: readonly [];
490
+ };
491
+ values3: {
492
+ values: readonly [];
493
+ };
494
+ };
495
+ borderRadiusRight: {
496
+ cssNames: string[];
497
+ values1: {
498
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
499
+ formatValue: typeof ValueFormatters.rem;
500
+ };
501
+ values2: {
502
+ values: readonly [];
503
+ };
504
+ values3: {
505
+ values: readonly [];
506
+ };
507
+ };
508
+ borderRadiusBottom: {
509
+ cssNames: string[];
510
+ values1: {
511
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
512
+ formatValue: typeof ValueFormatters.rem;
513
+ };
514
+ values2: {
515
+ values: readonly [];
516
+ };
517
+ values3: {
518
+ values: readonly [];
519
+ };
520
+ };
521
+ borderRadiusLeft: {
522
+ cssNames: string[];
523
+ values1: {
524
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
525
+ formatValue: typeof ValueFormatters.rem;
526
+ };
527
+ values2: {
528
+ values: readonly [];
529
+ };
530
+ values3: {
531
+ values: readonly [];
532
+ };
533
+ };
534
+ borderRadiusTopLeft: {
535
+ cssNames: string[];
536
+ values1: {
537
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
538
+ formatValue: typeof ValueFormatters.rem;
539
+ };
540
+ values2: {
541
+ values: readonly [];
542
+ };
543
+ values3: {
544
+ values: readonly [];
545
+ };
546
+ };
547
+ borderRadiusTopRight: {
548
+ cssNames: string[];
549
+ values1: {
550
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
551
+ formatValue: typeof ValueFormatters.rem;
552
+ };
553
+ values2: {
554
+ values: readonly [];
555
+ };
556
+ values3: {
557
+ values: readonly [];
558
+ };
559
+ };
560
+ borderRadiusBottomLeft: {
561
+ cssNames: string[];
562
+ values1: {
563
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
564
+ formatValue: typeof ValueFormatters.rem;
565
+ };
566
+ values2: {
567
+ values: readonly [];
568
+ };
569
+ values3: {
570
+ values: readonly [];
571
+ };
572
+ };
573
+ borderRadiusBottomRight: {
574
+ cssNames: string[];
575
+ values1: {
576
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
577
+ formatValue: typeof ValueFormatters.rem;
578
+ };
579
+ values2: {
580
+ values: readonly [];
581
+ };
582
+ values3: {
583
+ values: readonly [];
584
+ };
585
+ };
586
+ cursor: {
587
+ cssNames: string[];
588
+ values1: {
589
+ values: readonly ["auto", "default", "none", "context-menu", "help", "pointer", "progress", "wait", "cell", "crosshair", "text", "vertical-text", "alias", "copy", "move", "no-drop", "not-allowed", "e-resize", "n-resize", "ne-resize", "nw-resize", "s-resize", "se-resize", "sw-resize", "w-resize", "ew-resize", "ns-resize", "nesw-resize", "nwse-resize", "col-resize", "row-resize", "all-scroll", "zoom-in", "zoom-out", "grab", "grabbing"];
590
+ };
591
+ values2: {
592
+ values: readonly [];
593
+ };
594
+ values3: {
595
+ values: readonly [];
596
+ };
597
+ };
598
+ zIndex: {
599
+ cssNames: string[];
600
+ values1: {
601
+ values: readonly [1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 15, 100, 101, 102, 103, 104, 105, 1000, 1001, 1002, 1003, 1004, 1005];
602
+ };
603
+ values2: {
604
+ values: readonly [];
605
+ };
606
+ values3: {
607
+ values: readonly [];
608
+ };
609
+ };
610
+ overflow: {
611
+ cssNames: string[];
612
+ values1: {
613
+ values: readonly ["auto", "hidden", "scroll", "visible"];
614
+ };
615
+ values2: {
616
+ values: readonly [];
617
+ };
618
+ values3: {
619
+ values: readonly [];
620
+ };
621
+ };
622
+ overflowX: {
623
+ cssNames: string[];
624
+ values1: {
625
+ values: readonly ["auto", "hidden", "scroll", "visible"];
626
+ };
627
+ values2: {
628
+ values: readonly [];
629
+ };
630
+ values3: {
631
+ values: readonly [];
632
+ };
633
+ };
634
+ overflowY: {
635
+ cssNames: string[];
636
+ values1: {
637
+ values: readonly ["auto", "hidden", "scroll", "visible"];
638
+ };
639
+ values2: {
640
+ values: readonly [];
641
+ };
642
+ values3: {
643
+ values: readonly [];
644
+ };
645
+ };
646
+ opacity: {
647
+ cssNames: string[];
648
+ values1: {
649
+ values: readonly [0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1];
650
+ };
651
+ values2: {
652
+ values: readonly [];
653
+ };
654
+ values3: {
655
+ values: readonly [];
656
+ };
657
+ };
658
+ fontSize: {
659
+ cssNames: string[];
660
+ values1: {
661
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
662
+ formatValue: typeof ValueFormatters.px;
663
+ };
664
+ values2: {
665
+ values: readonly ["inherit"];
666
+ };
667
+ values3: {
668
+ values: readonly [];
669
+ };
670
+ };
671
+ fontStyle: {
672
+ cssNames: string[];
673
+ values1: {
674
+ values: readonly ["italic", "normal", "oblique"];
675
+ };
676
+ values2: {
677
+ values: readonly [];
678
+ };
679
+ values3: {
680
+ values: readonly [];
681
+ };
682
+ };
683
+ fontWeight: {
684
+ cssNames: string[];
685
+ values1: {
686
+ values: readonly [100, 200, 300, 400, 500, 600, 700, 800, 900];
687
+ };
688
+ values2: {
689
+ values: readonly [];
690
+ };
691
+ values3: {
692
+ values: readonly [];
693
+ };
694
+ };
695
+ letterSpacing: {
696
+ cssNames: string[];
697
+ values1: {
698
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
699
+ formatValue: typeof ValueFormatters.px;
700
+ };
701
+ values2: {
702
+ values: readonly [];
703
+ };
704
+ values3: {
705
+ values: readonly [];
706
+ };
707
+ };
708
+ lineHeight: {
709
+ cssNames: string[];
710
+ values1: {
711
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
712
+ formatValue: typeof ValueFormatters.px;
713
+ };
714
+ values2: {
715
+ values: readonly ["font-size"];
716
+ formatValue: () => string;
717
+ };
718
+ values3: {
719
+ values: readonly [];
720
+ };
721
+ };
722
+ textDecoration: {
723
+ cssNames: string[];
724
+ values1: {
725
+ values: readonly ["none", "underline", "overline", "line-through"];
726
+ };
727
+ values2: {
728
+ values: readonly [];
729
+ };
730
+ values3: {
731
+ values: readonly [];
732
+ };
733
+ };
734
+ textTransform: {
735
+ cssNames: string[];
736
+ values1: {
737
+ values: readonly ["none", "capitalize", "lowercase", "uppercase"];
738
+ };
739
+ values2: {
740
+ values: readonly [];
741
+ };
742
+ values3: {
743
+ values: readonly [];
744
+ };
745
+ };
746
+ textAlign: {
747
+ cssNames: string[];
748
+ values1: {
749
+ values: readonly ["left", "right", "center", "justify"];
750
+ };
751
+ values2: {
752
+ values: readonly [];
753
+ };
754
+ values3: {
755
+ values: readonly [];
756
+ };
757
+ };
758
+ flexWrap: {
759
+ cssNames: string[];
760
+ values1: {
761
+ values: readonly ["nowrap", "wrap", "wrap-reverse"];
762
+ };
763
+ values2: {
764
+ values: readonly [];
765
+ };
766
+ values3: {
767
+ values: readonly [];
768
+ };
769
+ };
770
+ justifyContent: {
771
+ cssNames: string[];
772
+ values1: {
773
+ values: readonly ["start", "end", "flex-start", "flex-end", "center", "left", "right", "space-between", "space-around", "space-evenly", "stretch"];
774
+ };
775
+ values2: {
776
+ values: readonly [];
777
+ };
778
+ values3: {
779
+ values: readonly [];
780
+ };
781
+ };
782
+ alignItems: {
783
+ cssNames: string[];
784
+ values1: {
785
+ values: readonly ["stretch", "flex-start", "flex-end", "center", "baseline", "start", "end", "self-start", "self-end"];
786
+ };
787
+ values2: {
788
+ values: readonly [];
789
+ };
790
+ values3: {
791
+ values: readonly [];
792
+ };
793
+ };
794
+ alignContent: {
795
+ cssNames: string[];
796
+ values1: {
797
+ values: readonly ["flex-start", "flex-end", "center", "space-between", "space-around", "space-evenly", "stretch", "start", "end", "baseline"];
798
+ };
799
+ values2: {
800
+ values: readonly [];
801
+ };
802
+ values3: {
803
+ values: readonly [];
804
+ };
805
+ };
806
+ flex1: {
807
+ cssNames: string[];
808
+ values1: {
809
+ values: readonly [true];
810
+ formatValue: () => string;
811
+ };
812
+ values2: {
813
+ values: readonly [];
814
+ };
815
+ values3: {
816
+ values: readonly [];
817
+ };
818
+ };
819
+ flexDirection: {
820
+ cssNames: string[];
821
+ values1: {
822
+ values: readonly ["row", "row-reverse", "column", "column-reverse"];
823
+ };
824
+ values2: {
825
+ values: readonly [];
826
+ };
827
+ values3: {
828
+ values: readonly [];
829
+ };
830
+ };
831
+ gap: {
832
+ cssNames: string[];
833
+ values1: {
834
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
835
+ formatValue: typeof ValueFormatters.rem;
836
+ };
837
+ values2: {
838
+ values: readonly [];
839
+ };
840
+ values3: {
841
+ values: readonly [];
842
+ };
843
+ };
844
+ rowGap: {
845
+ cssNames: string[];
846
+ values1: {
847
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
848
+ formatValue: typeof ValueFormatters.rem;
849
+ };
850
+ values2: {
851
+ values: readonly [];
852
+ };
853
+ values3: {
854
+ values: readonly [];
855
+ };
856
+ };
857
+ columnGap: {
858
+ cssNames: string[];
859
+ values1: {
860
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
861
+ formatValue: typeof ValueFormatters.rem;
862
+ };
863
+ values2: {
864
+ values: readonly [];
865
+ };
866
+ values3: {
867
+ values: readonly [];
868
+ };
869
+ };
870
+ order: {
871
+ cssNames: string[];
872
+ values1: {
873
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
874
+ };
875
+ values2: {
876
+ values: readonly [];
877
+ };
878
+ values3: {
879
+ values: readonly [];
880
+ };
881
+ };
882
+ flexGrow: {
883
+ cssNames: string[];
884
+ values1: {
885
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
886
+ };
887
+ values2: {
888
+ values: readonly [];
889
+ };
890
+ values3: {
891
+ values: readonly [];
892
+ };
893
+ };
894
+ flexShrink: {
895
+ cssNames: string[];
896
+ values1: {
897
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
898
+ };
899
+ values2: {
900
+ values: readonly [];
901
+ };
902
+ values3: {
903
+ values: readonly [];
904
+ };
905
+ };
906
+ flexSelf: {
907
+ cssNames: string[];
908
+ values1: {
909
+ values: readonly ["auto", "flex-start", "flex-end", "center", "baseline", "stretch"];
910
+ };
911
+ values2: {
912
+ values: readonly [];
913
+ };
914
+ values3: {
915
+ values: readonly [];
916
+ };
917
+ };
918
+ justifySelf: {
919
+ cssNames: string[];
920
+ values1: {
921
+ values: readonly ["auto", "flex-start", "flex-end", "center", "baseline", "stretch"];
922
+ };
923
+ values2: {
924
+ values: readonly [];
925
+ };
926
+ values3: {
927
+ values: readonly [];
928
+ };
929
+ };
930
+ gridColumns: {
931
+ cssNames: string[];
932
+ values1: {
933
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
934
+ formatValue: (key: string, value: string | number | boolean) => string;
935
+ };
936
+ values2: {
937
+ values: readonly [];
938
+ };
939
+ values3: {
940
+ values: readonly [];
941
+ };
942
+ };
943
+ colSpan: {
944
+ cssNames: string[];
945
+ values1: {
946
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
947
+ formatValue: (key: string, value: string | number | boolean) => string;
948
+ };
949
+ values2: {
950
+ values: readonly ["full-row"];
951
+ formatValue: (key: string, value: string | number | boolean) => string;
952
+ };
953
+ values3: {
954
+ values: readonly [];
955
+ };
956
+ };
957
+ colStart: {
958
+ cssNames: string[];
959
+ values1: {
960
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
961
+ formatValue: (key: string, value: string | number | boolean) => string;
962
+ };
963
+ values2: {
964
+ values: readonly [];
965
+ };
966
+ values3: {
967
+ values: readonly [];
968
+ };
969
+ };
970
+ colEnd: {
971
+ cssNames: string[];
972
+ values1: {
973
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
974
+ formatValue: (key: string, value: string | number | boolean) => string;
975
+ };
976
+ values2: {
977
+ values: readonly [];
978
+ };
979
+ values3: {
980
+ values: readonly [];
981
+ };
982
+ };
983
+ outline: {
984
+ cssNames: string[];
985
+ values1: {
986
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
987
+ formatValue: typeof ValueFormatters.px;
988
+ };
989
+ values2: {
990
+ values: readonly [];
991
+ };
992
+ values3: {
993
+ values: readonly [];
994
+ };
995
+ };
996
+ outlineStyle: {
997
+ cssNames: string[];
998
+ values1: {
999
+ values: readonly ["solid", "dashed", "dotted", "double", "groove", "ridge", "inset", "outset", "none", "hidden"];
1000
+ };
1001
+ values2: {
1002
+ values: readonly [];
1003
+ };
1004
+ values3: {
1005
+ values: readonly [];
1006
+ };
1007
+ };
1008
+ outlineOffset: {
1009
+ cssNames: string[];
1010
+ values1: {
1011
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
1012
+ formatValue: typeof ValueFormatters.px;
1013
+ };
1014
+ values2: {
1015
+ values: readonly [];
1016
+ };
1017
+ values3: {
1018
+ values: readonly [];
1019
+ };
1020
+ };
1021
+ transition: {
1022
+ cssNames: string[];
1023
+ values1: {
1024
+ values: readonly ["none", "all"];
1025
+ };
1026
+ values2: {
1027
+ values: readonly [];
1028
+ };
1029
+ values3: {
1030
+ values: readonly [];
1031
+ };
1032
+ };
1033
+ transitionDuration: {
1034
+ cssNames: string[];
1035
+ values1: {
1036
+ values: readonly [50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000];
1037
+ formatValue: (_key: string, value: string | number | boolean) => string;
1038
+ };
1039
+ values2: {
1040
+ values: readonly [];
1041
+ };
1042
+ values3: {
1043
+ values: readonly [];
1044
+ };
1045
+ };
1046
+ userSelect: {
1047
+ cssNames: string[];
1048
+ values1: {
1049
+ values: readonly ["none", "auto", "text", "all"];
1050
+ };
1051
+ values2: {
1052
+ values: readonly [];
1053
+ };
1054
+ values3: {
1055
+ values: readonly [];
1056
+ };
1057
+ };
1058
+ appearance: {
1059
+ cssNames: string[];
1060
+ values1: {
1061
+ values: readonly ["none"];
1062
+ };
1063
+ values2: {
1064
+ values: readonly [];
1065
+ };
1066
+ values3: {
1067
+ values: readonly [];
1068
+ };
1069
+ };
1070
+ pointerEvents: {
1071
+ cssNames: string[];
1072
+ values1: {
1073
+ values: readonly ["none", "auto", "all"];
1074
+ };
1075
+ values2: {
1076
+ values: readonly [];
1077
+ };
1078
+ values3: {
1079
+ values: readonly [];
1080
+ };
1081
+ };
1082
+ whiteSpace: {
1083
+ cssNames: string[];
1084
+ values1: {
1085
+ values: readonly ["break-spaces", "normal", "nowrap", "pre", "pre-line", "pre-wrap"];
1086
+ };
1087
+ values2: {
1088
+ values: readonly [];
1089
+ };
1090
+ values3: {
1091
+ values: readonly [];
1092
+ };
1093
+ };
1094
+ textOverflow: {
1095
+ cssNames: string[];
1096
+ values1: {
1097
+ values: readonly ["clip", "ellipsis"];
1098
+ };
1099
+ values2: {
1100
+ values: readonly [];
1101
+ };
1102
+ values3: {
1103
+ values: readonly [];
1104
+ };
1105
+ };
1106
+ };
1107
+ export declare const aliases: {
1108
+ m: {
1109
+ key: "margin";
1110
+ cssNames: string[];
1111
+ values1: {
1112
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1113
+ formatValue: typeof ValueFormatters.rem;
1114
+ };
1115
+ values2: {
1116
+ values: readonly ["auto"];
1117
+ };
1118
+ values3: {
1119
+ values: readonly [];
1120
+ };
1121
+ };
1122
+ mx: {
1123
+ key: "marginHorizontal";
1124
+ cssNames: string[];
1125
+ values1: {
1126
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1127
+ formatValue: typeof ValueFormatters.rem;
1128
+ };
1129
+ values2: {
1130
+ values: readonly ["auto"];
1131
+ };
1132
+ values3: {
1133
+ values: readonly [];
1134
+ };
1135
+ };
1136
+ my: {
1137
+ key: "marginVertical";
1138
+ cssNames: string[];
1139
+ values1: {
1140
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1141
+ formatValue: typeof ValueFormatters.rem;
1142
+ };
1143
+ values2: {
1144
+ values: readonly ["auto"];
1145
+ };
1146
+ values3: {
1147
+ values: readonly [];
1148
+ };
1149
+ };
1150
+ mt: {
1151
+ key: "marginTop";
1152
+ cssNames: string[];
1153
+ values1: {
1154
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1155
+ formatValue: typeof ValueFormatters.rem;
1156
+ };
1157
+ values2: {
1158
+ values: readonly ["auto"];
1159
+ };
1160
+ values3: {
1161
+ values: readonly [];
1162
+ };
1163
+ };
1164
+ mr: {
1165
+ key: "marginRight";
1166
+ cssNames: string[];
1167
+ values1: {
1168
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1169
+ formatValue: typeof ValueFormatters.rem;
1170
+ };
1171
+ values2: {
1172
+ values: readonly ["auto"];
1173
+ };
1174
+ values3: {
1175
+ values: readonly [];
1176
+ };
1177
+ };
1178
+ mb: {
1179
+ key: "marginBottom";
1180
+ cssNames: string[];
1181
+ values1: {
1182
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1183
+ formatValue: typeof ValueFormatters.rem;
1184
+ };
1185
+ values2: {
1186
+ values: readonly ["auto"];
1187
+ };
1188
+ values3: {
1189
+ values: readonly [];
1190
+ };
1191
+ };
1192
+ ml: {
1193
+ key: "marginLeft";
1194
+ cssNames: string[];
1195
+ values1: {
1196
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1197
+ formatValue: typeof ValueFormatters.rem;
1198
+ };
1199
+ values2: {
1200
+ values: readonly ["auto"];
1201
+ };
1202
+ values3: {
1203
+ values: readonly [];
1204
+ };
1205
+ };
1206
+ p: {
1207
+ key: "padding";
1208
+ cssNames: string[];
1209
+ values1: {
1210
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1211
+ formatValue: typeof ValueFormatters.rem;
1212
+ };
1213
+ values2: {
1214
+ values: readonly [];
1215
+ };
1216
+ values3: {
1217
+ values: readonly [];
1218
+ };
1219
+ };
1220
+ px: {
1221
+ key: "paddingHorizontal";
1222
+ cssNames: string[];
1223
+ values1: {
1224
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1225
+ formatValue: typeof ValueFormatters.rem;
1226
+ };
1227
+ values2: {
1228
+ values: readonly [];
1229
+ };
1230
+ values3: {
1231
+ values: readonly [];
1232
+ };
1233
+ };
1234
+ py: {
1235
+ key: "paddingVertical";
1236
+ cssNames: string[];
1237
+ values1: {
1238
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1239
+ formatValue: typeof ValueFormatters.rem;
1240
+ };
1241
+ values2: {
1242
+ values: readonly [];
1243
+ };
1244
+ values3: {
1245
+ values: readonly [];
1246
+ };
1247
+ };
1248
+ pt: {
1249
+ key: "paddingTop";
1250
+ cssNames: string[];
1251
+ values1: {
1252
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1253
+ formatValue: typeof ValueFormatters.rem;
1254
+ };
1255
+ values2: {
1256
+ values: readonly [];
1257
+ };
1258
+ values3: {
1259
+ values: readonly [];
1260
+ };
1261
+ };
1262
+ pr: {
1263
+ key: "paddingRight";
1264
+ cssNames: string[];
1265
+ values1: {
1266
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1267
+ formatValue: typeof ValueFormatters.rem;
1268
+ };
1269
+ values2: {
1270
+ values: readonly [];
1271
+ };
1272
+ values3: {
1273
+ values: readonly [];
1274
+ };
1275
+ };
1276
+ pb: {
1277
+ key: "paddingBottom";
1278
+ cssNames: string[];
1279
+ values1: {
1280
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1281
+ formatValue: typeof ValueFormatters.rem;
1282
+ };
1283
+ values2: {
1284
+ values: readonly [];
1285
+ };
1286
+ values3: {
1287
+ values: readonly [];
1288
+ };
1289
+ };
1290
+ pl: {
1291
+ key: "paddingLeft";
1292
+ cssNames: string[];
1293
+ values1: {
1294
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1295
+ formatValue: typeof ValueFormatters.rem;
1296
+ };
1297
+ values2: {
1298
+ values: readonly [];
1299
+ };
1300
+ values3: {
1301
+ values: readonly [];
1302
+ };
1303
+ };
1304
+ b: {
1305
+ key: "border";
1306
+ cssNames: string[];
1307
+ values1: {
1308
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
1309
+ formatValue: typeof ValueFormatters.px;
1310
+ };
1311
+ values2: {
1312
+ values: readonly [];
1313
+ };
1314
+ values3: {
1315
+ values: readonly [];
1316
+ };
1317
+ };
1318
+ bx: {
1319
+ key: "borderHorizontal";
1320
+ cssNames: string[];
1321
+ values1: {
1322
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1323
+ formatValue: typeof ValueFormatters.px;
1324
+ };
1325
+ values2: {
1326
+ values: readonly [];
1327
+ };
1328
+ values3: {
1329
+ values: readonly [];
1330
+ };
1331
+ };
1332
+ by: {
1333
+ key: "borderVertical";
1334
+ cssNames: string[];
1335
+ values1: {
1336
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1337
+ formatValue: typeof ValueFormatters.px;
1338
+ };
1339
+ values2: {
1340
+ values: readonly [];
1341
+ };
1342
+ values3: {
1343
+ values: readonly [];
1344
+ };
1345
+ };
1346
+ bt: {
1347
+ key: "borderTop";
1348
+ cssNames: string[];
1349
+ values1: {
1350
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1351
+ formatValue: typeof ValueFormatters.px;
1352
+ };
1353
+ values2: {
1354
+ values: readonly [];
1355
+ };
1356
+ values3: {
1357
+ values: readonly [];
1358
+ };
1359
+ };
1360
+ br: {
1361
+ key: "borderRight";
1362
+ cssNames: string[];
1363
+ values1: {
1364
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1365
+ formatValue: typeof ValueFormatters.px;
1366
+ };
1367
+ values2: {
1368
+ values: readonly [];
1369
+ };
1370
+ values3: {
1371
+ values: readonly [];
1372
+ };
1373
+ };
1374
+ bb: {
1375
+ key: "borderBottom";
1376
+ cssNames: string[];
1377
+ values1: {
1378
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1379
+ formatValue: typeof ValueFormatters.px;
1380
+ };
1381
+ values2: {
1382
+ values: readonly [];
1383
+ };
1384
+ values3: {
1385
+ values: readonly [];
1386
+ };
1387
+ };
1388
+ bl: {
1389
+ key: "borderLeft";
1390
+ cssNames: string[];
1391
+ values1: {
1392
+ values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100, -1, -2, -3, -4, -5, -6, -7, -8, -9, -10, -11, -12, -13, -14, -15, -16, -17, -18, -19, -20, -22, -24, -26, -28, -30, -32, -34, -36, -38, -40, -44, -48, -52, -56, -60, -64, -68, -72, -76, -80, -84, -88, -92, -96, -100];
1393
+ formatValue: typeof ValueFormatters.px;
1394
+ };
1395
+ values2: {
1396
+ values: readonly [];
1397
+ };
1398
+ values3: {
1399
+ values: readonly [];
1400
+ };
1401
+ };
1402
+ jc: {
1403
+ key: "justifyContent";
1404
+ cssNames: string[];
1405
+ values1: {
1406
+ values: readonly ["start", "end", "flex-start", "flex-end", "center", "left", "right", "space-between", "space-around", "space-evenly", "stretch"];
1407
+ };
1408
+ values2: {
1409
+ values: readonly [];
1410
+ };
1411
+ values3: {
1412
+ values: readonly [];
1413
+ };
1414
+ };
1415
+ ai: {
1416
+ key: "alignItems";
1417
+ cssNames: string[];
1418
+ values1: {
1419
+ values: readonly ["stretch", "flex-start", "flex-end", "center", "baseline", "start", "end", "self-start", "self-end"];
1420
+ };
1421
+ values2: {
1422
+ values: readonly [];
1423
+ };
1424
+ values3: {
1425
+ values: readonly [];
1426
+ };
1427
+ };
1428
+ ac: {
1429
+ key: "alignContent";
1430
+ cssNames: string[];
1431
+ values1: {
1432
+ values: readonly ["flex-start", "flex-end", "center", "space-between", "space-around", "space-evenly", "stretch", "start", "end", "baseline"];
1433
+ };
1434
+ values2: {
1435
+ values: readonly [];
1436
+ };
1437
+ values3: {
1438
+ values: readonly [];
1439
+ };
1440
+ };
1441
+ d: {
1442
+ key: "flexDirection";
1443
+ cssNames: string[];
1444
+ values1: {
1445
+ values: readonly ["row", "row-reverse", "column", "column-reverse"];
1446
+ };
1447
+ values2: {
1448
+ values: readonly [];
1449
+ };
1450
+ values3: {
1451
+ values: readonly [];
1452
+ };
1453
+ };
1454
+ };
1455
+ type Styles<T extends Record<string, StyleItem>> = {
1456
+ [K in keyof T]?: T[K]['values1']['values'][number] | T[K]['values2']['values'][number] | T[K]['values3']['values'][number];
1457
+ };
1458
+ export type StyleKey = keyof typeof doxStyles;
1459
+ export type AliasKey = keyof typeof aliases;
1460
+ export type ThemeKey = keyof typeof themeStyles;
1461
+ type DoxNormalStyles = Styles<typeof doxStyles> & Styles<typeof aliases> & ThemeComponentProps;
1462
+ export type DoxStyleProps = DoxNormalStyles & Hovered<DoxNormalStyles> & Focused<DoxNormalStyles> & Activated<DoxNormalStyles> & Augmented.BoxProps;
1463
+ export {};