@cronocode/react-box 1.7.1 → 1.7.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.
- package/box.d.ts +16 -2
- package/box.js +12 -1
- package/components/baseSvg.d.ts +8 -8
- package/components/baseSvg.js +12 -11
- package/components/button.js +6 -5
- package/components/checkbox.js +12 -12
- package/components/dataGrid.js +18 -16
- package/components/flex.js +9 -8
- package/components/form.js +9 -8
- package/components/grid.js +9 -8
- package/components/radioButton.js +5 -4
- package/components/textarea.js +4 -3
- package/components/textbox.js +4 -3
- package/components/tooltip.js +40 -33
- package/{components/dox/doxStyles.d.ts → core/boxStyles.d.ts} +150 -176
- package/{components/dox/doxStylesFormatters.d.ts → core/boxStylesFormatters.d.ts} +1 -1
- package/core/boxTypes.d.ts +3 -0
- package/core/classNames.d.ts +2 -0
- package/{components/dox → core}/stylesContext.d.ts +3 -2
- package/core/theme.d.ts +38 -0
- package/core/types.d.ts +36 -0
- package/core/useStyles.d.ts +2 -0
- package/core/useTheme.d.ts +11 -0
- package/core.js +1144 -0
- package/package.json +10 -5
- package/ssg.d.ts +3 -0
- package/ssg.js +6 -0
- package/theme.d.ts +1 -45
- package/theme.js +3 -285
- package/utils.js +52 -89
- package/box.module.css.js +0 -4
- package/components/dox/useStyles.d.ts +0 -2
- package/components/dox.d.ts +0 -21
- package/components/dox.js +0 -1010
- package/plugins/box-theme.d.ts +0 -11
- package/style.css +0 -1
- package/types.d.ts +0 -245
- package/utils/className/classNameUtils.d.ts +0 -5
|
@@ -1,15 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Augmented } from '../../types';
|
|
3
|
-
import { DoxStylesFormatters } from './doxStylesFormatters';
|
|
4
|
-
type Hovered<T> = {
|
|
5
|
-
[K in keyof T as K extends string ? `${K}H` : never]: T[K];
|
|
6
|
-
};
|
|
7
|
-
type Focused<T> = {
|
|
8
|
-
[K in keyof T as K extends string ? `${K}F` : never]: T[K];
|
|
9
|
-
};
|
|
10
|
-
type Activated<T> = {
|
|
11
|
-
[K in keyof T as K extends string ? `${K}A` : never]: T[K];
|
|
12
|
-
};
|
|
1
|
+
import { BoxStylesFormatters } from './boxStylesFormatters';
|
|
13
2
|
export interface StyleValues {
|
|
14
3
|
values: Readonly<Array<string | number | boolean>>;
|
|
15
4
|
formatClassName?: (key: string, value: string | number | boolean) => string;
|
|
@@ -22,8 +11,6 @@ export interface ThemeItem {
|
|
|
22
11
|
formatSelector?: (selector: string) => string[];
|
|
23
12
|
formatValue?: (key: string, value: string | number | boolean) => string;
|
|
24
13
|
}
|
|
25
|
-
export declare const pseudoClassSuffixes: readonly ["H", "F", "A"];
|
|
26
|
-
export type PseudoClassSuffix = (typeof pseudoClassSuffixes)[number];
|
|
27
14
|
export interface StyleItem {
|
|
28
15
|
cssNames: string[];
|
|
29
16
|
values1: StyleValues;
|
|
@@ -32,57 +19,8 @@ export interface StyleItem {
|
|
|
32
19
|
pseudoSuffix?: PseudoClassSuffix;
|
|
33
20
|
isThemeStyle?: boolean;
|
|
34
21
|
}
|
|
35
|
-
export declare const
|
|
36
|
-
|
|
37
|
-
cssNames: string[];
|
|
38
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
39
|
-
};
|
|
40
|
-
background: {
|
|
41
|
-
cssNames: string[];
|
|
42
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
43
|
-
};
|
|
44
|
-
color: {
|
|
45
|
-
cssNames: string[];
|
|
46
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
47
|
-
};
|
|
48
|
-
bgColor: {
|
|
49
|
-
cssNames: string[];
|
|
50
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
51
|
-
};
|
|
52
|
-
borderColor: {
|
|
53
|
-
cssNames: string[];
|
|
54
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
55
|
-
};
|
|
56
|
-
outlineColor: {
|
|
57
|
-
cssNames: string[];
|
|
58
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
59
|
-
};
|
|
60
|
-
};
|
|
61
|
-
export declare const svgThemeStyles: {
|
|
62
|
-
fill: {
|
|
63
|
-
cssNames: string[];
|
|
64
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
65
|
-
formatSelector: typeof DoxStylesFormatters.ClassName.svg;
|
|
66
|
-
};
|
|
67
|
-
stroke: {
|
|
68
|
-
cssNames: string[];
|
|
69
|
-
formatValue: (key: string, value: string | number | boolean) => string;
|
|
70
|
-
formatSelector: typeof DoxStylesFormatters.ClassName.svg;
|
|
71
|
-
};
|
|
72
|
-
};
|
|
73
|
-
export interface PseudoClassStyleType {
|
|
74
|
-
className: string;
|
|
75
|
-
}
|
|
76
|
-
export declare const pseudoClassStyles: {
|
|
77
|
-
hover: {
|
|
78
|
-
className: string;
|
|
79
|
-
};
|
|
80
|
-
focus: {
|
|
81
|
-
className: string;
|
|
82
|
-
};
|
|
83
|
-
};
|
|
84
|
-
export type PseudoClassType = keyof typeof pseudoClassStyles;
|
|
85
|
-
export declare const doxStyles: {
|
|
22
|
+
export declare const boxStyles: {
|
|
23
|
+
/** The `display` CSS property sets whether an element is treated as a block or inline box and the layout used for its children, such as flow layout, grid or flex. */
|
|
86
24
|
display: {
|
|
87
25
|
cssNames: string[];
|
|
88
26
|
values1: {
|
|
@@ -95,11 +33,11 @@ export declare const doxStyles: {
|
|
|
95
33
|
values: readonly [];
|
|
96
34
|
};
|
|
97
35
|
};
|
|
36
|
+
/** The `inline` property is a shortcut to transform `block`, `flex` and `grid` value to `inline-block`, `inline-flex` and `inline-grid` respectively. */
|
|
98
37
|
inline: {
|
|
99
38
|
cssNames: string[];
|
|
100
39
|
values1: {
|
|
101
40
|
values: readonly [true];
|
|
102
|
-
formatValue: () => string;
|
|
103
41
|
};
|
|
104
42
|
values2: {
|
|
105
43
|
values: readonly [];
|
|
@@ -108,6 +46,7 @@ export declare const doxStyles: {
|
|
|
108
46
|
values: readonly [];
|
|
109
47
|
};
|
|
110
48
|
};
|
|
49
|
+
/** The `box-sizing` CSS property sets how the total width and height of an element is calculated. */
|
|
111
50
|
boxSizing: {
|
|
112
51
|
cssNames: string[];
|
|
113
52
|
values1: {
|
|
@@ -124,90 +63,90 @@ export declare const doxStyles: {
|
|
|
124
63
|
cssNames: string[];
|
|
125
64
|
values1: {
|
|
126
65
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
127
|
-
formatValue: typeof
|
|
66
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
128
67
|
};
|
|
129
68
|
values2: {
|
|
130
69
|
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];
|
|
131
|
-
formatValue: typeof
|
|
70
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
132
71
|
};
|
|
133
72
|
values3: {
|
|
134
73
|
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"];
|
|
135
|
-
formatValue: typeof
|
|
74
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
136
75
|
};
|
|
137
76
|
};
|
|
138
77
|
minWidth: {
|
|
139
78
|
cssNames: string[];
|
|
140
79
|
values1: {
|
|
141
80
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
142
|
-
formatValue: typeof
|
|
81
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
143
82
|
};
|
|
144
83
|
values2: {
|
|
145
84
|
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];
|
|
146
|
-
formatValue: typeof
|
|
85
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
147
86
|
};
|
|
148
87
|
values3: {
|
|
149
88
|
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"];
|
|
150
|
-
formatValue: typeof
|
|
89
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
151
90
|
};
|
|
152
91
|
};
|
|
153
92
|
maxWidth: {
|
|
154
93
|
cssNames: string[];
|
|
155
94
|
values1: {
|
|
156
95
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
157
|
-
formatValue: typeof
|
|
96
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
158
97
|
};
|
|
159
98
|
values2: {
|
|
160
99
|
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];
|
|
161
|
-
formatValue: typeof
|
|
100
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
162
101
|
};
|
|
163
102
|
values3: {
|
|
164
103
|
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"];
|
|
165
|
-
formatValue: typeof
|
|
104
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
166
105
|
};
|
|
167
106
|
};
|
|
168
107
|
height: {
|
|
169
108
|
cssNames: string[];
|
|
170
109
|
values1: {
|
|
171
110
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
172
|
-
formatValue: typeof
|
|
111
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
173
112
|
};
|
|
174
113
|
values2: {
|
|
175
114
|
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];
|
|
176
|
-
formatValue: typeof
|
|
115
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
177
116
|
};
|
|
178
117
|
values3: {
|
|
179
118
|
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"];
|
|
180
|
-
formatValue: typeof
|
|
119
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
181
120
|
};
|
|
182
121
|
};
|
|
183
122
|
minHeight: {
|
|
184
123
|
cssNames: string[];
|
|
185
124
|
values1: {
|
|
186
125
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
187
|
-
formatValue: typeof
|
|
126
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
188
127
|
};
|
|
189
128
|
values2: {
|
|
190
129
|
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];
|
|
191
|
-
formatValue: typeof
|
|
130
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
192
131
|
};
|
|
193
132
|
values3: {
|
|
194
133
|
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"];
|
|
195
|
-
formatValue: typeof
|
|
134
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
196
135
|
};
|
|
197
136
|
};
|
|
198
137
|
maxHeight: {
|
|
199
138
|
cssNames: string[];
|
|
200
139
|
values1: {
|
|
201
140
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
202
|
-
formatValue: typeof
|
|
141
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
203
142
|
};
|
|
204
143
|
values2: {
|
|
205
144
|
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];
|
|
206
|
-
formatValue: typeof
|
|
145
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
207
146
|
};
|
|
208
147
|
values3: {
|
|
209
148
|
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"];
|
|
210
|
-
formatValue: typeof
|
|
149
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
211
150
|
};
|
|
212
151
|
};
|
|
213
152
|
position: {
|
|
@@ -226,7 +165,7 @@ export declare const doxStyles: {
|
|
|
226
165
|
cssNames: string[];
|
|
227
166
|
values1: {
|
|
228
167
|
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];
|
|
229
|
-
formatValue: typeof
|
|
168
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
230
169
|
};
|
|
231
170
|
values2: {
|
|
232
171
|
values: readonly [];
|
|
@@ -239,7 +178,7 @@ export declare const doxStyles: {
|
|
|
239
178
|
cssNames: string[];
|
|
240
179
|
values1: {
|
|
241
180
|
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];
|
|
242
|
-
formatValue: typeof
|
|
181
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
243
182
|
};
|
|
244
183
|
values2: {
|
|
245
184
|
values: readonly [];
|
|
@@ -252,7 +191,7 @@ export declare const doxStyles: {
|
|
|
252
191
|
cssNames: string[];
|
|
253
192
|
values1: {
|
|
254
193
|
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];
|
|
255
|
-
formatValue: typeof
|
|
194
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
256
195
|
};
|
|
257
196
|
values2: {
|
|
258
197
|
values: readonly [];
|
|
@@ -265,7 +204,7 @@ export declare const doxStyles: {
|
|
|
265
204
|
cssNames: string[];
|
|
266
205
|
values1: {
|
|
267
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];
|
|
268
|
-
formatValue: typeof
|
|
207
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
269
208
|
};
|
|
270
209
|
values2: {
|
|
271
210
|
values: readonly [];
|
|
@@ -278,7 +217,7 @@ export declare const doxStyles: {
|
|
|
278
217
|
cssNames: string[];
|
|
279
218
|
values1: {
|
|
280
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];
|
|
281
|
-
formatValue: typeof
|
|
220
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
282
221
|
};
|
|
283
222
|
values2: {
|
|
284
223
|
values: readonly [];
|
|
@@ -291,7 +230,7 @@ export declare const doxStyles: {
|
|
|
291
230
|
cssNames: string[];
|
|
292
231
|
values1: {
|
|
293
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];
|
|
294
|
-
formatValue: typeof
|
|
233
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
295
234
|
};
|
|
296
235
|
values2: {
|
|
297
236
|
values: readonly ["auto"];
|
|
@@ -304,7 +243,7 @@ export declare const doxStyles: {
|
|
|
304
243
|
cssNames: string[];
|
|
305
244
|
values1: {
|
|
306
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];
|
|
307
|
-
formatValue: typeof
|
|
246
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
308
247
|
};
|
|
309
248
|
values2: {
|
|
310
249
|
values: readonly ["auto"];
|
|
@@ -317,7 +256,7 @@ export declare const doxStyles: {
|
|
|
317
256
|
cssNames: string[];
|
|
318
257
|
values1: {
|
|
319
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];
|
|
320
|
-
formatValue: typeof
|
|
259
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
321
260
|
};
|
|
322
261
|
values2: {
|
|
323
262
|
values: readonly ["auto"];
|
|
@@ -330,7 +269,7 @@ export declare const doxStyles: {
|
|
|
330
269
|
cssNames: string[];
|
|
331
270
|
values1: {
|
|
332
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];
|
|
333
|
-
formatValue: typeof
|
|
272
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
334
273
|
};
|
|
335
274
|
values2: {
|
|
336
275
|
values: readonly ["auto"];
|
|
@@ -343,7 +282,7 @@ export declare const doxStyles: {
|
|
|
343
282
|
cssNames: string[];
|
|
344
283
|
values1: {
|
|
345
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];
|
|
346
|
-
formatValue: typeof
|
|
285
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
347
286
|
};
|
|
348
287
|
values2: {
|
|
349
288
|
values: readonly ["auto"];
|
|
@@ -356,7 +295,7 @@ export declare const doxStyles: {
|
|
|
356
295
|
cssNames: string[];
|
|
357
296
|
values1: {
|
|
358
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];
|
|
359
|
-
formatValue: typeof
|
|
298
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
360
299
|
};
|
|
361
300
|
values2: {
|
|
362
301
|
values: readonly ["auto"];
|
|
@@ -369,7 +308,7 @@ export declare const doxStyles: {
|
|
|
369
308
|
cssNames: string[];
|
|
370
309
|
values1: {
|
|
371
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];
|
|
372
|
-
formatValue: typeof
|
|
311
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
373
312
|
};
|
|
374
313
|
values2: {
|
|
375
314
|
values: readonly ["auto"];
|
|
@@ -382,7 +321,7 @@ export declare const doxStyles: {
|
|
|
382
321
|
cssNames: string[];
|
|
383
322
|
values1: {
|
|
384
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];
|
|
385
|
-
formatValue: typeof
|
|
324
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
386
325
|
};
|
|
387
326
|
values2: {
|
|
388
327
|
values: readonly [];
|
|
@@ -395,7 +334,7 @@ export declare const doxStyles: {
|
|
|
395
334
|
cssNames: string[];
|
|
396
335
|
values1: {
|
|
397
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];
|
|
398
|
-
formatValue: typeof
|
|
337
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
399
338
|
};
|
|
400
339
|
values2: {
|
|
401
340
|
values: readonly [];
|
|
@@ -408,7 +347,7 @@ export declare const doxStyles: {
|
|
|
408
347
|
cssNames: string[];
|
|
409
348
|
values1: {
|
|
410
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];
|
|
411
|
-
formatValue: typeof
|
|
350
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
412
351
|
};
|
|
413
352
|
values2: {
|
|
414
353
|
values: readonly [];
|
|
@@ -421,7 +360,7 @@ export declare const doxStyles: {
|
|
|
421
360
|
cssNames: string[];
|
|
422
361
|
values1: {
|
|
423
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];
|
|
424
|
-
formatValue: typeof
|
|
363
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
425
364
|
};
|
|
426
365
|
values2: {
|
|
427
366
|
values: readonly [];
|
|
@@ -434,7 +373,7 @@ export declare const doxStyles: {
|
|
|
434
373
|
cssNames: string[];
|
|
435
374
|
values1: {
|
|
436
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];
|
|
437
|
-
formatValue: typeof
|
|
376
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
438
377
|
};
|
|
439
378
|
values2: {
|
|
440
379
|
values: readonly [];
|
|
@@ -447,7 +386,7 @@ export declare const doxStyles: {
|
|
|
447
386
|
cssNames: string[];
|
|
448
387
|
values1: {
|
|
449
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];
|
|
450
|
-
formatValue: typeof
|
|
389
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
451
390
|
};
|
|
452
391
|
values2: {
|
|
453
392
|
values: readonly [];
|
|
@@ -460,7 +399,7 @@ export declare const doxStyles: {
|
|
|
460
399
|
cssNames: string[];
|
|
461
400
|
values1: {
|
|
462
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];
|
|
463
|
-
formatValue: typeof
|
|
402
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
464
403
|
};
|
|
465
404
|
values2: {
|
|
466
405
|
values: readonly [];
|
|
@@ -473,7 +412,7 @@ export declare const doxStyles: {
|
|
|
473
412
|
cssNames: string[];
|
|
474
413
|
values1: {
|
|
475
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];
|
|
476
|
-
formatValue: typeof
|
|
415
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
477
416
|
};
|
|
478
417
|
values2: {
|
|
479
418
|
values: readonly [];
|
|
@@ -486,7 +425,7 @@ export declare const doxStyles: {
|
|
|
486
425
|
cssNames: string[];
|
|
487
426
|
values1: {
|
|
488
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];
|
|
489
|
-
formatValue: typeof
|
|
428
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
490
429
|
};
|
|
491
430
|
values2: {
|
|
492
431
|
values: readonly [];
|
|
@@ -499,7 +438,7 @@ export declare const doxStyles: {
|
|
|
499
438
|
cssNames: string[];
|
|
500
439
|
values1: {
|
|
501
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];
|
|
502
|
-
formatValue: typeof
|
|
441
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
503
442
|
};
|
|
504
443
|
values2: {
|
|
505
444
|
values: readonly [];
|
|
@@ -512,7 +451,7 @@ export declare const doxStyles: {
|
|
|
512
451
|
cssNames: string[];
|
|
513
452
|
values1: {
|
|
514
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, -1, -2, -3, -4, -5, -6, -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];
|
|
515
|
-
formatValue: typeof
|
|
454
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
516
455
|
};
|
|
517
456
|
values2: {
|
|
518
457
|
values: readonly [];
|
|
@@ -525,7 +464,7 @@ export declare const doxStyles: {
|
|
|
525
464
|
cssNames: string[];
|
|
526
465
|
values1: {
|
|
527
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];
|
|
528
|
-
formatValue: typeof
|
|
467
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
529
468
|
};
|
|
530
469
|
values2: {
|
|
531
470
|
values: readonly [];
|
|
@@ -538,7 +477,7 @@ export declare const doxStyles: {
|
|
|
538
477
|
cssNames: string[];
|
|
539
478
|
values1: {
|
|
540
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];
|
|
541
|
-
formatValue: typeof
|
|
480
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
542
481
|
};
|
|
543
482
|
values2: {
|
|
544
483
|
values: readonly [];
|
|
@@ -551,7 +490,7 @@ export declare const doxStyles: {
|
|
|
551
490
|
cssNames: string[];
|
|
552
491
|
values1: {
|
|
553
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];
|
|
554
|
-
formatValue: typeof
|
|
493
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
555
494
|
};
|
|
556
495
|
values2: {
|
|
557
496
|
values: readonly [];
|
|
@@ -576,7 +515,7 @@ export declare const doxStyles: {
|
|
|
576
515
|
cssNames: string[];
|
|
577
516
|
values1: {
|
|
578
517
|
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];
|
|
579
|
-
formatValue: typeof
|
|
518
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
580
519
|
};
|
|
581
520
|
values2: {
|
|
582
521
|
values: readonly [];
|
|
@@ -589,7 +528,7 @@ export declare const doxStyles: {
|
|
|
589
528
|
cssNames: string[];
|
|
590
529
|
values1: {
|
|
591
530
|
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];
|
|
592
|
-
formatValue: typeof
|
|
531
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
593
532
|
};
|
|
594
533
|
values2: {
|
|
595
534
|
values: readonly [];
|
|
@@ -602,7 +541,7 @@ export declare const doxStyles: {
|
|
|
602
541
|
cssNames: string[];
|
|
603
542
|
values1: {
|
|
604
543
|
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];
|
|
605
|
-
formatValue: typeof
|
|
544
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
606
545
|
};
|
|
607
546
|
values2: {
|
|
608
547
|
values: readonly [];
|
|
@@ -615,7 +554,7 @@ export declare const doxStyles: {
|
|
|
615
554
|
cssNames: string[];
|
|
616
555
|
values1: {
|
|
617
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];
|
|
618
|
-
formatValue: typeof
|
|
557
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
619
558
|
};
|
|
620
559
|
values2: {
|
|
621
560
|
values: readonly [];
|
|
@@ -628,7 +567,7 @@ export declare const doxStyles: {
|
|
|
628
567
|
cssNames: string[];
|
|
629
568
|
values1: {
|
|
630
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];
|
|
631
|
-
formatValue: typeof
|
|
570
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
632
571
|
};
|
|
633
572
|
values2: {
|
|
634
573
|
values: readonly [];
|
|
@@ -641,7 +580,7 @@ export declare const doxStyles: {
|
|
|
641
580
|
cssNames: string[];
|
|
642
581
|
values1: {
|
|
643
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];
|
|
644
|
-
formatValue: typeof
|
|
583
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
645
584
|
};
|
|
646
585
|
values2: {
|
|
647
586
|
values: readonly [];
|
|
@@ -654,7 +593,7 @@ export declare const doxStyles: {
|
|
|
654
593
|
cssNames: string[];
|
|
655
594
|
values1: {
|
|
656
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];
|
|
657
|
-
formatValue: typeof
|
|
596
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
658
597
|
};
|
|
659
598
|
values2: {
|
|
660
599
|
values: readonly [];
|
|
@@ -667,7 +606,7 @@ export declare const doxStyles: {
|
|
|
667
606
|
cssNames: string[];
|
|
668
607
|
values1: {
|
|
669
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];
|
|
670
|
-
formatValue: typeof
|
|
609
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
671
610
|
};
|
|
672
611
|
values2: {
|
|
673
612
|
values: readonly [];
|
|
@@ -680,7 +619,7 @@ export declare const doxStyles: {
|
|
|
680
619
|
cssNames: string[];
|
|
681
620
|
values1: {
|
|
682
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];
|
|
683
|
-
formatValue: typeof
|
|
622
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
684
623
|
};
|
|
685
624
|
values2: {
|
|
686
625
|
values: readonly [];
|
|
@@ -765,7 +704,7 @@ export declare const doxStyles: {
|
|
|
765
704
|
cssNames: string[];
|
|
766
705
|
values1: {
|
|
767
706
|
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];
|
|
768
|
-
formatValue: typeof
|
|
707
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
769
708
|
};
|
|
770
709
|
values2: {
|
|
771
710
|
values: readonly ["inherit"];
|
|
@@ -802,7 +741,7 @@ export declare const doxStyles: {
|
|
|
802
741
|
cssNames: string[];
|
|
803
742
|
values1: {
|
|
804
743
|
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];
|
|
805
|
-
formatValue: typeof
|
|
744
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
806
745
|
};
|
|
807
746
|
values2: {
|
|
808
747
|
values: readonly [];
|
|
@@ -815,7 +754,7 @@ export declare const doxStyles: {
|
|
|
815
754
|
cssNames: string[];
|
|
816
755
|
values1: {
|
|
817
756
|
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];
|
|
818
|
-
formatValue: typeof
|
|
757
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
819
758
|
};
|
|
820
759
|
values2: {
|
|
821
760
|
values: readonly ["font-size"];
|
|
@@ -938,7 +877,7 @@ export declare const doxStyles: {
|
|
|
938
877
|
cssNames: string[];
|
|
939
878
|
values1: {
|
|
940
879
|
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];
|
|
941
|
-
formatValue: typeof
|
|
880
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
942
881
|
};
|
|
943
882
|
values2: {
|
|
944
883
|
values: readonly [];
|
|
@@ -951,7 +890,7 @@ export declare const doxStyles: {
|
|
|
951
890
|
cssNames: string[];
|
|
952
891
|
values1: {
|
|
953
892
|
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];
|
|
954
|
-
formatValue: typeof
|
|
893
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
955
894
|
};
|
|
956
895
|
values2: {
|
|
957
896
|
values: readonly [];
|
|
@@ -964,7 +903,7 @@ export declare const doxStyles: {
|
|
|
964
903
|
cssNames: string[];
|
|
965
904
|
values1: {
|
|
966
905
|
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];
|
|
967
|
-
formatValue: typeof
|
|
906
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
968
907
|
};
|
|
969
908
|
values2: {
|
|
970
909
|
values: readonly [];
|
|
@@ -1037,7 +976,7 @@ export declare const doxStyles: {
|
|
|
1037
976
|
cssNames: string[];
|
|
1038
977
|
values1: {
|
|
1039
978
|
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];
|
|
1040
|
-
formatValue: typeof
|
|
979
|
+
formatValue: typeof BoxStylesFormatters.Value.gridColumns;
|
|
1041
980
|
};
|
|
1042
981
|
values2: {
|
|
1043
982
|
values: readonly [];
|
|
@@ -1050,11 +989,11 @@ export declare const doxStyles: {
|
|
|
1050
989
|
cssNames: string[];
|
|
1051
990
|
values1: {
|
|
1052
991
|
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];
|
|
1053
|
-
formatValue: typeof
|
|
992
|
+
formatValue: typeof BoxStylesFormatters.Value.gridColumn;
|
|
1054
993
|
};
|
|
1055
994
|
values2: {
|
|
1056
995
|
values: readonly ["full-row"];
|
|
1057
|
-
formatValue: typeof
|
|
996
|
+
formatValue: typeof BoxStylesFormatters.Value.gridColumn;
|
|
1058
997
|
};
|
|
1059
998
|
values3: {
|
|
1060
999
|
values: readonly [];
|
|
@@ -1088,7 +1027,7 @@ export declare const doxStyles: {
|
|
|
1088
1027
|
cssNames: string[];
|
|
1089
1028
|
values1: {
|
|
1090
1029
|
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];
|
|
1091
|
-
formatValue: typeof
|
|
1030
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1092
1031
|
};
|
|
1093
1032
|
values2: {
|
|
1094
1033
|
values: readonly [];
|
|
@@ -1113,7 +1052,7 @@ export declare const doxStyles: {
|
|
|
1113
1052
|
cssNames: string[];
|
|
1114
1053
|
values1: {
|
|
1115
1054
|
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];
|
|
1116
|
-
formatValue: typeof
|
|
1055
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1117
1056
|
};
|
|
1118
1057
|
values2: {
|
|
1119
1058
|
values: readonly [];
|
|
@@ -1138,7 +1077,7 @@ export declare const doxStyles: {
|
|
|
1138
1077
|
cssNames: string[];
|
|
1139
1078
|
values1: {
|
|
1140
1079
|
values: readonly [50, 100, 150, 200, 250, 300, 350, 400, 450, 500, 550, 600, 650, 700, 750, 800, 850, 900, 950, 1000];
|
|
1141
|
-
formatValue: typeof
|
|
1080
|
+
formatValue: typeof BoxStylesFormatters.Value.ms;
|
|
1142
1081
|
};
|
|
1143
1082
|
values2: {
|
|
1144
1083
|
values: readonly [];
|
|
@@ -1207,13 +1146,11 @@ export declare const doxStyles: {
|
|
|
1207
1146
|
values: readonly [];
|
|
1208
1147
|
};
|
|
1209
1148
|
};
|
|
1210
|
-
};
|
|
1211
|
-
export declare const svgStyles: {
|
|
1212
1149
|
rotate: {
|
|
1213
1150
|
cssNames: string[];
|
|
1214
1151
|
values1: {
|
|
1215
1152
|
values: readonly [0, 90, 180, 270, -90, -180, -270];
|
|
1216
|
-
formatValue: typeof
|
|
1153
|
+
formatValue: typeof BoxStylesFormatters.Value.rotate;
|
|
1217
1154
|
};
|
|
1218
1155
|
values2: {
|
|
1219
1156
|
values: readonly [];
|
|
@@ -1226,7 +1163,7 @@ export declare const svgStyles: {
|
|
|
1226
1163
|
cssNames: string[];
|
|
1227
1164
|
values1: {
|
|
1228
1165
|
values: readonly ["xAxis", "yAxis"];
|
|
1229
|
-
formatValue: typeof
|
|
1166
|
+
formatValue: typeof BoxStylesFormatters.Value.flip;
|
|
1230
1167
|
};
|
|
1231
1168
|
values2: {
|
|
1232
1169
|
values: readonly [];
|
|
@@ -1236,21 +1173,72 @@ export declare const svgStyles: {
|
|
|
1236
1173
|
};
|
|
1237
1174
|
};
|
|
1238
1175
|
};
|
|
1176
|
+
export declare const boxThemeStyles: {
|
|
1177
|
+
shadow: {
|
|
1178
|
+
cssNames: string[];
|
|
1179
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1180
|
+
};
|
|
1181
|
+
background: {
|
|
1182
|
+
cssNames: string[];
|
|
1183
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1184
|
+
};
|
|
1185
|
+
color: {
|
|
1186
|
+
cssNames: string[];
|
|
1187
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1188
|
+
};
|
|
1189
|
+
bgColor: {
|
|
1190
|
+
cssNames: string[];
|
|
1191
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1192
|
+
};
|
|
1193
|
+
borderColor: {
|
|
1194
|
+
cssNames: string[];
|
|
1195
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1196
|
+
};
|
|
1197
|
+
outlineColor: {
|
|
1198
|
+
cssNames: string[];
|
|
1199
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1200
|
+
};
|
|
1201
|
+
};
|
|
1202
|
+
export declare const svgThemeStyles: {
|
|
1203
|
+
fill: {
|
|
1204
|
+
cssNames: string[];
|
|
1205
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1206
|
+
formatSelector: typeof BoxStylesFormatters.ClassName.svg;
|
|
1207
|
+
};
|
|
1208
|
+
stroke: {
|
|
1209
|
+
cssNames: string[];
|
|
1210
|
+
formatValue: (key: string, value: string | number | boolean) => string;
|
|
1211
|
+
formatSelector: typeof BoxStylesFormatters.ClassName.svg;
|
|
1212
|
+
};
|
|
1213
|
+
};
|
|
1214
|
+
export declare const pseudoClassSuffixes: readonly ["H", "F", "A"];
|
|
1215
|
+
export type PseudoClassSuffix = (typeof pseudoClassSuffixes)[number];
|
|
1216
|
+
export declare const pseudoClassClassName: {
|
|
1217
|
+
hover: {
|
|
1218
|
+
className: string;
|
|
1219
|
+
};
|
|
1220
|
+
focus: {
|
|
1221
|
+
className: string;
|
|
1222
|
+
};
|
|
1223
|
+
};
|
|
1224
|
+
export type PseudoClassClassNameKey = keyof typeof pseudoClassClassName;
|
|
1225
|
+
export type StyleKey = keyof typeof boxStyles;
|
|
1226
|
+
export type AliasKey = keyof typeof aliases;
|
|
1239
1227
|
export declare const aliases: {
|
|
1240
1228
|
w: {
|
|
1241
1229
|
key: "width";
|
|
1242
1230
|
cssNames: string[];
|
|
1243
1231
|
values1: {
|
|
1244
1232
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
1245
|
-
formatValue: typeof
|
|
1233
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
1246
1234
|
};
|
|
1247
1235
|
values2: {
|
|
1248
1236
|
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];
|
|
1249
|
-
formatValue: typeof
|
|
1237
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1250
1238
|
};
|
|
1251
1239
|
values3: {
|
|
1252
1240
|
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"];
|
|
1253
|
-
formatValue: typeof
|
|
1241
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
1254
1242
|
};
|
|
1255
1243
|
};
|
|
1256
1244
|
h: {
|
|
@@ -1258,15 +1246,15 @@ export declare const aliases: {
|
|
|
1258
1246
|
cssNames: string[];
|
|
1259
1247
|
values1: {
|
|
1260
1248
|
values: readonly ["fit", "fit-screen", "auto", "fit-content", "max-content", "min-content"];
|
|
1261
|
-
formatValue: typeof
|
|
1249
|
+
formatValue: typeof BoxStylesFormatters.Value.widthHeight;
|
|
1262
1250
|
};
|
|
1263
1251
|
values2: {
|
|
1264
1252
|
values: readonly [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 64, 68, 72, 76, 80, 84, 88, 92, 96, 100];
|
|
1265
|
-
formatValue: typeof
|
|
1253
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1266
1254
|
};
|
|
1267
1255
|
values3: {
|
|
1268
1256
|
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"];
|
|
1269
|
-
formatValue: typeof
|
|
1257
|
+
formatValue: typeof BoxStylesFormatters.Value.fraction;
|
|
1270
1258
|
};
|
|
1271
1259
|
};
|
|
1272
1260
|
m: {
|
|
@@ -1274,7 +1262,7 @@ export declare const aliases: {
|
|
|
1274
1262
|
cssNames: string[];
|
|
1275
1263
|
values1: {
|
|
1276
1264
|
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];
|
|
1277
|
-
formatValue: typeof
|
|
1265
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1278
1266
|
};
|
|
1279
1267
|
values2: {
|
|
1280
1268
|
values: readonly ["auto"];
|
|
@@ -1288,7 +1276,7 @@ export declare const aliases: {
|
|
|
1288
1276
|
cssNames: string[];
|
|
1289
1277
|
values1: {
|
|
1290
1278
|
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];
|
|
1291
|
-
formatValue: typeof
|
|
1279
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1292
1280
|
};
|
|
1293
1281
|
values2: {
|
|
1294
1282
|
values: readonly ["auto"];
|
|
@@ -1302,7 +1290,7 @@ export declare const aliases: {
|
|
|
1302
1290
|
cssNames: string[];
|
|
1303
1291
|
values1: {
|
|
1304
1292
|
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];
|
|
1305
|
-
formatValue: typeof
|
|
1293
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1306
1294
|
};
|
|
1307
1295
|
values2: {
|
|
1308
1296
|
values: readonly ["auto"];
|
|
@@ -1316,7 +1304,7 @@ export declare const aliases: {
|
|
|
1316
1304
|
cssNames: string[];
|
|
1317
1305
|
values1: {
|
|
1318
1306
|
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];
|
|
1319
|
-
formatValue: typeof
|
|
1307
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1320
1308
|
};
|
|
1321
1309
|
values2: {
|
|
1322
1310
|
values: readonly ["auto"];
|
|
@@ -1330,7 +1318,7 @@ export declare const aliases: {
|
|
|
1330
1318
|
cssNames: string[];
|
|
1331
1319
|
values1: {
|
|
1332
1320
|
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];
|
|
1333
|
-
formatValue: typeof
|
|
1321
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1334
1322
|
};
|
|
1335
1323
|
values2: {
|
|
1336
1324
|
values: readonly ["auto"];
|
|
@@ -1344,7 +1332,7 @@ export declare const aliases: {
|
|
|
1344
1332
|
cssNames: string[];
|
|
1345
1333
|
values1: {
|
|
1346
1334
|
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];
|
|
1347
|
-
formatValue: typeof
|
|
1335
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1348
1336
|
};
|
|
1349
1337
|
values2: {
|
|
1350
1338
|
values: readonly ["auto"];
|
|
@@ -1358,7 +1346,7 @@ export declare const aliases: {
|
|
|
1358
1346
|
cssNames: string[];
|
|
1359
1347
|
values1: {
|
|
1360
1348
|
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];
|
|
1361
|
-
formatValue: typeof
|
|
1349
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1362
1350
|
};
|
|
1363
1351
|
values2: {
|
|
1364
1352
|
values: readonly ["auto"];
|
|
@@ -1372,7 +1360,7 @@ export declare const aliases: {
|
|
|
1372
1360
|
cssNames: string[];
|
|
1373
1361
|
values1: {
|
|
1374
1362
|
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];
|
|
1375
|
-
formatValue: typeof
|
|
1363
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1376
1364
|
};
|
|
1377
1365
|
values2: {
|
|
1378
1366
|
values: readonly [];
|
|
@@ -1386,7 +1374,7 @@ export declare const aliases: {
|
|
|
1386
1374
|
cssNames: string[];
|
|
1387
1375
|
values1: {
|
|
1388
1376
|
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];
|
|
1389
|
-
formatValue: typeof
|
|
1377
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1390
1378
|
};
|
|
1391
1379
|
values2: {
|
|
1392
1380
|
values: readonly [];
|
|
@@ -1400,7 +1388,7 @@ export declare const aliases: {
|
|
|
1400
1388
|
cssNames: string[];
|
|
1401
1389
|
values1: {
|
|
1402
1390
|
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];
|
|
1403
|
-
formatValue: typeof
|
|
1391
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1404
1392
|
};
|
|
1405
1393
|
values2: {
|
|
1406
1394
|
values: readonly [];
|
|
@@ -1414,7 +1402,7 @@ export declare const aliases: {
|
|
|
1414
1402
|
cssNames: string[];
|
|
1415
1403
|
values1: {
|
|
1416
1404
|
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];
|
|
1417
|
-
formatValue: typeof
|
|
1405
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1418
1406
|
};
|
|
1419
1407
|
values2: {
|
|
1420
1408
|
values: readonly [];
|
|
@@ -1428,7 +1416,7 @@ export declare const aliases: {
|
|
|
1428
1416
|
cssNames: string[];
|
|
1429
1417
|
values1: {
|
|
1430
1418
|
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];
|
|
1431
|
-
formatValue: typeof
|
|
1419
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1432
1420
|
};
|
|
1433
1421
|
values2: {
|
|
1434
1422
|
values: readonly [];
|
|
@@ -1442,7 +1430,7 @@ export declare const aliases: {
|
|
|
1442
1430
|
cssNames: string[];
|
|
1443
1431
|
values1: {
|
|
1444
1432
|
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];
|
|
1445
|
-
formatValue: typeof
|
|
1433
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1446
1434
|
};
|
|
1447
1435
|
values2: {
|
|
1448
1436
|
values: readonly [];
|
|
@@ -1456,7 +1444,7 @@ export declare const aliases: {
|
|
|
1456
1444
|
cssNames: string[];
|
|
1457
1445
|
values1: {
|
|
1458
1446
|
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];
|
|
1459
|
-
formatValue: typeof
|
|
1447
|
+
formatValue: typeof BoxStylesFormatters.Value.rem;
|
|
1460
1448
|
};
|
|
1461
1449
|
values2: {
|
|
1462
1450
|
values: readonly [];
|
|
@@ -1470,7 +1458,7 @@ export declare const aliases: {
|
|
|
1470
1458
|
cssNames: string[];
|
|
1471
1459
|
values1: {
|
|
1472
1460
|
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];
|
|
1473
|
-
formatValue: typeof
|
|
1461
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1474
1462
|
};
|
|
1475
1463
|
values2: {
|
|
1476
1464
|
values: readonly [];
|
|
@@ -1484,7 +1472,7 @@ export declare const aliases: {
|
|
|
1484
1472
|
cssNames: string[];
|
|
1485
1473
|
values1: {
|
|
1486
1474
|
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];
|
|
1487
|
-
formatValue: typeof
|
|
1475
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1488
1476
|
};
|
|
1489
1477
|
values2: {
|
|
1490
1478
|
values: readonly [];
|
|
@@ -1498,7 +1486,7 @@ export declare const aliases: {
|
|
|
1498
1486
|
cssNames: string[];
|
|
1499
1487
|
values1: {
|
|
1500
1488
|
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];
|
|
1501
|
-
formatValue: typeof
|
|
1489
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1502
1490
|
};
|
|
1503
1491
|
values2: {
|
|
1504
1492
|
values: readonly [];
|
|
@@ -1512,7 +1500,7 @@ export declare const aliases: {
|
|
|
1512
1500
|
cssNames: string[];
|
|
1513
1501
|
values1: {
|
|
1514
1502
|
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];
|
|
1515
|
-
formatValue: typeof
|
|
1503
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1516
1504
|
};
|
|
1517
1505
|
values2: {
|
|
1518
1506
|
values: readonly [];
|
|
@@ -1526,7 +1514,7 @@ export declare const aliases: {
|
|
|
1526
1514
|
cssNames: string[];
|
|
1527
1515
|
values1: {
|
|
1528
1516
|
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];
|
|
1529
|
-
formatValue: typeof
|
|
1517
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1530
1518
|
};
|
|
1531
1519
|
values2: {
|
|
1532
1520
|
values: readonly [];
|
|
@@ -1540,7 +1528,7 @@ export declare const aliases: {
|
|
|
1540
1528
|
cssNames: string[];
|
|
1541
1529
|
values1: {
|
|
1542
1530
|
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];
|
|
1543
|
-
formatValue: typeof
|
|
1531
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1544
1532
|
};
|
|
1545
1533
|
values2: {
|
|
1546
1534
|
values: readonly [];
|
|
@@ -1554,7 +1542,7 @@ export declare const aliases: {
|
|
|
1554
1542
|
cssNames: string[];
|
|
1555
1543
|
values1: {
|
|
1556
1544
|
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];
|
|
1557
|
-
formatValue: typeof
|
|
1545
|
+
formatValue: typeof BoxStylesFormatters.Value.px;
|
|
1558
1546
|
};
|
|
1559
1547
|
values2: {
|
|
1560
1548
|
values: readonly [];
|
|
@@ -1616,17 +1604,3 @@ export declare const aliases: {
|
|
|
1616
1604
|
};
|
|
1617
1605
|
};
|
|
1618
1606
|
};
|
|
1619
|
-
type Styles<T extends Record<string, StyleItem>> = {
|
|
1620
|
-
[K in keyof T]?: T[K]['values1']['values'][number] | T[K]['values2']['values'][number] | T[K]['values3']['values'][number];
|
|
1621
|
-
};
|
|
1622
|
-
export type StyleKey = keyof typeof doxStyles;
|
|
1623
|
-
export type AliasKey = keyof typeof aliases;
|
|
1624
|
-
type DoxNormalStyles = Styles<typeof doxStyles> & Styles<typeof aliases> & ThemeComponentProps;
|
|
1625
|
-
interface DoxPseudoClasses {
|
|
1626
|
-
hover?: boolean;
|
|
1627
|
-
focus?: boolean;
|
|
1628
|
-
}
|
|
1629
|
-
export type DoxStyleProps = DoxNormalStyles & DoxPseudoClasses & Hovered<DoxNormalStyles> & Focused<DoxNormalStyles> & Activated<DoxNormalStyles> & Augmented.BoxProps;
|
|
1630
|
-
type SvgNormalStyles = Styles<typeof svgStyles> & ThemeComponentProps;
|
|
1631
|
-
export type DoxSvgStyles = SvgNormalStyles & Hovered<SvgNormalStyles> & Focused<SvgNormalStyles> & Activated<SvgNormalStyles> & Augmented.SvgProps;
|
|
1632
|
-
export {};
|