@pingux/astro 2.217.0-alpha.0 → 2.217.1
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/lib/cjs/components/TableBase/TableBase.styles.d.ts +3 -3
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +5 -5
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/colors.d.ts +74 -74
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +5 -5
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/avatar.d.ts +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/badges.d.ts +16 -16
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/buttons.d.ts +44 -44
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/cards.d.ts +1 -1
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/forms.d.ts +9 -9
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/links.d.ts +9 -9
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/listview.d.ts +7 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/menu.d.ts +8 -8
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/message.d.ts +3 -3
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/text.d.ts +12 -12
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +56 -56
- package/lib/cjs/styles/themeOverrides/onyxUiLibraryOverride.d.ts +7 -7
- package/lib/cjs/styles/themes/next-gen/colors/colors.d.ts +143 -143
- package/lib/cjs/styles/themes/next-gen/colors/iconWrapper.d.ts +30 -30
- package/lib/cjs/styles/themes/next-gen/colors/twoTone.d.ts +30 -30
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/forms.d.ts +28 -28
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +525 -507
- package/lib/cjs/styles/themes/next-gen/sizes.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/spacing.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/text.js +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/accordionGrid.d.ts +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/avatar.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/variants/badges.d.ts +22 -22
- package/lib/cjs/styles/themes/next-gen/variants/button.d.ts +164 -146
- package/lib/cjs/styles/themes/next-gen/variants/cards.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/variants/dataTable.d.ts +3 -3
- package/lib/cjs/styles/themes/next-gen/variants/footer.d.ts +1 -1
- package/lib/cjs/styles/themes/next-gen/variants/iconWrapper.d.ts +5 -5
- package/lib/cjs/styles/themes/next-gen/variants/input.d.ts +11 -11
- package/lib/cjs/styles/themes/next-gen/variants/links.d.ts +34 -34
- package/lib/cjs/styles/themes/next-gen/variants/listview.d.ts +14 -14
- package/lib/cjs/styles/themes/next-gen/variants/menu.d.ts +3 -3
- package/lib/cjs/styles/themes/next-gen/variants/messages.d.ts +11 -11
- package/lib/cjs/styles/themes/next-gen/variants/navbar.d.ts +18 -18
- package/lib/cjs/styles/themes/next-gen/variants/popoverMenu.d.ts +7 -7
- package/lib/cjs/styles/themes/next-gen/variants/rangeCalendar.d.ts +3 -3
- package/lib/cjs/styles/themes/next-gen/variants/stepper.d.ts +4 -4
- package/lib/cjs/styles/themes/next-gen/variants/tableBase.d.ts +11 -11
- package/lib/cjs/styles/themes/next-gen/variants/text.d.ts +25 -25
- package/lib/cjs/styles/themes/next-gen/variants/tooltip.d.ts +2 -2
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +121 -121
- package/lib/styles/themes/next-gen/text.js +1 -1
- package/package.json +2 -2
|
@@ -3,140 +3,140 @@ declare const _default: {
|
|
|
3
3
|
name: string;
|
|
4
4
|
colors: {
|
|
5
5
|
badge: {
|
|
6
|
-
textColor:
|
|
7
|
-
background:
|
|
6
|
+
textColor: string;
|
|
7
|
+
background: string;
|
|
8
8
|
};
|
|
9
9
|
card: {
|
|
10
|
-
blue:
|
|
11
|
-
gray:
|
|
10
|
+
blue: string;
|
|
11
|
+
gray: string;
|
|
12
12
|
};
|
|
13
13
|
critical: {
|
|
14
|
-
bright:
|
|
15
|
-
dark:
|
|
16
|
-
light:
|
|
14
|
+
bright: string;
|
|
15
|
+
dark: string;
|
|
16
|
+
light: string;
|
|
17
17
|
};
|
|
18
18
|
success: {
|
|
19
|
-
bright:
|
|
20
|
-
dark:
|
|
21
|
-
light:
|
|
19
|
+
bright: string;
|
|
20
|
+
dark: string;
|
|
21
|
+
light: string;
|
|
22
22
|
};
|
|
23
23
|
warning: {
|
|
24
|
-
bright:
|
|
25
|
-
dark:
|
|
26
|
-
light:
|
|
24
|
+
bright: string;
|
|
25
|
+
dark: string;
|
|
26
|
+
light: string;
|
|
27
27
|
};
|
|
28
28
|
info: {
|
|
29
|
-
bright:
|
|
30
|
-
dark:
|
|
31
|
-
light:
|
|
29
|
+
bright: string;
|
|
30
|
+
dark: string;
|
|
31
|
+
light: string;
|
|
32
32
|
};
|
|
33
33
|
text: {
|
|
34
|
-
primary:
|
|
35
|
-
secondary:
|
|
36
|
-
error:
|
|
37
|
-
message:
|
|
38
|
-
fieldHelper:
|
|
34
|
+
primary: string;
|
|
35
|
+
secondary: string;
|
|
36
|
+
error: string;
|
|
37
|
+
message: string;
|
|
38
|
+
fieldHelper: string;
|
|
39
39
|
};
|
|
40
40
|
border: {
|
|
41
|
-
base:
|
|
42
|
-
input:
|
|
43
|
-
separator:
|
|
44
|
-
hairline:
|
|
45
|
-
};
|
|
46
|
-
active:
|
|
47
|
-
primary:
|
|
48
|
-
background:
|
|
41
|
+
base: string;
|
|
42
|
+
input: string;
|
|
43
|
+
separator: string;
|
|
44
|
+
hairline: string;
|
|
45
|
+
};
|
|
46
|
+
active: string;
|
|
47
|
+
primary: string;
|
|
48
|
+
background: string;
|
|
49
49
|
backgroundBase: string;
|
|
50
|
-
backgroundSecondary:
|
|
51
|
-
backgroundCard:
|
|
50
|
+
backgroundSecondary: string;
|
|
51
|
+
backgroundCard: string;
|
|
52
52
|
backgroundSuggestion: string;
|
|
53
|
-
backgroundHover:
|
|
53
|
+
backgroundHover: string;
|
|
54
54
|
iconWrapper: {
|
|
55
55
|
wrapper: {
|
|
56
|
-
orange:
|
|
57
|
-
cyan:
|
|
58
|
-
green:
|
|
59
|
-
purple:
|
|
60
|
-
pink:
|
|
61
|
-
red:
|
|
62
|
-
yellow:
|
|
63
|
-
teal:
|
|
64
|
-
blue:
|
|
65
|
-
indigo:
|
|
66
|
-
lightBlue:
|
|
67
|
-
lightPink:
|
|
68
|
-
lightGreen:
|
|
69
|
-
lightYellow:
|
|
70
|
-
lightIndigo:
|
|
56
|
+
orange: string;
|
|
57
|
+
cyan: string;
|
|
58
|
+
green: string;
|
|
59
|
+
purple: string;
|
|
60
|
+
pink: string;
|
|
61
|
+
red: string;
|
|
62
|
+
yellow: string;
|
|
63
|
+
teal: string;
|
|
64
|
+
blue: string;
|
|
65
|
+
indigo: string;
|
|
66
|
+
lightBlue: string;
|
|
67
|
+
lightPink: string;
|
|
68
|
+
lightGreen: string;
|
|
69
|
+
lightYellow: string;
|
|
70
|
+
lightIndigo: string;
|
|
71
71
|
};
|
|
72
72
|
icon: {
|
|
73
|
-
orange:
|
|
74
|
-
cyan:
|
|
75
|
-
green:
|
|
76
|
-
purple:
|
|
77
|
-
pink:
|
|
78
|
-
red:
|
|
79
|
-
yellow:
|
|
80
|
-
teal:
|
|
81
|
-
blue:
|
|
82
|
-
indigo:
|
|
83
|
-
lightBlue:
|
|
84
|
-
lightPink:
|
|
85
|
-
lightGreen:
|
|
86
|
-
lightYellow:
|
|
87
|
-
lightIndigo:
|
|
73
|
+
orange: string;
|
|
74
|
+
cyan: string;
|
|
75
|
+
green: string;
|
|
76
|
+
purple: string;
|
|
77
|
+
pink: string;
|
|
78
|
+
red: string;
|
|
79
|
+
yellow: string;
|
|
80
|
+
teal: string;
|
|
81
|
+
blue: string;
|
|
82
|
+
indigo: string;
|
|
83
|
+
lightBlue: string;
|
|
84
|
+
lightPink: string;
|
|
85
|
+
lightGreen: string;
|
|
86
|
+
lightYellow: string;
|
|
87
|
+
lightIndigo: string;
|
|
88
88
|
};
|
|
89
89
|
};
|
|
90
90
|
tooltip: string;
|
|
91
91
|
environmentBadge: {
|
|
92
|
-
text:
|
|
93
|
-
background:
|
|
92
|
+
text: string;
|
|
93
|
+
background: string;
|
|
94
94
|
};
|
|
95
95
|
codeEditor: {
|
|
96
|
-
backgroundColor:
|
|
97
|
-
headerColor:
|
|
96
|
+
backgroundColor: string;
|
|
97
|
+
headerColor: string;
|
|
98
98
|
};
|
|
99
99
|
twoTone: {
|
|
100
100
|
bg: {
|
|
101
|
-
orange:
|
|
102
|
-
cyan:
|
|
103
|
-
green:
|
|
104
|
-
purple:
|
|
105
|
-
pink:
|
|
106
|
-
red:
|
|
107
|
-
yellow:
|
|
108
|
-
teal:
|
|
109
|
-
blue:
|
|
110
|
-
indigo:
|
|
111
|
-
lightBlue:
|
|
112
|
-
lightPink:
|
|
113
|
-
lightGreen:
|
|
114
|
-
lightYellow:
|
|
115
|
-
lightIndigo:
|
|
101
|
+
orange: string;
|
|
102
|
+
cyan: string;
|
|
103
|
+
green: string;
|
|
104
|
+
purple: string;
|
|
105
|
+
pink: string;
|
|
106
|
+
red: string;
|
|
107
|
+
yellow: string;
|
|
108
|
+
teal: string;
|
|
109
|
+
blue: string;
|
|
110
|
+
indigo: string;
|
|
111
|
+
lightBlue: string;
|
|
112
|
+
lightPink: string;
|
|
113
|
+
lightGreen: string;
|
|
114
|
+
lightYellow: string;
|
|
115
|
+
lightIndigo: string;
|
|
116
116
|
};
|
|
117
117
|
text: {
|
|
118
|
-
orange:
|
|
119
|
-
cyan:
|
|
120
|
-
green:
|
|
121
|
-
purple:
|
|
122
|
-
pink:
|
|
123
|
-
red:
|
|
124
|
-
yellow:
|
|
125
|
-
teal:
|
|
126
|
-
blue:
|
|
127
|
-
indigo:
|
|
128
|
-
lightBlue:
|
|
129
|
-
lightPink:
|
|
130
|
-
lightGreen:
|
|
131
|
-
lightYellow:
|
|
132
|
-
lightIndigo:
|
|
118
|
+
orange: string;
|
|
119
|
+
cyan: string;
|
|
120
|
+
green: string;
|
|
121
|
+
purple: string;
|
|
122
|
+
pink: string;
|
|
123
|
+
red: string;
|
|
124
|
+
yellow: string;
|
|
125
|
+
teal: string;
|
|
126
|
+
blue: string;
|
|
127
|
+
indigo: string;
|
|
128
|
+
lightBlue: string;
|
|
129
|
+
lightPink: string;
|
|
130
|
+
lightGreen: string;
|
|
131
|
+
lightYellow: string;
|
|
132
|
+
lightIndigo: string;
|
|
133
133
|
};
|
|
134
134
|
};
|
|
135
135
|
neutral: {
|
|
136
136
|
80: string;
|
|
137
137
|
};
|
|
138
|
-
focus:
|
|
139
|
-
disabled:
|
|
138
|
+
focus: string;
|
|
139
|
+
disabled: string;
|
|
140
140
|
white: string;
|
|
141
141
|
'blue-100': string;
|
|
142
142
|
'blue-200': string;
|
|
@@ -272,40 +272,40 @@ declare const _default: {
|
|
|
272
272
|
critical_pressed: string;
|
|
273
273
|
critical_light: string;
|
|
274
274
|
warning_light: string;
|
|
275
|
-
lightblue:
|
|
276
|
-
lightindigo:
|
|
277
|
-
lightpurple:
|
|
278
|
-
lightpink:
|
|
279
|
-
lightred:
|
|
280
|
-
lightorange:
|
|
281
|
-
lightyellow:
|
|
282
|
-
lightgreen:
|
|
283
|
-
lightteal:
|
|
284
|
-
lightcyan:
|
|
285
|
-
darkblue:
|
|
286
|
-
darkindigo:
|
|
287
|
-
darkpurple:
|
|
288
|
-
darkpink:
|
|
289
|
-
darkred:
|
|
290
|
-
darkorange:
|
|
291
|
-
darkyellow:
|
|
292
|
-
darkgreen:
|
|
293
|
-
darkteal:
|
|
294
|
-
darkcyan:
|
|
295
|
-
mediumblue:
|
|
296
|
-
mediumindigo:
|
|
297
|
-
mediumpurple:
|
|
298
|
-
mediumpink:
|
|
299
|
-
mediumred:
|
|
300
|
-
mediumorange:
|
|
301
|
-
mediumyellow:
|
|
302
|
-
mediumgreen:
|
|
303
|
-
mediumteal:
|
|
304
|
-
mediumcyan:
|
|
305
|
-
secondary:
|
|
306
|
-
danger:
|
|
307
|
-
light:
|
|
308
|
-
dark:
|
|
275
|
+
lightblue: string;
|
|
276
|
+
lightindigo: string;
|
|
277
|
+
lightpurple: string;
|
|
278
|
+
lightpink: string;
|
|
279
|
+
lightred: string;
|
|
280
|
+
lightorange: string;
|
|
281
|
+
lightyellow: string;
|
|
282
|
+
lightgreen: string;
|
|
283
|
+
lightteal: string;
|
|
284
|
+
lightcyan: string;
|
|
285
|
+
darkblue: string;
|
|
286
|
+
darkindigo: string;
|
|
287
|
+
darkpurple: string;
|
|
288
|
+
darkpink: string;
|
|
289
|
+
darkred: string;
|
|
290
|
+
darkorange: string;
|
|
291
|
+
darkyellow: string;
|
|
292
|
+
darkgreen: string;
|
|
293
|
+
darkteal: string;
|
|
294
|
+
darkcyan: string;
|
|
295
|
+
mediumblue: string;
|
|
296
|
+
mediumindigo: string;
|
|
297
|
+
mediumpurple: string;
|
|
298
|
+
mediumpink: string;
|
|
299
|
+
mediumred: string;
|
|
300
|
+
mediumorange: string;
|
|
301
|
+
mediumyellow: string;
|
|
302
|
+
mediumgreen: string;
|
|
303
|
+
mediumteal: string;
|
|
304
|
+
mediumcyan: string;
|
|
305
|
+
secondary: string;
|
|
306
|
+
danger: string;
|
|
307
|
+
light: string;
|
|
308
|
+
dark: string;
|
|
309
309
|
};
|
|
310
310
|
buttons: {
|
|
311
311
|
neutral: {
|
|
@@ -333,8 +333,8 @@ declare const _default: {
|
|
|
333
333
|
borderRadius: string;
|
|
334
334
|
border: string;
|
|
335
335
|
borderColor: string;
|
|
336
|
-
px:
|
|
337
|
-
py:
|
|
336
|
+
px: number;
|
|
337
|
+
py: number;
|
|
338
338
|
maxHeight: string;
|
|
339
339
|
height: string;
|
|
340
340
|
'&.is-disabled': {
|
|
@@ -352,17 +352,17 @@ declare const _default: {
|
|
|
352
352
|
backgroundColor: string;
|
|
353
353
|
borderColor: string;
|
|
354
354
|
'&.is-pressed': {
|
|
355
|
-
backgroundColor:
|
|
356
|
-
borderColor:
|
|
355
|
+
backgroundColor: string;
|
|
356
|
+
borderColor: string;
|
|
357
357
|
};
|
|
358
358
|
'&.is-hovered': {
|
|
359
359
|
boxShadow: string;
|
|
360
|
-
backgroundColor:
|
|
361
|
-
borderColor:
|
|
360
|
+
backgroundColor: string;
|
|
361
|
+
borderColor: string;
|
|
362
362
|
};
|
|
363
363
|
'&.is-focused': {
|
|
364
|
-
backgroundColor:
|
|
365
|
-
borderColor:
|
|
364
|
+
backgroundColor: string;
|
|
365
|
+
borderColor: string;
|
|
366
366
|
outline: string;
|
|
367
367
|
};
|
|
368
368
|
alignItems: string;
|
|
@@ -380,8 +380,8 @@ declare const _default: {
|
|
|
380
380
|
lineHeight: number;
|
|
381
381
|
borderRadius: string;
|
|
382
382
|
border: string;
|
|
383
|
-
px:
|
|
384
|
-
py:
|
|
383
|
+
px: number;
|
|
384
|
+
py: number;
|
|
385
385
|
maxHeight: string;
|
|
386
386
|
height: string;
|
|
387
387
|
'&.is-disabled': {
|
|
@@ -391,11 +391,11 @@ declare const _default: {
|
|
|
391
391
|
};
|
|
392
392
|
default: {
|
|
393
393
|
backgroundColor: string;
|
|
394
|
-
borderColor:
|
|
395
|
-
color:
|
|
394
|
+
borderColor: string;
|
|
395
|
+
color: string;
|
|
396
396
|
'&.is-pressed': {
|
|
397
|
-
backgroundColor:
|
|
398
|
-
borderColor:
|
|
397
|
+
backgroundColor: string;
|
|
398
|
+
borderColor: string;
|
|
399
399
|
color: string;
|
|
400
400
|
path: {
|
|
401
401
|
fill: string;
|
|
@@ -403,8 +403,8 @@ declare const _default: {
|
|
|
403
403
|
};
|
|
404
404
|
'&.is-hovered': {
|
|
405
405
|
boxShadow: string;
|
|
406
|
-
backgroundColor:
|
|
407
|
-
borderColor:
|
|
406
|
+
backgroundColor: string;
|
|
407
|
+
borderColor: string;
|
|
408
408
|
color: string;
|
|
409
409
|
path: {
|
|
410
410
|
fill: string;
|
|
@@ -425,8 +425,8 @@ declare const _default: {
|
|
|
425
425
|
lineHeight: number;
|
|
426
426
|
borderRadius: string;
|
|
427
427
|
border: string;
|
|
428
|
-
px:
|
|
429
|
-
py:
|
|
428
|
+
px: number;
|
|
429
|
+
py: number;
|
|
430
430
|
maxHeight: string;
|
|
431
431
|
height: string;
|
|
432
432
|
'&.is-disabled': {
|
|
@@ -442,7 +442,7 @@ declare const _default: {
|
|
|
442
442
|
tertiary: {
|
|
443
443
|
backgroundColor: string;
|
|
444
444
|
borderColor: string;
|
|
445
|
-
color:
|
|
445
|
+
color: string;
|
|
446
446
|
'&.is-focused': {
|
|
447
447
|
outlineColor: string;
|
|
448
448
|
backgroundColor: string;
|
|
@@ -451,12 +451,12 @@ declare const _default: {
|
|
|
451
451
|
};
|
|
452
452
|
'&.is-pressed': {
|
|
453
453
|
backgroundColor: string;
|
|
454
|
-
color:
|
|
454
|
+
color: string;
|
|
455
455
|
};
|
|
456
456
|
'&.is-hovered': {
|
|
457
457
|
boxShadow: string;
|
|
458
458
|
backgroundColor: string;
|
|
459
|
-
color:
|
|
459
|
+
color: string;
|
|
460
460
|
};
|
|
461
461
|
alignItems: string;
|
|
462
462
|
justifyContent: string;
|
|
@@ -473,8 +473,8 @@ declare const _default: {
|
|
|
473
473
|
lineHeight: number;
|
|
474
474
|
borderRadius: string;
|
|
475
475
|
border: string;
|
|
476
|
-
px:
|
|
477
|
-
py:
|
|
476
|
+
px: number;
|
|
477
|
+
py: number;
|
|
478
478
|
maxHeight: string;
|
|
479
479
|
height: string;
|
|
480
480
|
'&.is-disabled': {
|
|
@@ -501,8 +501,8 @@ declare const _default: {
|
|
|
501
501
|
lineHeight: number;
|
|
502
502
|
borderRadius: string;
|
|
503
503
|
border: string;
|
|
504
|
-
px:
|
|
505
|
-
py:
|
|
504
|
+
px: number;
|
|
505
|
+
py: number;
|
|
506
506
|
maxHeight: string;
|
|
507
507
|
height: string;
|
|
508
508
|
'&.is-disabled': {
|
|
@@ -529,13 +529,13 @@ declare const _default: {
|
|
|
529
529
|
outlineOffset: string;
|
|
530
530
|
};
|
|
531
531
|
'&.is-pressed': {
|
|
532
|
-
backgroundColor:
|
|
533
|
-
borderColor:
|
|
532
|
+
backgroundColor: string;
|
|
533
|
+
borderColor: string;
|
|
534
534
|
};
|
|
535
535
|
'&.is-hovered': {
|
|
536
536
|
boxShadow: string;
|
|
537
|
-
backgroundColor:
|
|
538
|
-
borderColor:
|
|
537
|
+
backgroundColor: string;
|
|
538
|
+
borderColor: string;
|
|
539
539
|
color: string;
|
|
540
540
|
};
|
|
541
541
|
alignItems: string;
|
|
@@ -553,8 +553,8 @@ declare const _default: {
|
|
|
553
553
|
lineHeight: number;
|
|
554
554
|
borderRadius: string;
|
|
555
555
|
border: string;
|
|
556
|
-
px:
|
|
557
|
-
py:
|
|
556
|
+
px: number;
|
|
557
|
+
py: number;
|
|
558
558
|
maxHeight: string;
|
|
559
559
|
height: string;
|
|
560
560
|
'&.is-disabled': {
|
|
@@ -573,17 +573,17 @@ declare const _default: {
|
|
|
573
573
|
paddingTop: string;
|
|
574
574
|
paddingBottom: string;
|
|
575
575
|
backgroundColor: string;
|
|
576
|
-
color:
|
|
577
|
-
borderColor:
|
|
576
|
+
color: string;
|
|
577
|
+
borderColor: string;
|
|
578
578
|
'&.is-pressed': {
|
|
579
|
-
backgroundColor:
|
|
580
|
-
borderColor:
|
|
579
|
+
backgroundColor: string;
|
|
580
|
+
borderColor: string;
|
|
581
581
|
color: string;
|
|
582
582
|
};
|
|
583
583
|
'&.is-hovered': {
|
|
584
584
|
boxShadow: string;
|
|
585
|
-
backgroundColor:
|
|
586
|
-
borderColor:
|
|
585
|
+
backgroundColor: string;
|
|
586
|
+
borderColor: string;
|
|
587
587
|
color: string;
|
|
588
588
|
path: {
|
|
589
589
|
fill: string;
|
|
@@ -599,8 +599,8 @@ declare const _default: {
|
|
|
599
599
|
fontWeight: number;
|
|
600
600
|
textAlign: string;
|
|
601
601
|
verticalAlign: string;
|
|
602
|
-
px:
|
|
603
|
-
py:
|
|
602
|
+
px: number;
|
|
603
|
+
py: number;
|
|
604
604
|
maxHeight: string;
|
|
605
605
|
'&.is-disabled': {
|
|
606
606
|
opacity: number;
|
|
@@ -626,17 +626,23 @@ declare const _default: {
|
|
|
626
626
|
color: string;
|
|
627
627
|
borderColor: string;
|
|
628
628
|
'&.is-pressed': {
|
|
629
|
-
backgroundColor:
|
|
630
|
-
borderColor:
|
|
629
|
+
backgroundColor: string;
|
|
630
|
+
borderColor: string;
|
|
631
631
|
};
|
|
632
632
|
'&.is-hovered': {
|
|
633
633
|
boxShadow: string;
|
|
634
|
-
backgroundColor:
|
|
635
|
-
|
|
634
|
+
backgroundColor: {
|
|
635
|
+
bg: string;
|
|
636
|
+
border: string;
|
|
637
|
+
};
|
|
638
|
+
borderColor: {
|
|
639
|
+
bg: string;
|
|
640
|
+
border: string;
|
|
641
|
+
};
|
|
636
642
|
};
|
|
637
643
|
'&.is-focused': {
|
|
638
|
-
backgroundColor:
|
|
639
|
-
borderColor:
|
|
644
|
+
backgroundColor: string;
|
|
645
|
+
borderColor: string;
|
|
640
646
|
outline: string;
|
|
641
647
|
};
|
|
642
648
|
alignItems: string;
|
|
@@ -649,8 +655,8 @@ declare const _default: {
|
|
|
649
655
|
fontWeight: number;
|
|
650
656
|
textAlign: string;
|
|
651
657
|
verticalAlign: string;
|
|
652
|
-
px:
|
|
653
|
-
py:
|
|
658
|
+
px: number;
|
|
659
|
+
py: number;
|
|
654
660
|
maxHeight: string;
|
|
655
661
|
'&.is-disabled': {
|
|
656
662
|
opacity: number;
|
|
@@ -676,8 +682,8 @@ declare const _default: {
|
|
|
676
682
|
lineHeight: number;
|
|
677
683
|
borderRadius: string;
|
|
678
684
|
border: string;
|
|
679
|
-
px:
|
|
680
|
-
py:
|
|
685
|
+
px: number;
|
|
686
|
+
py: number;
|
|
681
687
|
maxHeight: string;
|
|
682
688
|
height: string;
|
|
683
689
|
'&.is-disabled': {
|
|
@@ -712,8 +718,8 @@ declare const _default: {
|
|
|
712
718
|
borderRadius: string;
|
|
713
719
|
border: string;
|
|
714
720
|
borderColor: string;
|
|
715
|
-
px:
|
|
716
|
-
py:
|
|
721
|
+
px: number;
|
|
722
|
+
py: number;
|
|
717
723
|
maxHeight: string;
|
|
718
724
|
height: string;
|
|
719
725
|
'&.is-disabled': {
|
|
@@ -765,8 +771,8 @@ declare const _default: {
|
|
|
765
771
|
lineHeight: number;
|
|
766
772
|
borderRadius: string;
|
|
767
773
|
border: string;
|
|
768
|
-
px:
|
|
769
|
-
py:
|
|
774
|
+
px: number;
|
|
775
|
+
py: number;
|
|
770
776
|
maxHeight: string;
|
|
771
777
|
height: string;
|
|
772
778
|
'&.is-disabled': {
|
|
@@ -778,7 +784,7 @@ declare const _default: {
|
|
|
778
784
|
transition: string;
|
|
779
785
|
};
|
|
780
786
|
link: {
|
|
781
|
-
color:
|
|
787
|
+
color: string;
|
|
782
788
|
transition: string;
|
|
783
789
|
fontSize: string;
|
|
784
790
|
textDecoration: string;
|
|
@@ -837,7 +843,7 @@ declare const _default: {
|
|
|
837
843
|
outlineOffset: string;
|
|
838
844
|
};
|
|
839
845
|
'&.is-pressed': {
|
|
840
|
-
backgroundColor:
|
|
846
|
+
backgroundColor: string;
|
|
841
847
|
path: {
|
|
842
848
|
fill: string;
|
|
843
849
|
};
|
|
@@ -866,7 +872,7 @@ declare const _default: {
|
|
|
866
872
|
outlineOffset: string;
|
|
867
873
|
};
|
|
868
874
|
'&.is-pressed': {
|
|
869
|
-
backgroundColor:
|
|
875
|
+
backgroundColor: string;
|
|
870
876
|
path: {
|
|
871
877
|
fill: string;
|
|
872
878
|
};
|
|
@@ -917,14 +923,14 @@ declare const _default: {
|
|
|
917
923
|
withIcon: {
|
|
918
924
|
display: string;
|
|
919
925
|
path: {
|
|
920
|
-
fill:
|
|
926
|
+
fill: string;
|
|
921
927
|
};
|
|
922
928
|
backgroundColor: string;
|
|
923
|
-
borderColor:
|
|
924
|
-
color:
|
|
929
|
+
borderColor: string;
|
|
930
|
+
color: string;
|
|
925
931
|
'&.is-pressed': {
|
|
926
|
-
backgroundColor:
|
|
927
|
-
borderColor:
|
|
932
|
+
backgroundColor: string;
|
|
933
|
+
borderColor: string;
|
|
928
934
|
color: string;
|
|
929
935
|
path: {
|
|
930
936
|
fill: string;
|
|
@@ -932,8 +938,8 @@ declare const _default: {
|
|
|
932
938
|
};
|
|
933
939
|
'&.is-hovered': {
|
|
934
940
|
boxShadow: string;
|
|
935
|
-
backgroundColor:
|
|
936
|
-
borderColor:
|
|
941
|
+
backgroundColor: string;
|
|
942
|
+
borderColor: string;
|
|
937
943
|
color: string;
|
|
938
944
|
path: {
|
|
939
945
|
fill: string;
|
|
@@ -953,8 +959,8 @@ declare const _default: {
|
|
|
953
959
|
lineHeight: number;
|
|
954
960
|
borderRadius: string;
|
|
955
961
|
border: string;
|
|
956
|
-
px:
|
|
957
|
-
py:
|
|
962
|
+
px: number;
|
|
963
|
+
py: number;
|
|
958
964
|
maxHeight: string;
|
|
959
965
|
height: string;
|
|
960
966
|
'&.is-disabled': {
|
|
@@ -973,17 +979,17 @@ declare const _default: {
|
|
|
973
979
|
backgroundColor: string;
|
|
974
980
|
borderColor: string;
|
|
975
981
|
'&.is-pressed': {
|
|
976
|
-
backgroundColor:
|
|
977
|
-
borderColor:
|
|
982
|
+
backgroundColor: string;
|
|
983
|
+
borderColor: string;
|
|
978
984
|
};
|
|
979
985
|
'&.is-hovered': {
|
|
980
986
|
boxShadow: string;
|
|
981
|
-
backgroundColor:
|
|
982
|
-
borderColor:
|
|
987
|
+
backgroundColor: string;
|
|
988
|
+
borderColor: string;
|
|
983
989
|
};
|
|
984
990
|
'&.is-focused': {
|
|
985
|
-
backgroundColor:
|
|
986
|
-
borderColor:
|
|
991
|
+
backgroundColor: string;
|
|
992
|
+
borderColor: string;
|
|
987
993
|
outline: string;
|
|
988
994
|
};
|
|
989
995
|
alignItems: string;
|
|
@@ -1000,8 +1006,8 @@ declare const _default: {
|
|
|
1000
1006
|
lineHeight: number;
|
|
1001
1007
|
borderRadius: string;
|
|
1002
1008
|
border: string;
|
|
1003
|
-
px:
|
|
1004
|
-
py:
|
|
1009
|
+
px: number;
|
|
1010
|
+
py: number;
|
|
1005
1011
|
maxHeight: string;
|
|
1006
1012
|
height: string;
|
|
1007
1013
|
'&.is-disabled': {
|
|
@@ -1012,7 +1018,7 @@ declare const _default: {
|
|
|
1012
1018
|
inlineWithIcon: {
|
|
1013
1019
|
display: string;
|
|
1014
1020
|
path: {
|
|
1015
|
-
fill:
|
|
1021
|
+
fill: string;
|
|
1016
1022
|
};
|
|
1017
1023
|
height: string;
|
|
1018
1024
|
lineHeight: number;
|
|
@@ -1023,17 +1029,17 @@ declare const _default: {
|
|
|
1023
1029
|
paddingTop: string;
|
|
1024
1030
|
paddingBottom: string;
|
|
1025
1031
|
backgroundColor: string;
|
|
1026
|
-
color:
|
|
1027
|
-
borderColor:
|
|
1032
|
+
color: string;
|
|
1033
|
+
borderColor: string;
|
|
1028
1034
|
'&.is-pressed': {
|
|
1029
|
-
backgroundColor:
|
|
1030
|
-
borderColor:
|
|
1035
|
+
backgroundColor: string;
|
|
1036
|
+
borderColor: string;
|
|
1031
1037
|
color: string;
|
|
1032
1038
|
};
|
|
1033
1039
|
'&.is-hovered': {
|
|
1034
1040
|
boxShadow: string;
|
|
1035
|
-
backgroundColor:
|
|
1036
|
-
borderColor:
|
|
1041
|
+
backgroundColor: string;
|
|
1042
|
+
borderColor: string;
|
|
1037
1043
|
color: string;
|
|
1038
1044
|
path: {
|
|
1039
1045
|
fill: string;
|
|
@@ -1049,8 +1055,8 @@ declare const _default: {
|
|
|
1049
1055
|
fontWeight: number;
|
|
1050
1056
|
textAlign: string;
|
|
1051
1057
|
verticalAlign: string;
|
|
1052
|
-
px:
|
|
1053
|
-
py:
|
|
1058
|
+
px: number;
|
|
1059
|
+
py: number;
|
|
1054
1060
|
maxHeight: string;
|
|
1055
1061
|
'&.is-disabled': {
|
|
1056
1062
|
opacity: number;
|
|
@@ -1076,17 +1082,23 @@ declare const _default: {
|
|
|
1076
1082
|
backgroundColor: string;
|
|
1077
1083
|
borderColor: string;
|
|
1078
1084
|
'&.is-pressed': {
|
|
1079
|
-
backgroundColor:
|
|
1080
|
-
borderColor:
|
|
1085
|
+
backgroundColor: string;
|
|
1086
|
+
borderColor: string;
|
|
1081
1087
|
};
|
|
1082
1088
|
'&.is-hovered': {
|
|
1083
1089
|
boxShadow: string;
|
|
1084
|
-
backgroundColor:
|
|
1085
|
-
|
|
1090
|
+
backgroundColor: {
|
|
1091
|
+
bg: string;
|
|
1092
|
+
border: string;
|
|
1093
|
+
};
|
|
1094
|
+
borderColor: {
|
|
1095
|
+
bg: string;
|
|
1096
|
+
border: string;
|
|
1097
|
+
};
|
|
1086
1098
|
};
|
|
1087
1099
|
'&.is-focused': {
|
|
1088
|
-
backgroundColor:
|
|
1089
|
-
borderColor:
|
|
1100
|
+
backgroundColor: string;
|
|
1101
|
+
borderColor: string;
|
|
1090
1102
|
outline: string;
|
|
1091
1103
|
};
|
|
1092
1104
|
alignItems: string;
|
|
@@ -1099,8 +1111,8 @@ declare const _default: {
|
|
|
1099
1111
|
fontWeight: number;
|
|
1100
1112
|
textAlign: string;
|
|
1101
1113
|
verticalAlign: string;
|
|
1102
|
-
px:
|
|
1103
|
-
py:
|
|
1114
|
+
px: number;
|
|
1115
|
+
py: number;
|
|
1104
1116
|
maxHeight: string;
|
|
1105
1117
|
'&.is-disabled': {
|
|
1106
1118
|
opacity: number;
|
|
@@ -1108,16 +1120,16 @@ declare const _default: {
|
|
|
1108
1120
|
transition: string;
|
|
1109
1121
|
};
|
|
1110
1122
|
colorBlock: {
|
|
1111
|
-
bg:
|
|
1112
|
-
borderColor:
|
|
1123
|
+
bg: string;
|
|
1124
|
+
borderColor: string;
|
|
1113
1125
|
borderRadius: string;
|
|
1114
1126
|
width: number;
|
|
1115
1127
|
height: number;
|
|
1116
1128
|
p: string;
|
|
1117
1129
|
'&.is-hovered': {
|
|
1118
1130
|
boxShadow: string;
|
|
1119
|
-
bg:
|
|
1120
|
-
borderColor:
|
|
1131
|
+
bg: string;
|
|
1132
|
+
borderColor: string;
|
|
1121
1133
|
};
|
|
1122
1134
|
'&.is-focused': {
|
|
1123
1135
|
outline: string;
|
|
@@ -1125,8 +1137,8 @@ declare const _default: {
|
|
|
1125
1137
|
outlineOffset: string;
|
|
1126
1138
|
};
|
|
1127
1139
|
'&.is-pressed': {
|
|
1128
|
-
bg:
|
|
1129
|
-
borderColor:
|
|
1140
|
+
bg: string;
|
|
1141
|
+
borderColor: string;
|
|
1130
1142
|
};
|
|
1131
1143
|
'&>svg': {
|
|
1132
1144
|
color: string;
|
|
@@ -1134,25 +1146,31 @@ declare const _default: {
|
|
|
1134
1146
|
};
|
|
1135
1147
|
};
|
|
1136
1148
|
colorBlockPrimary: {
|
|
1137
|
-
bg:
|
|
1138
|
-
borderColor:
|
|
1149
|
+
bg: string;
|
|
1150
|
+
borderColor: string;
|
|
1139
1151
|
'& span': {
|
|
1140
1152
|
color: string;
|
|
1141
1153
|
textAlign: string;
|
|
1142
1154
|
};
|
|
1143
1155
|
'&.is-hovered': {
|
|
1144
1156
|
boxShadow: string;
|
|
1145
|
-
backgroundColor:
|
|
1146
|
-
|
|
1157
|
+
backgroundColor: {
|
|
1158
|
+
bg: string;
|
|
1159
|
+
border: string;
|
|
1160
|
+
};
|
|
1161
|
+
borderColor: {
|
|
1162
|
+
bg: string;
|
|
1163
|
+
border: string;
|
|
1164
|
+
};
|
|
1147
1165
|
color: string;
|
|
1148
1166
|
};
|
|
1149
1167
|
'&.is-pressed': {
|
|
1150
|
-
backgroundColor:
|
|
1151
|
-
borderColor:
|
|
1168
|
+
backgroundColor: string;
|
|
1169
|
+
borderColor: string;
|
|
1152
1170
|
};
|
|
1153
1171
|
'&.is-focused': {
|
|
1154
|
-
backgroundColor:
|
|
1155
|
-
borderColor:
|
|
1172
|
+
backgroundColor: string;
|
|
1173
|
+
borderColor: string;
|
|
1156
1174
|
outline: string;
|
|
1157
1175
|
};
|
|
1158
1176
|
borderRadius: string;
|
|
@@ -1170,13 +1188,13 @@ declare const _default: {
|
|
|
1170
1188
|
fill: string;
|
|
1171
1189
|
};
|
|
1172
1190
|
'&.is-hovered': {
|
|
1173
|
-
backgroundColor:
|
|
1191
|
+
backgroundColor: string;
|
|
1174
1192
|
path: {
|
|
1175
1193
|
fill: string;
|
|
1176
1194
|
};
|
|
1177
1195
|
};
|
|
1178
1196
|
'&.is-pressed': {
|
|
1179
|
-
backgroundColor:
|
|
1197
|
+
backgroundColor: string;
|
|
1180
1198
|
path: {
|
|
1181
1199
|
fill: string;
|
|
1182
1200
|
};
|
|
@@ -1237,13 +1255,13 @@ declare const _default: {
|
|
|
1237
1255
|
fill: string;
|
|
1238
1256
|
};
|
|
1239
1257
|
'&.is-hovered': {
|
|
1240
|
-
backgroundColor:
|
|
1258
|
+
backgroundColor: string;
|
|
1241
1259
|
path: {
|
|
1242
1260
|
fill: string;
|
|
1243
1261
|
};
|
|
1244
1262
|
};
|
|
1245
1263
|
'&.is-pressed': {
|
|
1246
|
-
backgroundColor:
|
|
1264
|
+
backgroundColor: string;
|
|
1247
1265
|
path: {
|
|
1248
1266
|
fill: string;
|
|
1249
1267
|
};
|
|
@@ -1267,13 +1285,13 @@ declare const _default: {
|
|
|
1267
1285
|
fill: string;
|
|
1268
1286
|
};
|
|
1269
1287
|
'&.is-hovered': {
|
|
1270
|
-
backgroundColor:
|
|
1288
|
+
backgroundColor: string;
|
|
1271
1289
|
path: {
|
|
1272
1290
|
fill: string;
|
|
1273
1291
|
};
|
|
1274
1292
|
};
|
|
1275
1293
|
'&.is-pressed': {
|
|
1276
|
-
backgroundColor:
|
|
1294
|
+
backgroundColor: string;
|
|
1277
1295
|
path: {
|
|
1278
1296
|
fill: string;
|
|
1279
1297
|
};
|
|
@@ -1300,13 +1318,13 @@ declare const _default: {
|
|
|
1300
1318
|
fill: string;
|
|
1301
1319
|
};
|
|
1302
1320
|
'&.is-hovered': {
|
|
1303
|
-
backgroundColor:
|
|
1321
|
+
backgroundColor: string;
|
|
1304
1322
|
path: {
|
|
1305
1323
|
fill: string;
|
|
1306
1324
|
};
|
|
1307
1325
|
};
|
|
1308
1326
|
'&.is-pressed': {
|
|
1309
|
-
backgroundColor:
|
|
1327
|
+
backgroundColor: string;
|
|
1310
1328
|
path: {
|
|
1311
1329
|
fill: string;
|
|
1312
1330
|
};
|
|
@@ -1334,13 +1352,13 @@ declare const _default: {
|
|
|
1334
1352
|
p: number;
|
|
1335
1353
|
width: number;
|
|
1336
1354
|
'&.is-focused': {
|
|
1337
|
-
backgroundColor:
|
|
1355
|
+
backgroundColor: string;
|
|
1338
1356
|
outline: string;
|
|
1339
1357
|
outlineColor: string;
|
|
1340
1358
|
outlineOffset: string;
|
|
1341
1359
|
};
|
|
1342
1360
|
'&.is-pressed': {
|
|
1343
|
-
backgroundColor:
|
|
1361
|
+
backgroundColor: string;
|
|
1344
1362
|
path: {
|
|
1345
1363
|
fill: string;
|
|
1346
1364
|
};
|
|
@@ -1349,7 +1367,7 @@ declare const _default: {
|
|
|
1349
1367
|
fill: string;
|
|
1350
1368
|
};
|
|
1351
1369
|
'&.is-hovered': {
|
|
1352
|
-
backgroundColor:
|
|
1370
|
+
backgroundColor: string;
|
|
1353
1371
|
path: {
|
|
1354
1372
|
fill: string;
|
|
1355
1373
|
};
|
|
@@ -1376,13 +1394,13 @@ declare const _default: {
|
|
|
1376
1394
|
fill: string;
|
|
1377
1395
|
};
|
|
1378
1396
|
'&.is-hovered': {
|
|
1379
|
-
backgroundColor:
|
|
1397
|
+
backgroundColor: string;
|
|
1380
1398
|
path: {
|
|
1381
1399
|
fill: string;
|
|
1382
1400
|
};
|
|
1383
1401
|
};
|
|
1384
1402
|
'&.is-pressed': {
|
|
1385
|
-
backgroundColor:
|
|
1403
|
+
backgroundColor: string;
|
|
1386
1404
|
path: {
|
|
1387
1405
|
fill: string;
|
|
1388
1406
|
};
|
|
@@ -1406,13 +1424,13 @@ declare const _default: {
|
|
|
1406
1424
|
fill: string;
|
|
1407
1425
|
};
|
|
1408
1426
|
'&.is-hovered': {
|
|
1409
|
-
backgroundColor:
|
|
1427
|
+
backgroundColor: string;
|
|
1410
1428
|
path: {
|
|
1411
1429
|
fill: string;
|
|
1412
1430
|
};
|
|
1413
1431
|
};
|
|
1414
1432
|
'&.is-pressed': {
|
|
1415
|
-
backgroundColor:
|
|
1433
|
+
backgroundColor: string;
|
|
1416
1434
|
path: {
|
|
1417
1435
|
fill: string;
|
|
1418
1436
|
};
|
|
@@ -1457,7 +1475,7 @@ declare const _default: {
|
|
|
1457
1475
|
fill: string;
|
|
1458
1476
|
};
|
|
1459
1477
|
'&.is-pressed': {
|
|
1460
|
-
backgroundColor:
|
|
1478
|
+
backgroundColor: string;
|
|
1461
1479
|
path: {
|
|
1462
1480
|
fill: string;
|
|
1463
1481
|
};
|
|
@@ -1479,13 +1497,13 @@ declare const _default: {
|
|
|
1479
1497
|
inverted: {
|
|
1480
1498
|
'&.is-hovered': {
|
|
1481
1499
|
boxShadow: string;
|
|
1482
|
-
backgroundColor:
|
|
1500
|
+
backgroundColor: string;
|
|
1483
1501
|
};
|
|
1484
1502
|
'&.is-pressed': {
|
|
1485
|
-
backgroundColor:
|
|
1503
|
+
backgroundColor: string;
|
|
1486
1504
|
};
|
|
1487
1505
|
'&.is-disabled': {
|
|
1488
|
-
backgroundColor:
|
|
1506
|
+
backgroundColor: string;
|
|
1489
1507
|
};
|
|
1490
1508
|
'&.is-focused': {
|
|
1491
1509
|
outline: string;
|
|
@@ -1530,13 +1548,13 @@ declare const _default: {
|
|
|
1530
1548
|
height: string;
|
|
1531
1549
|
'&.is-hovered': {
|
|
1532
1550
|
boxShadow: string;
|
|
1533
|
-
backgroundColor:
|
|
1551
|
+
backgroundColor: string;
|
|
1534
1552
|
path: {
|
|
1535
1553
|
fill: string;
|
|
1536
1554
|
};
|
|
1537
1555
|
};
|
|
1538
1556
|
'&.is-pressed': {
|
|
1539
|
-
backgroundColor:
|
|
1557
|
+
backgroundColor: string;
|
|
1540
1558
|
path: {
|
|
1541
1559
|
fill: string;
|
|
1542
1560
|
};
|
|
@@ -1567,7 +1585,7 @@ declare const _default: {
|
|
|
1567
1585
|
fill: string;
|
|
1568
1586
|
};
|
|
1569
1587
|
'&.is-hovered': {
|
|
1570
|
-
backgroundColor:
|
|
1588
|
+
backgroundColor: string;
|
|
1571
1589
|
path: {
|
|
1572
1590
|
fill: string;
|
|
1573
1591
|
};
|
|
@@ -1580,8 +1598,8 @@ declare const _default: {
|
|
|
1580
1598
|
};
|
|
1581
1599
|
passwordVisibilityIcon: {
|
|
1582
1600
|
right: number;
|
|
1583
|
-
py:
|
|
1584
|
-
px:
|
|
1601
|
+
py: number;
|
|
1602
|
+
px: number;
|
|
1585
1603
|
border: string;
|
|
1586
1604
|
'&:hover, &.is-pressed': {
|
|
1587
1605
|
background: string;
|
|
@@ -1590,7 +1608,7 @@ declare const _default: {
|
|
|
1590
1608
|
'&.is-focused': {
|
|
1591
1609
|
outline: string;
|
|
1592
1610
|
outlineOffset: string;
|
|
1593
|
-
outlineColor:
|
|
1611
|
+
outlineColor: string;
|
|
1594
1612
|
};
|
|
1595
1613
|
position: string;
|
|
1596
1614
|
top: string;
|
|
@@ -1602,13 +1620,13 @@ declare const _default: {
|
|
|
1602
1620
|
fill: string;
|
|
1603
1621
|
};
|
|
1604
1622
|
'&.is-hovered': {
|
|
1605
|
-
backgroundColor:
|
|
1623
|
+
backgroundColor: string;
|
|
1606
1624
|
path: {
|
|
1607
1625
|
fill: string;
|
|
1608
1626
|
};
|
|
1609
1627
|
};
|
|
1610
1628
|
'&.is-pressed': {
|
|
1611
|
-
backgroundColor:
|
|
1629
|
+
backgroundColor: string;
|
|
1612
1630
|
path: {
|
|
1613
1631
|
fill: string;
|
|
1614
1632
|
};
|
|
@@ -1627,13 +1645,13 @@ declare const _default: {
|
|
|
1627
1645
|
path: {
|
|
1628
1646
|
fill: string;
|
|
1629
1647
|
};
|
|
1630
|
-
backgroundColor:
|
|
1648
|
+
backgroundColor: string;
|
|
1631
1649
|
};
|
|
1632
1650
|
path: {
|
|
1633
1651
|
fill: string;
|
|
1634
1652
|
};
|
|
1635
1653
|
'&.is-pressed': {
|
|
1636
|
-
backgroundColor:
|
|
1654
|
+
backgroundColor: string;
|
|
1637
1655
|
path: {
|
|
1638
1656
|
fill: string;
|
|
1639
1657
|
};
|
|
@@ -1659,13 +1677,13 @@ declare const _default: {
|
|
|
1659
1677
|
fill: string;
|
|
1660
1678
|
};
|
|
1661
1679
|
'&.is-hovered': {
|
|
1662
|
-
backgroundColor:
|
|
1680
|
+
backgroundColor: string;
|
|
1663
1681
|
path: {
|
|
1664
1682
|
fill: string;
|
|
1665
1683
|
};
|
|
1666
1684
|
};
|
|
1667
1685
|
'&.is-pressed': {
|
|
1668
|
-
backgroundColor:
|
|
1686
|
+
backgroundColor: string;
|
|
1669
1687
|
path: {
|
|
1670
1688
|
fill: string;
|
|
1671
1689
|
};
|
|
@@ -1699,7 +1717,7 @@ declare const _default: {
|
|
|
1699
1717
|
outlineOffset: string;
|
|
1700
1718
|
};
|
|
1701
1719
|
'&.is-hovered': {
|
|
1702
|
-
backgroundColor:
|
|
1720
|
+
backgroundColor: string;
|
|
1703
1721
|
path: {
|
|
1704
1722
|
fill: string;
|
|
1705
1723
|
};
|
|
@@ -1711,7 +1729,7 @@ declare const _default: {
|
|
|
1711
1729
|
};
|
|
1712
1730
|
};
|
|
1713
1731
|
display: string;
|
|
1714
|
-
borderColor:
|
|
1732
|
+
borderColor: string;
|
|
1715
1733
|
alignItems: string;
|
|
1716
1734
|
justifyContent: string;
|
|
1717
1735
|
flexShrink: number;
|
|
@@ -1724,8 +1742,8 @@ declare const _default: {
|
|
|
1724
1742
|
verticalAlign: string;
|
|
1725
1743
|
lineHeight: number;
|
|
1726
1744
|
borderRadius: string;
|
|
1727
|
-
px:
|
|
1728
|
-
py:
|
|
1745
|
+
px: number;
|
|
1746
|
+
py: number;
|
|
1729
1747
|
maxHeight: string;
|
|
1730
1748
|
height: string;
|
|
1731
1749
|
'&.is-disabled': {
|
|
@@ -1752,13 +1770,13 @@ declare const _default: {
|
|
|
1752
1770
|
};
|
|
1753
1771
|
ButtonInputGroupContentRight: {
|
|
1754
1772
|
right: number;
|
|
1755
|
-
py:
|
|
1756
|
-
px:
|
|
1773
|
+
py: number;
|
|
1774
|
+
px: number;
|
|
1757
1775
|
borderRadius: string;
|
|
1758
1776
|
borderWidth: string;
|
|
1759
1777
|
borderLeftWidth: string;
|
|
1760
1778
|
borderRightWidth: string;
|
|
1761
|
-
borderLeftColor:
|
|
1779
|
+
borderLeftColor: string;
|
|
1762
1780
|
position: string;
|
|
1763
1781
|
top: string;
|
|
1764
1782
|
transform: string;
|
|
@@ -1767,7 +1785,7 @@ declare const _default: {
|
|
|
1767
1785
|
justifyContent: string;
|
|
1768
1786
|
backgroundColor: string;
|
|
1769
1787
|
borderColor: string;
|
|
1770
|
-
color:
|
|
1788
|
+
color: string;
|
|
1771
1789
|
'&.is-focused': {
|
|
1772
1790
|
outlineColor: string;
|
|
1773
1791
|
backgroundColor: string;
|
|
@@ -1776,12 +1794,12 @@ declare const _default: {
|
|
|
1776
1794
|
};
|
|
1777
1795
|
'&.is-pressed': {
|
|
1778
1796
|
backgroundColor: string;
|
|
1779
|
-
color:
|
|
1797
|
+
color: string;
|
|
1780
1798
|
};
|
|
1781
1799
|
'&.is-hovered': {
|
|
1782
1800
|
boxShadow: string;
|
|
1783
1801
|
backgroundColor: string;
|
|
1784
|
-
color:
|
|
1802
|
+
color: string;
|
|
1785
1803
|
};
|
|
1786
1804
|
alignItems: string;
|
|
1787
1805
|
flexShrink: number;
|
|
@@ -1822,7 +1840,7 @@ declare const _default: {
|
|
|
1822
1840
|
textDecoration: string;
|
|
1823
1841
|
};
|
|
1824
1842
|
};
|
|
1825
|
-
color:
|
|
1843
|
+
color: string;
|
|
1826
1844
|
transition: string;
|
|
1827
1845
|
fontSize: string;
|
|
1828
1846
|
py: string;
|
|
@@ -1851,7 +1869,7 @@ declare const _default: {
|
|
|
1851
1869
|
input: {
|
|
1852
1870
|
borderStyle: string;
|
|
1853
1871
|
borderWidth: string;
|
|
1854
|
-
borderRadius:
|
|
1872
|
+
borderRadius: number;
|
|
1855
1873
|
height: string;
|
|
1856
1874
|
};
|
|
1857
1875
|
button: {
|
|
@@ -1859,10 +1877,10 @@ declare const _default: {
|
|
|
1859
1877
|
};
|
|
1860
1878
|
};
|
|
1861
1879
|
select: {
|
|
1862
|
-
borderRadius:
|
|
1880
|
+
borderRadius: number;
|
|
1863
1881
|
borderColor: string;
|
|
1864
1882
|
color: string;
|
|
1865
|
-
height:
|
|
1883
|
+
height: number;
|
|
1866
1884
|
'&.is-disabled': {
|
|
1867
1885
|
opacity: number;
|
|
1868
1886
|
borderColor: string;
|
|
@@ -1957,7 +1975,7 @@ declare const _default: {
|
|
|
1957
1975
|
numberField: {
|
|
1958
1976
|
arrowsWrapper: {
|
|
1959
1977
|
'> textarea': {
|
|
1960
|
-
borderRadius:
|
|
1978
|
+
borderRadius: number;
|
|
1961
1979
|
border: string;
|
|
1962
1980
|
borderColor: string;
|
|
1963
1981
|
outline: string;
|
|
@@ -1968,16 +1986,16 @@ declare const _default: {
|
|
|
1968
1986
|
};
|
|
1969
1987
|
opacity: number;
|
|
1970
1988
|
'> input': {
|
|
1971
|
-
backgroundColor:
|
|
1989
|
+
backgroundColor: string;
|
|
1972
1990
|
border: string;
|
|
1973
|
-
borderColor:
|
|
1991
|
+
borderColor: string;
|
|
1974
1992
|
opacity: number;
|
|
1975
1993
|
fontWeight: number;
|
|
1976
1994
|
};
|
|
1977
1995
|
'> textarea': {
|
|
1978
|
-
backgroundColor:
|
|
1996
|
+
backgroundColor: string;
|
|
1979
1997
|
border: string;
|
|
1980
|
-
borderColor:
|
|
1998
|
+
borderColor: string;
|
|
1981
1999
|
opacity: number;
|
|
1982
2000
|
fontWeight: number;
|
|
1983
2001
|
};
|
|
@@ -1993,20 +2011,20 @@ declare const _default: {
|
|
|
1993
2011
|
};
|
|
1994
2012
|
'> button': {
|
|
1995
2013
|
borderLeftWidth: number;
|
|
1996
|
-
borderRadius:
|
|
2014
|
+
borderRadius: number;
|
|
1997
2015
|
border: string;
|
|
1998
|
-
borderColor:
|
|
2016
|
+
borderColor: string;
|
|
1999
2017
|
};
|
|
2000
2018
|
'&.is-read-only': {
|
|
2001
2019
|
'> input': {
|
|
2002
|
-
backgroundColor:
|
|
2020
|
+
backgroundColor: string;
|
|
2003
2021
|
border: string;
|
|
2004
|
-
borderColor:
|
|
2022
|
+
borderColor: string;
|
|
2005
2023
|
};
|
|
2006
2024
|
'> textarea': {
|
|
2007
|
-
backgroundColor:
|
|
2025
|
+
backgroundColor: string;
|
|
2008
2026
|
border: string;
|
|
2009
|
-
borderColor:
|
|
2027
|
+
borderColor: string;
|
|
2010
2028
|
};
|
|
2011
2029
|
'&:after': {
|
|
2012
2030
|
display: string;
|
|
@@ -2951,8 +2969,8 @@ declare const _default: {
|
|
|
2951
2969
|
3: number;
|
|
2952
2970
|
};
|
|
2953
2971
|
lineHeights: {
|
|
2954
|
-
body:
|
|
2955
|
-
xs:
|
|
2972
|
+
body: number;
|
|
2973
|
+
xs: number;
|
|
2956
2974
|
sm: string;
|
|
2957
2975
|
md: string;
|
|
2958
2976
|
};
|
|
@@ -2969,17 +2987,17 @@ declare const _default: {
|
|
|
2969
2987
|
whiteSpace: string;
|
|
2970
2988
|
color: string;
|
|
2971
2989
|
lineHeight: string;
|
|
2972
|
-
fontSize:
|
|
2990
|
+
fontSize: number;
|
|
2973
2991
|
fontWeight: number;
|
|
2974
2992
|
fontFamily: string;
|
|
2975
2993
|
};
|
|
2976
2994
|
messagesText: {
|
|
2977
2995
|
'&.is-success, &.is-warning, &.is-error, &.is-default': {
|
|
2978
|
-
color:
|
|
2996
|
+
color: string;
|
|
2979
2997
|
'& > a': {
|
|
2980
2998
|
fontWeight: string;
|
|
2981
2999
|
textDecoration: string;
|
|
2982
|
-
color:
|
|
3000
|
+
color: string;
|
|
2983
3001
|
};
|
|
2984
3002
|
};
|
|
2985
3003
|
};
|
|
@@ -3008,55 +3026,55 @@ declare const _default: {
|
|
|
3008
3026
|
stepperTabContentHeader: {
|
|
3009
3027
|
color: string;
|
|
3010
3028
|
lineHeight: string;
|
|
3011
|
-
fontSize:
|
|
3029
|
+
fontSize: number;
|
|
3012
3030
|
fontWeight: number;
|
|
3013
3031
|
fontFamily: string;
|
|
3014
3032
|
};
|
|
3015
3033
|
headText: {
|
|
3016
3034
|
fontSize: string;
|
|
3017
3035
|
fontWeight: string;
|
|
3018
|
-
color:
|
|
3036
|
+
color: string;
|
|
3019
3037
|
lineHeight: string;
|
|
3020
3038
|
};
|
|
3021
3039
|
label: {
|
|
3022
|
-
fontSize:
|
|
3040
|
+
fontSize: number;
|
|
3023
3041
|
};
|
|
3024
3042
|
linkSelectFieldLabel: {
|
|
3025
|
-
color:
|
|
3043
|
+
color: string;
|
|
3026
3044
|
fontWeight: number;
|
|
3027
|
-
fontSize:
|
|
3045
|
+
fontSize: number;
|
|
3028
3046
|
};
|
|
3029
3047
|
H1: {
|
|
3030
3048
|
lineHeight: string;
|
|
3031
|
-
fontSize:
|
|
3049
|
+
fontSize: number;
|
|
3032
3050
|
fontWeight: number;
|
|
3033
3051
|
color: string;
|
|
3034
3052
|
fontFamily: string;
|
|
3035
3053
|
};
|
|
3036
3054
|
H2: {
|
|
3037
3055
|
lineHeight: string;
|
|
3038
|
-
fontSize:
|
|
3056
|
+
fontSize: number;
|
|
3039
3057
|
fontWeight: number;
|
|
3040
3058
|
color: string;
|
|
3041
3059
|
fontFamily: string;
|
|
3042
3060
|
};
|
|
3043
3061
|
H3: {
|
|
3044
3062
|
lineHeight: string;
|
|
3045
|
-
fontSize:
|
|
3063
|
+
fontSize: number;
|
|
3046
3064
|
fontWeight: number;
|
|
3047
3065
|
color: string;
|
|
3048
3066
|
fontFamily: string;
|
|
3049
3067
|
};
|
|
3050
3068
|
H4: {
|
|
3051
3069
|
lineHeight: string;
|
|
3052
|
-
fontSize:
|
|
3070
|
+
fontSize: number;
|
|
3053
3071
|
fontWeight: number;
|
|
3054
3072
|
color: string;
|
|
3055
3073
|
fontFamily: string;
|
|
3056
3074
|
};
|
|
3057
3075
|
H5: {
|
|
3058
3076
|
lineHeight: string;
|
|
3059
|
-
fontSize:
|
|
3077
|
+
fontSize: number;
|
|
3060
3078
|
fontWeight: number;
|
|
3061
3079
|
color: string;
|
|
3062
3080
|
fontFamily: string;
|
|
@@ -3067,40 +3085,40 @@ declare const _default: {
|
|
|
3067
3085
|
color: string;
|
|
3068
3086
|
fontFamily: string;
|
|
3069
3087
|
fontWeight: number;
|
|
3070
|
-
fontSize:
|
|
3088
|
+
fontSize: number;
|
|
3071
3089
|
letterSpacing: string;
|
|
3072
3090
|
};
|
|
3073
3091
|
h1: {
|
|
3074
3092
|
lineHeight: string;
|
|
3075
|
-
fontSize:
|
|
3093
|
+
fontSize: number;
|
|
3076
3094
|
fontWeight: number;
|
|
3077
3095
|
color: string;
|
|
3078
3096
|
fontFamily: string;
|
|
3079
3097
|
};
|
|
3080
3098
|
h2: {
|
|
3081
3099
|
lineHeight: string;
|
|
3082
|
-
fontSize:
|
|
3100
|
+
fontSize: number;
|
|
3083
3101
|
fontWeight: number;
|
|
3084
3102
|
color: string;
|
|
3085
3103
|
fontFamily: string;
|
|
3086
3104
|
};
|
|
3087
3105
|
h3: {
|
|
3088
3106
|
lineHeight: string;
|
|
3089
|
-
fontSize:
|
|
3107
|
+
fontSize: number;
|
|
3090
3108
|
fontWeight: number;
|
|
3091
3109
|
color: string;
|
|
3092
3110
|
fontFamily: string;
|
|
3093
3111
|
};
|
|
3094
3112
|
h4: {
|
|
3095
3113
|
lineHeight: string;
|
|
3096
|
-
fontSize:
|
|
3114
|
+
fontSize: number;
|
|
3097
3115
|
fontWeight: number;
|
|
3098
3116
|
color: string;
|
|
3099
3117
|
fontFamily: string;
|
|
3100
3118
|
};
|
|
3101
3119
|
h5: {
|
|
3102
3120
|
lineHeight: string;
|
|
3103
|
-
fontSize:
|
|
3121
|
+
fontSize: number;
|
|
3104
3122
|
fontWeight: number;
|
|
3105
3123
|
color: string;
|
|
3106
3124
|
fontFamily: string;
|
|
@@ -3111,7 +3129,7 @@ declare const _default: {
|
|
|
3111
3129
|
color: string;
|
|
3112
3130
|
fontFamily: string;
|
|
3113
3131
|
fontWeight: number;
|
|
3114
|
-
fontSize:
|
|
3132
|
+
fontSize: number;
|
|
3115
3133
|
letterSpacing: string;
|
|
3116
3134
|
};
|
|
3117
3135
|
base: {
|
|
@@ -3119,7 +3137,7 @@ declare const _default: {
|
|
|
3119
3137
|
};
|
|
3120
3138
|
modalTitle: {
|
|
3121
3139
|
lineHeight: string;
|
|
3122
|
-
fontSize:
|
|
3140
|
+
fontSize: number;
|
|
3123
3141
|
fontWeight: number;
|
|
3124
3142
|
color: string;
|
|
3125
3143
|
fontFamily: string;
|
|
@@ -3152,21 +3170,21 @@ declare const _default: {
|
|
|
3152
3170
|
lineHeight: string;
|
|
3153
3171
|
};
|
|
3154
3172
|
tabLabel: {
|
|
3155
|
-
color:
|
|
3173
|
+
color: string;
|
|
3156
3174
|
wordBreak: string;
|
|
3157
3175
|
lineHeight: string;
|
|
3158
3176
|
mb: string;
|
|
3159
3177
|
mt: string;
|
|
3160
3178
|
'.is-selected &': {
|
|
3161
|
-
color:
|
|
3179
|
+
color: string;
|
|
3162
3180
|
mb: string;
|
|
3163
3181
|
};
|
|
3164
3182
|
'.is-selected &, .is-hovered &': {
|
|
3165
|
-
color:
|
|
3183
|
+
color: string;
|
|
3166
3184
|
};
|
|
3167
3185
|
};
|
|
3168
3186
|
placeholder: {
|
|
3169
|
-
color:
|
|
3187
|
+
color: string;
|
|
3170
3188
|
fontWeight: number;
|
|
3171
3189
|
};
|
|
3172
3190
|
paragraph: {
|
|
@@ -3289,12 +3307,12 @@ declare const _default: {
|
|
|
3289
3307
|
xl: string;
|
|
3290
3308
|
};
|
|
3291
3309
|
avatarFontSize: {
|
|
3292
|
-
xs:
|
|
3293
|
-
sm:
|
|
3294
|
-
md:
|
|
3310
|
+
xs: number;
|
|
3311
|
+
sm: number;
|
|
3312
|
+
md: number;
|
|
3295
3313
|
xmd: string;
|
|
3296
|
-
lg:
|
|
3297
|
-
xl:
|
|
3314
|
+
lg: number;
|
|
3315
|
+
xl: number;
|
|
3298
3316
|
};
|
|
3299
3317
|
container: {
|
|
3300
3318
|
xs: string[];
|
|
@@ -3388,7 +3406,7 @@ declare const _default: {
|
|
|
3388
3406
|
primary: {
|
|
3389
3407
|
backgroundColor: string;
|
|
3390
3408
|
'& span': {
|
|
3391
|
-
color:
|
|
3409
|
+
color: string;
|
|
3392
3410
|
fontWeight: string;
|
|
3393
3411
|
};
|
|
3394
3412
|
'& button': {
|
|
@@ -3456,7 +3474,7 @@ declare const _default: {
|
|
|
3456
3474
|
countNeutral: {
|
|
3457
3475
|
backgroundColor: string;
|
|
3458
3476
|
'& span': {
|
|
3459
|
-
color:
|
|
3477
|
+
color: string;
|
|
3460
3478
|
fontWeight: string;
|
|
3461
3479
|
};
|
|
3462
3480
|
'& button': {
|
|
@@ -3490,7 +3508,7 @@ declare const _default: {
|
|
|
3490
3508
|
secondary: {
|
|
3491
3509
|
backgroundColor: string;
|
|
3492
3510
|
'& span': {
|
|
3493
|
-
color:
|
|
3511
|
+
color: string;
|
|
3494
3512
|
fontWeight: string;
|
|
3495
3513
|
};
|
|
3496
3514
|
'& button': {
|
|
@@ -3523,7 +3541,7 @@ declare const _default: {
|
|
|
3523
3541
|
};
|
|
3524
3542
|
success: {
|
|
3525
3543
|
'& span': {
|
|
3526
|
-
color:
|
|
3544
|
+
color: string;
|
|
3527
3545
|
fontWeight: string;
|
|
3528
3546
|
};
|
|
3529
3547
|
backgroundColor: string;
|
|
@@ -3558,7 +3576,7 @@ declare const _default: {
|
|
|
3558
3576
|
danger: {
|
|
3559
3577
|
backgroundColor: string;
|
|
3560
3578
|
'& span': {
|
|
3561
|
-
color:
|
|
3579
|
+
color: string;
|
|
3562
3580
|
fontWeight: string;
|
|
3563
3581
|
};
|
|
3564
3582
|
'& button': {
|
|
@@ -3592,7 +3610,7 @@ declare const _default: {
|
|
|
3592
3610
|
warning: {
|
|
3593
3611
|
backgroundColor: string;
|
|
3594
3612
|
'& span': {
|
|
3595
|
-
color:
|
|
3613
|
+
color: string;
|
|
3596
3614
|
fontWeight: string;
|
|
3597
3615
|
};
|
|
3598
3616
|
'& button': {
|
|
@@ -3729,7 +3747,7 @@ declare const _default: {
|
|
|
3729
3747
|
selected: {
|
|
3730
3748
|
backgroundColor: string;
|
|
3731
3749
|
'& span': {
|
|
3732
|
-
color:
|
|
3750
|
+
color: string;
|
|
3733
3751
|
fontWeight: string;
|
|
3734
3752
|
};
|
|
3735
3753
|
'& button': {
|
|
@@ -3838,7 +3856,7 @@ declare const _default: {
|
|
|
3838
3856
|
activeStatusBadge: {
|
|
3839
3857
|
backgroundColor: string;
|
|
3840
3858
|
'& span': {
|
|
3841
|
-
color:
|
|
3859
|
+
color: string;
|
|
3842
3860
|
fontWeight: string;
|
|
3843
3861
|
};
|
|
3844
3862
|
'& button': {
|
|
@@ -3873,7 +3891,7 @@ declare const _default: {
|
|
|
3873
3891
|
warningStatusBadge: {
|
|
3874
3892
|
backgroundColor: string;
|
|
3875
3893
|
'& span': {
|
|
3876
|
-
color:
|
|
3894
|
+
color: string;
|
|
3877
3895
|
fontWeight: string;
|
|
3878
3896
|
};
|
|
3879
3897
|
'& button': {
|
|
@@ -3908,7 +3926,7 @@ declare const _default: {
|
|
|
3908
3926
|
criticalStatusBadge: {
|
|
3909
3927
|
backgroundColor: string;
|
|
3910
3928
|
'& span': {
|
|
3911
|
-
color:
|
|
3929
|
+
color: string;
|
|
3912
3930
|
fontWeight: string;
|
|
3913
3931
|
};
|
|
3914
3932
|
'& button': {
|
|
@@ -3942,7 +3960,7 @@ declare const _default: {
|
|
|
3942
3960
|
};
|
|
3943
3961
|
healthyStatusBadge: {
|
|
3944
3962
|
'& span': {
|
|
3945
|
-
color:
|
|
3963
|
+
color: string;
|
|
3946
3964
|
fontWeight: string;
|
|
3947
3965
|
};
|
|
3948
3966
|
backgroundColor: string;
|
|
@@ -3978,7 +3996,7 @@ declare const _default: {
|
|
|
3978
3996
|
secondaryStatusBadge: {
|
|
3979
3997
|
backgroundColor: string;
|
|
3980
3998
|
'& span': {
|
|
3981
|
-
color:
|
|
3999
|
+
color: string;
|
|
3982
4000
|
fontWeight: string;
|
|
3983
4001
|
};
|
|
3984
4002
|
'& button': {
|
|
@@ -4020,13 +4038,13 @@ declare const _default: {
|
|
|
4020
4038
|
fill: string;
|
|
4021
4039
|
};
|
|
4022
4040
|
'&.is-hovered': {
|
|
4023
|
-
backgroundColor:
|
|
4041
|
+
backgroundColor: string;
|
|
4024
4042
|
path: {
|
|
4025
4043
|
fill: string;
|
|
4026
4044
|
};
|
|
4027
4045
|
};
|
|
4028
4046
|
'&.is-pressed': {
|
|
4029
|
-
backgroundColor:
|
|
4047
|
+
backgroundColor: string;
|
|
4030
4048
|
path: {
|
|
4031
4049
|
fill: string;
|
|
4032
4050
|
};
|
|
@@ -4080,7 +4098,7 @@ declare const _default: {
|
|
|
4080
4098
|
border: string;
|
|
4081
4099
|
backgroundColor: string;
|
|
4082
4100
|
'& span': {
|
|
4083
|
-
color:
|
|
4101
|
+
color: string;
|
|
4084
4102
|
fontWeight: string;
|
|
4085
4103
|
};
|
|
4086
4104
|
'& button': {
|
|
@@ -4165,7 +4183,7 @@ declare const _default: {
|
|
|
4165
4183
|
active: {
|
|
4166
4184
|
backgroundColor: string;
|
|
4167
4185
|
'& > span': {
|
|
4168
|
-
color:
|
|
4186
|
+
color: string;
|
|
4169
4187
|
fontSize: string;
|
|
4170
4188
|
lineHeight: string;
|
|
4171
4189
|
};
|
|
@@ -4205,7 +4223,7 @@ declare const _default: {
|
|
|
4205
4223
|
warning: {
|
|
4206
4224
|
backgroundColor: string;
|
|
4207
4225
|
'& > span': {
|
|
4208
|
-
color:
|
|
4226
|
+
color: string;
|
|
4209
4227
|
fontSize: string;
|
|
4210
4228
|
lineHeight: string;
|
|
4211
4229
|
};
|
|
@@ -4245,7 +4263,7 @@ declare const _default: {
|
|
|
4245
4263
|
critical: {
|
|
4246
4264
|
backgroundColor: string;
|
|
4247
4265
|
'& > span': {
|
|
4248
|
-
color:
|
|
4266
|
+
color: string;
|
|
4249
4267
|
fontSize: string;
|
|
4250
4268
|
lineHeight: string;
|
|
4251
4269
|
};
|
|
@@ -4285,7 +4303,7 @@ declare const _default: {
|
|
|
4285
4303
|
healthy: {
|
|
4286
4304
|
backgroundColor: string;
|
|
4287
4305
|
'& > span': {
|
|
4288
|
-
color:
|
|
4306
|
+
color: string;
|
|
4289
4307
|
fontSize: string;
|
|
4290
4308
|
lineHeight: string;
|
|
4291
4309
|
};
|
|
@@ -4325,7 +4343,7 @@ declare const _default: {
|
|
|
4325
4343
|
secondary: {
|
|
4326
4344
|
backgroundColor: string;
|
|
4327
4345
|
'& > span': {
|
|
4328
|
-
color:
|
|
4346
|
+
color: string;
|
|
4329
4347
|
fontSize: string;
|
|
4330
4348
|
lineHeight: string;
|
|
4331
4349
|
};
|
|
@@ -4499,19 +4517,19 @@ declare const _default: {
|
|
|
4499
4517
|
};
|
|
4500
4518
|
};
|
|
4501
4519
|
space: {
|
|
4502
|
-
xs:
|
|
4503
|
-
sm:
|
|
4504
|
-
md:
|
|
4505
|
-
lg:
|
|
4506
|
-
xl:
|
|
4520
|
+
xs: number;
|
|
4521
|
+
sm: number;
|
|
4522
|
+
md: number;
|
|
4523
|
+
lg: number;
|
|
4524
|
+
xl: number;
|
|
4507
4525
|
xx: string;
|
|
4508
4526
|
};
|
|
4509
4527
|
links: {
|
|
4510
4528
|
app: {
|
|
4511
4529
|
lineHeight: string;
|
|
4512
4530
|
'&.is-hovered': {
|
|
4513
|
-
color:
|
|
4514
|
-
textDecorationColor:
|
|
4531
|
+
color: string;
|
|
4532
|
+
textDecorationColor: string;
|
|
4515
4533
|
};
|
|
4516
4534
|
'&.is-focused': {
|
|
4517
4535
|
borderRadius: string;
|
|
@@ -4519,11 +4537,11 @@ declare const _default: {
|
|
|
4519
4537
|
outlineColor: string;
|
|
4520
4538
|
};
|
|
4521
4539
|
'&.is-pressed': {
|
|
4522
|
-
color:
|
|
4523
|
-
textDecorationColor:
|
|
4540
|
+
color: string;
|
|
4541
|
+
textDecorationColor: string;
|
|
4524
4542
|
};
|
|
4525
4543
|
'&:visited': {
|
|
4526
|
-
color:
|
|
4544
|
+
color: string;
|
|
4527
4545
|
textDecoration: string;
|
|
4528
4546
|
};
|
|
4529
4547
|
};
|
|
@@ -4545,10 +4563,10 @@ declare const _default: {
|
|
|
4545
4563
|
fontFamily: string;
|
|
4546
4564
|
cursor: string;
|
|
4547
4565
|
'&.is-hovered': {
|
|
4548
|
-
color:
|
|
4566
|
+
color: string;
|
|
4549
4567
|
};
|
|
4550
4568
|
'&.is-pressed': {
|
|
4551
|
-
color:
|
|
4569
|
+
color: string;
|
|
4552
4570
|
};
|
|
4553
4571
|
};
|
|
4554
4572
|
navItem: {
|
|
@@ -4572,10 +4590,10 @@ declare const _default: {
|
|
|
4572
4590
|
fontFamily: string;
|
|
4573
4591
|
cursor: string;
|
|
4574
4592
|
'&.is-hovered': {
|
|
4575
|
-
color:
|
|
4593
|
+
color: string;
|
|
4576
4594
|
};
|
|
4577
4595
|
'&.is-pressed': {
|
|
4578
|
-
color:
|
|
4596
|
+
color: string;
|
|
4579
4597
|
};
|
|
4580
4598
|
};
|
|
4581
4599
|
sideNav: {
|
|
@@ -4595,7 +4613,7 @@ declare const _default: {
|
|
|
4595
4613
|
transition: string;
|
|
4596
4614
|
};
|
|
4597
4615
|
'&.is-selected': {
|
|
4598
|
-
color:
|
|
4616
|
+
color: string;
|
|
4599
4617
|
'&:before': {
|
|
4600
4618
|
backgroundColor: string;
|
|
4601
4619
|
};
|
|
@@ -4609,10 +4627,10 @@ declare const _default: {
|
|
|
4609
4627
|
minHeight: string;
|
|
4610
4628
|
fontFamily: string;
|
|
4611
4629
|
'&.is-hovered': {
|
|
4612
|
-
color:
|
|
4630
|
+
color: string;
|
|
4613
4631
|
};
|
|
4614
4632
|
'&.is-pressed': {
|
|
4615
|
-
color:
|
|
4633
|
+
color: string;
|
|
4616
4634
|
};
|
|
4617
4635
|
};
|
|
4618
4636
|
footerLinks: {
|
|
@@ -4632,7 +4650,7 @@ declare const _default: {
|
|
|
4632
4650
|
transition: string;
|
|
4633
4651
|
};
|
|
4634
4652
|
'&.is-selected': {
|
|
4635
|
-
color:
|
|
4653
|
+
color: string;
|
|
4636
4654
|
'&:before': {
|
|
4637
4655
|
backgroundColor: string;
|
|
4638
4656
|
};
|
|
@@ -4646,10 +4664,10 @@ declare const _default: {
|
|
|
4646
4664
|
minHeight: string;
|
|
4647
4665
|
fontFamily: string;
|
|
4648
4666
|
'&.is-hovered': {
|
|
4649
|
-
color:
|
|
4667
|
+
color: string;
|
|
4650
4668
|
};
|
|
4651
4669
|
'&.is-pressed': {
|
|
4652
|
-
color:
|
|
4670
|
+
color: string;
|
|
4653
4671
|
};
|
|
4654
4672
|
};
|
|
4655
4673
|
footerHeader: {
|
|
@@ -4670,7 +4688,7 @@ declare const _default: {
|
|
|
4670
4688
|
transition: string;
|
|
4671
4689
|
};
|
|
4672
4690
|
'&.is-selected': {
|
|
4673
|
-
color:
|
|
4691
|
+
color: string;
|
|
4674
4692
|
'&:before': {
|
|
4675
4693
|
backgroundColor: string;
|
|
4676
4694
|
};
|
|
@@ -4684,20 +4702,20 @@ declare const _default: {
|
|
|
4684
4702
|
minHeight: string;
|
|
4685
4703
|
fontFamily: string;
|
|
4686
4704
|
'&.is-hovered': {
|
|
4687
|
-
color:
|
|
4705
|
+
color: string;
|
|
4688
4706
|
};
|
|
4689
4707
|
'&.is-pressed': {
|
|
4690
|
-
color:
|
|
4708
|
+
color: string;
|
|
4691
4709
|
};
|
|
4692
4710
|
};
|
|
4693
4711
|
button: {
|
|
4694
4712
|
textDecoration: string;
|
|
4695
4713
|
backgroundColor: string;
|
|
4696
|
-
borderColor:
|
|
4697
|
-
color:
|
|
4714
|
+
borderColor: string;
|
|
4715
|
+
color: string;
|
|
4698
4716
|
'&.is-pressed': {
|
|
4699
|
-
backgroundColor:
|
|
4700
|
-
borderColor:
|
|
4717
|
+
backgroundColor: string;
|
|
4718
|
+
borderColor: string;
|
|
4701
4719
|
color: string;
|
|
4702
4720
|
path: {
|
|
4703
4721
|
fill: string;
|
|
@@ -4705,8 +4723,8 @@ declare const _default: {
|
|
|
4705
4723
|
};
|
|
4706
4724
|
'&.is-hovered': {
|
|
4707
4725
|
boxShadow: string;
|
|
4708
|
-
backgroundColor:
|
|
4709
|
-
borderColor:
|
|
4726
|
+
backgroundColor: string;
|
|
4727
|
+
borderColor: string;
|
|
4710
4728
|
color: string;
|
|
4711
4729
|
path: {
|
|
4712
4730
|
fill: string;
|
|
@@ -4727,8 +4745,8 @@ declare const _default: {
|
|
|
4727
4745
|
lineHeight: number;
|
|
4728
4746
|
borderRadius: string;
|
|
4729
4747
|
border: string;
|
|
4730
|
-
px:
|
|
4731
|
-
py:
|
|
4748
|
+
px: number;
|
|
4749
|
+
py: number;
|
|
4732
4750
|
maxHeight: string;
|
|
4733
4751
|
height: string;
|
|
4734
4752
|
'&.is-disabled': {
|
|
@@ -4747,17 +4765,17 @@ declare const _default: {
|
|
|
4747
4765
|
backgroundColor: string;
|
|
4748
4766
|
borderColor: string;
|
|
4749
4767
|
'&.is-pressed': {
|
|
4750
|
-
backgroundColor:
|
|
4751
|
-
borderColor:
|
|
4768
|
+
backgroundColor: string;
|
|
4769
|
+
borderColor: string;
|
|
4752
4770
|
};
|
|
4753
4771
|
'&.is-hovered': {
|
|
4754
4772
|
boxShadow: string;
|
|
4755
|
-
backgroundColor:
|
|
4756
|
-
borderColor:
|
|
4773
|
+
backgroundColor: string;
|
|
4774
|
+
borderColor: string;
|
|
4757
4775
|
};
|
|
4758
4776
|
'&.is-focused': {
|
|
4759
|
-
backgroundColor:
|
|
4760
|
-
borderColor:
|
|
4777
|
+
backgroundColor: string;
|
|
4778
|
+
borderColor: string;
|
|
4761
4779
|
outline: string;
|
|
4762
4780
|
};
|
|
4763
4781
|
alignItems: string;
|
|
@@ -4775,8 +4793,8 @@ declare const _default: {
|
|
|
4775
4793
|
lineHeight: number;
|
|
4776
4794
|
borderRadius: string;
|
|
4777
4795
|
border: string;
|
|
4778
|
-
px:
|
|
4779
|
-
py:
|
|
4796
|
+
px: number;
|
|
4797
|
+
py: number;
|
|
4780
4798
|
maxHeight: string;
|
|
4781
4799
|
height: string;
|
|
4782
4800
|
'&.is-disabled': {
|
|
@@ -4820,7 +4838,7 @@ declare const _default: {
|
|
|
4820
4838
|
boxShadow: string;
|
|
4821
4839
|
borderRadius: string;
|
|
4822
4840
|
border: string;
|
|
4823
|
-
borderColor:
|
|
4841
|
+
borderColor: string;
|
|
4824
4842
|
transition: string;
|
|
4825
4843
|
'&.is-focused': {
|
|
4826
4844
|
backgroundColor: string;
|
|
@@ -4863,7 +4881,7 @@ declare const _default: {
|
|
|
4863
4881
|
flex: string;
|
|
4864
4882
|
};
|
|
4865
4883
|
activeCard: {
|
|
4866
|
-
borderColor:
|
|
4884
|
+
borderColor: string;
|
|
4867
4885
|
'&.is-hovered': {
|
|
4868
4886
|
borderColor: string;
|
|
4869
4887
|
bg: string;
|
|
@@ -4881,7 +4899,7 @@ declare const _default: {
|
|
|
4881
4899
|
};
|
|
4882
4900
|
container: {
|
|
4883
4901
|
p: string;
|
|
4884
|
-
borderColor:
|
|
4902
|
+
borderColor: string;
|
|
4885
4903
|
lineHeight: string;
|
|
4886
4904
|
boxShadow: string;
|
|
4887
4905
|
border: string;
|
|
@@ -4933,7 +4951,7 @@ declare const _default: {
|
|
|
4933
4951
|
tableWrapper: {
|
|
4934
4952
|
boxShadow: string;
|
|
4935
4953
|
p: string;
|
|
4936
|
-
borderColor:
|
|
4954
|
+
borderColor: string;
|
|
4937
4955
|
lineHeight: string;
|
|
4938
4956
|
border: string;
|
|
4939
4957
|
borderRadius: string;
|
|
@@ -4947,7 +4965,7 @@ declare const _default: {
|
|
|
4947
4965
|
boxShadow: string;
|
|
4948
4966
|
backgroundColor: string;
|
|
4949
4967
|
p: string;
|
|
4950
|
-
borderColor:
|
|
4968
|
+
borderColor: string;
|
|
4951
4969
|
lineHeight: string;
|
|
4952
4970
|
border: string;
|
|
4953
4971
|
borderRadius: string;
|
|
@@ -4988,7 +5006,7 @@ declare const _default: {
|
|
|
4988
5006
|
minHeight: string;
|
|
4989
5007
|
border: string;
|
|
4990
5008
|
'&.is-hovered': {
|
|
4991
|
-
backgroundColor:
|
|
5009
|
+
backgroundColor: string;
|
|
4992
5010
|
};
|
|
4993
5011
|
'&.is-focused': {
|
|
4994
5012
|
outline: string;
|
|
@@ -5086,19 +5104,19 @@ declare const _default: {
|
|
|
5086
5104
|
height: string;
|
|
5087
5105
|
};
|
|
5088
5106
|
'&.font-size-sm': {
|
|
5089
|
-
fontSize:
|
|
5107
|
+
fontSize: number;
|
|
5090
5108
|
};
|
|
5091
5109
|
'&.font-size-md': {
|
|
5092
|
-
fontSize:
|
|
5110
|
+
fontSize: number;
|
|
5093
5111
|
};
|
|
5094
5112
|
'&.font-size-xmd': {
|
|
5095
5113
|
fontSize: string;
|
|
5096
5114
|
};
|
|
5097
5115
|
'&.font-size-lg': {
|
|
5098
|
-
fontSize:
|
|
5116
|
+
fontSize: number;
|
|
5099
5117
|
};
|
|
5100
5118
|
'&.font-size-xl': {
|
|
5101
|
-
fontSize:
|
|
5119
|
+
fontSize: number;
|
|
5102
5120
|
};
|
|
5103
5121
|
'&.is-square': {
|
|
5104
5122
|
borderRadius: string;
|
|
@@ -5112,7 +5130,7 @@ declare const _default: {
|
|
|
5112
5130
|
'&.is-logo': {
|
|
5113
5131
|
borderWidth: string;
|
|
5114
5132
|
borderStyle: string;
|
|
5115
|
-
borderColor:
|
|
5133
|
+
borderColor: string;
|
|
5116
5134
|
backgroundColor: string;
|
|
5117
5135
|
'&.size-sm': {
|
|
5118
5136
|
img: {
|
|
@@ -5574,14 +5592,14 @@ declare const _default: {
|
|
|
5574
5592
|
selectableTableRow: {
|
|
5575
5593
|
bg: string;
|
|
5576
5594
|
'&.is-hovered': {
|
|
5577
|
-
bg:
|
|
5595
|
+
bg: string;
|
|
5578
5596
|
};
|
|
5579
5597
|
'&.is-selected': {
|
|
5580
|
-
bg:
|
|
5598
|
+
bg: string;
|
|
5581
5599
|
};
|
|
5582
5600
|
'&.is-focused': {
|
|
5583
5601
|
boxShadow: string;
|
|
5584
|
-
bg:
|
|
5602
|
+
bg: string;
|
|
5585
5603
|
};
|
|
5586
5604
|
'&.is-disabled': {
|
|
5587
5605
|
opacity: string;
|
|
@@ -5659,7 +5677,7 @@ declare const _default: {
|
|
|
5659
5677
|
container: {
|
|
5660
5678
|
fontFamily: string;
|
|
5661
5679
|
justifyContent: string;
|
|
5662
|
-
backgroundColor:
|
|
5680
|
+
backgroundColor: string;
|
|
5663
5681
|
};
|
|
5664
5682
|
wrapper: {
|
|
5665
5683
|
px: string[];
|
|
@@ -5704,7 +5722,7 @@ declare const _default: {
|
|
|
5704
5722
|
minWidth: string;
|
|
5705
5723
|
height: string;
|
|
5706
5724
|
width: string;
|
|
5707
|
-
fontSize:
|
|
5725
|
+
fontSize: number;
|
|
5708
5726
|
};
|
|
5709
5727
|
sm: {
|
|
5710
5728
|
justifyContent: string;
|
|
@@ -5718,7 +5736,7 @@ declare const _default: {
|
|
|
5718
5736
|
minWidth: string;
|
|
5719
5737
|
height: string;
|
|
5720
5738
|
width: string;
|
|
5721
|
-
fontSize:
|
|
5739
|
+
fontSize: number;
|
|
5722
5740
|
};
|
|
5723
5741
|
md: {
|
|
5724
5742
|
justifyContent: string;
|
|
@@ -5732,7 +5750,7 @@ declare const _default: {
|
|
|
5732
5750
|
minWidth: string;
|
|
5733
5751
|
height: string;
|
|
5734
5752
|
width: string;
|
|
5735
|
-
fontSize:
|
|
5753
|
+
fontSize: number;
|
|
5736
5754
|
};
|
|
5737
5755
|
lg: {
|
|
5738
5756
|
justifyContent: string;
|
|
@@ -5746,7 +5764,7 @@ declare const _default: {
|
|
|
5746
5764
|
minWidth: string;
|
|
5747
5765
|
height: string;
|
|
5748
5766
|
width: string;
|
|
5749
|
-
fontSize:
|
|
5767
|
+
fontSize: number;
|
|
5750
5768
|
};
|
|
5751
5769
|
xl: {
|
|
5752
5770
|
justifyContent: string;
|
|
@@ -5760,7 +5778,7 @@ declare const _default: {
|
|
|
5760
5778
|
minWidth: string;
|
|
5761
5779
|
height: string;
|
|
5762
5780
|
width: string;
|
|
5763
|
-
fontSize:
|
|
5781
|
+
fontSize: number;
|
|
5764
5782
|
};
|
|
5765
5783
|
};
|
|
5766
5784
|
labelValuePairs: {
|
|
@@ -5782,34 +5800,34 @@ declare const _default: {
|
|
|
5782
5800
|
};
|
|
5783
5801
|
listBox: {
|
|
5784
5802
|
container: {
|
|
5785
|
-
p:
|
|
5803
|
+
p: number;
|
|
5786
5804
|
};
|
|
5787
5805
|
option: {
|
|
5788
5806
|
py: any;
|
|
5789
5807
|
pl: any;
|
|
5790
|
-
pr:
|
|
5808
|
+
pr: number;
|
|
5791
5809
|
justifyContent: string;
|
|
5792
|
-
borderRadius:
|
|
5810
|
+
borderRadius: number;
|
|
5793
5811
|
lineHeight: string;
|
|
5794
|
-
color:
|
|
5812
|
+
color: string;
|
|
5795
5813
|
'&.is-focused': {
|
|
5796
|
-
color:
|
|
5814
|
+
color: string;
|
|
5797
5815
|
bg: string;
|
|
5798
|
-
borderRadius:
|
|
5816
|
+
borderRadius: number;
|
|
5799
5817
|
};
|
|
5800
5818
|
'&.is-focus-visible': {
|
|
5801
5819
|
boxShadow: string;
|
|
5802
|
-
borderRadius:
|
|
5820
|
+
borderRadius: number;
|
|
5803
5821
|
zIndex: number;
|
|
5804
5822
|
};
|
|
5805
5823
|
'&.is-selected': {
|
|
5806
|
-
color:
|
|
5824
|
+
color: string;
|
|
5807
5825
|
fontWeight: string;
|
|
5808
5826
|
bg: string;
|
|
5809
5827
|
pl: string;
|
|
5810
|
-
borderRadius:
|
|
5828
|
+
borderRadius: number;
|
|
5811
5829
|
'&.is-focused': {
|
|
5812
|
-
color:
|
|
5830
|
+
color: string;
|
|
5813
5831
|
};
|
|
5814
5832
|
'&.is-focus-visible': {
|
|
5815
5833
|
bg: string;
|
|
@@ -5820,7 +5838,7 @@ declare const _default: {
|
|
|
5820
5838
|
bg: string;
|
|
5821
5839
|
};
|
|
5822
5840
|
'&.is-condensed': {
|
|
5823
|
-
pl:
|
|
5841
|
+
pl: number;
|
|
5824
5842
|
bg: string;
|
|
5825
5843
|
color: string;
|
|
5826
5844
|
'&:not(.is-selected)': {
|
|
@@ -5870,19 +5888,19 @@ declare const _default: {
|
|
|
5870
5888
|
styledListItem: {
|
|
5871
5889
|
bg: string;
|
|
5872
5890
|
'&.is-selected': {
|
|
5873
|
-
bg:
|
|
5891
|
+
bg: string;
|
|
5874
5892
|
};
|
|
5875
5893
|
borderBottom: string;
|
|
5876
5894
|
'&.has-separator': {
|
|
5877
5895
|
borderBottom: string;
|
|
5878
|
-
borderBottomColor:
|
|
5896
|
+
borderBottomColor: string;
|
|
5879
5897
|
};
|
|
5880
5898
|
'&.is-hovered': {
|
|
5881
|
-
bg:
|
|
5899
|
+
bg: string;
|
|
5882
5900
|
};
|
|
5883
5901
|
'&.is-focused': {
|
|
5884
5902
|
boxShadow: string;
|
|
5885
|
-
bg:
|
|
5903
|
+
bg: string;
|
|
5886
5904
|
};
|
|
5887
5905
|
'&.is-first-item': {
|
|
5888
5906
|
borderTopLeftRadius: string;
|
|
@@ -5920,14 +5938,14 @@ declare const _default: {
|
|
|
5920
5938
|
};
|
|
5921
5939
|
};
|
|
5922
5940
|
'&.is-hovered': {
|
|
5923
|
-
bg:
|
|
5941
|
+
bg: string;
|
|
5924
5942
|
};
|
|
5925
5943
|
'&.is-selected': {
|
|
5926
|
-
bg:
|
|
5944
|
+
bg: string;
|
|
5927
5945
|
};
|
|
5928
5946
|
'&.is-focused': {
|
|
5929
5947
|
boxShadow: string;
|
|
5930
|
-
bg:
|
|
5948
|
+
bg: string;
|
|
5931
5949
|
};
|
|
5932
5950
|
};
|
|
5933
5951
|
expandableItemBody: {
|
|
@@ -5943,7 +5961,7 @@ declare const _default: {
|
|
|
5943
5961
|
};
|
|
5944
5962
|
expandableRow: {
|
|
5945
5963
|
'&.has-separator': {
|
|
5946
|
-
borderBottomColor:
|
|
5964
|
+
borderBottomColor: string;
|
|
5947
5965
|
};
|
|
5948
5966
|
'&.has-separator.is-last-row': {
|
|
5949
5967
|
border: string;
|
|
@@ -5964,26 +5982,26 @@ declare const _default: {
|
|
|
5964
5982
|
};
|
|
5965
5983
|
lisViewItemChart: {
|
|
5966
5984
|
title: {
|
|
5967
|
-
color:
|
|
5985
|
+
color: string;
|
|
5968
5986
|
fontSize: string;
|
|
5969
5987
|
};
|
|
5970
5988
|
count: {
|
|
5971
|
-
color:
|
|
5989
|
+
color: string;
|
|
5972
5990
|
fontSize: string;
|
|
5973
5991
|
};
|
|
5974
5992
|
countLabel: {
|
|
5975
|
-
color:
|
|
5993
|
+
color: string;
|
|
5976
5994
|
fontSize: string;
|
|
5977
5995
|
};
|
|
5978
5996
|
chartLabel: {
|
|
5979
|
-
color:
|
|
5997
|
+
color: string;
|
|
5980
5998
|
fontSize: string;
|
|
5981
5999
|
};
|
|
5982
6000
|
trend: {
|
|
5983
|
-
color:
|
|
6001
|
+
color: string;
|
|
5984
6002
|
};
|
|
5985
6003
|
chartButton: {
|
|
5986
|
-
color:
|
|
6004
|
+
color: string;
|
|
5987
6005
|
};
|
|
5988
6006
|
};
|
|
5989
6007
|
loader: {
|
|
@@ -6003,20 +6021,20 @@ declare const _default: {
|
|
|
6003
6021
|
bg: string;
|
|
6004
6022
|
padding: string;
|
|
6005
6023
|
outline: string;
|
|
6006
|
-
color:
|
|
6024
|
+
color: string;
|
|
6007
6025
|
fontSize: string;
|
|
6008
6026
|
lineHeight: string;
|
|
6009
6027
|
cursor: string;
|
|
6010
6028
|
borderRadius: string;
|
|
6011
6029
|
'&.is-hovered': {
|
|
6012
|
-
bg:
|
|
6030
|
+
bg: string;
|
|
6013
6031
|
color: string;
|
|
6014
6032
|
'> *': {
|
|
6015
6033
|
color: string;
|
|
6016
6034
|
};
|
|
6017
6035
|
};
|
|
6018
6036
|
'&.is-focused': {
|
|
6019
|
-
bg:
|
|
6037
|
+
bg: string;
|
|
6020
6038
|
color: string;
|
|
6021
6039
|
outline: string;
|
|
6022
6040
|
outlineOffset: string;
|
|
@@ -6065,11 +6083,11 @@ declare const _default: {
|
|
|
6065
6083
|
p: string;
|
|
6066
6084
|
wordBreak: string;
|
|
6067
6085
|
alignItems: string;
|
|
6068
|
-
backgroundColor:
|
|
6086
|
+
backgroundColor: string;
|
|
6069
6087
|
borderLeftWidth: string;
|
|
6070
6088
|
borderLeftStyle: string;
|
|
6071
6089
|
borderLeftColor: string;
|
|
6072
|
-
color:
|
|
6090
|
+
color: string;
|
|
6073
6091
|
fontSize: string;
|
|
6074
6092
|
lineHeight: string;
|
|
6075
6093
|
borderRadius: number;
|
|
@@ -6077,23 +6095,23 @@ declare const _default: {
|
|
|
6077
6095
|
minWidth: string;
|
|
6078
6096
|
width: string;
|
|
6079
6097
|
height: string;
|
|
6080
|
-
color:
|
|
6098
|
+
color: string;
|
|
6081
6099
|
path: {
|
|
6082
|
-
fill:
|
|
6100
|
+
fill: string;
|
|
6083
6101
|
transform: string;
|
|
6084
6102
|
transformOrigin: string;
|
|
6085
6103
|
};
|
|
6086
6104
|
alignSelf: string;
|
|
6087
6105
|
};
|
|
6088
6106
|
'&.is-success': {
|
|
6089
|
-
bg:
|
|
6090
|
-
borderLeftColor:
|
|
6091
|
-
color:
|
|
6107
|
+
bg: string;
|
|
6108
|
+
borderLeftColor: string;
|
|
6109
|
+
color: string;
|
|
6092
6110
|
};
|
|
6093
6111
|
'&.is-warning': {
|
|
6094
6112
|
bg: string;
|
|
6095
|
-
borderLeftColor:
|
|
6096
|
-
color:
|
|
6113
|
+
borderLeftColor: string;
|
|
6114
|
+
color: string;
|
|
6097
6115
|
};
|
|
6098
6116
|
'&.is-error, > .is-error': {
|
|
6099
6117
|
bg: string;
|
|
@@ -6101,11 +6119,11 @@ declare const _default: {
|
|
|
6101
6119
|
'&.is-error, > button > svg': {
|
|
6102
6120
|
color: string;
|
|
6103
6121
|
path: {
|
|
6104
|
-
fill:
|
|
6122
|
+
fill: string;
|
|
6105
6123
|
};
|
|
6106
6124
|
};
|
|
6107
6125
|
'&.is-error': {
|
|
6108
|
-
borderLeftColor:
|
|
6126
|
+
borderLeftColor: string;
|
|
6109
6127
|
};
|
|
6110
6128
|
};
|
|
6111
6129
|
};
|
|
@@ -6126,19 +6144,19 @@ declare const _default: {
|
|
|
6126
6144
|
};
|
|
6127
6145
|
'&.is-extra-small': {
|
|
6128
6146
|
width: string;
|
|
6129
|
-
maxWidth:
|
|
6147
|
+
maxWidth: (string | number)[];
|
|
6130
6148
|
};
|
|
6131
6149
|
'&.is-small': {
|
|
6132
6150
|
width: string;
|
|
6133
|
-
maxWidth:
|
|
6151
|
+
maxWidth: (string | number)[];
|
|
6134
6152
|
};
|
|
6135
6153
|
'&.is-medium': {
|
|
6136
6154
|
width: string;
|
|
6137
|
-
maxWidth:
|
|
6155
|
+
maxWidth: (string | number)[];
|
|
6138
6156
|
};
|
|
6139
6157
|
'&.is-large': {
|
|
6140
6158
|
width: string;
|
|
6141
|
-
maxWidth:
|
|
6159
|
+
maxWidth: (string | number)[];
|
|
6142
6160
|
};
|
|
6143
6161
|
'&.is-full': {
|
|
6144
6162
|
width: string;
|
|
@@ -6152,7 +6170,7 @@ declare const _default: {
|
|
|
6152
6170
|
};
|
|
6153
6171
|
headingContainer: {
|
|
6154
6172
|
borderBottom: string;
|
|
6155
|
-
borderBottomColor:
|
|
6173
|
+
borderBottomColor: string;
|
|
6156
6174
|
bg: string;
|
|
6157
6175
|
borderRadius: string;
|
|
6158
6176
|
};
|
|
@@ -6208,7 +6226,7 @@ declare const _default: {
|
|
|
6208
6226
|
backgroundColor: string;
|
|
6209
6227
|
};
|
|
6210
6228
|
'&.is-pressed': {
|
|
6211
|
-
backgroundColor:
|
|
6229
|
+
backgroundColor: string;
|
|
6212
6230
|
};
|
|
6213
6231
|
'&.is-focused': {
|
|
6214
6232
|
outline: string;
|
|
@@ -6219,10 +6237,10 @@ declare const _default: {
|
|
|
6219
6237
|
itemButton: {
|
|
6220
6238
|
py: string;
|
|
6221
6239
|
paddingLeft: string;
|
|
6222
|
-
color:
|
|
6240
|
+
color: string;
|
|
6223
6241
|
borderRadius: string;
|
|
6224
6242
|
fontWeight: number;
|
|
6225
|
-
fontSize:
|
|
6243
|
+
fontSize: number;
|
|
6226
6244
|
lineHeight: string;
|
|
6227
6245
|
'&.is-focused': {
|
|
6228
6246
|
outline: string;
|
|
@@ -6233,22 +6251,22 @@ declare const _default: {
|
|
|
6233
6251
|
backgroundColor: string;
|
|
6234
6252
|
};
|
|
6235
6253
|
'&.is-pressed': {
|
|
6236
|
-
backgroundColor:
|
|
6237
|
-
color:
|
|
6254
|
+
backgroundColor: string;
|
|
6255
|
+
color: string;
|
|
6238
6256
|
};
|
|
6239
6257
|
'&.is-selected': {
|
|
6240
|
-
bg:
|
|
6258
|
+
bg: string;
|
|
6241
6259
|
boxShadow: string;
|
|
6242
6260
|
color: string;
|
|
6243
6261
|
};
|
|
6244
6262
|
};
|
|
6245
6263
|
subtitle: {
|
|
6246
|
-
color:
|
|
6264
|
+
color: string;
|
|
6247
6265
|
};
|
|
6248
6266
|
headerText: {
|
|
6249
|
-
color:
|
|
6267
|
+
color: string;
|
|
6250
6268
|
fontWeight: number;
|
|
6251
|
-
fontSize:
|
|
6269
|
+
fontSize: number;
|
|
6252
6270
|
lineHeight: string;
|
|
6253
6271
|
ml: string;
|
|
6254
6272
|
'.is-selected &': {
|
|
@@ -6270,19 +6288,19 @@ declare const _default: {
|
|
|
6270
6288
|
item: {
|
|
6271
6289
|
px: string;
|
|
6272
6290
|
py: string;
|
|
6273
|
-
color:
|
|
6291
|
+
color: string;
|
|
6274
6292
|
borderRadius: string;
|
|
6275
6293
|
'&.is-hovered': {
|
|
6276
|
-
backgroundColor:
|
|
6294
|
+
backgroundColor: string;
|
|
6277
6295
|
};
|
|
6278
6296
|
'> div > svg': {
|
|
6279
|
-
fill:
|
|
6297
|
+
fill: string;
|
|
6280
6298
|
};
|
|
6281
6299
|
'> div > span': {
|
|
6282
6300
|
color: string;
|
|
6283
6301
|
};
|
|
6284
6302
|
'&.is-pressed': {
|
|
6285
|
-
backgroundColor:
|
|
6303
|
+
backgroundColor: string;
|
|
6286
6304
|
};
|
|
6287
6305
|
'&.is-selected': {
|
|
6288
6306
|
'> div > svg': {
|
|
@@ -6294,7 +6312,7 @@ declare const _default: {
|
|
|
6294
6312
|
'&.is-hovered': {
|
|
6295
6313
|
backgroundColor: string;
|
|
6296
6314
|
};
|
|
6297
|
-
backgroundColor:
|
|
6315
|
+
backgroundColor: string;
|
|
6298
6316
|
boxShadow: string;
|
|
6299
6317
|
};
|
|
6300
6318
|
'&.is-focused': {
|
|
@@ -6321,7 +6339,7 @@ declare const _default: {
|
|
|
6321
6339
|
'> div > span': {
|
|
6322
6340
|
color: string;
|
|
6323
6341
|
};
|
|
6324
|
-
backgroundColor:
|
|
6342
|
+
backgroundColor: string;
|
|
6325
6343
|
boxShadow: string;
|
|
6326
6344
|
};
|
|
6327
6345
|
'&.is-hovered': {
|
|
@@ -6329,10 +6347,10 @@ declare const _default: {
|
|
|
6329
6347
|
};
|
|
6330
6348
|
backgroundColor: string;
|
|
6331
6349
|
'> svg': {
|
|
6332
|
-
fill:
|
|
6350
|
+
fill: string;
|
|
6333
6351
|
};
|
|
6334
6352
|
'> div > svg': {
|
|
6335
|
-
fill:
|
|
6353
|
+
fill: string;
|
|
6336
6354
|
};
|
|
6337
6355
|
};
|
|
6338
6356
|
navBarItemBody: {
|
|
@@ -6403,8 +6421,8 @@ declare const _default: {
|
|
|
6403
6421
|
boxShadow: string;
|
|
6404
6422
|
transition: string;
|
|
6405
6423
|
border: string;
|
|
6406
|
-
borderColor:
|
|
6407
|
-
borderRadius:
|
|
6424
|
+
borderColor: string;
|
|
6425
|
+
borderRadius: number;
|
|
6408
6426
|
'&.animate': {
|
|
6409
6427
|
opacity: number;
|
|
6410
6428
|
};
|
|
@@ -6414,18 +6432,18 @@ declare const _default: {
|
|
|
6414
6432
|
'&.is-dark-mode': {
|
|
6415
6433
|
color: string;
|
|
6416
6434
|
alignItems: string;
|
|
6417
|
-
bg:
|
|
6435
|
+
bg: string;
|
|
6418
6436
|
'&[data-popover-placement^=top] > [data-popover-arrow="arrow"]:before': {
|
|
6419
|
-
borderTopColor:
|
|
6437
|
+
borderTopColor: string;
|
|
6420
6438
|
};
|
|
6421
6439
|
'&[data-popover-placement^=bottom] > [data-popover-arrow="arrow"]:before': {
|
|
6422
|
-
borderBottomColor:
|
|
6440
|
+
borderBottomColor: string;
|
|
6423
6441
|
};
|
|
6424
6442
|
'&[data-popover-placement^=left] > [data-popover-arrow="arrow"]:before': {
|
|
6425
|
-
borderLeftColor:
|
|
6443
|
+
borderLeftColor: string;
|
|
6426
6444
|
};
|
|
6427
6445
|
'&[data-popover-placement^=right] > [data-popover-arrow="arrow"]:before': {
|
|
6428
|
-
borderRightColor:
|
|
6446
|
+
borderRightColor: string;
|
|
6429
6447
|
};
|
|
6430
6448
|
};
|
|
6431
6449
|
};
|
|
@@ -6513,17 +6531,17 @@ declare const _default: {
|
|
|
6513
6531
|
outlineOffset: string;
|
|
6514
6532
|
};
|
|
6515
6533
|
'&.is-unavailable': {
|
|
6516
|
-
backgroundColor:
|
|
6534
|
+
backgroundColor: string;
|
|
6517
6535
|
color: string;
|
|
6518
6536
|
};
|
|
6519
6537
|
'&:not(.is-outside-visible-range)&.is-extreme&:not(.is-completely-disabled)': {
|
|
6520
|
-
backgroundColor:
|
|
6538
|
+
backgroundColor: string;
|
|
6521
6539
|
color: string;
|
|
6522
6540
|
opacity: number;
|
|
6523
6541
|
};
|
|
6524
6542
|
'&.is-disabled': {
|
|
6525
6543
|
'&.is-hovered': {
|
|
6526
|
-
color:
|
|
6544
|
+
color: string;
|
|
6527
6545
|
backgroundColor: string;
|
|
6528
6546
|
};
|
|
6529
6547
|
};
|
|
@@ -6817,7 +6835,7 @@ declare const _default: {
|
|
|
6817
6835
|
borderBottomColor: string;
|
|
6818
6836
|
'&.is-inactive': {
|
|
6819
6837
|
borderBottomStyle: string;
|
|
6820
|
-
borderBottomColor:
|
|
6838
|
+
borderBottomColor: string;
|
|
6821
6839
|
};
|
|
6822
6840
|
'&.is-default': {
|
|
6823
6841
|
width: string;
|
|
@@ -6826,7 +6844,7 @@ declare const _default: {
|
|
|
6826
6844
|
borderBottomWidth: number;
|
|
6827
6845
|
borderRightWidth: string;
|
|
6828
6846
|
borderRightStyle: string;
|
|
6829
|
-
borderRightColor:
|
|
6847
|
+
borderRightColor: string;
|
|
6830
6848
|
my: string;
|
|
6831
6849
|
};
|
|
6832
6850
|
};
|
|
@@ -6881,7 +6899,7 @@ declare const _default: {
|
|
|
6881
6899
|
fontWeight: number;
|
|
6882
6900
|
fontSize: string;
|
|
6883
6901
|
backgroundColor: string;
|
|
6884
|
-
borderColor:
|
|
6902
|
+
borderColor: string;
|
|
6885
6903
|
color: string;
|
|
6886
6904
|
};
|
|
6887
6905
|
};
|
|
@@ -6895,7 +6913,7 @@ declare const _default: {
|
|
|
6895
6913
|
fontWeight: number;
|
|
6896
6914
|
fontSize: string;
|
|
6897
6915
|
backgroundColor: string;
|
|
6898
|
-
borderColor:
|
|
6916
|
+
borderColor: string;
|
|
6899
6917
|
color: string;
|
|
6900
6918
|
};
|
|
6901
6919
|
};
|
|
@@ -6919,59 +6937,59 @@ declare const _default: {
|
|
|
6919
6937
|
statusIcon: {
|
|
6920
6938
|
base: {
|
|
6921
6939
|
'&.is-default': {
|
|
6922
|
-
bg:
|
|
6940
|
+
bg: string;
|
|
6923
6941
|
span: {
|
|
6924
6942
|
fontSize: string;
|
|
6925
|
-
color:
|
|
6943
|
+
color: string;
|
|
6926
6944
|
};
|
|
6927
6945
|
};
|
|
6928
6946
|
'&.is-critical': {
|
|
6929
|
-
bg:
|
|
6947
|
+
bg: string;
|
|
6930
6948
|
span: {
|
|
6931
6949
|
fontSize: string;
|
|
6932
|
-
color:
|
|
6950
|
+
color: string;
|
|
6933
6951
|
};
|
|
6934
6952
|
};
|
|
6935
6953
|
'&.is-warning': {
|
|
6936
|
-
bg:
|
|
6954
|
+
bg: string;
|
|
6937
6955
|
span: {
|
|
6938
6956
|
fontSize: string;
|
|
6939
|
-
color:
|
|
6957
|
+
color: string;
|
|
6940
6958
|
};
|
|
6941
6959
|
};
|
|
6942
6960
|
'&.is-info': {
|
|
6943
|
-
bg:
|
|
6961
|
+
bg: string;
|
|
6944
6962
|
span: {
|
|
6945
6963
|
fontSize: string;
|
|
6946
|
-
color:
|
|
6964
|
+
color: string;
|
|
6947
6965
|
};
|
|
6948
6966
|
};
|
|
6949
6967
|
'&.is-major': {
|
|
6950
|
-
bg:
|
|
6968
|
+
bg: string;
|
|
6951
6969
|
span: {
|
|
6952
6970
|
fontSize: string;
|
|
6953
|
-
color:
|
|
6971
|
+
color: string;
|
|
6954
6972
|
};
|
|
6955
6973
|
};
|
|
6956
6974
|
'&.is-minor': {
|
|
6957
|
-
bg:
|
|
6975
|
+
bg: string;
|
|
6958
6976
|
span: {
|
|
6959
6977
|
fontSize: string;
|
|
6960
|
-
color:
|
|
6978
|
+
color: string;
|
|
6961
6979
|
};
|
|
6962
6980
|
};
|
|
6963
6981
|
'&.is-warning-neutral': {
|
|
6964
|
-
bg:
|
|
6982
|
+
bg: string;
|
|
6965
6983
|
span: {
|
|
6966
6984
|
fontSize: string;
|
|
6967
|
-
color:
|
|
6985
|
+
color: string;
|
|
6968
6986
|
};
|
|
6969
6987
|
};
|
|
6970
6988
|
'&.is-fatal': {
|
|
6971
|
-
bg:
|
|
6989
|
+
bg: string;
|
|
6972
6990
|
span: {
|
|
6973
6991
|
fontSize: string;
|
|
6974
|
-
color:
|
|
6992
|
+
color: string;
|
|
6975
6993
|
};
|
|
6976
6994
|
};
|
|
6977
6995
|
'&.is-selected.is-selected': {
|
|
@@ -7086,38 +7104,38 @@ declare const _default: {
|
|
|
7086
7104
|
caption: {
|
|
7087
7105
|
backgroundColor: string;
|
|
7088
7106
|
px: string;
|
|
7089
|
-
color:
|
|
7107
|
+
color: string;
|
|
7090
7108
|
borderBottom: string;
|
|
7091
|
-
borderBottomColor:
|
|
7109
|
+
borderBottomColor: string;
|
|
7092
7110
|
borderTopLeftRadius: string;
|
|
7093
7111
|
borderTopRightRadius: string;
|
|
7094
7112
|
};
|
|
7095
7113
|
row: {
|
|
7096
7114
|
borderBottom: string;
|
|
7097
|
-
borderBottomColor:
|
|
7115
|
+
borderBottomColor: string;
|
|
7098
7116
|
'&.is-focused': {
|
|
7099
7117
|
outlineOffset: string;
|
|
7100
7118
|
outline: string;
|
|
7101
7119
|
outlineColor: string;
|
|
7102
7120
|
};
|
|
7103
7121
|
'&.is-hovered': {
|
|
7104
|
-
bg:
|
|
7122
|
+
bg: string;
|
|
7105
7123
|
'& > td:last-of-type': {
|
|
7106
|
-
bg:
|
|
7124
|
+
bg: string;
|
|
7107
7125
|
};
|
|
7108
7126
|
};
|
|
7109
7127
|
'&:nth-of-type(odd)': {
|
|
7110
|
-
bg:
|
|
7128
|
+
bg: string;
|
|
7111
7129
|
'&.is-hovered': {
|
|
7112
|
-
bg:
|
|
7130
|
+
bg: string;
|
|
7113
7131
|
};
|
|
7114
7132
|
'& > td:last-of-type': {
|
|
7115
|
-
bg:
|
|
7133
|
+
bg: string;
|
|
7116
7134
|
};
|
|
7117
7135
|
};
|
|
7118
7136
|
};
|
|
7119
7137
|
thead: {
|
|
7120
|
-
borderBottomColor:
|
|
7138
|
+
borderBottomColor: string;
|
|
7121
7139
|
backgroundColor: string;
|
|
7122
7140
|
'&.is-sticky': {
|
|
7123
7141
|
border: string;
|
|
@@ -7137,7 +7155,7 @@ declare const _default: {
|
|
|
7137
7155
|
};
|
|
7138
7156
|
};
|
|
7139
7157
|
tbody: {
|
|
7140
|
-
borderTopColor:
|
|
7158
|
+
borderTopColor: string;
|
|
7141
7159
|
borderBottom: string;
|
|
7142
7160
|
backgroundColor: string;
|
|
7143
7161
|
borderBottomLeftRadius: string;
|
|
@@ -7158,7 +7176,7 @@ declare const _default: {
|
|
|
7158
7176
|
};
|
|
7159
7177
|
};
|
|
7160
7178
|
resizer: {
|
|
7161
|
-
backgroundColor:
|
|
7179
|
+
backgroundColor: string;
|
|
7162
7180
|
};
|
|
7163
7181
|
};
|
|
7164
7182
|
tabs: {
|
|
@@ -7168,7 +7186,7 @@ declare const _default: {
|
|
|
7168
7186
|
};
|
|
7169
7187
|
tooltip: {
|
|
7170
7188
|
container: {
|
|
7171
|
-
backgroundColor:
|
|
7189
|
+
backgroundColor: string;
|
|
7172
7190
|
borderRadius: string;
|
|
7173
7191
|
fontSize: string;
|
|
7174
7192
|
fontFamily: string;
|
|
@@ -7192,7 +7210,7 @@ declare const _default: {
|
|
|
7192
7210
|
};
|
|
7193
7211
|
};
|
|
7194
7212
|
inline: {
|
|
7195
|
-
color:
|
|
7213
|
+
color: string;
|
|
7196
7214
|
'&.is-focused': {
|
|
7197
7215
|
outline: string;
|
|
7198
7216
|
outlineColor: string;
|