creactive 0.0.95 → 0.0.97
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/build/classic.js +2 -2
- package/build/components/view/constants/border.d.ts +2 -14
- package/build/components/view/constants/color.d.ts +3 -25
- package/build/components/view/constants/index.d.ts +4 -4
- package/build/components/view/constants/spacing.d.ts +159 -129
- package/build/components/view/constants/tag.d.ts +1 -5
- package/build/components/view/index.d.ts +3 -2
- package/build/components/view/view.types.d.ts +5 -0
- package/build/contexts/index.d.ts +1 -1
- package/build/{constants/theme → contexts/theme/constants}/font.d.ts +0 -17
- package/build/contexts/theme/constants/index.d.ts +4 -0
- package/build/contexts/theme/constants/spacing.d.ts +15 -0
- package/build/{constants/theme → contexts/theme/constants}/text.d.ts +0 -6
- package/build/contexts/theme/hooks/index.d.ts +1 -0
- package/build/{hooks → contexts/theme/hooks}/use-theme-style-sheet.d.ts +141 -69
- package/build/contexts/theme/index.d.ts +1 -0
- package/build/contexts/theme/theme.types.d.ts +134 -96
- package/build/default.js +1 -1
- package/build/index.d.ts +1 -2
- package/package.json +1 -1
- package/build/components/view/view.d.ts +0 -2
- package/build/constants/index.d.ts +0 -4
- package/build/constants/theme/color.d.ts +0 -9
- package/build/constants/theme/index.d.ts +0 -4
- package/build/constants/theme/spacing.d.ts +0 -16
- package/build/hooks/index.d.ts +0 -1
- /package/build/{constants/theme → contexts/theme/constants}/border.d.ts +0 -0
|
@@ -1,141 +1,141 @@
|
|
|
1
1
|
export declare const useThemeStyleSheet: () => {
|
|
2
2
|
colorBackgroundBase100: {
|
|
3
|
-
backgroundColor: import("
|
|
3
|
+
backgroundColor: import("../../..").Color;
|
|
4
4
|
};
|
|
5
5
|
colorBackgroundBase200: {
|
|
6
|
-
backgroundColor: import("
|
|
6
|
+
backgroundColor: import("../../..").Color;
|
|
7
7
|
};
|
|
8
8
|
colorBackgroundBase300: {
|
|
9
|
-
backgroundColor: import("
|
|
9
|
+
backgroundColor: import("../../..").Color;
|
|
10
10
|
};
|
|
11
11
|
colorBackgroundBase400: {
|
|
12
|
-
backgroundColor: import("
|
|
12
|
+
backgroundColor: import("../../..").Color;
|
|
13
13
|
};
|
|
14
14
|
colorBackgroundBase500: {
|
|
15
|
-
backgroundColor: import("
|
|
15
|
+
backgroundColor: import("../../..").Color;
|
|
16
16
|
};
|
|
17
17
|
colorBackgroundBase600: {
|
|
18
|
-
backgroundColor: import("
|
|
18
|
+
backgroundColor: import("../../..").Color;
|
|
19
19
|
};
|
|
20
20
|
colorBackgroundBase700: {
|
|
21
|
-
backgroundColor: import("
|
|
21
|
+
backgroundColor: import("../../..").Color;
|
|
22
22
|
};
|
|
23
23
|
colorBackgroundBase800: {
|
|
24
|
-
backgroundColor: import("
|
|
24
|
+
backgroundColor: import("../../..").Color;
|
|
25
25
|
};
|
|
26
26
|
colorBackgroundBase900: {
|
|
27
|
-
backgroundColor: import("
|
|
27
|
+
backgroundColor: import("../../..").Color;
|
|
28
28
|
};
|
|
29
29
|
colorBorderBase100: {
|
|
30
|
-
borderColor: import("
|
|
30
|
+
borderColor: import("../../..").Color;
|
|
31
31
|
};
|
|
32
32
|
colorBorderBase200: {
|
|
33
|
-
borderColor: import("
|
|
33
|
+
borderColor: import("../../..").Color;
|
|
34
34
|
};
|
|
35
35
|
colorBorderBase300: {
|
|
36
|
-
borderColor: import("
|
|
36
|
+
borderColor: import("../../..").Color;
|
|
37
37
|
};
|
|
38
38
|
colorBorderBase400: {
|
|
39
|
-
borderColor: import("
|
|
39
|
+
borderColor: import("../../..").Color;
|
|
40
40
|
};
|
|
41
41
|
colorBorderBase500: {
|
|
42
|
-
borderColor: import("
|
|
42
|
+
borderColor: import("../../..").Color;
|
|
43
43
|
};
|
|
44
44
|
colorBorderBase600: {
|
|
45
|
-
borderColor: import("
|
|
45
|
+
borderColor: import("../../..").Color;
|
|
46
46
|
};
|
|
47
47
|
colorBorderBase700: {
|
|
48
|
-
borderColor: import("
|
|
48
|
+
borderColor: import("../../..").Color;
|
|
49
49
|
};
|
|
50
50
|
colorBorderBase800: {
|
|
51
|
-
borderColor: import("
|
|
51
|
+
borderColor: import("../../..").Color;
|
|
52
52
|
};
|
|
53
53
|
colorBorderBase900: {
|
|
54
|
-
borderColor: import("
|
|
54
|
+
borderColor: import("../../..").Color;
|
|
55
55
|
};
|
|
56
56
|
colorForegroundBase100: {
|
|
57
|
-
color: import("
|
|
57
|
+
color: import("../../..").Color;
|
|
58
58
|
};
|
|
59
59
|
colorForegroundBase200: {
|
|
60
|
-
color: import("
|
|
60
|
+
color: import("../../..").Color;
|
|
61
61
|
};
|
|
62
62
|
colorForegroundBase300: {
|
|
63
|
-
color: import("
|
|
63
|
+
color: import("../../..").Color;
|
|
64
64
|
};
|
|
65
65
|
colorForegroundBase400: {
|
|
66
|
-
color: import("
|
|
66
|
+
color: import("../../..").Color;
|
|
67
67
|
};
|
|
68
68
|
colorForegroundBase500: {
|
|
69
|
-
color: import("
|
|
69
|
+
color: import("../../..").Color;
|
|
70
70
|
};
|
|
71
71
|
colorForegroundBase600: {
|
|
72
|
-
color: import("
|
|
72
|
+
color: import("../../..").Color;
|
|
73
73
|
};
|
|
74
74
|
colorForegroundBase700: {
|
|
75
|
-
color: import("
|
|
75
|
+
color: import("../../..").Color;
|
|
76
76
|
};
|
|
77
77
|
colorForegroundBase800: {
|
|
78
|
-
color: import("
|
|
78
|
+
color: import("../../..").Color;
|
|
79
79
|
};
|
|
80
80
|
colorForegroundBase900: {
|
|
81
|
-
color: import("
|
|
81
|
+
color: import("../../..").Color;
|
|
82
82
|
};
|
|
83
83
|
colorForegroundInverse100: {
|
|
84
|
-
color: import("
|
|
84
|
+
color: import("../../..").Color;
|
|
85
85
|
};
|
|
86
86
|
colorForegroundInverse200: {
|
|
87
|
-
color: import("
|
|
87
|
+
color: import("../../..").Color;
|
|
88
88
|
};
|
|
89
89
|
colorForegroundInverse300: {
|
|
90
|
-
color: import("
|
|
90
|
+
color: import("../../..").Color;
|
|
91
91
|
};
|
|
92
92
|
colorForegroundInverse400: {
|
|
93
|
-
color: import("
|
|
93
|
+
color: import("../../..").Color;
|
|
94
94
|
};
|
|
95
95
|
colorForegroundInverse500: {
|
|
96
|
-
color: import("
|
|
96
|
+
color: import("../../..").Color;
|
|
97
97
|
};
|
|
98
98
|
colorForegroundInverse600: {
|
|
99
|
-
color: import("
|
|
99
|
+
color: import("../../..").Color;
|
|
100
100
|
};
|
|
101
101
|
colorForegroundInverse700: {
|
|
102
|
-
color: import("
|
|
102
|
+
color: import("../../..").Color;
|
|
103
103
|
};
|
|
104
104
|
colorForegroundInverse800: {
|
|
105
|
-
color: import("
|
|
105
|
+
color: import("../../..").Color;
|
|
106
106
|
};
|
|
107
107
|
colorForegroundInverse900: {
|
|
108
|
-
color: import("
|
|
108
|
+
color: import("../../..").Color;
|
|
109
109
|
};
|
|
110
110
|
fontFamilyBase: {
|
|
111
111
|
fontFamily: string;
|
|
112
112
|
};
|
|
113
113
|
fontWeightBaseThin: {
|
|
114
|
-
fontWeight: import("
|
|
114
|
+
fontWeight: import("../../..").FontWeight;
|
|
115
115
|
};
|
|
116
116
|
fontWeightBaseExtraLight: {
|
|
117
|
-
fontWeight: import("
|
|
117
|
+
fontWeight: import("../../..").FontWeight;
|
|
118
118
|
};
|
|
119
119
|
fontWeightBaseLight: {
|
|
120
|
-
fontWeight: import("
|
|
120
|
+
fontWeight: import("../../..").FontWeight;
|
|
121
121
|
};
|
|
122
122
|
fontWeightBaseRegular: {
|
|
123
|
-
fontWeight: import("
|
|
123
|
+
fontWeight: import("../../..").FontWeight;
|
|
124
124
|
};
|
|
125
125
|
fontWeightBaseMedium: {
|
|
126
|
-
fontWeight: import("
|
|
126
|
+
fontWeight: import("../../..").FontWeight;
|
|
127
127
|
};
|
|
128
128
|
fontWeightBaseSemibold: {
|
|
129
|
-
fontWeight: import("
|
|
129
|
+
fontWeight: import("../../..").FontWeight;
|
|
130
130
|
};
|
|
131
131
|
fontWeightBaseBold: {
|
|
132
|
-
fontWeight: import("
|
|
132
|
+
fontWeight: import("../../..").FontWeight;
|
|
133
133
|
};
|
|
134
134
|
fontWeightBaseExtraBold: {
|
|
135
|
-
fontWeight: import("
|
|
135
|
+
fontWeight: import("../../..").FontWeight;
|
|
136
136
|
};
|
|
137
137
|
fontWeightBaseBlack: {
|
|
138
|
-
fontWeight: import("
|
|
138
|
+
fontWeight: import("../../..").FontWeight;
|
|
139
139
|
};
|
|
140
140
|
fontSizeBaseX2S: {
|
|
141
141
|
fontSize: number;
|
|
@@ -167,6 +167,102 @@ export declare const useThemeStyleSheet: () => {
|
|
|
167
167
|
fontSizeBaseX5L: {
|
|
168
168
|
fontSize: number;
|
|
169
169
|
};
|
|
170
|
+
marginTopBaseX6S: {
|
|
171
|
+
marginTop: number;
|
|
172
|
+
};
|
|
173
|
+
paddingTopBaseX6S: {
|
|
174
|
+
paddingTop: number;
|
|
175
|
+
};
|
|
176
|
+
marginLeftBaseX6S: {
|
|
177
|
+
marginLeft: number;
|
|
178
|
+
};
|
|
179
|
+
paddingLeftBaseX6S: {
|
|
180
|
+
paddingLeft: number;
|
|
181
|
+
};
|
|
182
|
+
marginRightBaseX6S: {
|
|
183
|
+
marginRight: number;
|
|
184
|
+
};
|
|
185
|
+
paddingRightBaseX6S: {
|
|
186
|
+
paddingRight: number;
|
|
187
|
+
};
|
|
188
|
+
marginBottomBaseX6S: {
|
|
189
|
+
marginBottom: number;
|
|
190
|
+
};
|
|
191
|
+
paddingBottomBaseX6S: {
|
|
192
|
+
paddingBottom: number;
|
|
193
|
+
};
|
|
194
|
+
marginTopBaseX5S: {
|
|
195
|
+
marginTop: number;
|
|
196
|
+
};
|
|
197
|
+
paddingTopBaseX5S: {
|
|
198
|
+
paddingTop: number;
|
|
199
|
+
};
|
|
200
|
+
marginLeftBaseX5S: {
|
|
201
|
+
marginLeft: number;
|
|
202
|
+
};
|
|
203
|
+
paddingLeftBaseX5S: {
|
|
204
|
+
paddingLeft: number;
|
|
205
|
+
};
|
|
206
|
+
marginRightBaseX5S: {
|
|
207
|
+
marginRight: number;
|
|
208
|
+
};
|
|
209
|
+
paddingRightBaseX5S: {
|
|
210
|
+
paddingRight: number;
|
|
211
|
+
};
|
|
212
|
+
marginBottomBaseX5S: {
|
|
213
|
+
marginBottom: number;
|
|
214
|
+
};
|
|
215
|
+
paddingBottomBaseX5S: {
|
|
216
|
+
paddingBottom: number;
|
|
217
|
+
};
|
|
218
|
+
marginTopBaseX4S: {
|
|
219
|
+
marginTop: number;
|
|
220
|
+
};
|
|
221
|
+
paddingTopBaseX4S: {
|
|
222
|
+
paddingTop: number;
|
|
223
|
+
};
|
|
224
|
+
marginLeftBaseX4S: {
|
|
225
|
+
marginLeft: number;
|
|
226
|
+
};
|
|
227
|
+
paddingLeftBaseX4S: {
|
|
228
|
+
paddingLeft: number;
|
|
229
|
+
};
|
|
230
|
+
marginRightBaseX4S: {
|
|
231
|
+
marginRight: number;
|
|
232
|
+
};
|
|
233
|
+
paddingRightBaseX4S: {
|
|
234
|
+
paddingRight: number;
|
|
235
|
+
};
|
|
236
|
+
marginBottomBaseX4S: {
|
|
237
|
+
marginBottom: number;
|
|
238
|
+
};
|
|
239
|
+
paddingBottomBaseX4S: {
|
|
240
|
+
paddingBottom: number;
|
|
241
|
+
};
|
|
242
|
+
marginTopBaseX3S: {
|
|
243
|
+
marginTop: number;
|
|
244
|
+
};
|
|
245
|
+
paddingTopBaseX3S: {
|
|
246
|
+
paddingTop: number;
|
|
247
|
+
};
|
|
248
|
+
marginLeftBaseX3S: {
|
|
249
|
+
marginLeft: number;
|
|
250
|
+
};
|
|
251
|
+
paddingLeftBaseX3S: {
|
|
252
|
+
paddingLeft: number;
|
|
253
|
+
};
|
|
254
|
+
marginRightBaseX3S: {
|
|
255
|
+
marginRight: number;
|
|
256
|
+
};
|
|
257
|
+
paddingRightBaseX3S: {
|
|
258
|
+
paddingRight: number;
|
|
259
|
+
};
|
|
260
|
+
marginBottomBaseX3S: {
|
|
261
|
+
marginBottom: number;
|
|
262
|
+
};
|
|
263
|
+
paddingBottomBaseX3S: {
|
|
264
|
+
paddingBottom: number;
|
|
265
|
+
};
|
|
170
266
|
marginTopBaseX2S: {
|
|
171
267
|
marginTop: number;
|
|
172
268
|
};
|
|
@@ -431,30 +527,6 @@ export declare const useThemeStyleSheet: () => {
|
|
|
431
527
|
paddingBottomBaseX6L: {
|
|
432
528
|
paddingBottom: number;
|
|
433
529
|
};
|
|
434
|
-
marginTopBaseX7L: {
|
|
435
|
-
marginTop: number;
|
|
436
|
-
};
|
|
437
|
-
paddingTopBaseX7L: {
|
|
438
|
-
paddingTop: number;
|
|
439
|
-
};
|
|
440
|
-
marginLeftBaseX7L: {
|
|
441
|
-
marginLeft: number;
|
|
442
|
-
};
|
|
443
|
-
paddingLeftBaseX7L: {
|
|
444
|
-
paddingLeft: number;
|
|
445
|
-
};
|
|
446
|
-
marginRightBaseX7L: {
|
|
447
|
-
marginRight: number;
|
|
448
|
-
};
|
|
449
|
-
paddingRightBaseX7L: {
|
|
450
|
-
paddingRight: number;
|
|
451
|
-
};
|
|
452
|
-
marginBottomBaseX7L: {
|
|
453
|
-
marginBottom: number;
|
|
454
|
-
};
|
|
455
|
-
paddingBottomBaseX7L: {
|
|
456
|
-
paddingBottom: number;
|
|
457
|
-
};
|
|
458
530
|
borderWidthBaseSM: {
|
|
459
531
|
borderWidth: number;
|
|
460
532
|
};
|
|
@@ -188,212 +188,250 @@ export interface ThemeContextValue {
|
|
|
188
188
|
*/
|
|
189
189
|
colorForegroundInverse900: Color;
|
|
190
190
|
/**
|
|
191
|
-
* Base font family
|
|
192
|
-
*
|
|
193
|
-
* If you don't known what font family to use - use this one.
|
|
191
|
+
* Base font family.
|
|
192
|
+
* @see FONT_FAMILY_BASE
|
|
194
193
|
*/
|
|
195
194
|
fontFamilyBase: string;
|
|
196
195
|
/**
|
|
197
|
-
* Base thin font weight
|
|
198
|
-
*
|
|
196
|
+
* Base thin font weight.
|
|
197
|
+
* @see FONT_WEIGHT_BASE_THIN
|
|
198
|
+
* @default 100
|
|
199
199
|
*/
|
|
200
200
|
fontWeightBaseThin: FontWeight;
|
|
201
201
|
/**
|
|
202
|
-
* Base extra-light font weight
|
|
203
|
-
*
|
|
204
|
-
*
|
|
202
|
+
* Base extra-light font weight.
|
|
203
|
+
* @see FONT_WEIGHT_BASE_EXTRALIGHT
|
|
204
|
+
* @default 200
|
|
205
205
|
*/
|
|
206
206
|
fontWeightBaseExtraLight: FontWeight;
|
|
207
207
|
/**
|
|
208
|
-
* Base light font weight
|
|
209
|
-
*
|
|
208
|
+
* Base light font weight.
|
|
209
|
+
* @see FONT_WEIGHT_BASE_LIGHT
|
|
210
|
+
* @default 300
|
|
210
211
|
*/
|
|
211
212
|
fontWeightBaseLight: FontWeight;
|
|
212
213
|
/**
|
|
213
|
-
* Base regular font weight
|
|
214
|
-
*
|
|
215
|
-
*
|
|
214
|
+
* Base regular font weight.
|
|
215
|
+
* @see FONT_WEIGHT_BASE_REGULAR
|
|
216
|
+
* @default 400
|
|
216
217
|
*/
|
|
217
218
|
fontWeightBaseRegular: FontWeight;
|
|
218
219
|
/**
|
|
219
|
-
* Base medium font weight
|
|
220
|
-
*
|
|
221
|
-
*
|
|
220
|
+
* Base medium font weight.
|
|
221
|
+
* @see FONT_WEIGHT_BASE_MEDIUM
|
|
222
|
+
* @default 500
|
|
222
223
|
*/
|
|
223
224
|
fontWeightBaseMedium: FontWeight;
|
|
224
225
|
/**
|
|
225
|
-
* Base semi-bold font weight
|
|
226
|
-
*
|
|
227
|
-
*
|
|
226
|
+
* Base semi-bold font weight.
|
|
227
|
+
* @see FONT_WEIGHT_BASE_SEMIBOLD
|
|
228
|
+
* @default 600
|
|
228
229
|
*/
|
|
229
230
|
fontWeightBaseSemibold: FontWeight;
|
|
230
231
|
/**
|
|
231
|
-
* Base bold font weight
|
|
232
|
-
*
|
|
233
|
-
*
|
|
232
|
+
* Base bold font weight.
|
|
233
|
+
* @see FONT_WEIGHT_BASE_BOLD
|
|
234
|
+
* @default 700
|
|
234
235
|
*/
|
|
235
236
|
fontWeightBaseBold: FontWeight;
|
|
236
237
|
/**
|
|
237
|
-
* Extra-bold font weight
|
|
238
|
-
*
|
|
238
|
+
* Extra-bold font weight.
|
|
239
|
+
* @see FONT_WEIGHT_BASE_EXTRABOLD
|
|
240
|
+
* @default 800
|
|
239
241
|
*/
|
|
240
242
|
fontWeightBaseExtraBold: FontWeight;
|
|
241
243
|
/**
|
|
242
|
-
* Base black font weight
|
|
243
|
-
*
|
|
244
|
-
*
|
|
244
|
+
* Base black font weight.
|
|
245
|
+
* @see FONT_WEIGHT_BASE_BLACK
|
|
246
|
+
* @default 900
|
|
245
247
|
*/
|
|
246
248
|
fontWeightBaseBlack: FontWeight;
|
|
247
249
|
/**
|
|
248
|
-
* Base 2 times extra-small font size
|
|
249
|
-
*
|
|
250
|
-
*
|
|
250
|
+
* Base 2 times extra-small font size.
|
|
251
|
+
* @see FONT_SIZE_BASE_X2S
|
|
252
|
+
* @default 12
|
|
251
253
|
*/
|
|
252
254
|
fontSizeBaseX2S: number;
|
|
253
255
|
/**
|
|
254
|
-
* Base extra-small font size
|
|
255
|
-
*
|
|
256
|
+
* Base extra-small font size.
|
|
257
|
+
* @see FONT_SIZE_BASE_XS
|
|
258
|
+
* @default 14
|
|
256
259
|
*/
|
|
257
260
|
fontSizeBaseXS: number;
|
|
258
261
|
/**
|
|
259
|
-
* Base small font size
|
|
260
|
-
*
|
|
261
|
-
*
|
|
262
|
+
* Base small font size.
|
|
263
|
+
* @see FONT_SIZE_BASE_SM
|
|
264
|
+
* @default 16
|
|
262
265
|
*/
|
|
263
266
|
fontSizeBaseSM: number;
|
|
264
267
|
/**
|
|
265
|
-
* Base medium font size
|
|
266
|
-
*
|
|
267
|
-
*
|
|
268
|
+
* Base medium font size.
|
|
269
|
+
* @see FONT_SIZE_BASE_MD
|
|
270
|
+
* @default 18
|
|
268
271
|
*/
|
|
269
272
|
fontSizeBaseMD: number;
|
|
270
273
|
/**
|
|
271
|
-
* Base large font size
|
|
272
|
-
*
|
|
273
|
-
*
|
|
274
|
+
* Base large font size.
|
|
275
|
+
* @see FONT_SIZE_BASE_LG
|
|
276
|
+
* @default 20
|
|
274
277
|
*/
|
|
275
278
|
fontSizeBaseLG: number;
|
|
276
279
|
/**
|
|
277
|
-
* Base extra-large font size
|
|
278
|
-
*
|
|
279
|
-
*
|
|
280
|
+
* Base extra-large font size.
|
|
281
|
+
* @see FONT_SIZE_BASE_XL
|
|
282
|
+
* @default 24
|
|
280
283
|
*/
|
|
281
284
|
fontSizeBaseXL: number;
|
|
282
285
|
/**
|
|
283
|
-
* Base 2 times extra-large font size
|
|
284
|
-
*
|
|
286
|
+
* Base 2 times extra-large font size.
|
|
287
|
+
* @see FONT_SIZE_BASE_X2L
|
|
288
|
+
* @default 30
|
|
285
289
|
*/
|
|
286
290
|
fontSizeBaseX2L: number;
|
|
287
291
|
/**
|
|
288
|
-
* Base 3 times extra-large font size
|
|
289
|
-
*
|
|
290
|
-
*
|
|
292
|
+
* Base 3 times extra-large font size.
|
|
293
|
+
* @see FONT_SIZE_BASE_X3L
|
|
294
|
+
* @default 36
|
|
291
295
|
*/
|
|
292
296
|
fontSizeBaseX3L: number;
|
|
293
297
|
/**
|
|
294
|
-
* Base 4 times extra-large font size
|
|
295
|
-
*
|
|
298
|
+
* Base 4 times extra-large font size.
|
|
299
|
+
* @see FONT_SIZE_BASE_X4L
|
|
300
|
+
* @default 48
|
|
296
301
|
*/
|
|
297
302
|
fontSizeBaseX4L: number;
|
|
298
303
|
/**
|
|
299
|
-
* Base 5 times extra-large font size
|
|
300
|
-
*
|
|
301
|
-
*
|
|
304
|
+
* Base 5 times extra-large font size.
|
|
305
|
+
* @see FONT_SIZE_BASE_X5L
|
|
306
|
+
* @default 60
|
|
302
307
|
*/
|
|
303
308
|
fontSizeBaseX5L: number;
|
|
304
309
|
/**
|
|
305
|
-
* Base none line height
|
|
306
|
-
*
|
|
310
|
+
* Base none line height.
|
|
311
|
+
* @see LINE_HEIGHT_BASE_NONE
|
|
312
|
+
* @default 1
|
|
307
313
|
*/
|
|
308
314
|
lineHeightBaseNone: number;
|
|
309
315
|
/**
|
|
310
|
-
* Base tight line height
|
|
311
|
-
*
|
|
316
|
+
* Base tight line height.
|
|
317
|
+
* @see LINE_HEIGHT_BASE_TIGHT
|
|
318
|
+
* @default 1.25
|
|
312
319
|
*/
|
|
313
320
|
lineHeightBaseTight: number;
|
|
314
321
|
/**
|
|
315
|
-
* Base snug line height
|
|
316
|
-
*
|
|
322
|
+
* Base snug line height.
|
|
323
|
+
* @see LINE_HEIGHT_BASE_SNUG
|
|
324
|
+
* @default 1.375
|
|
317
325
|
*/
|
|
318
326
|
lineHeightBaseSnug: number;
|
|
319
327
|
/**
|
|
320
|
-
* Base normal line height
|
|
321
|
-
*
|
|
322
|
-
*
|
|
328
|
+
* Base normal line height.
|
|
329
|
+
* @see LINE_HEIGHT_BASE_NORMAL
|
|
330
|
+
* @default 1.5
|
|
323
331
|
*/
|
|
324
332
|
lineHeightBaseNormal: number;
|
|
325
333
|
/**
|
|
326
|
-
* Base relaxed line height
|
|
327
|
-
*
|
|
328
|
-
*
|
|
334
|
+
* Base relaxed line height.
|
|
335
|
+
* @see LINE_HEIGHT_BASE_RELAXED
|
|
336
|
+
* @default 1.625
|
|
329
337
|
*/
|
|
330
338
|
lineHeightBaseRelaxed: number;
|
|
331
339
|
/**
|
|
332
|
-
* Base loose line height
|
|
333
|
-
*
|
|
334
|
-
*
|
|
340
|
+
* Base loose line height.
|
|
341
|
+
* @see LINE_HEIGHT_BASE_LOOSE
|
|
342
|
+
* @default 2
|
|
335
343
|
*/
|
|
336
344
|
lineHeightBaseLoose: number;
|
|
337
345
|
/**
|
|
338
|
-
* Base
|
|
339
|
-
*
|
|
346
|
+
* Base 6 times extra-small spacing.
|
|
347
|
+
* @see SPACING_BASE_X6S
|
|
348
|
+
* @default 2
|
|
349
|
+
*/
|
|
350
|
+
spacingBaseX6S: number;
|
|
351
|
+
/**
|
|
352
|
+
* Base 5 times extra-small spacing.
|
|
353
|
+
* @see SPACING_BASE_X5S
|
|
354
|
+
* @default 4
|
|
355
|
+
*/
|
|
356
|
+
spacingBaseX5S: number;
|
|
357
|
+
/**
|
|
358
|
+
* Base 4 times extra-small spacing.
|
|
359
|
+
* @see SPACING_BASE_X4S
|
|
360
|
+
* @default 6
|
|
361
|
+
*/
|
|
362
|
+
spacingBaseX4S: number;
|
|
363
|
+
/**
|
|
364
|
+
* Base 3 times extra-small spacing.
|
|
365
|
+
* @see SPACING_BASE_X3S
|
|
366
|
+
* @default 8
|
|
367
|
+
*/
|
|
368
|
+
spacingBaseX3S: number;
|
|
369
|
+
/**
|
|
370
|
+
* Base 2 times extra-small spacing.
|
|
371
|
+
* @see SPACING_BASE_X2S
|
|
372
|
+
* @default 10
|
|
340
373
|
*/
|
|
341
374
|
spacingBaseX2S: number;
|
|
342
375
|
/**
|
|
343
|
-
*
|
|
344
|
-
*
|
|
376
|
+
* Base extra-small spacing.
|
|
377
|
+
* @see SPACING_BASE_XS
|
|
378
|
+
* @default 12
|
|
345
379
|
*/
|
|
346
380
|
spacingBaseXS: number;
|
|
347
381
|
/**
|
|
348
|
-
*
|
|
349
|
-
*
|
|
382
|
+
* Base small spacing.
|
|
383
|
+
* @see SPACING_BASE_SM
|
|
384
|
+
* @default 14
|
|
350
385
|
*/
|
|
351
386
|
spacingBaseSM: number;
|
|
352
387
|
/**
|
|
353
|
-
* Base medium spacing
|
|
354
|
-
*
|
|
388
|
+
* Base medium spacing.
|
|
389
|
+
* @see SPACING_BASE_MD
|
|
390
|
+
* @default 16
|
|
355
391
|
*/
|
|
356
392
|
spacingBaseMD: number;
|
|
357
393
|
/**
|
|
358
|
-
*
|
|
359
|
-
*
|
|
394
|
+
* Base large spacing.
|
|
395
|
+
* @see SPACING_BASE_LG
|
|
396
|
+
* @default 18
|
|
360
397
|
*/
|
|
361
398
|
spacingBaseLG: number;
|
|
362
399
|
/**
|
|
363
|
-
*
|
|
364
|
-
*
|
|
400
|
+
* Base extra-large spacing.
|
|
401
|
+
* @see SPACING_BASE_XL
|
|
402
|
+
* @default 20
|
|
365
403
|
*/
|
|
366
404
|
spacingBaseXL: number;
|
|
367
405
|
/**
|
|
368
|
-
* Base 2 times extra-large spacing
|
|
369
|
-
*
|
|
406
|
+
* Base 2 times extra-large spacing.
|
|
407
|
+
* @see SPACING_BASE_X2L
|
|
408
|
+
* @default 24
|
|
370
409
|
*/
|
|
371
410
|
spacingBaseX2L: number;
|
|
372
411
|
/**
|
|
373
|
-
* Base 3 times extra-large spacing
|
|
374
|
-
*
|
|
412
|
+
* Base 3 times extra-large spacing.
|
|
413
|
+
* @see SPACING_BASE_X3L
|
|
414
|
+
* @default 28
|
|
375
415
|
*/
|
|
376
416
|
spacingBaseX3L: number;
|
|
377
417
|
/**
|
|
378
|
-
* Base 4 times extra-large spacing
|
|
379
|
-
*
|
|
418
|
+
* Base 4 times extra-large spacing.
|
|
419
|
+
* @see SPACING_BASE_X4L
|
|
420
|
+
* @default 32
|
|
380
421
|
*/
|
|
381
422
|
spacingBaseX4L: number;
|
|
382
423
|
/**
|
|
383
|
-
* Base 5 times extra-large spacing
|
|
384
|
-
*
|
|
424
|
+
* Base 5 times extra-large spacing.
|
|
425
|
+
* @see SPACING_BASE_X5L
|
|
426
|
+
* @default 36
|
|
385
427
|
*/
|
|
386
428
|
spacingBaseX5L: number;
|
|
387
429
|
/**
|
|
388
|
-
* Base 6 times extra-large spacing
|
|
389
|
-
*
|
|
430
|
+
* Base 6 times extra-large spacing.
|
|
431
|
+
* @see SPACING_BASE_X6L
|
|
432
|
+
* @default 40
|
|
390
433
|
*/
|
|
391
434
|
spacingBaseX6L: number;
|
|
392
|
-
/**
|
|
393
|
-
* Base 7 times extra-large spacing token.
|
|
394
|
-
* Used for large layout sections or when significant whitespace is needed.
|
|
395
|
-
*/
|
|
396
|
-
spacingBaseX7L: number;
|
|
397
435
|
/**
|
|
398
436
|
* Small base border width token.
|
|
399
437
|
* @default 0.5
|