@cronocode/react-box 1.6.1 → 1.6.3

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.
@@ -1,22 +1,17 @@
1
1
  import { ThemeComponentProps } from '../../theme';
2
2
  import { Augmented } from '../../types';
3
- type Hovered<T> = {
4
- [K in keyof T as K extends string ? `${K}H` : never]: T[K];
5
- };
6
- type Focused<T> = {
7
- [K in keyof T as K extends string ? `${K}F` : never]: T[K];
8
- };
9
- type Activated<T> = {
10
- [K in keyof T as K extends string ? `${K}A` : never]: T[K];
11
- };
3
+ import { DoxStylesFormatters } from './doxStylesFormatters';
12
4
  export interface StyleValues {
13
5
  values: Readonly<Array<string | number | boolean>>;
14
6
  formatClassName?: (key: string, value: string | number | boolean) => string;
7
+ formatSelector?: (selector: string) => string[];
15
8
  formatValue?: (key: string, value: string | number | boolean) => string;
16
9
  }
17
10
  export interface ThemeItem {
18
11
  cssNames: string[];
19
- formatValue: (key: string, value: string | number | boolean) => string;
12
+ formatClassName?: (key: string, value: string | number | boolean) => string;
13
+ formatSelector?: (selector: string) => string[];
14
+ formatValue?: (key: string, value: string | number | boolean) => string;
20
15
  }
21
16
  export declare const pseudoClassSuffixes: readonly ["H", "F", "A"];
22
17
  export type PseudoClassSuffix = (typeof pseudoClassSuffixes)[number];
@@ -28,17 +23,7 @@ export interface StyleItem {
28
23
  pseudoSuffix?: PseudoClassSuffix;
29
24
  isThemeStyle?: boolean;
30
25
  }
31
- declare namespace ValueFormatters {
32
- function rem(_key: string, value: string | number | boolean): string;
33
- function px(_key: string, value: string | number | boolean): string;
34
- function fraction(_key: string, value: string | number | boolean): string;
35
- function widthHeight(key: string, value: string | number | boolean): string;
36
- function variables(prefix: string): (key: string, value: string | number | boolean) => string;
37
- }
38
- declare namespace ClassNameFormatters {
39
- function fraction(key: string, value: string | number | boolean): string;
40
- }
41
- export declare const themeStyles: {
26
+ export declare const doxThemeStyles: {
42
27
  shadow: {
43
28
  cssNames: string[];
44
29
  formatValue: (key: string, value: string | number | boolean) => string;
@@ -64,6 +49,30 @@ export declare const themeStyles: {
64
49
  formatValue: (key: string, value: string | number | boolean) => string;
65
50
  };
66
51
  };
52
+ export declare const svgThemeStyles: {
53
+ fill: {
54
+ cssNames: string[];
55
+ formatValue: (key: string, value: string | number | boolean) => string;
56
+ formatSelector: typeof DoxStylesFormatters.ClassName.svg;
57
+ };
58
+ stroke: {
59
+ cssNames: string[];
60
+ formatValue: (key: string, value: string | number | boolean) => string;
61
+ formatSelector: typeof DoxStylesFormatters.ClassName.svg;
62
+ };
63
+ };
64
+ export interface PseudoClassStyleType {
65
+ className: string;
66
+ }
67
+ export declare const pseudoClassStyles: {
68
+ hover: {
69
+ className: string;
70
+ };
71
+ focus: {
72
+ className: string;
73
+ };
74
+ };
75
+ export type PseudoClassType = keyof typeof pseudoClassStyles;
67
76
  export declare const doxStyles: {
68
77
  display: {
69
78
  cssNames: string[];
@@ -93,96 +102,90 @@ export declare const doxStyles: {
93
102
  cssNames: string[];
94
103
  values1: {
95
104
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
96
- formatValue: typeof ValueFormatters.widthHeight;
105
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
97
106
  };
98
107
  values2: {
99
108
  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];
100
- formatValue: typeof ValueFormatters.rem;
109
+ formatValue: typeof DoxStylesFormatters.Value.rem;
101
110
  };
102
111
  values3: {
103
112
  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"];
104
- formatValue: typeof ValueFormatters.fraction;
105
- formatClassName: typeof ClassNameFormatters.fraction;
113
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
106
114
  };
107
115
  };
108
116
  minWidth: {
109
117
  cssNames: string[];
110
118
  values1: {
111
119
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
112
- formatValue: typeof ValueFormatters.widthHeight;
120
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
113
121
  };
114
122
  values2: {
115
123
  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];
116
- formatValue: typeof ValueFormatters.rem;
124
+ formatValue: typeof DoxStylesFormatters.Value.rem;
117
125
  };
118
126
  values3: {
119
127
  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"];
120
- formatValue: typeof ValueFormatters.fraction;
121
- formatClassName: typeof ClassNameFormatters.fraction;
128
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
122
129
  };
123
130
  };
124
131
  maxWidth: {
125
132
  cssNames: string[];
126
133
  values1: {
127
134
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
128
- formatValue: typeof ValueFormatters.widthHeight;
135
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
129
136
  };
130
137
  values2: {
131
138
  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];
132
- formatValue: typeof ValueFormatters.rem;
139
+ formatValue: typeof DoxStylesFormatters.Value.rem;
133
140
  };
134
141
  values3: {
135
142
  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"];
136
- formatValue: typeof ValueFormatters.fraction;
137
- formatClassName: typeof ClassNameFormatters.fraction;
143
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
138
144
  };
139
145
  };
140
146
  height: {
141
147
  cssNames: string[];
142
148
  values1: {
143
149
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
144
- formatValue: typeof ValueFormatters.widthHeight;
150
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
145
151
  };
146
152
  values2: {
147
153
  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];
148
- formatValue: typeof ValueFormatters.rem;
154
+ formatValue: typeof DoxStylesFormatters.Value.rem;
149
155
  };
150
156
  values3: {
151
157
  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"];
152
- formatValue: typeof ValueFormatters.fraction;
153
- formatClassName: typeof ClassNameFormatters.fraction;
158
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
154
159
  };
155
160
  };
156
161
  minHeight: {
157
162
  cssNames: string[];
158
163
  values1: {
159
164
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
160
- formatValue: typeof ValueFormatters.widthHeight;
165
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
161
166
  };
162
167
  values2: {
163
168
  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];
164
- formatValue: typeof ValueFormatters.rem;
169
+ formatValue: typeof DoxStylesFormatters.Value.rem;
165
170
  };
166
171
  values3: {
167
172
  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"];
168
- formatValue: typeof ValueFormatters.fraction;
169
- formatClassName: typeof ClassNameFormatters.fraction;
173
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
170
174
  };
171
175
  };
172
176
  maxHeight: {
173
177
  cssNames: string[];
174
178
  values1: {
175
179
  values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
176
- formatValue: typeof ValueFormatters.widthHeight;
180
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
177
181
  };
178
182
  values2: {
179
183
  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];
180
- formatValue: typeof ValueFormatters.rem;
184
+ formatValue: typeof DoxStylesFormatters.Value.rem;
181
185
  };
182
186
  values3: {
183
187
  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"];
184
- formatValue: typeof ValueFormatters.fraction;
185
- formatClassName: typeof ClassNameFormatters.fraction;
188
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
186
189
  };
187
190
  };
188
191
  position: {
@@ -201,7 +204,7 @@ export declare const doxStyles: {
201
204
  cssNames: string[];
202
205
  values1: {
203
206
  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];
204
- formatValue: typeof ValueFormatters.rem;
207
+ formatValue: typeof DoxStylesFormatters.Value.rem;
205
208
  };
206
209
  values2: {
207
210
  values: readonly [];
@@ -214,7 +217,7 @@ export declare const doxStyles: {
214
217
  cssNames: string[];
215
218
  values1: {
216
219
  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];
217
- formatValue: typeof ValueFormatters.rem;
220
+ formatValue: typeof DoxStylesFormatters.Value.rem;
218
221
  };
219
222
  values2: {
220
223
  values: readonly [];
@@ -227,7 +230,7 @@ export declare const doxStyles: {
227
230
  cssNames: string[];
228
231
  values1: {
229
232
  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];
230
- formatValue: typeof ValueFormatters.rem;
233
+ formatValue: typeof DoxStylesFormatters.Value.rem;
231
234
  };
232
235
  values2: {
233
236
  values: readonly [];
@@ -240,7 +243,7 @@ export declare const doxStyles: {
240
243
  cssNames: string[];
241
244
  values1: {
242
245
  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];
243
- formatValue: typeof ValueFormatters.rem;
246
+ formatValue: typeof DoxStylesFormatters.Value.rem;
244
247
  };
245
248
  values2: {
246
249
  values: readonly [];
@@ -253,7 +256,7 @@ export declare const doxStyles: {
253
256
  cssNames: string[];
254
257
  values1: {
255
258
  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];
256
- formatValue: typeof ValueFormatters.rem;
259
+ formatValue: typeof DoxStylesFormatters.Value.rem;
257
260
  };
258
261
  values2: {
259
262
  values: readonly [];
@@ -266,7 +269,7 @@ export declare const doxStyles: {
266
269
  cssNames: string[];
267
270
  values1: {
268
271
  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];
269
- formatValue: typeof ValueFormatters.rem;
272
+ formatValue: typeof DoxStylesFormatters.Value.rem;
270
273
  };
271
274
  values2: {
272
275
  values: readonly ["auto"];
@@ -279,7 +282,7 @@ export declare const doxStyles: {
279
282
  cssNames: string[];
280
283
  values1: {
281
284
  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];
282
- formatValue: typeof ValueFormatters.rem;
285
+ formatValue: typeof DoxStylesFormatters.Value.rem;
283
286
  };
284
287
  values2: {
285
288
  values: readonly ["auto"];
@@ -292,7 +295,7 @@ export declare const doxStyles: {
292
295
  cssNames: string[];
293
296
  values1: {
294
297
  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];
295
- formatValue: typeof ValueFormatters.rem;
298
+ formatValue: typeof DoxStylesFormatters.Value.rem;
296
299
  };
297
300
  values2: {
298
301
  values: readonly ["auto"];
@@ -305,7 +308,7 @@ export declare const doxStyles: {
305
308
  cssNames: string[];
306
309
  values1: {
307
310
  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];
308
- formatValue: typeof ValueFormatters.rem;
311
+ formatValue: typeof DoxStylesFormatters.Value.rem;
309
312
  };
310
313
  values2: {
311
314
  values: readonly ["auto"];
@@ -318,7 +321,7 @@ export declare const doxStyles: {
318
321
  cssNames: string[];
319
322
  values1: {
320
323
  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];
321
- formatValue: typeof ValueFormatters.rem;
324
+ formatValue: typeof DoxStylesFormatters.Value.rem;
322
325
  };
323
326
  values2: {
324
327
  values: readonly ["auto"];
@@ -331,7 +334,7 @@ export declare const doxStyles: {
331
334
  cssNames: string[];
332
335
  values1: {
333
336
  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];
334
- formatValue: typeof ValueFormatters.rem;
337
+ formatValue: typeof DoxStylesFormatters.Value.rem;
335
338
  };
336
339
  values2: {
337
340
  values: readonly ["auto"];
@@ -344,7 +347,7 @@ export declare const doxStyles: {
344
347
  cssNames: string[];
345
348
  values1: {
346
349
  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];
347
- formatValue: typeof ValueFormatters.rem;
350
+ formatValue: typeof DoxStylesFormatters.Value.rem;
348
351
  };
349
352
  values2: {
350
353
  values: readonly ["auto"];
@@ -357,7 +360,7 @@ export declare const doxStyles: {
357
360
  cssNames: string[];
358
361
  values1: {
359
362
  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];
360
- formatValue: typeof ValueFormatters.rem;
363
+ formatValue: typeof DoxStylesFormatters.Value.rem;
361
364
  };
362
365
  values2: {
363
366
  values: readonly [];
@@ -370,7 +373,7 @@ export declare const doxStyles: {
370
373
  cssNames: string[];
371
374
  values1: {
372
375
  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];
373
- formatValue: typeof ValueFormatters.rem;
376
+ formatValue: typeof DoxStylesFormatters.Value.rem;
374
377
  };
375
378
  values2: {
376
379
  values: readonly [];
@@ -383,7 +386,7 @@ export declare const doxStyles: {
383
386
  cssNames: string[];
384
387
  values1: {
385
388
  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];
386
- formatValue: typeof ValueFormatters.rem;
389
+ formatValue: typeof DoxStylesFormatters.Value.rem;
387
390
  };
388
391
  values2: {
389
392
  values: readonly [];
@@ -396,7 +399,7 @@ export declare const doxStyles: {
396
399
  cssNames: string[];
397
400
  values1: {
398
401
  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];
399
- formatValue: typeof ValueFormatters.rem;
402
+ formatValue: typeof DoxStylesFormatters.Value.rem;
400
403
  };
401
404
  values2: {
402
405
  values: readonly [];
@@ -409,7 +412,7 @@ export declare const doxStyles: {
409
412
  cssNames: string[];
410
413
  values1: {
411
414
  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];
412
- formatValue: typeof ValueFormatters.rem;
415
+ formatValue: typeof DoxStylesFormatters.Value.rem;
413
416
  };
414
417
  values2: {
415
418
  values: readonly [];
@@ -422,7 +425,7 @@ export declare const doxStyles: {
422
425
  cssNames: string[];
423
426
  values1: {
424
427
  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];
425
- formatValue: typeof ValueFormatters.rem;
428
+ formatValue: typeof DoxStylesFormatters.Value.rem;
426
429
  };
427
430
  values2: {
428
431
  values: readonly [];
@@ -435,7 +438,7 @@ export declare const doxStyles: {
435
438
  cssNames: string[];
436
439
  values1: {
437
440
  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];
438
- formatValue: typeof ValueFormatters.rem;
441
+ formatValue: typeof DoxStylesFormatters.Value.rem;
439
442
  };
440
443
  values2: {
441
444
  values: readonly [];
@@ -448,7 +451,7 @@ export declare const doxStyles: {
448
451
  cssNames: string[];
449
452
  values1: {
450
453
  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];
451
- formatValue: typeof ValueFormatters.px;
454
+ formatValue: typeof DoxStylesFormatters.Value.px;
452
455
  };
453
456
  values2: {
454
457
  values: readonly [];
@@ -461,7 +464,7 @@ export declare const doxStyles: {
461
464
  cssNames: string[];
462
465
  values1: {
463
466
  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];
464
- formatValue: typeof ValueFormatters.px;
467
+ formatValue: typeof DoxStylesFormatters.Value.px;
465
468
  };
466
469
  values2: {
467
470
  values: readonly [];
@@ -474,7 +477,7 @@ export declare const doxStyles: {
474
477
  cssNames: string[];
475
478
  values1: {
476
479
  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];
477
- formatValue: typeof ValueFormatters.px;
480
+ formatValue: typeof DoxStylesFormatters.Value.px;
478
481
  };
479
482
  values2: {
480
483
  values: readonly [];
@@ -487,7 +490,7 @@ export declare const doxStyles: {
487
490
  cssNames: string[];
488
491
  values1: {
489
492
  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];
490
- formatValue: typeof ValueFormatters.px;
493
+ formatValue: typeof DoxStylesFormatters.Value.px;
491
494
  };
492
495
  values2: {
493
496
  values: readonly [];
@@ -500,7 +503,7 @@ export declare const doxStyles: {
500
503
  cssNames: string[];
501
504
  values1: {
502
505
  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];
503
- formatValue: typeof ValueFormatters.px;
506
+ formatValue: typeof DoxStylesFormatters.Value.px;
504
507
  };
505
508
  values2: {
506
509
  values: readonly [];
@@ -513,7 +516,7 @@ export declare const doxStyles: {
513
516
  cssNames: string[];
514
517
  values1: {
515
518
  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];
516
- formatValue: typeof ValueFormatters.px;
519
+ formatValue: typeof DoxStylesFormatters.Value.px;
517
520
  };
518
521
  values2: {
519
522
  values: readonly [];
@@ -526,7 +529,7 @@ export declare const doxStyles: {
526
529
  cssNames: string[];
527
530
  values1: {
528
531
  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];
529
- formatValue: typeof ValueFormatters.px;
532
+ formatValue: typeof DoxStylesFormatters.Value.px;
530
533
  };
531
534
  values2: {
532
535
  values: readonly [];
@@ -551,7 +554,7 @@ export declare const doxStyles: {
551
554
  cssNames: string[];
552
555
  values1: {
553
556
  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];
554
- formatValue: typeof ValueFormatters.rem;
557
+ formatValue: typeof DoxStylesFormatters.Value.rem;
555
558
  };
556
559
  values2: {
557
560
  values: readonly [];
@@ -564,7 +567,7 @@ export declare const doxStyles: {
564
567
  cssNames: string[];
565
568
  values1: {
566
569
  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];
567
- formatValue: typeof ValueFormatters.rem;
570
+ formatValue: typeof DoxStylesFormatters.Value.rem;
568
571
  };
569
572
  values2: {
570
573
  values: readonly [];
@@ -577,7 +580,7 @@ export declare const doxStyles: {
577
580
  cssNames: string[];
578
581
  values1: {
579
582
  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];
580
- formatValue: typeof ValueFormatters.rem;
583
+ formatValue: typeof DoxStylesFormatters.Value.rem;
581
584
  };
582
585
  values2: {
583
586
  values: readonly [];
@@ -590,7 +593,7 @@ export declare const doxStyles: {
590
593
  cssNames: string[];
591
594
  values1: {
592
595
  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];
593
- formatValue: typeof ValueFormatters.rem;
596
+ formatValue: typeof DoxStylesFormatters.Value.rem;
594
597
  };
595
598
  values2: {
596
599
  values: readonly [];
@@ -603,7 +606,7 @@ export declare const doxStyles: {
603
606
  cssNames: string[];
604
607
  values1: {
605
608
  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];
606
- formatValue: typeof ValueFormatters.rem;
609
+ formatValue: typeof DoxStylesFormatters.Value.rem;
607
610
  };
608
611
  values2: {
609
612
  values: readonly [];
@@ -616,7 +619,7 @@ export declare const doxStyles: {
616
619
  cssNames: string[];
617
620
  values1: {
618
621
  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];
619
- formatValue: typeof ValueFormatters.rem;
622
+ formatValue: typeof DoxStylesFormatters.Value.rem;
620
623
  };
621
624
  values2: {
622
625
  values: readonly [];
@@ -629,7 +632,7 @@ export declare const doxStyles: {
629
632
  cssNames: string[];
630
633
  values1: {
631
634
  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];
632
- formatValue: typeof ValueFormatters.rem;
635
+ formatValue: typeof DoxStylesFormatters.Value.rem;
633
636
  };
634
637
  values2: {
635
638
  values: readonly [];
@@ -642,7 +645,7 @@ export declare const doxStyles: {
642
645
  cssNames: string[];
643
646
  values1: {
644
647
  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];
645
- formatValue: typeof ValueFormatters.rem;
648
+ formatValue: typeof DoxStylesFormatters.Value.rem;
646
649
  };
647
650
  values2: {
648
651
  values: readonly [];
@@ -655,7 +658,7 @@ export declare const doxStyles: {
655
658
  cssNames: string[];
656
659
  values1: {
657
660
  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];
658
- formatValue: typeof ValueFormatters.rem;
661
+ formatValue: typeof DoxStylesFormatters.Value.rem;
659
662
  };
660
663
  values2: {
661
664
  values: readonly [];
@@ -740,7 +743,7 @@ export declare const doxStyles: {
740
743
  cssNames: string[];
741
744
  values1: {
742
745
  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];
743
- formatValue: typeof ValueFormatters.px;
746
+ formatValue: typeof DoxStylesFormatters.Value.px;
744
747
  };
745
748
  values2: {
746
749
  values: readonly ["inherit"];
@@ -777,7 +780,7 @@ export declare const doxStyles: {
777
780
  cssNames: string[];
778
781
  values1: {
779
782
  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];
780
- formatValue: typeof ValueFormatters.px;
783
+ formatValue: typeof DoxStylesFormatters.Value.px;
781
784
  };
782
785
  values2: {
783
786
  values: readonly [];
@@ -790,7 +793,7 @@ export declare const doxStyles: {
790
793
  cssNames: string[];
791
794
  values1: {
792
795
  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];
793
- formatValue: typeof ValueFormatters.px;
796
+ formatValue: typeof DoxStylesFormatters.Value.px;
794
797
  };
795
798
  values2: {
796
799
  values: readonly ["font-size"];
@@ -913,7 +916,7 @@ export declare const doxStyles: {
913
916
  cssNames: string[];
914
917
  values1: {
915
918
  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];
916
- formatValue: typeof ValueFormatters.rem;
919
+ formatValue: typeof DoxStylesFormatters.Value.rem;
917
920
  };
918
921
  values2: {
919
922
  values: readonly [];
@@ -926,7 +929,7 @@ export declare const doxStyles: {
926
929
  cssNames: string[];
927
930
  values1: {
928
931
  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];
929
- formatValue: typeof ValueFormatters.rem;
932
+ formatValue: typeof DoxStylesFormatters.Value.rem;
930
933
  };
931
934
  values2: {
932
935
  values: readonly [];
@@ -939,7 +942,7 @@ export declare const doxStyles: {
939
942
  cssNames: string[];
940
943
  values1: {
941
944
  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];
942
- formatValue: typeof ValueFormatters.rem;
945
+ formatValue: typeof DoxStylesFormatters.Value.rem;
943
946
  };
944
947
  values2: {
945
948
  values: readonly [];
@@ -1012,7 +1015,7 @@ export declare const doxStyles: {
1012
1015
  cssNames: string[];
1013
1016
  values1: {
1014
1017
  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];
1015
- formatValue: (key: string, value: string | number | boolean) => string;
1018
+ formatValue: typeof DoxStylesFormatters.Value.gridColumns;
1016
1019
  };
1017
1020
  values2: {
1018
1021
  values: readonly [];
@@ -1025,11 +1028,11 @@ export declare const doxStyles: {
1025
1028
  cssNames: string[];
1026
1029
  values1: {
1027
1030
  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];
1028
- formatValue: (key: string, value: string | number | boolean) => string;
1031
+ formatValue: typeof DoxStylesFormatters.Value.gridColumn;
1029
1032
  };
1030
1033
  values2: {
1031
1034
  values: readonly ["full-row"];
1032
- formatValue: (key: string, value: string | number | boolean) => string;
1035
+ formatValue: typeof DoxStylesFormatters.Value.gridColumn;
1033
1036
  };
1034
1037
  values3: {
1035
1038
  values: readonly [];
@@ -1039,7 +1042,6 @@ export declare const doxStyles: {
1039
1042
  cssNames: string[];
1040
1043
  values1: {
1041
1044
  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];
1042
- formatValue: (key: string, value: string | number | boolean) => string;
1043
1045
  };
1044
1046
  values2: {
1045
1047
  values: readonly [];
@@ -1052,7 +1054,6 @@ export declare const doxStyles: {
1052
1054
  cssNames: string[];
1053
1055
  values1: {
1054
1056
  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];
1055
- formatValue: (key: string, value: string | number | boolean) => string;
1056
1057
  };
1057
1058
  values2: {
1058
1059
  values: readonly [];
@@ -1065,7 +1066,7 @@ export declare const doxStyles: {
1065
1066
  cssNames: string[];
1066
1067
  values1: {
1067
1068
  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];
1068
- formatValue: typeof ValueFormatters.px;
1069
+ formatValue: typeof DoxStylesFormatters.Value.px;
1069
1070
  };
1070
1071
  values2: {
1071
1072
  values: readonly [];
@@ -1090,7 +1091,7 @@ export declare const doxStyles: {
1090
1091
  cssNames: string[];
1091
1092
  values1: {
1092
1093
  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];
1093
- formatValue: typeof ValueFormatters.px;
1094
+ formatValue: typeof DoxStylesFormatters.Value.px;
1094
1095
  };
1095
1096
  values2: {
1096
1097
  values: readonly [];
@@ -1115,7 +1116,7 @@ export declare const doxStyles: {
1115
1116
  cssNames: string[];
1116
1117
  values1: {
1117
1118
  values: readonly [50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000];
1118
- formatValue: (_key: string, value: string | number | boolean) => string;
1119
+ formatValue: typeof DoxStylesFormatters.Value.ms;
1119
1120
  };
1120
1121
  values2: {
1121
1122
  values: readonly [];
@@ -1185,13 +1186,73 @@ export declare const doxStyles: {
1185
1186
  };
1186
1187
  };
1187
1188
  };
1189
+ export declare const svgStyles: {
1190
+ rotate: {
1191
+ cssNames: string[];
1192
+ values1: {
1193
+ values: readonly [0, 90, 180, 270, -90, -180, -270];
1194
+ formatValue: typeof DoxStylesFormatters.Value.rotate;
1195
+ };
1196
+ values2: {
1197
+ values: readonly [];
1198
+ };
1199
+ values3: {
1200
+ values: readonly [];
1201
+ };
1202
+ };
1203
+ flip: {
1204
+ cssNames: string[];
1205
+ values1: {
1206
+ values: readonly ["xAxis", "yAxis"];
1207
+ formatValue: typeof DoxStylesFormatters.Value.flip;
1208
+ };
1209
+ values2: {
1210
+ values: readonly [];
1211
+ };
1212
+ values3: {
1213
+ values: readonly [];
1214
+ };
1215
+ };
1216
+ };
1188
1217
  export declare const aliases: {
1218
+ w: {
1219
+ key: "width";
1220
+ cssNames: string[];
1221
+ values1: {
1222
+ values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
1223
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
1224
+ };
1225
+ values2: {
1226
+ 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];
1227
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1228
+ };
1229
+ values3: {
1230
+ 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"];
1231
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
1232
+ };
1233
+ };
1234
+ h: {
1235
+ key: "height";
1236
+ cssNames: string[];
1237
+ values1: {
1238
+ values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
1239
+ formatValue: typeof DoxStylesFormatters.Value.widthHeight;
1240
+ };
1241
+ values2: {
1242
+ 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];
1243
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1244
+ };
1245
+ values3: {
1246
+ 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"];
1247
+ formatValue: typeof DoxStylesFormatters.Value.fraction;
1248
+ };
1249
+ };
1189
1250
  m: {
1190
1251
  key: "margin";
1191
1252
  cssNames: string[];
1192
1253
  values1: {
1193
1254
  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];
1194
- formatValue: typeof ValueFormatters.rem;
1255
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1195
1256
  };
1196
1257
  values2: {
1197
1258
  values: readonly ["auto"];
@@ -1205,7 +1266,7 @@ export declare const aliases: {
1205
1266
  cssNames: string[];
1206
1267
  values1: {
1207
1268
  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];
1208
- formatValue: typeof ValueFormatters.rem;
1269
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1209
1270
  };
1210
1271
  values2: {
1211
1272
  values: readonly ["auto"];
@@ -1219,7 +1280,7 @@ export declare const aliases: {
1219
1280
  cssNames: string[];
1220
1281
  values1: {
1221
1282
  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];
1222
- formatValue: typeof ValueFormatters.rem;
1283
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1223
1284
  };
1224
1285
  values2: {
1225
1286
  values: readonly ["auto"];
@@ -1233,7 +1294,7 @@ export declare const aliases: {
1233
1294
  cssNames: string[];
1234
1295
  values1: {
1235
1296
  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];
1236
- formatValue: typeof ValueFormatters.rem;
1297
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1237
1298
  };
1238
1299
  values2: {
1239
1300
  values: readonly ["auto"];
@@ -1247,7 +1308,7 @@ export declare const aliases: {
1247
1308
  cssNames: string[];
1248
1309
  values1: {
1249
1310
  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];
1250
- formatValue: typeof ValueFormatters.rem;
1311
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1251
1312
  };
1252
1313
  values2: {
1253
1314
  values: readonly ["auto"];
@@ -1261,7 +1322,7 @@ export declare const aliases: {
1261
1322
  cssNames: string[];
1262
1323
  values1: {
1263
1324
  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];
1264
- formatValue: typeof ValueFormatters.rem;
1325
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1265
1326
  };
1266
1327
  values2: {
1267
1328
  values: readonly ["auto"];
@@ -1275,7 +1336,7 @@ export declare const aliases: {
1275
1336
  cssNames: string[];
1276
1337
  values1: {
1277
1338
  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];
1278
- formatValue: typeof ValueFormatters.rem;
1339
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1279
1340
  };
1280
1341
  values2: {
1281
1342
  values: readonly ["auto"];
@@ -1289,7 +1350,7 @@ export declare const aliases: {
1289
1350
  cssNames: string[];
1290
1351
  values1: {
1291
1352
  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];
1292
- formatValue: typeof ValueFormatters.rem;
1353
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1293
1354
  };
1294
1355
  values2: {
1295
1356
  values: readonly [];
@@ -1303,7 +1364,7 @@ export declare const aliases: {
1303
1364
  cssNames: string[];
1304
1365
  values1: {
1305
1366
  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];
1306
- formatValue: typeof ValueFormatters.rem;
1367
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1307
1368
  };
1308
1369
  values2: {
1309
1370
  values: readonly [];
@@ -1317,7 +1378,7 @@ export declare const aliases: {
1317
1378
  cssNames: string[];
1318
1379
  values1: {
1319
1380
  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];
1320
- formatValue: typeof ValueFormatters.rem;
1381
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1321
1382
  };
1322
1383
  values2: {
1323
1384
  values: readonly [];
@@ -1331,7 +1392,7 @@ export declare const aliases: {
1331
1392
  cssNames: string[];
1332
1393
  values1: {
1333
1394
  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];
1334
- formatValue: typeof ValueFormatters.rem;
1395
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1335
1396
  };
1336
1397
  values2: {
1337
1398
  values: readonly [];
@@ -1345,7 +1406,7 @@ export declare const aliases: {
1345
1406
  cssNames: string[];
1346
1407
  values1: {
1347
1408
  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];
1348
- formatValue: typeof ValueFormatters.rem;
1409
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1349
1410
  };
1350
1411
  values2: {
1351
1412
  values: readonly [];
@@ -1359,7 +1420,7 @@ export declare const aliases: {
1359
1420
  cssNames: string[];
1360
1421
  values1: {
1361
1422
  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];
1362
- formatValue: typeof ValueFormatters.rem;
1423
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1363
1424
  };
1364
1425
  values2: {
1365
1426
  values: readonly [];
@@ -1373,7 +1434,7 @@ export declare const aliases: {
1373
1434
  cssNames: string[];
1374
1435
  values1: {
1375
1436
  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];
1376
- formatValue: typeof ValueFormatters.rem;
1437
+ formatValue: typeof DoxStylesFormatters.Value.rem;
1377
1438
  };
1378
1439
  values2: {
1379
1440
  values: readonly [];
@@ -1387,7 +1448,7 @@ export declare const aliases: {
1387
1448
  cssNames: string[];
1388
1449
  values1: {
1389
1450
  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];
1390
- formatValue: typeof ValueFormatters.px;
1451
+ formatValue: typeof DoxStylesFormatters.Value.px;
1391
1452
  };
1392
1453
  values2: {
1393
1454
  values: readonly [];
@@ -1401,7 +1462,7 @@ export declare const aliases: {
1401
1462
  cssNames: string[];
1402
1463
  values1: {
1403
1464
  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];
1404
- formatValue: typeof ValueFormatters.px;
1465
+ formatValue: typeof DoxStylesFormatters.Value.px;
1405
1466
  };
1406
1467
  values2: {
1407
1468
  values: readonly [];
@@ -1415,7 +1476,7 @@ export declare const aliases: {
1415
1476
  cssNames: string[];
1416
1477
  values1: {
1417
1478
  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];
1418
- formatValue: typeof ValueFormatters.px;
1479
+ formatValue: typeof DoxStylesFormatters.Value.px;
1419
1480
  };
1420
1481
  values2: {
1421
1482
  values: readonly [];
@@ -1429,7 +1490,7 @@ export declare const aliases: {
1429
1490
  cssNames: string[];
1430
1491
  values1: {
1431
1492
  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];
1432
- formatValue: typeof ValueFormatters.px;
1493
+ formatValue: typeof DoxStylesFormatters.Value.px;
1433
1494
  };
1434
1495
  values2: {
1435
1496
  values: readonly [];
@@ -1443,7 +1504,7 @@ export declare const aliases: {
1443
1504
  cssNames: string[];
1444
1505
  values1: {
1445
1506
  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];
1446
- formatValue: typeof ValueFormatters.px;
1507
+ formatValue: typeof DoxStylesFormatters.Value.px;
1447
1508
  };
1448
1509
  values2: {
1449
1510
  values: readonly [];
@@ -1457,7 +1518,7 @@ export declare const aliases: {
1457
1518
  cssNames: string[];
1458
1519
  values1: {
1459
1520
  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];
1460
- formatValue: typeof ValueFormatters.px;
1521
+ formatValue: typeof DoxStylesFormatters.Value.px;
1461
1522
  };
1462
1523
  values2: {
1463
1524
  values: readonly [];
@@ -1471,7 +1532,7 @@ export declare const aliases: {
1471
1532
  cssNames: string[];
1472
1533
  values1: {
1473
1534
  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];
1474
- formatValue: typeof ValueFormatters.px;
1535
+ formatValue: typeof DoxStylesFormatters.Value.px;
1475
1536
  };
1476
1537
  values2: {
1477
1538
  values: readonly [];
@@ -1538,7 +1599,12 @@ type Styles<T extends Record<string, StyleItem>> = {
1538
1599
  };
1539
1600
  export type StyleKey = keyof typeof doxStyles;
1540
1601
  export type AliasKey = keyof typeof aliases;
1541
- export type ThemeKey = keyof typeof themeStyles;
1542
1602
  type DoxNormalStyles = Styles<typeof doxStyles> & Styles<typeof aliases> & ThemeComponentProps;
1543
- export type DoxStyleProps = DoxNormalStyles & Hovered<DoxNormalStyles> & Focused<DoxNormalStyles> & Activated<DoxNormalStyles> & Augmented.BoxProps;
1603
+ interface DoxPseudoClasses {
1604
+ hover?: boolean;
1605
+ focus?: boolean;
1606
+ }
1607
+ export type DoxStyleProps = DoxNormalStyles & DoxPseudoClasses & Hovered<DoxNormalStyles> & Focused<DoxNormalStyles> & Activated<DoxNormalStyles> & Augmented.BoxProps;
1608
+ type SvgNormalStyles = Styles<typeof svgStyles> & ThemeComponentProps;
1609
+ export type DoxSvgStyles = SvgNormalStyles & Hovered<SvgNormalStyles> & Focused<SvgNormalStyles> & Activated<SvgNormalStyles> & Augmented.SvgProps;
1544
1610
  export {};