@cronocode/react-box 1.6.1 → 1.6.2
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.
- package/baseSvg.module.css.cjs +1 -1
- package/baseSvg.module.css.mjs +2 -2
- package/box.module.css.cjs +1 -1
- package/box.module.css.mjs +1 -1
- package/components/dox/doxStyles.d.ts +111 -114
- package/components/dox/doxStylesFormatters.d.ts +15 -0
- package/components/dox/stylesContext.d.ts +1 -0
- package/components/dox.cjs +7 -1
- package/components/dox.mjs +377 -316
- package/package.json +1 -1
- package/style.css +1 -1
- package/types.d.ts +0 -9
|
@@ -1,14 +1,6 @@
|
|
|
1
1
|
import { ThemeComponentProps } from '../../theme';
|
|
2
2
|
import { Augmented } from '../../types';
|
|
3
|
-
|
|
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;
|
|
@@ -27,16 +19,7 @@ export interface StyleItem {
|
|
|
27
19
|
values3: StyleValues;
|
|
28
20
|
pseudoSuffix?: PseudoClassSuffix;
|
|
29
21
|
isThemeStyle?: boolean;
|
|
30
|
-
|
|
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;
|
|
22
|
+
isPseudoClass?: boolean;
|
|
40
23
|
}
|
|
41
24
|
export declare const themeStyles: {
|
|
42
25
|
shadow: {
|
|
@@ -64,6 +47,18 @@ export declare const themeStyles: {
|
|
|
64
47
|
formatValue: (key: string, value: string | number | boolean) => string;
|
|
65
48
|
};
|
|
66
49
|
};
|
|
50
|
+
export interface PseudoClassStyleType {
|
|
51
|
+
className: string;
|
|
52
|
+
}
|
|
53
|
+
export declare const pseudoClassStyles: {
|
|
54
|
+
hover: {
|
|
55
|
+
className: string;
|
|
56
|
+
};
|
|
57
|
+
focus: {
|
|
58
|
+
className: string;
|
|
59
|
+
};
|
|
60
|
+
};
|
|
61
|
+
export type PseudoClassType = keyof typeof pseudoClassStyles;
|
|
67
62
|
export declare const doxStyles: {
|
|
68
63
|
display: {
|
|
69
64
|
cssNames: string[];
|
|
@@ -93,96 +88,96 @@ export declare const doxStyles: {
|
|
|
93
88
|
cssNames: string[];
|
|
94
89
|
values1: {
|
|
95
90
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
96
|
-
formatValue: typeof
|
|
91
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
97
92
|
};
|
|
98
93
|
values2: {
|
|
99
94
|
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
|
|
95
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
101
96
|
};
|
|
102
97
|
values3: {
|
|
103
98
|
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
|
|
105
|
-
formatClassName: typeof
|
|
99
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
100
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
106
101
|
};
|
|
107
102
|
};
|
|
108
103
|
minWidth: {
|
|
109
104
|
cssNames: string[];
|
|
110
105
|
values1: {
|
|
111
106
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
112
|
-
formatValue: typeof
|
|
107
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
113
108
|
};
|
|
114
109
|
values2: {
|
|
115
110
|
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
|
|
111
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
117
112
|
};
|
|
118
113
|
values3: {
|
|
119
114
|
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
|
|
121
|
-
formatClassName: typeof
|
|
115
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
116
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
122
117
|
};
|
|
123
118
|
};
|
|
124
119
|
maxWidth: {
|
|
125
120
|
cssNames: string[];
|
|
126
121
|
values1: {
|
|
127
122
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
128
|
-
formatValue: typeof
|
|
123
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
129
124
|
};
|
|
130
125
|
values2: {
|
|
131
126
|
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
|
|
127
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
133
128
|
};
|
|
134
129
|
values3: {
|
|
135
130
|
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
|
|
137
|
-
formatClassName: typeof
|
|
131
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
132
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
138
133
|
};
|
|
139
134
|
};
|
|
140
135
|
height: {
|
|
141
136
|
cssNames: string[];
|
|
142
137
|
values1: {
|
|
143
138
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
144
|
-
formatValue: typeof
|
|
139
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
145
140
|
};
|
|
146
141
|
values2: {
|
|
147
142
|
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
|
|
143
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
149
144
|
};
|
|
150
145
|
values3: {
|
|
151
146
|
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
|
|
153
|
-
formatClassName: typeof
|
|
147
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
148
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
154
149
|
};
|
|
155
150
|
};
|
|
156
151
|
minHeight: {
|
|
157
152
|
cssNames: string[];
|
|
158
153
|
values1: {
|
|
159
154
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
160
|
-
formatValue: typeof
|
|
155
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
161
156
|
};
|
|
162
157
|
values2: {
|
|
163
158
|
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
|
|
159
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
165
160
|
};
|
|
166
161
|
values3: {
|
|
167
162
|
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
|
|
169
|
-
formatClassName: typeof
|
|
163
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
164
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
170
165
|
};
|
|
171
166
|
};
|
|
172
167
|
maxHeight: {
|
|
173
168
|
cssNames: string[];
|
|
174
169
|
values1: {
|
|
175
170
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
176
|
-
formatValue: typeof
|
|
171
|
+
formatValue: typeof DoxStylesFormatters.Value.widthHeight;
|
|
177
172
|
};
|
|
178
173
|
values2: {
|
|
179
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];
|
|
180
|
-
formatValue: typeof
|
|
175
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
181
176
|
};
|
|
182
177
|
values3: {
|
|
183
178
|
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
|
|
185
|
-
formatClassName: typeof
|
|
179
|
+
formatValue: typeof DoxStylesFormatters.Value.fraction;
|
|
180
|
+
formatClassName: typeof DoxStylesFormatters.ClassName.fraction;
|
|
186
181
|
};
|
|
187
182
|
};
|
|
188
183
|
position: {
|
|
@@ -201,7 +196,7 @@ export declare const doxStyles: {
|
|
|
201
196
|
cssNames: string[];
|
|
202
197
|
values1: {
|
|
203
198
|
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
|
|
199
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
205
200
|
};
|
|
206
201
|
values2: {
|
|
207
202
|
values: readonly [];
|
|
@@ -214,7 +209,7 @@ export declare const doxStyles: {
|
|
|
214
209
|
cssNames: string[];
|
|
215
210
|
values1: {
|
|
216
211
|
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
|
|
212
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
218
213
|
};
|
|
219
214
|
values2: {
|
|
220
215
|
values: readonly [];
|
|
@@ -227,7 +222,7 @@ export declare const doxStyles: {
|
|
|
227
222
|
cssNames: string[];
|
|
228
223
|
values1: {
|
|
229
224
|
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
|
|
225
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
231
226
|
};
|
|
232
227
|
values2: {
|
|
233
228
|
values: readonly [];
|
|
@@ -240,7 +235,7 @@ export declare const doxStyles: {
|
|
|
240
235
|
cssNames: string[];
|
|
241
236
|
values1: {
|
|
242
237
|
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
|
|
238
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
244
239
|
};
|
|
245
240
|
values2: {
|
|
246
241
|
values: readonly [];
|
|
@@ -253,7 +248,7 @@ export declare const doxStyles: {
|
|
|
253
248
|
cssNames: string[];
|
|
254
249
|
values1: {
|
|
255
250
|
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
|
|
251
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
257
252
|
};
|
|
258
253
|
values2: {
|
|
259
254
|
values: readonly [];
|
|
@@ -266,7 +261,7 @@ export declare const doxStyles: {
|
|
|
266
261
|
cssNames: string[];
|
|
267
262
|
values1: {
|
|
268
263
|
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
|
|
264
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
270
265
|
};
|
|
271
266
|
values2: {
|
|
272
267
|
values: readonly ["auto"];
|
|
@@ -279,7 +274,7 @@ export declare const doxStyles: {
|
|
|
279
274
|
cssNames: string[];
|
|
280
275
|
values1: {
|
|
281
276
|
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
|
|
277
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
283
278
|
};
|
|
284
279
|
values2: {
|
|
285
280
|
values: readonly ["auto"];
|
|
@@ -292,7 +287,7 @@ export declare const doxStyles: {
|
|
|
292
287
|
cssNames: string[];
|
|
293
288
|
values1: {
|
|
294
289
|
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
|
|
290
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
296
291
|
};
|
|
297
292
|
values2: {
|
|
298
293
|
values: readonly ["auto"];
|
|
@@ -305,7 +300,7 @@ export declare const doxStyles: {
|
|
|
305
300
|
cssNames: string[];
|
|
306
301
|
values1: {
|
|
307
302
|
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
|
|
303
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
309
304
|
};
|
|
310
305
|
values2: {
|
|
311
306
|
values: readonly ["auto"];
|
|
@@ -318,7 +313,7 @@ export declare const doxStyles: {
|
|
|
318
313
|
cssNames: string[];
|
|
319
314
|
values1: {
|
|
320
315
|
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
|
|
316
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
322
317
|
};
|
|
323
318
|
values2: {
|
|
324
319
|
values: readonly ["auto"];
|
|
@@ -331,7 +326,7 @@ export declare const doxStyles: {
|
|
|
331
326
|
cssNames: string[];
|
|
332
327
|
values1: {
|
|
333
328
|
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
|
|
329
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
335
330
|
};
|
|
336
331
|
values2: {
|
|
337
332
|
values: readonly ["auto"];
|
|
@@ -344,7 +339,7 @@ export declare const doxStyles: {
|
|
|
344
339
|
cssNames: string[];
|
|
345
340
|
values1: {
|
|
346
341
|
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
|
|
342
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
348
343
|
};
|
|
349
344
|
values2: {
|
|
350
345
|
values: readonly ["auto"];
|
|
@@ -357,7 +352,7 @@ export declare const doxStyles: {
|
|
|
357
352
|
cssNames: string[];
|
|
358
353
|
values1: {
|
|
359
354
|
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
|
|
355
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
361
356
|
};
|
|
362
357
|
values2: {
|
|
363
358
|
values: readonly [];
|
|
@@ -370,7 +365,7 @@ export declare const doxStyles: {
|
|
|
370
365
|
cssNames: string[];
|
|
371
366
|
values1: {
|
|
372
367
|
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
|
|
368
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
374
369
|
};
|
|
375
370
|
values2: {
|
|
376
371
|
values: readonly [];
|
|
@@ -383,7 +378,7 @@ export declare const doxStyles: {
|
|
|
383
378
|
cssNames: string[];
|
|
384
379
|
values1: {
|
|
385
380
|
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
|
|
381
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
387
382
|
};
|
|
388
383
|
values2: {
|
|
389
384
|
values: readonly [];
|
|
@@ -396,7 +391,7 @@ export declare const doxStyles: {
|
|
|
396
391
|
cssNames: string[];
|
|
397
392
|
values1: {
|
|
398
393
|
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
|
|
394
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
400
395
|
};
|
|
401
396
|
values2: {
|
|
402
397
|
values: readonly [];
|
|
@@ -409,7 +404,7 @@ export declare const doxStyles: {
|
|
|
409
404
|
cssNames: string[];
|
|
410
405
|
values1: {
|
|
411
406
|
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
|
|
407
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
413
408
|
};
|
|
414
409
|
values2: {
|
|
415
410
|
values: readonly [];
|
|
@@ -422,7 +417,7 @@ export declare const doxStyles: {
|
|
|
422
417
|
cssNames: string[];
|
|
423
418
|
values1: {
|
|
424
419
|
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
|
|
420
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
426
421
|
};
|
|
427
422
|
values2: {
|
|
428
423
|
values: readonly [];
|
|
@@ -435,7 +430,7 @@ export declare const doxStyles: {
|
|
|
435
430
|
cssNames: string[];
|
|
436
431
|
values1: {
|
|
437
432
|
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
|
|
433
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
439
434
|
};
|
|
440
435
|
values2: {
|
|
441
436
|
values: readonly [];
|
|
@@ -448,7 +443,7 @@ export declare const doxStyles: {
|
|
|
448
443
|
cssNames: string[];
|
|
449
444
|
values1: {
|
|
450
445
|
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
|
|
446
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
452
447
|
};
|
|
453
448
|
values2: {
|
|
454
449
|
values: readonly [];
|
|
@@ -461,7 +456,7 @@ export declare const doxStyles: {
|
|
|
461
456
|
cssNames: string[];
|
|
462
457
|
values1: {
|
|
463
458
|
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
|
|
459
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
465
460
|
};
|
|
466
461
|
values2: {
|
|
467
462
|
values: readonly [];
|
|
@@ -474,7 +469,7 @@ export declare const doxStyles: {
|
|
|
474
469
|
cssNames: string[];
|
|
475
470
|
values1: {
|
|
476
471
|
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
|
|
472
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
478
473
|
};
|
|
479
474
|
values2: {
|
|
480
475
|
values: readonly [];
|
|
@@ -487,7 +482,7 @@ export declare const doxStyles: {
|
|
|
487
482
|
cssNames: string[];
|
|
488
483
|
values1: {
|
|
489
484
|
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
|
|
485
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
491
486
|
};
|
|
492
487
|
values2: {
|
|
493
488
|
values: readonly [];
|
|
@@ -500,7 +495,7 @@ export declare const doxStyles: {
|
|
|
500
495
|
cssNames: string[];
|
|
501
496
|
values1: {
|
|
502
497
|
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
|
|
498
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
504
499
|
};
|
|
505
500
|
values2: {
|
|
506
501
|
values: readonly [];
|
|
@@ -513,7 +508,7 @@ export declare const doxStyles: {
|
|
|
513
508
|
cssNames: string[];
|
|
514
509
|
values1: {
|
|
515
510
|
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
|
|
511
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
517
512
|
};
|
|
518
513
|
values2: {
|
|
519
514
|
values: readonly [];
|
|
@@ -526,7 +521,7 @@ export declare const doxStyles: {
|
|
|
526
521
|
cssNames: string[];
|
|
527
522
|
values1: {
|
|
528
523
|
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
|
|
524
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
530
525
|
};
|
|
531
526
|
values2: {
|
|
532
527
|
values: readonly [];
|
|
@@ -551,7 +546,7 @@ export declare const doxStyles: {
|
|
|
551
546
|
cssNames: string[];
|
|
552
547
|
values1: {
|
|
553
548
|
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
|
|
549
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
555
550
|
};
|
|
556
551
|
values2: {
|
|
557
552
|
values: readonly [];
|
|
@@ -564,7 +559,7 @@ export declare const doxStyles: {
|
|
|
564
559
|
cssNames: string[];
|
|
565
560
|
values1: {
|
|
566
561
|
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
|
|
562
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
568
563
|
};
|
|
569
564
|
values2: {
|
|
570
565
|
values: readonly [];
|
|
@@ -577,7 +572,7 @@ export declare const doxStyles: {
|
|
|
577
572
|
cssNames: string[];
|
|
578
573
|
values1: {
|
|
579
574
|
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
|
|
575
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
581
576
|
};
|
|
582
577
|
values2: {
|
|
583
578
|
values: readonly [];
|
|
@@ -590,7 +585,7 @@ export declare const doxStyles: {
|
|
|
590
585
|
cssNames: string[];
|
|
591
586
|
values1: {
|
|
592
587
|
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
|
|
588
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
594
589
|
};
|
|
595
590
|
values2: {
|
|
596
591
|
values: readonly [];
|
|
@@ -603,7 +598,7 @@ export declare const doxStyles: {
|
|
|
603
598
|
cssNames: string[];
|
|
604
599
|
values1: {
|
|
605
600
|
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
|
|
601
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
607
602
|
};
|
|
608
603
|
values2: {
|
|
609
604
|
values: readonly [];
|
|
@@ -616,7 +611,7 @@ export declare const doxStyles: {
|
|
|
616
611
|
cssNames: string[];
|
|
617
612
|
values1: {
|
|
618
613
|
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
|
|
614
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
620
615
|
};
|
|
621
616
|
values2: {
|
|
622
617
|
values: readonly [];
|
|
@@ -629,7 +624,7 @@ export declare const doxStyles: {
|
|
|
629
624
|
cssNames: string[];
|
|
630
625
|
values1: {
|
|
631
626
|
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
|
|
627
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
633
628
|
};
|
|
634
629
|
values2: {
|
|
635
630
|
values: readonly [];
|
|
@@ -642,7 +637,7 @@ export declare const doxStyles: {
|
|
|
642
637
|
cssNames: string[];
|
|
643
638
|
values1: {
|
|
644
639
|
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
|
|
640
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
646
641
|
};
|
|
647
642
|
values2: {
|
|
648
643
|
values: readonly [];
|
|
@@ -655,7 +650,7 @@ export declare const doxStyles: {
|
|
|
655
650
|
cssNames: string[];
|
|
656
651
|
values1: {
|
|
657
652
|
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
|
|
653
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
659
654
|
};
|
|
660
655
|
values2: {
|
|
661
656
|
values: readonly [];
|
|
@@ -740,7 +735,7 @@ export declare const doxStyles: {
|
|
|
740
735
|
cssNames: string[];
|
|
741
736
|
values1: {
|
|
742
737
|
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
|
|
738
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
744
739
|
};
|
|
745
740
|
values2: {
|
|
746
741
|
values: readonly ["inherit"];
|
|
@@ -777,7 +772,7 @@ export declare const doxStyles: {
|
|
|
777
772
|
cssNames: string[];
|
|
778
773
|
values1: {
|
|
779
774
|
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
|
|
775
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
781
776
|
};
|
|
782
777
|
values2: {
|
|
783
778
|
values: readonly [];
|
|
@@ -790,7 +785,7 @@ export declare const doxStyles: {
|
|
|
790
785
|
cssNames: string[];
|
|
791
786
|
values1: {
|
|
792
787
|
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
|
|
788
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
794
789
|
};
|
|
795
790
|
values2: {
|
|
796
791
|
values: readonly ["font-size"];
|
|
@@ -913,7 +908,7 @@ export declare const doxStyles: {
|
|
|
913
908
|
cssNames: string[];
|
|
914
909
|
values1: {
|
|
915
910
|
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
|
|
911
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
917
912
|
};
|
|
918
913
|
values2: {
|
|
919
914
|
values: readonly [];
|
|
@@ -926,7 +921,7 @@ export declare const doxStyles: {
|
|
|
926
921
|
cssNames: string[];
|
|
927
922
|
values1: {
|
|
928
923
|
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
|
|
924
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
930
925
|
};
|
|
931
926
|
values2: {
|
|
932
927
|
values: readonly [];
|
|
@@ -939,7 +934,7 @@ export declare const doxStyles: {
|
|
|
939
934
|
cssNames: string[];
|
|
940
935
|
values1: {
|
|
941
936
|
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
|
|
937
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
943
938
|
};
|
|
944
939
|
values2: {
|
|
945
940
|
values: readonly [];
|
|
@@ -1012,7 +1007,7 @@ export declare const doxStyles: {
|
|
|
1012
1007
|
cssNames: string[];
|
|
1013
1008
|
values1: {
|
|
1014
1009
|
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:
|
|
1010
|
+
formatValue: typeof DoxStylesFormatters.Value.gridColumns;
|
|
1016
1011
|
};
|
|
1017
1012
|
values2: {
|
|
1018
1013
|
values: readonly [];
|
|
@@ -1025,11 +1020,11 @@ export declare const doxStyles: {
|
|
|
1025
1020
|
cssNames: string[];
|
|
1026
1021
|
values1: {
|
|
1027
1022
|
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:
|
|
1023
|
+
formatValue: typeof DoxStylesFormatters.Value.gridColumn;
|
|
1029
1024
|
};
|
|
1030
1025
|
values2: {
|
|
1031
1026
|
values: readonly ["full-row"];
|
|
1032
|
-
formatValue:
|
|
1027
|
+
formatValue: typeof DoxStylesFormatters.Value.gridColumn;
|
|
1033
1028
|
};
|
|
1034
1029
|
values3: {
|
|
1035
1030
|
values: readonly [];
|
|
@@ -1039,7 +1034,6 @@ export declare const doxStyles: {
|
|
|
1039
1034
|
cssNames: string[];
|
|
1040
1035
|
values1: {
|
|
1041
1036
|
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
1037
|
};
|
|
1044
1038
|
values2: {
|
|
1045
1039
|
values: readonly [];
|
|
@@ -1052,7 +1046,6 @@ export declare const doxStyles: {
|
|
|
1052
1046
|
cssNames: string[];
|
|
1053
1047
|
values1: {
|
|
1054
1048
|
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
1049
|
};
|
|
1057
1050
|
values2: {
|
|
1058
1051
|
values: readonly [];
|
|
@@ -1065,7 +1058,7 @@ export declare const doxStyles: {
|
|
|
1065
1058
|
cssNames: string[];
|
|
1066
1059
|
values1: {
|
|
1067
1060
|
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
|
|
1061
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1069
1062
|
};
|
|
1070
1063
|
values2: {
|
|
1071
1064
|
values: readonly [];
|
|
@@ -1090,7 +1083,7 @@ export declare const doxStyles: {
|
|
|
1090
1083
|
cssNames: string[];
|
|
1091
1084
|
values1: {
|
|
1092
1085
|
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
|
|
1086
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1094
1087
|
};
|
|
1095
1088
|
values2: {
|
|
1096
1089
|
values: readonly [];
|
|
@@ -1115,7 +1108,7 @@ export declare const doxStyles: {
|
|
|
1115
1108
|
cssNames: string[];
|
|
1116
1109
|
values1: {
|
|
1117
1110
|
values: readonly [50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000];
|
|
1118
|
-
formatValue:
|
|
1111
|
+
formatValue: typeof DoxStylesFormatters.Value.ms;
|
|
1119
1112
|
};
|
|
1120
1113
|
values2: {
|
|
1121
1114
|
values: readonly [];
|
|
@@ -1191,7 +1184,7 @@ export declare const aliases: {
|
|
|
1191
1184
|
cssNames: string[];
|
|
1192
1185
|
values1: {
|
|
1193
1186
|
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
|
|
1187
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1195
1188
|
};
|
|
1196
1189
|
values2: {
|
|
1197
1190
|
values: readonly ["auto"];
|
|
@@ -1205,7 +1198,7 @@ export declare const aliases: {
|
|
|
1205
1198
|
cssNames: string[];
|
|
1206
1199
|
values1: {
|
|
1207
1200
|
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
|
|
1201
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1209
1202
|
};
|
|
1210
1203
|
values2: {
|
|
1211
1204
|
values: readonly ["auto"];
|
|
@@ -1219,7 +1212,7 @@ export declare const aliases: {
|
|
|
1219
1212
|
cssNames: string[];
|
|
1220
1213
|
values1: {
|
|
1221
1214
|
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
|
|
1215
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1223
1216
|
};
|
|
1224
1217
|
values2: {
|
|
1225
1218
|
values: readonly ["auto"];
|
|
@@ -1233,7 +1226,7 @@ export declare const aliases: {
|
|
|
1233
1226
|
cssNames: string[];
|
|
1234
1227
|
values1: {
|
|
1235
1228
|
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
|
|
1229
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1237
1230
|
};
|
|
1238
1231
|
values2: {
|
|
1239
1232
|
values: readonly ["auto"];
|
|
@@ -1247,7 +1240,7 @@ export declare const aliases: {
|
|
|
1247
1240
|
cssNames: string[];
|
|
1248
1241
|
values1: {
|
|
1249
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, -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
|
|
1243
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1251
1244
|
};
|
|
1252
1245
|
values2: {
|
|
1253
1246
|
values: readonly ["auto"];
|
|
@@ -1261,7 +1254,7 @@ export declare const aliases: {
|
|
|
1261
1254
|
cssNames: string[];
|
|
1262
1255
|
values1: {
|
|
1263
1256
|
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
|
|
1257
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1265
1258
|
};
|
|
1266
1259
|
values2: {
|
|
1267
1260
|
values: readonly ["auto"];
|
|
@@ -1275,7 +1268,7 @@ export declare const aliases: {
|
|
|
1275
1268
|
cssNames: string[];
|
|
1276
1269
|
values1: {
|
|
1277
1270
|
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
|
|
1271
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1279
1272
|
};
|
|
1280
1273
|
values2: {
|
|
1281
1274
|
values: readonly ["auto"];
|
|
@@ -1289,7 +1282,7 @@ export declare const aliases: {
|
|
|
1289
1282
|
cssNames: string[];
|
|
1290
1283
|
values1: {
|
|
1291
1284
|
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
|
|
1285
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1293
1286
|
};
|
|
1294
1287
|
values2: {
|
|
1295
1288
|
values: readonly [];
|
|
@@ -1303,7 +1296,7 @@ export declare const aliases: {
|
|
|
1303
1296
|
cssNames: string[];
|
|
1304
1297
|
values1: {
|
|
1305
1298
|
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
|
|
1299
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1307
1300
|
};
|
|
1308
1301
|
values2: {
|
|
1309
1302
|
values: readonly [];
|
|
@@ -1317,7 +1310,7 @@ export declare const aliases: {
|
|
|
1317
1310
|
cssNames: string[];
|
|
1318
1311
|
values1: {
|
|
1319
1312
|
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
|
|
1313
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1321
1314
|
};
|
|
1322
1315
|
values2: {
|
|
1323
1316
|
values: readonly [];
|
|
@@ -1331,7 +1324,7 @@ export declare const aliases: {
|
|
|
1331
1324
|
cssNames: string[];
|
|
1332
1325
|
values1: {
|
|
1333
1326
|
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
|
|
1327
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1335
1328
|
};
|
|
1336
1329
|
values2: {
|
|
1337
1330
|
values: readonly [];
|
|
@@ -1345,7 +1338,7 @@ export declare const aliases: {
|
|
|
1345
1338
|
cssNames: string[];
|
|
1346
1339
|
values1: {
|
|
1347
1340
|
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
|
|
1341
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1349
1342
|
};
|
|
1350
1343
|
values2: {
|
|
1351
1344
|
values: readonly [];
|
|
@@ -1359,7 +1352,7 @@ export declare const aliases: {
|
|
|
1359
1352
|
cssNames: string[];
|
|
1360
1353
|
values1: {
|
|
1361
1354
|
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
|
|
1355
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1363
1356
|
};
|
|
1364
1357
|
values2: {
|
|
1365
1358
|
values: readonly [];
|
|
@@ -1373,7 +1366,7 @@ export declare const aliases: {
|
|
|
1373
1366
|
cssNames: string[];
|
|
1374
1367
|
values1: {
|
|
1375
1368
|
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
|
|
1369
|
+
formatValue: typeof DoxStylesFormatters.Value.rem;
|
|
1377
1370
|
};
|
|
1378
1371
|
values2: {
|
|
1379
1372
|
values: readonly [];
|
|
@@ -1387,7 +1380,7 @@ export declare const aliases: {
|
|
|
1387
1380
|
cssNames: string[];
|
|
1388
1381
|
values1: {
|
|
1389
1382
|
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
|
|
1383
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1391
1384
|
};
|
|
1392
1385
|
values2: {
|
|
1393
1386
|
values: readonly [];
|
|
@@ -1401,7 +1394,7 @@ export declare const aliases: {
|
|
|
1401
1394
|
cssNames: string[];
|
|
1402
1395
|
values1: {
|
|
1403
1396
|
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
|
|
1397
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1405
1398
|
};
|
|
1406
1399
|
values2: {
|
|
1407
1400
|
values: readonly [];
|
|
@@ -1415,7 +1408,7 @@ export declare const aliases: {
|
|
|
1415
1408
|
cssNames: string[];
|
|
1416
1409
|
values1: {
|
|
1417
1410
|
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
|
|
1411
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1419
1412
|
};
|
|
1420
1413
|
values2: {
|
|
1421
1414
|
values: readonly [];
|
|
@@ -1429,7 +1422,7 @@ export declare const aliases: {
|
|
|
1429
1422
|
cssNames: string[];
|
|
1430
1423
|
values1: {
|
|
1431
1424
|
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
|
|
1425
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1433
1426
|
};
|
|
1434
1427
|
values2: {
|
|
1435
1428
|
values: readonly [];
|
|
@@ -1443,7 +1436,7 @@ export declare const aliases: {
|
|
|
1443
1436
|
cssNames: string[];
|
|
1444
1437
|
values1: {
|
|
1445
1438
|
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
|
|
1439
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1447
1440
|
};
|
|
1448
1441
|
values2: {
|
|
1449
1442
|
values: readonly [];
|
|
@@ -1457,7 +1450,7 @@ export declare const aliases: {
|
|
|
1457
1450
|
cssNames: string[];
|
|
1458
1451
|
values1: {
|
|
1459
1452
|
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
|
|
1453
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1461
1454
|
};
|
|
1462
1455
|
values2: {
|
|
1463
1456
|
values: readonly [];
|
|
@@ -1471,7 +1464,7 @@ export declare const aliases: {
|
|
|
1471
1464
|
cssNames: string[];
|
|
1472
1465
|
values1: {
|
|
1473
1466
|
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
|
|
1467
|
+
formatValue: typeof DoxStylesFormatters.Value.px;
|
|
1475
1468
|
};
|
|
1476
1469
|
values2: {
|
|
1477
1470
|
values: readonly [];
|
|
@@ -1540,5 +1533,9 @@ export type StyleKey = keyof typeof doxStyles;
|
|
|
1540
1533
|
export type AliasKey = keyof typeof aliases;
|
|
1541
1534
|
export type ThemeKey = keyof typeof themeStyles;
|
|
1542
1535
|
type DoxNormalStyles = Styles<typeof doxStyles> & Styles<typeof aliases> & ThemeComponentProps;
|
|
1543
|
-
|
|
1536
|
+
interface DoxPseudoClasses {
|
|
1537
|
+
hover?: boolean;
|
|
1538
|
+
focus?: boolean;
|
|
1539
|
+
}
|
|
1540
|
+
export type DoxStyleProps = DoxNormalStyles & DoxPseudoClasses & Hovered<DoxNormalStyles> & Focused<DoxNormalStyles> & Activated<DoxNormalStyles> & Augmented.BoxProps;
|
|
1544
1541
|
export {};
|