@mirohq/design-system-stitches 2.3.4 → 2.3.5-themes.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/dist/main.js +4 -1
- package/dist/main.js.map +1 -1
- package/dist/module.js +3 -1
- package/dist/module.js.map +1 -1
- package/dist/types.d.ts +1064 -964
- package/package.json +7 -2
package/dist/types.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import * as _stitches_react_types_stitches from '@stitches/react/types/stitches'
|
|
|
9
9
|
import { RemoveIndex } from '@stitches/react/types/stitches';
|
|
10
10
|
import * as CSSUtil from '@stitches/react/types/css-util';
|
|
11
11
|
import { Tokens } from '@mirohq/design-tokens';
|
|
12
|
+
import { AliasColors } from '@mirohq/design-system-themes';
|
|
12
13
|
import { ConfigType } from '@stitches/react/types/config';
|
|
13
14
|
|
|
14
15
|
declare const config: {
|
|
@@ -22,6 +23,7 @@ declare const config: {
|
|
|
22
23
|
readonly lg: "4px";
|
|
23
24
|
};
|
|
24
25
|
colors: {
|
|
26
|
+
readonly black: any;
|
|
25
27
|
readonly 'blue-100': any;
|
|
26
28
|
readonly 'blue-200': any;
|
|
27
29
|
readonly 'blue-300': any;
|
|
@@ -41,6 +43,15 @@ declare const config: {
|
|
|
41
43
|
readonly 'gray-700': any;
|
|
42
44
|
readonly 'gray-800': any;
|
|
43
45
|
readonly 'gray-900': any;
|
|
46
|
+
readonly 'green-100': any;
|
|
47
|
+
readonly 'green-200': any;
|
|
48
|
+
readonly 'green-300': any;
|
|
49
|
+
readonly 'green-400': any;
|
|
50
|
+
readonly 'green-500': any;
|
|
51
|
+
readonly 'green-600': any;
|
|
52
|
+
readonly 'green-700': any;
|
|
53
|
+
readonly 'green-800': any;
|
|
54
|
+
readonly 'green-900': any;
|
|
44
55
|
readonly 'indigo-100': any;
|
|
45
56
|
readonly 'indigo-200': any;
|
|
46
57
|
readonly 'indigo-300': any;
|
|
@@ -59,6 +70,8 @@ declare const config: {
|
|
|
59
70
|
readonly 'red-700': any;
|
|
60
71
|
readonly 'red-800': any;
|
|
61
72
|
readonly 'red-900': any;
|
|
73
|
+
readonly transparent: any;
|
|
74
|
+
readonly white: any;
|
|
62
75
|
readonly 'yellow-100': any;
|
|
63
76
|
readonly 'yellow-200': any;
|
|
64
77
|
readonly 'yellow-300': any;
|
|
@@ -68,113 +81,112 @@ declare const config: {
|
|
|
68
81
|
readonly 'yellow-700': any;
|
|
69
82
|
readonly 'yellow-800': any;
|
|
70
83
|
readonly 'yellow-900': any;
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
readonly 'border-warning'?: any;
|
|
84
|
+
"background-alpha-active"?: any;
|
|
85
|
+
"background-alpha-hover"?: any;
|
|
86
|
+
"background-danger-prominent"?: any;
|
|
87
|
+
"background-danger-prominent-active"?: any;
|
|
88
|
+
"background-danger-prominent-hover"?: any;
|
|
89
|
+
"background-danger-subtle"?: any;
|
|
90
|
+
"background-danger-subtle-active"?: any;
|
|
91
|
+
"background-danger-subtle-hover"?: any;
|
|
92
|
+
"background-neutrals"?: any;
|
|
93
|
+
"background-neutrals-active"?: any;
|
|
94
|
+
"background-neutrals-container"?: any;
|
|
95
|
+
"background-neutrals-controls-disabled"?: any;
|
|
96
|
+
"background-neutrals-disabled"?: any;
|
|
97
|
+
"background-neutrals-hover"?: any;
|
|
98
|
+
"background-neutrals-inactive"?: any;
|
|
99
|
+
"background-neutrals-inactive-hover"?: any;
|
|
100
|
+
"background-neutrals-inverted"?: any;
|
|
101
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
102
|
+
"background-neutrals-page"?: any;
|
|
103
|
+
"background-neutrals-page-subtle"?: any;
|
|
104
|
+
"background-neutrals-scrolls"?: any;
|
|
105
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
106
|
+
"background-neutrals-subtle"?: any;
|
|
107
|
+
"background-neutrals-subtle-active"?: any;
|
|
108
|
+
"background-neutrals-subtle-hover"?: any;
|
|
109
|
+
"background-primary-prominent"?: any;
|
|
110
|
+
"background-primary-prominent-active"?: any;
|
|
111
|
+
"background-primary-prominent-hover"?: any;
|
|
112
|
+
"background-primary-prominent-selected"?: any;
|
|
113
|
+
"background-primary-subtle"?: any;
|
|
114
|
+
"background-primary-subtle-active"?: any;
|
|
115
|
+
"background-primary-subtle-hover"?: any;
|
|
116
|
+
"background-primary-subtle-selected"?: any;
|
|
117
|
+
"background-success"?: any;
|
|
118
|
+
"background-warning-prominent"?: any;
|
|
119
|
+
"background-warning-subtle"?: any;
|
|
120
|
+
"border-danger"?: any;
|
|
121
|
+
"border-danger-active"?: any;
|
|
122
|
+
"border-danger-hover"?: any;
|
|
123
|
+
"border-focus-inner"?: any;
|
|
124
|
+
"border-focus-middle"?: any;
|
|
125
|
+
"border-focus-outer"?: any;
|
|
126
|
+
"border-neutrals"?: any;
|
|
127
|
+
"border-neutrals-active"?: any;
|
|
128
|
+
"border-neutrals-controls"?: any;
|
|
129
|
+
"border-neutrals-controls-disabled"?: any;
|
|
130
|
+
"border-neutrals-disabled"?: any;
|
|
131
|
+
"border-neutrals-hover"?: any;
|
|
132
|
+
"border-neutrals-inverted"?: any;
|
|
133
|
+
"border-neutrals-subtle"?: any;
|
|
134
|
+
"border-neutrals-text"?: any;
|
|
135
|
+
"border-neutrals-text-active"?: any;
|
|
136
|
+
"border-neutrals-text-hover"?: any;
|
|
137
|
+
"border-neutrals-text-subtle"?: any;
|
|
138
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
139
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
140
|
+
"border-neutrals-transparent"?: any;
|
|
141
|
+
"border-primary"?: any;
|
|
142
|
+
"border-primary-active"?: any;
|
|
143
|
+
"border-primary-hover"?: any;
|
|
144
|
+
"border-primary-inverted"?: any;
|
|
145
|
+
"border-success"?: any;
|
|
146
|
+
"border-warning"?: any;
|
|
147
|
+
"icon-danger"?: any;
|
|
148
|
+
"icon-danger-active"?: any;
|
|
149
|
+
"icon-danger-hover"?: any;
|
|
150
|
+
"icon-danger-inverted"?: any;
|
|
151
|
+
"icon-neutrals"?: any;
|
|
152
|
+
"icon-neutrals-disabled"?: any;
|
|
153
|
+
"icon-neutrals-inactive"?: any;
|
|
154
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
155
|
+
"icon-neutrals-inverted"?: any;
|
|
156
|
+
"icon-neutrals-search"?: any;
|
|
157
|
+
"icon-neutrals-subtle"?: any;
|
|
158
|
+
"icon-neutrals-text"?: any;
|
|
159
|
+
"icon-primary"?: any;
|
|
160
|
+
"icon-primary-active"?: any;
|
|
161
|
+
"icon-primary-hover"?: any;
|
|
162
|
+
"icon-primary-inverted"?: any;
|
|
163
|
+
"icon-primary-selected"?: any;
|
|
164
|
+
"icon-success"?: any;
|
|
165
|
+
"icon-success-inverted"?: any;
|
|
166
|
+
"icon-warning"?: any;
|
|
167
|
+
"icon-warning-prominent"?: any;
|
|
168
|
+
"text-danger"?: any;
|
|
169
|
+
"text-danger-active"?: any;
|
|
170
|
+
"text-danger-hover"?: any;
|
|
171
|
+
"text-danger-inverted"?: any;
|
|
172
|
+
"text-neutrals"?: any;
|
|
173
|
+
"text-neutrals-active"?: any;
|
|
174
|
+
"text-neutrals-disabled"?: any;
|
|
175
|
+
"text-neutrals-hover"?: any;
|
|
176
|
+
"text-neutrals-inverted"?: any;
|
|
177
|
+
"text-neutrals-placeholder"?: any;
|
|
178
|
+
"text-neutrals-placeholder-only"?: any;
|
|
179
|
+
"text-neutrals-subtle"?: any;
|
|
180
|
+
"text-neutrals-subtle-active"?: any;
|
|
181
|
+
"text-neutrals-subtle-hover"?: any;
|
|
182
|
+
"text-primary"?: any;
|
|
183
|
+
"text-primary-active"?: any;
|
|
184
|
+
"text-primary-hover"?: any;
|
|
185
|
+
"text-primary-inverted"?: any;
|
|
186
|
+
"text-primary-inverted-subtle"?: any;
|
|
187
|
+
"text-primary-selected"?: any;
|
|
188
|
+
"text-success"?: any;
|
|
189
|
+
"text-warning"?: any;
|
|
178
190
|
};
|
|
179
191
|
'font-sizes': {
|
|
180
192
|
readonly 150: "0.75rem";
|
|
@@ -469,6 +481,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
469
481
|
readonly lg?: string | number | boolean | undefined;
|
|
470
482
|
} | undefined;
|
|
471
483
|
colors?: {
|
|
484
|
+
readonly black?: string | number | boolean | undefined;
|
|
472
485
|
readonly 'blue-100'?: string | number | boolean | undefined;
|
|
473
486
|
readonly 'blue-200'?: string | number | boolean | undefined;
|
|
474
487
|
readonly 'blue-300'?: string | number | boolean | undefined;
|
|
@@ -488,6 +501,15 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
488
501
|
readonly 'gray-700'?: string | number | boolean | undefined;
|
|
489
502
|
readonly 'gray-800'?: string | number | boolean | undefined;
|
|
490
503
|
readonly 'gray-900'?: string | number | boolean | undefined;
|
|
504
|
+
readonly 'green-100'?: string | number | boolean | undefined;
|
|
505
|
+
readonly 'green-200'?: string | number | boolean | undefined;
|
|
506
|
+
readonly 'green-300'?: string | number | boolean | undefined;
|
|
507
|
+
readonly 'green-400'?: string | number | boolean | undefined;
|
|
508
|
+
readonly 'green-500'?: string | number | boolean | undefined;
|
|
509
|
+
readonly 'green-600'?: string | number | boolean | undefined;
|
|
510
|
+
readonly 'green-700'?: string | number | boolean | undefined;
|
|
511
|
+
readonly 'green-800'?: string | number | boolean | undefined;
|
|
512
|
+
readonly 'green-900'?: string | number | boolean | undefined;
|
|
491
513
|
readonly 'indigo-100'?: string | number | boolean | undefined;
|
|
492
514
|
readonly 'indigo-200'?: string | number | boolean | undefined;
|
|
493
515
|
readonly 'indigo-300'?: string | number | boolean | undefined;
|
|
@@ -506,6 +528,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
506
528
|
readonly 'red-700'?: string | number | boolean | undefined;
|
|
507
529
|
readonly 'red-800'?: string | number | boolean | undefined;
|
|
508
530
|
readonly 'red-900'?: string | number | boolean | undefined;
|
|
531
|
+
readonly transparent?: string | number | boolean | undefined;
|
|
532
|
+
readonly white?: string | number | boolean | undefined;
|
|
509
533
|
readonly 'yellow-100'?: string | number | boolean | undefined;
|
|
510
534
|
readonly 'yellow-200'?: string | number | boolean | undefined;
|
|
511
535
|
readonly 'yellow-300'?: string | number | boolean | undefined;
|
|
@@ -515,113 +539,112 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
515
539
|
readonly 'yellow-700'?: string | number | boolean | undefined;
|
|
516
540
|
readonly 'yellow-800'?: string | number | boolean | undefined;
|
|
517
541
|
readonly 'yellow-900'?: string | number | boolean | undefined;
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
readonly 'border-warning'?: string | number | boolean | undefined;
|
|
542
|
+
"background-alpha-active"?: string | number | boolean | undefined;
|
|
543
|
+
"background-alpha-hover"?: string | number | boolean | undefined;
|
|
544
|
+
"background-danger-prominent"?: string | number | boolean | undefined;
|
|
545
|
+
"background-danger-prominent-active"?: string | number | boolean | undefined;
|
|
546
|
+
"background-danger-prominent-hover"?: string | number | boolean | undefined;
|
|
547
|
+
"background-danger-subtle"?: string | number | boolean | undefined;
|
|
548
|
+
"background-danger-subtle-active"?: string | number | boolean | undefined;
|
|
549
|
+
"background-danger-subtle-hover"?: string | number | boolean | undefined;
|
|
550
|
+
"background-neutrals"?: string | number | boolean | undefined;
|
|
551
|
+
"background-neutrals-active"?: string | number | boolean | undefined;
|
|
552
|
+
"background-neutrals-container"?: string | number | boolean | undefined;
|
|
553
|
+
"background-neutrals-controls-disabled"?: string | number | boolean | undefined;
|
|
554
|
+
"background-neutrals-disabled"?: string | number | boolean | undefined;
|
|
555
|
+
"background-neutrals-hover"?: string | number | boolean | undefined;
|
|
556
|
+
"background-neutrals-inactive"?: string | number | boolean | undefined;
|
|
557
|
+
"background-neutrals-inactive-hover"?: string | number | boolean | undefined;
|
|
558
|
+
"background-neutrals-inverted"?: string | number | boolean | undefined;
|
|
559
|
+
"background-neutrals-inverted-subtle"?: string | number | boolean | undefined;
|
|
560
|
+
"background-neutrals-page"?: string | number | boolean | undefined;
|
|
561
|
+
"background-neutrals-page-subtle"?: string | number | boolean | undefined;
|
|
562
|
+
"background-neutrals-scrolls"?: string | number | boolean | undefined;
|
|
563
|
+
"background-neutrals-scrolls-hover"?: string | number | boolean | undefined;
|
|
564
|
+
"background-neutrals-subtle"?: string | number | boolean | undefined;
|
|
565
|
+
"background-neutrals-subtle-active"?: string | number | boolean | undefined;
|
|
566
|
+
"background-neutrals-subtle-hover"?: string | number | boolean | undefined;
|
|
567
|
+
"background-primary-prominent"?: string | number | boolean | undefined;
|
|
568
|
+
"background-primary-prominent-active"?: string | number | boolean | undefined;
|
|
569
|
+
"background-primary-prominent-hover"?: string | number | boolean | undefined;
|
|
570
|
+
"background-primary-prominent-selected"?: string | number | boolean | undefined;
|
|
571
|
+
"background-primary-subtle"?: string | number | boolean | undefined;
|
|
572
|
+
"background-primary-subtle-active"?: string | number | boolean | undefined;
|
|
573
|
+
"background-primary-subtle-hover"?: string | number | boolean | undefined;
|
|
574
|
+
"background-primary-subtle-selected"?: string | number | boolean | undefined;
|
|
575
|
+
"background-success"?: string | number | boolean | undefined;
|
|
576
|
+
"background-warning-prominent"?: string | number | boolean | undefined;
|
|
577
|
+
"background-warning-subtle"?: string | number | boolean | undefined;
|
|
578
|
+
"border-danger"?: string | number | boolean | undefined;
|
|
579
|
+
"border-danger-active"?: string | number | boolean | undefined;
|
|
580
|
+
"border-danger-hover"?: string | number | boolean | undefined;
|
|
581
|
+
"border-focus-inner"?: string | number | boolean | undefined;
|
|
582
|
+
"border-focus-middle"?: string | number | boolean | undefined;
|
|
583
|
+
"border-focus-outer"?: string | number | boolean | undefined;
|
|
584
|
+
"border-neutrals"?: string | number | boolean | undefined;
|
|
585
|
+
"border-neutrals-active"?: string | number | boolean | undefined;
|
|
586
|
+
"border-neutrals-controls"?: string | number | boolean | undefined;
|
|
587
|
+
"border-neutrals-controls-disabled"?: string | number | boolean | undefined;
|
|
588
|
+
"border-neutrals-disabled"?: string | number | boolean | undefined;
|
|
589
|
+
"border-neutrals-hover"?: string | number | boolean | undefined;
|
|
590
|
+
"border-neutrals-inverted"?: string | number | boolean | undefined;
|
|
591
|
+
"border-neutrals-subtle"?: string | number | boolean | undefined;
|
|
592
|
+
"border-neutrals-text"?: string | number | boolean | undefined;
|
|
593
|
+
"border-neutrals-text-active"?: string | number | boolean | undefined;
|
|
594
|
+
"border-neutrals-text-hover"?: string | number | boolean | undefined;
|
|
595
|
+
"border-neutrals-text-subtle"?: string | number | boolean | undefined;
|
|
596
|
+
"border-neutrals-text-subtle-active"?: string | number | boolean | undefined;
|
|
597
|
+
"border-neutrals-text-subtle-hover"?: string | number | boolean | undefined;
|
|
598
|
+
"border-neutrals-transparent"?: string | number | boolean | undefined;
|
|
599
|
+
"border-primary"?: string | number | boolean | undefined;
|
|
600
|
+
"border-primary-active"?: string | number | boolean | undefined;
|
|
601
|
+
"border-primary-hover"?: string | number | boolean | undefined;
|
|
602
|
+
"border-primary-inverted"?: string | number | boolean | undefined;
|
|
603
|
+
"border-success"?: string | number | boolean | undefined;
|
|
604
|
+
"border-warning"?: string | number | boolean | undefined;
|
|
605
|
+
"icon-danger"?: string | number | boolean | undefined;
|
|
606
|
+
"icon-danger-active"?: string | number | boolean | undefined;
|
|
607
|
+
"icon-danger-hover"?: string | number | boolean | undefined;
|
|
608
|
+
"icon-danger-inverted"?: string | number | boolean | undefined;
|
|
609
|
+
"icon-neutrals"?: string | number | boolean | undefined;
|
|
610
|
+
"icon-neutrals-disabled"?: string | number | boolean | undefined;
|
|
611
|
+
"icon-neutrals-inactive"?: string | number | boolean | undefined;
|
|
612
|
+
"icon-neutrals-inactive-hover"?: string | number | boolean | undefined;
|
|
613
|
+
"icon-neutrals-inverted"?: string | number | boolean | undefined;
|
|
614
|
+
"icon-neutrals-search"?: string | number | boolean | undefined;
|
|
615
|
+
"icon-neutrals-subtle"?: string | number | boolean | undefined;
|
|
616
|
+
"icon-neutrals-text"?: string | number | boolean | undefined;
|
|
617
|
+
"icon-primary"?: string | number | boolean | undefined;
|
|
618
|
+
"icon-primary-active"?: string | number | boolean | undefined;
|
|
619
|
+
"icon-primary-hover"?: string | number | boolean | undefined;
|
|
620
|
+
"icon-primary-inverted"?: string | number | boolean | undefined;
|
|
621
|
+
"icon-primary-selected"?: string | number | boolean | undefined;
|
|
622
|
+
"icon-success"?: string | number | boolean | undefined;
|
|
623
|
+
"icon-success-inverted"?: string | number | boolean | undefined;
|
|
624
|
+
"icon-warning"?: string | number | boolean | undefined;
|
|
625
|
+
"icon-warning-prominent"?: string | number | boolean | undefined;
|
|
626
|
+
"text-danger"?: string | number | boolean | undefined;
|
|
627
|
+
"text-danger-active"?: string | number | boolean | undefined;
|
|
628
|
+
"text-danger-hover"?: string | number | boolean | undefined;
|
|
629
|
+
"text-danger-inverted"?: string | number | boolean | undefined;
|
|
630
|
+
"text-neutrals"?: string | number | boolean | undefined;
|
|
631
|
+
"text-neutrals-active"?: string | number | boolean | undefined;
|
|
632
|
+
"text-neutrals-disabled"?: string | number | boolean | undefined;
|
|
633
|
+
"text-neutrals-hover"?: string | number | boolean | undefined;
|
|
634
|
+
"text-neutrals-inverted"?: string | number | boolean | undefined;
|
|
635
|
+
"text-neutrals-placeholder"?: string | number | boolean | undefined;
|
|
636
|
+
"text-neutrals-placeholder-only"?: string | number | boolean | undefined;
|
|
637
|
+
"text-neutrals-subtle"?: string | number | boolean | undefined;
|
|
638
|
+
"text-neutrals-subtle-active"?: string | number | boolean | undefined;
|
|
639
|
+
"text-neutrals-subtle-hover"?: string | number | boolean | undefined;
|
|
640
|
+
"text-primary"?: string | number | boolean | undefined;
|
|
641
|
+
"text-primary-active"?: string | number | boolean | undefined;
|
|
642
|
+
"text-primary-hover"?: string | number | boolean | undefined;
|
|
643
|
+
"text-primary-inverted"?: string | number | boolean | undefined;
|
|
644
|
+
"text-primary-inverted-subtle"?: string | number | boolean | undefined;
|
|
645
|
+
"text-primary-selected"?: string | number | boolean | undefined;
|
|
646
|
+
"text-success"?: string | number | boolean | undefined;
|
|
647
|
+
"text-warning"?: string | number | boolean | undefined;
|
|
625
648
|
} | undefined;
|
|
626
649
|
'font-sizes'?: {
|
|
627
650
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -736,6 +759,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
736
759
|
readonly lg?: string | number | boolean | undefined;
|
|
737
760
|
} | undefined;
|
|
738
761
|
colors?: {
|
|
762
|
+
readonly black?: string | number | boolean | undefined;
|
|
739
763
|
readonly 'blue-100'?: string | number | boolean | undefined;
|
|
740
764
|
readonly 'blue-200'?: string | number | boolean | undefined;
|
|
741
765
|
readonly 'blue-300'?: string | number | boolean | undefined;
|
|
@@ -755,6 +779,15 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
755
779
|
readonly 'gray-700'?: string | number | boolean | undefined;
|
|
756
780
|
readonly 'gray-800'?: string | number | boolean | undefined;
|
|
757
781
|
readonly 'gray-900'?: string | number | boolean | undefined;
|
|
782
|
+
readonly 'green-100'?: string | number | boolean | undefined;
|
|
783
|
+
readonly 'green-200'?: string | number | boolean | undefined;
|
|
784
|
+
readonly 'green-300'?: string | number | boolean | undefined;
|
|
785
|
+
readonly 'green-400'?: string | number | boolean | undefined;
|
|
786
|
+
readonly 'green-500'?: string | number | boolean | undefined;
|
|
787
|
+
readonly 'green-600'?: string | number | boolean | undefined;
|
|
788
|
+
readonly 'green-700'?: string | number | boolean | undefined;
|
|
789
|
+
readonly 'green-800'?: string | number | boolean | undefined;
|
|
790
|
+
readonly 'green-900'?: string | number | boolean | undefined;
|
|
758
791
|
readonly 'indigo-100'?: string | number | boolean | undefined;
|
|
759
792
|
readonly 'indigo-200'?: string | number | boolean | undefined;
|
|
760
793
|
readonly 'indigo-300'?: string | number | boolean | undefined;
|
|
@@ -773,6 +806,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
773
806
|
readonly 'red-700'?: string | number | boolean | undefined;
|
|
774
807
|
readonly 'red-800'?: string | number | boolean | undefined;
|
|
775
808
|
readonly 'red-900'?: string | number | boolean | undefined;
|
|
809
|
+
readonly transparent?: string | number | boolean | undefined;
|
|
810
|
+
readonly white?: string | number | boolean | undefined;
|
|
776
811
|
readonly 'yellow-100'?: string | number | boolean | undefined;
|
|
777
812
|
readonly 'yellow-200'?: string | number | boolean | undefined;
|
|
778
813
|
readonly 'yellow-300'?: string | number | boolean | undefined;
|
|
@@ -782,113 +817,112 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
782
817
|
readonly 'yellow-700'?: string | number | boolean | undefined;
|
|
783
818
|
readonly 'yellow-800'?: string | number | boolean | undefined;
|
|
784
819
|
readonly 'yellow-900'?: string | number | boolean | undefined;
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
readonly 'border-warning'?: string | number | boolean | undefined;
|
|
820
|
+
"background-alpha-active"?: string | number | boolean | undefined;
|
|
821
|
+
"background-alpha-hover"?: string | number | boolean | undefined;
|
|
822
|
+
"background-danger-prominent"?: string | number | boolean | undefined;
|
|
823
|
+
"background-danger-prominent-active"?: string | number | boolean | undefined;
|
|
824
|
+
"background-danger-prominent-hover"?: string | number | boolean | undefined;
|
|
825
|
+
"background-danger-subtle"?: string | number | boolean | undefined;
|
|
826
|
+
"background-danger-subtle-active"?: string | number | boolean | undefined;
|
|
827
|
+
"background-danger-subtle-hover"?: string | number | boolean | undefined;
|
|
828
|
+
"background-neutrals"?: string | number | boolean | undefined;
|
|
829
|
+
"background-neutrals-active"?: string | number | boolean | undefined;
|
|
830
|
+
"background-neutrals-container"?: string | number | boolean | undefined;
|
|
831
|
+
"background-neutrals-controls-disabled"?: string | number | boolean | undefined;
|
|
832
|
+
"background-neutrals-disabled"?: string | number | boolean | undefined;
|
|
833
|
+
"background-neutrals-hover"?: string | number | boolean | undefined;
|
|
834
|
+
"background-neutrals-inactive"?: string | number | boolean | undefined;
|
|
835
|
+
"background-neutrals-inactive-hover"?: string | number | boolean | undefined;
|
|
836
|
+
"background-neutrals-inverted"?: string | number | boolean | undefined;
|
|
837
|
+
"background-neutrals-inverted-subtle"?: string | number | boolean | undefined;
|
|
838
|
+
"background-neutrals-page"?: string | number | boolean | undefined;
|
|
839
|
+
"background-neutrals-page-subtle"?: string | number | boolean | undefined;
|
|
840
|
+
"background-neutrals-scrolls"?: string | number | boolean | undefined;
|
|
841
|
+
"background-neutrals-scrolls-hover"?: string | number | boolean | undefined;
|
|
842
|
+
"background-neutrals-subtle"?: string | number | boolean | undefined;
|
|
843
|
+
"background-neutrals-subtle-active"?: string | number | boolean | undefined;
|
|
844
|
+
"background-neutrals-subtle-hover"?: string | number | boolean | undefined;
|
|
845
|
+
"background-primary-prominent"?: string | number | boolean | undefined;
|
|
846
|
+
"background-primary-prominent-active"?: string | number | boolean | undefined;
|
|
847
|
+
"background-primary-prominent-hover"?: string | number | boolean | undefined;
|
|
848
|
+
"background-primary-prominent-selected"?: string | number | boolean | undefined;
|
|
849
|
+
"background-primary-subtle"?: string | number | boolean | undefined;
|
|
850
|
+
"background-primary-subtle-active"?: string | number | boolean | undefined;
|
|
851
|
+
"background-primary-subtle-hover"?: string | number | boolean | undefined;
|
|
852
|
+
"background-primary-subtle-selected"?: string | number | boolean | undefined;
|
|
853
|
+
"background-success"?: string | number | boolean | undefined;
|
|
854
|
+
"background-warning-prominent"?: string | number | boolean | undefined;
|
|
855
|
+
"background-warning-subtle"?: string | number | boolean | undefined;
|
|
856
|
+
"border-danger"?: string | number | boolean | undefined;
|
|
857
|
+
"border-danger-active"?: string | number | boolean | undefined;
|
|
858
|
+
"border-danger-hover"?: string | number | boolean | undefined;
|
|
859
|
+
"border-focus-inner"?: string | number | boolean | undefined;
|
|
860
|
+
"border-focus-middle"?: string | number | boolean | undefined;
|
|
861
|
+
"border-focus-outer"?: string | number | boolean | undefined;
|
|
862
|
+
"border-neutrals"?: string | number | boolean | undefined;
|
|
863
|
+
"border-neutrals-active"?: string | number | boolean | undefined;
|
|
864
|
+
"border-neutrals-controls"?: string | number | boolean | undefined;
|
|
865
|
+
"border-neutrals-controls-disabled"?: string | number | boolean | undefined;
|
|
866
|
+
"border-neutrals-disabled"?: string | number | boolean | undefined;
|
|
867
|
+
"border-neutrals-hover"?: string | number | boolean | undefined;
|
|
868
|
+
"border-neutrals-inverted"?: string | number | boolean | undefined;
|
|
869
|
+
"border-neutrals-subtle"?: string | number | boolean | undefined;
|
|
870
|
+
"border-neutrals-text"?: string | number | boolean | undefined;
|
|
871
|
+
"border-neutrals-text-active"?: string | number | boolean | undefined;
|
|
872
|
+
"border-neutrals-text-hover"?: string | number | boolean | undefined;
|
|
873
|
+
"border-neutrals-text-subtle"?: string | number | boolean | undefined;
|
|
874
|
+
"border-neutrals-text-subtle-active"?: string | number | boolean | undefined;
|
|
875
|
+
"border-neutrals-text-subtle-hover"?: string | number | boolean | undefined;
|
|
876
|
+
"border-neutrals-transparent"?: string | number | boolean | undefined;
|
|
877
|
+
"border-primary"?: string | number | boolean | undefined;
|
|
878
|
+
"border-primary-active"?: string | number | boolean | undefined;
|
|
879
|
+
"border-primary-hover"?: string | number | boolean | undefined;
|
|
880
|
+
"border-primary-inverted"?: string | number | boolean | undefined;
|
|
881
|
+
"border-success"?: string | number | boolean | undefined;
|
|
882
|
+
"border-warning"?: string | number | boolean | undefined;
|
|
883
|
+
"icon-danger"?: string | number | boolean | undefined;
|
|
884
|
+
"icon-danger-active"?: string | number | boolean | undefined;
|
|
885
|
+
"icon-danger-hover"?: string | number | boolean | undefined;
|
|
886
|
+
"icon-danger-inverted"?: string | number | boolean | undefined;
|
|
887
|
+
"icon-neutrals"?: string | number | boolean | undefined;
|
|
888
|
+
"icon-neutrals-disabled"?: string | number | boolean | undefined;
|
|
889
|
+
"icon-neutrals-inactive"?: string | number | boolean | undefined;
|
|
890
|
+
"icon-neutrals-inactive-hover"?: string | number | boolean | undefined;
|
|
891
|
+
"icon-neutrals-inverted"?: string | number | boolean | undefined;
|
|
892
|
+
"icon-neutrals-search"?: string | number | boolean | undefined;
|
|
893
|
+
"icon-neutrals-subtle"?: string | number | boolean | undefined;
|
|
894
|
+
"icon-neutrals-text"?: string | number | boolean | undefined;
|
|
895
|
+
"icon-primary"?: string | number | boolean | undefined;
|
|
896
|
+
"icon-primary-active"?: string | number | boolean | undefined;
|
|
897
|
+
"icon-primary-hover"?: string | number | boolean | undefined;
|
|
898
|
+
"icon-primary-inverted"?: string | number | boolean | undefined;
|
|
899
|
+
"icon-primary-selected"?: string | number | boolean | undefined;
|
|
900
|
+
"icon-success"?: string | number | boolean | undefined;
|
|
901
|
+
"icon-success-inverted"?: string | number | boolean | undefined;
|
|
902
|
+
"icon-warning"?: string | number | boolean | undefined;
|
|
903
|
+
"icon-warning-prominent"?: string | number | boolean | undefined;
|
|
904
|
+
"text-danger"?: string | number | boolean | undefined;
|
|
905
|
+
"text-danger-active"?: string | number | boolean | undefined;
|
|
906
|
+
"text-danger-hover"?: string | number | boolean | undefined;
|
|
907
|
+
"text-danger-inverted"?: string | number | boolean | undefined;
|
|
908
|
+
"text-neutrals"?: string | number | boolean | undefined;
|
|
909
|
+
"text-neutrals-active"?: string | number | boolean | undefined;
|
|
910
|
+
"text-neutrals-disabled"?: string | number | boolean | undefined;
|
|
911
|
+
"text-neutrals-hover"?: string | number | boolean | undefined;
|
|
912
|
+
"text-neutrals-inverted"?: string | number | boolean | undefined;
|
|
913
|
+
"text-neutrals-placeholder"?: string | number | boolean | undefined;
|
|
914
|
+
"text-neutrals-placeholder-only"?: string | number | boolean | undefined;
|
|
915
|
+
"text-neutrals-subtle"?: string | number | boolean | undefined;
|
|
916
|
+
"text-neutrals-subtle-active"?: string | number | boolean | undefined;
|
|
917
|
+
"text-neutrals-subtle-hover"?: string | number | boolean | undefined;
|
|
918
|
+
"text-primary"?: string | number | boolean | undefined;
|
|
919
|
+
"text-primary-active"?: string | number | boolean | undefined;
|
|
920
|
+
"text-primary-hover"?: string | number | boolean | undefined;
|
|
921
|
+
"text-primary-inverted"?: string | number | boolean | undefined;
|
|
922
|
+
"text-primary-inverted-subtle"?: string | number | boolean | undefined;
|
|
923
|
+
"text-primary-selected"?: string | number | boolean | undefined;
|
|
924
|
+
"text-success"?: string | number | boolean | undefined;
|
|
925
|
+
"text-warning"?: string | number | boolean | undefined;
|
|
892
926
|
} | undefined;
|
|
893
927
|
'font-sizes'?: {
|
|
894
928
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -1009,6 +1043,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1009
1043
|
readonly lg: "4px";
|
|
1010
1044
|
};
|
|
1011
1045
|
colors: {
|
|
1046
|
+
readonly black: any;
|
|
1012
1047
|
readonly 'blue-100': any;
|
|
1013
1048
|
readonly 'blue-200': any;
|
|
1014
1049
|
readonly 'blue-300': any;
|
|
@@ -1028,6 +1063,15 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1028
1063
|
readonly 'gray-700': any;
|
|
1029
1064
|
readonly 'gray-800': any;
|
|
1030
1065
|
readonly 'gray-900': any;
|
|
1066
|
+
readonly 'green-100': any;
|
|
1067
|
+
readonly 'green-200': any;
|
|
1068
|
+
readonly 'green-300': any;
|
|
1069
|
+
readonly 'green-400': any;
|
|
1070
|
+
readonly 'green-500': any;
|
|
1071
|
+
readonly 'green-600': any;
|
|
1072
|
+
readonly 'green-700': any;
|
|
1073
|
+
readonly 'green-800': any;
|
|
1074
|
+
readonly 'green-900': any;
|
|
1031
1075
|
readonly 'indigo-100': any;
|
|
1032
1076
|
readonly 'indigo-200': any;
|
|
1033
1077
|
readonly 'indigo-300': any;
|
|
@@ -1046,6 +1090,8 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1046
1090
|
readonly 'red-700': any;
|
|
1047
1091
|
readonly 'red-800': any;
|
|
1048
1092
|
readonly 'red-900': any;
|
|
1093
|
+
readonly transparent: any;
|
|
1094
|
+
readonly white: any;
|
|
1049
1095
|
readonly 'yellow-100': any;
|
|
1050
1096
|
readonly 'yellow-200': any;
|
|
1051
1097
|
readonly 'yellow-300': any;
|
|
@@ -1055,113 +1101,112 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1055
1101
|
readonly 'yellow-700': any;
|
|
1056
1102
|
readonly 'yellow-800': any;
|
|
1057
1103
|
readonly 'yellow-900': any;
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
readonly 'border-warning'?: any;
|
|
1104
|
+
"background-alpha-active"?: any;
|
|
1105
|
+
"background-alpha-hover"?: any;
|
|
1106
|
+
"background-danger-prominent"?: any;
|
|
1107
|
+
"background-danger-prominent-active"?: any;
|
|
1108
|
+
"background-danger-prominent-hover"?: any;
|
|
1109
|
+
"background-danger-subtle"?: any;
|
|
1110
|
+
"background-danger-subtle-active"?: any;
|
|
1111
|
+
"background-danger-subtle-hover"?: any;
|
|
1112
|
+
"background-neutrals"?: any;
|
|
1113
|
+
"background-neutrals-active"?: any;
|
|
1114
|
+
"background-neutrals-container"?: any;
|
|
1115
|
+
"background-neutrals-controls-disabled"?: any;
|
|
1116
|
+
"background-neutrals-disabled"?: any;
|
|
1117
|
+
"background-neutrals-hover"?: any;
|
|
1118
|
+
"background-neutrals-inactive"?: any;
|
|
1119
|
+
"background-neutrals-inactive-hover"?: any;
|
|
1120
|
+
"background-neutrals-inverted"?: any;
|
|
1121
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
1122
|
+
"background-neutrals-page"?: any;
|
|
1123
|
+
"background-neutrals-page-subtle"?: any;
|
|
1124
|
+
"background-neutrals-scrolls"?: any;
|
|
1125
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
1126
|
+
"background-neutrals-subtle"?: any;
|
|
1127
|
+
"background-neutrals-subtle-active"?: any;
|
|
1128
|
+
"background-neutrals-subtle-hover"?: any;
|
|
1129
|
+
"background-primary-prominent"?: any;
|
|
1130
|
+
"background-primary-prominent-active"?: any;
|
|
1131
|
+
"background-primary-prominent-hover"?: any;
|
|
1132
|
+
"background-primary-prominent-selected"?: any;
|
|
1133
|
+
"background-primary-subtle"?: any;
|
|
1134
|
+
"background-primary-subtle-active"?: any;
|
|
1135
|
+
"background-primary-subtle-hover"?: any;
|
|
1136
|
+
"background-primary-subtle-selected"?: any;
|
|
1137
|
+
"background-success"?: any;
|
|
1138
|
+
"background-warning-prominent"?: any;
|
|
1139
|
+
"background-warning-subtle"?: any;
|
|
1140
|
+
"border-danger"?: any;
|
|
1141
|
+
"border-danger-active"?: any;
|
|
1142
|
+
"border-danger-hover"?: any;
|
|
1143
|
+
"border-focus-inner"?: any;
|
|
1144
|
+
"border-focus-middle"?: any;
|
|
1145
|
+
"border-focus-outer"?: any;
|
|
1146
|
+
"border-neutrals"?: any;
|
|
1147
|
+
"border-neutrals-active"?: any;
|
|
1148
|
+
"border-neutrals-controls"?: any;
|
|
1149
|
+
"border-neutrals-controls-disabled"?: any;
|
|
1150
|
+
"border-neutrals-disabled"?: any;
|
|
1151
|
+
"border-neutrals-hover"?: any;
|
|
1152
|
+
"border-neutrals-inverted"?: any;
|
|
1153
|
+
"border-neutrals-subtle"?: any;
|
|
1154
|
+
"border-neutrals-text"?: any;
|
|
1155
|
+
"border-neutrals-text-active"?: any;
|
|
1156
|
+
"border-neutrals-text-hover"?: any;
|
|
1157
|
+
"border-neutrals-text-subtle"?: any;
|
|
1158
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
1159
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
1160
|
+
"border-neutrals-transparent"?: any;
|
|
1161
|
+
"border-primary"?: any;
|
|
1162
|
+
"border-primary-active"?: any;
|
|
1163
|
+
"border-primary-hover"?: any;
|
|
1164
|
+
"border-primary-inverted"?: any;
|
|
1165
|
+
"border-success"?: any;
|
|
1166
|
+
"border-warning"?: any;
|
|
1167
|
+
"icon-danger"?: any;
|
|
1168
|
+
"icon-danger-active"?: any;
|
|
1169
|
+
"icon-danger-hover"?: any;
|
|
1170
|
+
"icon-danger-inverted"?: any;
|
|
1171
|
+
"icon-neutrals"?: any;
|
|
1172
|
+
"icon-neutrals-disabled"?: any;
|
|
1173
|
+
"icon-neutrals-inactive"?: any;
|
|
1174
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
1175
|
+
"icon-neutrals-inverted"?: any;
|
|
1176
|
+
"icon-neutrals-search"?: any;
|
|
1177
|
+
"icon-neutrals-subtle"?: any;
|
|
1178
|
+
"icon-neutrals-text"?: any;
|
|
1179
|
+
"icon-primary"?: any;
|
|
1180
|
+
"icon-primary-active"?: any;
|
|
1181
|
+
"icon-primary-hover"?: any;
|
|
1182
|
+
"icon-primary-inverted"?: any;
|
|
1183
|
+
"icon-primary-selected"?: any;
|
|
1184
|
+
"icon-success"?: any;
|
|
1185
|
+
"icon-success-inverted"?: any;
|
|
1186
|
+
"icon-warning"?: any;
|
|
1187
|
+
"icon-warning-prominent"?: any;
|
|
1188
|
+
"text-danger"?: any;
|
|
1189
|
+
"text-danger-active"?: any;
|
|
1190
|
+
"text-danger-hover"?: any;
|
|
1191
|
+
"text-danger-inverted"?: any;
|
|
1192
|
+
"text-neutrals"?: any;
|
|
1193
|
+
"text-neutrals-active"?: any;
|
|
1194
|
+
"text-neutrals-disabled"?: any;
|
|
1195
|
+
"text-neutrals-hover"?: any;
|
|
1196
|
+
"text-neutrals-inverted"?: any;
|
|
1197
|
+
"text-neutrals-placeholder"?: any;
|
|
1198
|
+
"text-neutrals-placeholder-only"?: any;
|
|
1199
|
+
"text-neutrals-subtle"?: any;
|
|
1200
|
+
"text-neutrals-subtle-active"?: any;
|
|
1201
|
+
"text-neutrals-subtle-hover"?: any;
|
|
1202
|
+
"text-primary"?: any;
|
|
1203
|
+
"text-primary-active"?: any;
|
|
1204
|
+
"text-primary-hover"?: any;
|
|
1205
|
+
"text-primary-inverted"?: any;
|
|
1206
|
+
"text-primary-inverted-subtle"?: any;
|
|
1207
|
+
"text-primary-selected"?: any;
|
|
1208
|
+
"text-success"?: any;
|
|
1209
|
+
"text-warning"?: any;
|
|
1165
1210
|
};
|
|
1166
1211
|
'font-sizes': {
|
|
1167
1212
|
readonly 150: "0.75rem";
|
|
@@ -1471,6 +1516,7 @@ declare const globalCss: <Styles extends {
|
|
|
1471
1516
|
readonly lg: "4px";
|
|
1472
1517
|
};
|
|
1473
1518
|
colors: {
|
|
1519
|
+
readonly black: any;
|
|
1474
1520
|
readonly 'blue-100': any;
|
|
1475
1521
|
readonly 'blue-200': any;
|
|
1476
1522
|
readonly 'blue-300': any;
|
|
@@ -1490,6 +1536,15 @@ declare const globalCss: <Styles extends {
|
|
|
1490
1536
|
readonly 'gray-700': any;
|
|
1491
1537
|
readonly 'gray-800': any;
|
|
1492
1538
|
readonly 'gray-900': any;
|
|
1539
|
+
readonly 'green-100': any;
|
|
1540
|
+
readonly 'green-200': any;
|
|
1541
|
+
readonly 'green-300': any;
|
|
1542
|
+
readonly 'green-400': any;
|
|
1543
|
+
readonly 'green-500': any;
|
|
1544
|
+
readonly 'green-600': any;
|
|
1545
|
+
readonly 'green-700': any;
|
|
1546
|
+
readonly 'green-800': any;
|
|
1547
|
+
readonly 'green-900': any;
|
|
1493
1548
|
readonly 'indigo-100': any;
|
|
1494
1549
|
readonly 'indigo-200': any;
|
|
1495
1550
|
readonly 'indigo-300': any;
|
|
@@ -1508,6 +1563,8 @@ declare const globalCss: <Styles extends {
|
|
|
1508
1563
|
readonly 'red-700': any;
|
|
1509
1564
|
readonly 'red-800': any;
|
|
1510
1565
|
readonly 'red-900': any;
|
|
1566
|
+
readonly transparent: any;
|
|
1567
|
+
readonly white: any;
|
|
1511
1568
|
readonly 'yellow-100': any;
|
|
1512
1569
|
readonly 'yellow-200': any;
|
|
1513
1570
|
readonly 'yellow-300': any;
|
|
@@ -1517,113 +1574,112 @@ declare const globalCss: <Styles extends {
|
|
|
1517
1574
|
readonly 'yellow-700': any;
|
|
1518
1575
|
readonly 'yellow-800': any;
|
|
1519
1576
|
readonly 'yellow-900': any;
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
readonly 'border-warning'?: any;
|
|
1577
|
+
"background-alpha-active"?: any;
|
|
1578
|
+
"background-alpha-hover"?: any;
|
|
1579
|
+
"background-danger-prominent"?: any;
|
|
1580
|
+
"background-danger-prominent-active"?: any;
|
|
1581
|
+
"background-danger-prominent-hover"?: any;
|
|
1582
|
+
"background-danger-subtle"?: any;
|
|
1583
|
+
"background-danger-subtle-active"?: any;
|
|
1584
|
+
"background-danger-subtle-hover"?: any;
|
|
1585
|
+
"background-neutrals"?: any;
|
|
1586
|
+
"background-neutrals-active"?: any;
|
|
1587
|
+
"background-neutrals-container"?: any;
|
|
1588
|
+
"background-neutrals-controls-disabled"?: any;
|
|
1589
|
+
"background-neutrals-disabled"?: any;
|
|
1590
|
+
"background-neutrals-hover"?: any;
|
|
1591
|
+
"background-neutrals-inactive"?: any;
|
|
1592
|
+
"background-neutrals-inactive-hover"?: any;
|
|
1593
|
+
"background-neutrals-inverted"?: any;
|
|
1594
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
1595
|
+
"background-neutrals-page"?: any;
|
|
1596
|
+
"background-neutrals-page-subtle"?: any;
|
|
1597
|
+
"background-neutrals-scrolls"?: any;
|
|
1598
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
1599
|
+
"background-neutrals-subtle"?: any;
|
|
1600
|
+
"background-neutrals-subtle-active"?: any;
|
|
1601
|
+
"background-neutrals-subtle-hover"?: any;
|
|
1602
|
+
"background-primary-prominent"?: any;
|
|
1603
|
+
"background-primary-prominent-active"?: any;
|
|
1604
|
+
"background-primary-prominent-hover"?: any;
|
|
1605
|
+
"background-primary-prominent-selected"?: any;
|
|
1606
|
+
"background-primary-subtle"?: any;
|
|
1607
|
+
"background-primary-subtle-active"?: any;
|
|
1608
|
+
"background-primary-subtle-hover"?: any;
|
|
1609
|
+
"background-primary-subtle-selected"?: any;
|
|
1610
|
+
"background-success"?: any;
|
|
1611
|
+
"background-warning-prominent"?: any;
|
|
1612
|
+
"background-warning-subtle"?: any;
|
|
1613
|
+
"border-danger"?: any;
|
|
1614
|
+
"border-danger-active"?: any;
|
|
1615
|
+
"border-danger-hover"?: any;
|
|
1616
|
+
"border-focus-inner"?: any;
|
|
1617
|
+
"border-focus-middle"?: any;
|
|
1618
|
+
"border-focus-outer"?: any;
|
|
1619
|
+
"border-neutrals"?: any;
|
|
1620
|
+
"border-neutrals-active"?: any;
|
|
1621
|
+
"border-neutrals-controls"?: any;
|
|
1622
|
+
"border-neutrals-controls-disabled"?: any;
|
|
1623
|
+
"border-neutrals-disabled"?: any;
|
|
1624
|
+
"border-neutrals-hover"?: any;
|
|
1625
|
+
"border-neutrals-inverted"?: any;
|
|
1626
|
+
"border-neutrals-subtle"?: any;
|
|
1627
|
+
"border-neutrals-text"?: any;
|
|
1628
|
+
"border-neutrals-text-active"?: any;
|
|
1629
|
+
"border-neutrals-text-hover"?: any;
|
|
1630
|
+
"border-neutrals-text-subtle"?: any;
|
|
1631
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
1632
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
1633
|
+
"border-neutrals-transparent"?: any;
|
|
1634
|
+
"border-primary"?: any;
|
|
1635
|
+
"border-primary-active"?: any;
|
|
1636
|
+
"border-primary-hover"?: any;
|
|
1637
|
+
"border-primary-inverted"?: any;
|
|
1638
|
+
"border-success"?: any;
|
|
1639
|
+
"border-warning"?: any;
|
|
1640
|
+
"icon-danger"?: any;
|
|
1641
|
+
"icon-danger-active"?: any;
|
|
1642
|
+
"icon-danger-hover"?: any;
|
|
1643
|
+
"icon-danger-inverted"?: any;
|
|
1644
|
+
"icon-neutrals"?: any;
|
|
1645
|
+
"icon-neutrals-disabled"?: any;
|
|
1646
|
+
"icon-neutrals-inactive"?: any;
|
|
1647
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
1648
|
+
"icon-neutrals-inverted"?: any;
|
|
1649
|
+
"icon-neutrals-search"?: any;
|
|
1650
|
+
"icon-neutrals-subtle"?: any;
|
|
1651
|
+
"icon-neutrals-text"?: any;
|
|
1652
|
+
"icon-primary"?: any;
|
|
1653
|
+
"icon-primary-active"?: any;
|
|
1654
|
+
"icon-primary-hover"?: any;
|
|
1655
|
+
"icon-primary-inverted"?: any;
|
|
1656
|
+
"icon-primary-selected"?: any;
|
|
1657
|
+
"icon-success"?: any;
|
|
1658
|
+
"icon-success-inverted"?: any;
|
|
1659
|
+
"icon-warning"?: any;
|
|
1660
|
+
"icon-warning-prominent"?: any;
|
|
1661
|
+
"text-danger"?: any;
|
|
1662
|
+
"text-danger-active"?: any;
|
|
1663
|
+
"text-danger-hover"?: any;
|
|
1664
|
+
"text-danger-inverted"?: any;
|
|
1665
|
+
"text-neutrals"?: any;
|
|
1666
|
+
"text-neutrals-active"?: any;
|
|
1667
|
+
"text-neutrals-disabled"?: any;
|
|
1668
|
+
"text-neutrals-hover"?: any;
|
|
1669
|
+
"text-neutrals-inverted"?: any;
|
|
1670
|
+
"text-neutrals-placeholder"?: any;
|
|
1671
|
+
"text-neutrals-placeholder-only"?: any;
|
|
1672
|
+
"text-neutrals-subtle"?: any;
|
|
1673
|
+
"text-neutrals-subtle-active"?: any;
|
|
1674
|
+
"text-neutrals-subtle-hover"?: any;
|
|
1675
|
+
"text-primary"?: any;
|
|
1676
|
+
"text-primary-active"?: any;
|
|
1677
|
+
"text-primary-hover"?: any;
|
|
1678
|
+
"text-primary-inverted"?: any;
|
|
1679
|
+
"text-primary-inverted-subtle"?: any;
|
|
1680
|
+
"text-primary-selected"?: any;
|
|
1681
|
+
"text-success"?: any;
|
|
1682
|
+
"text-warning"?: any;
|
|
1627
1683
|
};
|
|
1628
1684
|
'font-sizes': {
|
|
1629
1685
|
readonly 150: "0.75rem";
|
|
@@ -1915,6 +1971,7 @@ declare const globalCss: <Styles extends {
|
|
|
1915
1971
|
readonly lg: "4px";
|
|
1916
1972
|
};
|
|
1917
1973
|
colors: {
|
|
1974
|
+
readonly black: any;
|
|
1918
1975
|
readonly 'blue-100': any;
|
|
1919
1976
|
readonly 'blue-200': any;
|
|
1920
1977
|
readonly 'blue-300': any;
|
|
@@ -1934,6 +1991,15 @@ declare const globalCss: <Styles extends {
|
|
|
1934
1991
|
readonly 'gray-700': any;
|
|
1935
1992
|
readonly 'gray-800': any;
|
|
1936
1993
|
readonly 'gray-900': any;
|
|
1994
|
+
readonly 'green-100': any;
|
|
1995
|
+
readonly 'green-200': any;
|
|
1996
|
+
readonly 'green-300': any;
|
|
1997
|
+
readonly 'green-400': any;
|
|
1998
|
+
readonly 'green-500': any;
|
|
1999
|
+
readonly 'green-600': any;
|
|
2000
|
+
readonly 'green-700': any;
|
|
2001
|
+
readonly 'green-800': any;
|
|
2002
|
+
readonly 'green-900': any;
|
|
1937
2003
|
readonly 'indigo-100': any;
|
|
1938
2004
|
readonly 'indigo-200': any;
|
|
1939
2005
|
readonly 'indigo-300': any;
|
|
@@ -1952,6 +2018,8 @@ declare const globalCss: <Styles extends {
|
|
|
1952
2018
|
readonly 'red-700': any;
|
|
1953
2019
|
readonly 'red-800': any;
|
|
1954
2020
|
readonly 'red-900': any;
|
|
2021
|
+
readonly transparent: any;
|
|
2022
|
+
readonly white: any;
|
|
1955
2023
|
readonly 'yellow-100': any;
|
|
1956
2024
|
readonly 'yellow-200': any;
|
|
1957
2025
|
readonly 'yellow-300': any;
|
|
@@ -1961,113 +2029,112 @@ declare const globalCss: <Styles extends {
|
|
|
1961
2029
|
readonly 'yellow-700': any;
|
|
1962
2030
|
readonly 'yellow-800': any;
|
|
1963
2031
|
readonly 'yellow-900': any;
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
readonly 'border-warning'?: any;
|
|
2032
|
+
"background-alpha-active"?: any;
|
|
2033
|
+
"background-alpha-hover"?: any;
|
|
2034
|
+
"background-danger-prominent"?: any;
|
|
2035
|
+
"background-danger-prominent-active"?: any;
|
|
2036
|
+
"background-danger-prominent-hover"?: any;
|
|
2037
|
+
"background-danger-subtle"?: any;
|
|
2038
|
+
"background-danger-subtle-active"?: any;
|
|
2039
|
+
"background-danger-subtle-hover"?: any;
|
|
2040
|
+
"background-neutrals"?: any;
|
|
2041
|
+
"background-neutrals-active"?: any;
|
|
2042
|
+
"background-neutrals-container"?: any;
|
|
2043
|
+
"background-neutrals-controls-disabled"?: any;
|
|
2044
|
+
"background-neutrals-disabled"?: any;
|
|
2045
|
+
"background-neutrals-hover"?: any;
|
|
2046
|
+
"background-neutrals-inactive"?: any;
|
|
2047
|
+
"background-neutrals-inactive-hover"?: any;
|
|
2048
|
+
"background-neutrals-inverted"?: any;
|
|
2049
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
2050
|
+
"background-neutrals-page"?: any;
|
|
2051
|
+
"background-neutrals-page-subtle"?: any;
|
|
2052
|
+
"background-neutrals-scrolls"?: any;
|
|
2053
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
2054
|
+
"background-neutrals-subtle"?: any;
|
|
2055
|
+
"background-neutrals-subtle-active"?: any;
|
|
2056
|
+
"background-neutrals-subtle-hover"?: any;
|
|
2057
|
+
"background-primary-prominent"?: any;
|
|
2058
|
+
"background-primary-prominent-active"?: any;
|
|
2059
|
+
"background-primary-prominent-hover"?: any;
|
|
2060
|
+
"background-primary-prominent-selected"?: any;
|
|
2061
|
+
"background-primary-subtle"?: any;
|
|
2062
|
+
"background-primary-subtle-active"?: any;
|
|
2063
|
+
"background-primary-subtle-hover"?: any;
|
|
2064
|
+
"background-primary-subtle-selected"?: any;
|
|
2065
|
+
"background-success"?: any;
|
|
2066
|
+
"background-warning-prominent"?: any;
|
|
2067
|
+
"background-warning-subtle"?: any;
|
|
2068
|
+
"border-danger"?: any;
|
|
2069
|
+
"border-danger-active"?: any;
|
|
2070
|
+
"border-danger-hover"?: any;
|
|
2071
|
+
"border-focus-inner"?: any;
|
|
2072
|
+
"border-focus-middle"?: any;
|
|
2073
|
+
"border-focus-outer"?: any;
|
|
2074
|
+
"border-neutrals"?: any;
|
|
2075
|
+
"border-neutrals-active"?: any;
|
|
2076
|
+
"border-neutrals-controls"?: any;
|
|
2077
|
+
"border-neutrals-controls-disabled"?: any;
|
|
2078
|
+
"border-neutrals-disabled"?: any;
|
|
2079
|
+
"border-neutrals-hover"?: any;
|
|
2080
|
+
"border-neutrals-inverted"?: any;
|
|
2081
|
+
"border-neutrals-subtle"?: any;
|
|
2082
|
+
"border-neutrals-text"?: any;
|
|
2083
|
+
"border-neutrals-text-active"?: any;
|
|
2084
|
+
"border-neutrals-text-hover"?: any;
|
|
2085
|
+
"border-neutrals-text-subtle"?: any;
|
|
2086
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
2087
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
2088
|
+
"border-neutrals-transparent"?: any;
|
|
2089
|
+
"border-primary"?: any;
|
|
2090
|
+
"border-primary-active"?: any;
|
|
2091
|
+
"border-primary-hover"?: any;
|
|
2092
|
+
"border-primary-inverted"?: any;
|
|
2093
|
+
"border-success"?: any;
|
|
2094
|
+
"border-warning"?: any;
|
|
2095
|
+
"icon-danger"?: any;
|
|
2096
|
+
"icon-danger-active"?: any;
|
|
2097
|
+
"icon-danger-hover"?: any;
|
|
2098
|
+
"icon-danger-inverted"?: any;
|
|
2099
|
+
"icon-neutrals"?: any;
|
|
2100
|
+
"icon-neutrals-disabled"?: any;
|
|
2101
|
+
"icon-neutrals-inactive"?: any;
|
|
2102
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
2103
|
+
"icon-neutrals-inverted"?: any;
|
|
2104
|
+
"icon-neutrals-search"?: any;
|
|
2105
|
+
"icon-neutrals-subtle"?: any;
|
|
2106
|
+
"icon-neutrals-text"?: any;
|
|
2107
|
+
"icon-primary"?: any;
|
|
2108
|
+
"icon-primary-active"?: any;
|
|
2109
|
+
"icon-primary-hover"?: any;
|
|
2110
|
+
"icon-primary-inverted"?: any;
|
|
2111
|
+
"icon-primary-selected"?: any;
|
|
2112
|
+
"icon-success"?: any;
|
|
2113
|
+
"icon-success-inverted"?: any;
|
|
2114
|
+
"icon-warning"?: any;
|
|
2115
|
+
"icon-warning-prominent"?: any;
|
|
2116
|
+
"text-danger"?: any;
|
|
2117
|
+
"text-danger-active"?: any;
|
|
2118
|
+
"text-danger-hover"?: any;
|
|
2119
|
+
"text-danger-inverted"?: any;
|
|
2120
|
+
"text-neutrals"?: any;
|
|
2121
|
+
"text-neutrals-active"?: any;
|
|
2122
|
+
"text-neutrals-disabled"?: any;
|
|
2123
|
+
"text-neutrals-hover"?: any;
|
|
2124
|
+
"text-neutrals-inverted"?: any;
|
|
2125
|
+
"text-neutrals-placeholder"?: any;
|
|
2126
|
+
"text-neutrals-placeholder-only"?: any;
|
|
2127
|
+
"text-neutrals-subtle"?: any;
|
|
2128
|
+
"text-neutrals-subtle-active"?: any;
|
|
2129
|
+
"text-neutrals-subtle-hover"?: any;
|
|
2130
|
+
"text-primary"?: any;
|
|
2131
|
+
"text-primary-active"?: any;
|
|
2132
|
+
"text-primary-hover"?: any;
|
|
2133
|
+
"text-primary-inverted"?: any;
|
|
2134
|
+
"text-primary-inverted-subtle"?: any;
|
|
2135
|
+
"text-primary-selected"?: any;
|
|
2136
|
+
"text-success"?: any;
|
|
2137
|
+
"text-warning"?: any;
|
|
2071
2138
|
};
|
|
2072
2139
|
'font-sizes': {
|
|
2073
2140
|
readonly 150: "0.75rem";
|
|
@@ -2360,6 +2427,7 @@ declare const keyframes: (style: {
|
|
|
2360
2427
|
readonly lg: "4px";
|
|
2361
2428
|
};
|
|
2362
2429
|
colors: {
|
|
2430
|
+
readonly black: any;
|
|
2363
2431
|
readonly 'blue-100': any;
|
|
2364
2432
|
readonly 'blue-200': any;
|
|
2365
2433
|
readonly 'blue-300': any;
|
|
@@ -2379,6 +2447,15 @@ declare const keyframes: (style: {
|
|
|
2379
2447
|
readonly 'gray-700': any;
|
|
2380
2448
|
readonly 'gray-800': any;
|
|
2381
2449
|
readonly 'gray-900': any;
|
|
2450
|
+
readonly 'green-100': any;
|
|
2451
|
+
readonly 'green-200': any;
|
|
2452
|
+
readonly 'green-300': any;
|
|
2453
|
+
readonly 'green-400': any;
|
|
2454
|
+
readonly 'green-500': any;
|
|
2455
|
+
readonly 'green-600': any;
|
|
2456
|
+
readonly 'green-700': any;
|
|
2457
|
+
readonly 'green-800': any;
|
|
2458
|
+
readonly 'green-900': any;
|
|
2382
2459
|
readonly 'indigo-100': any;
|
|
2383
2460
|
readonly 'indigo-200': any;
|
|
2384
2461
|
readonly 'indigo-300': any;
|
|
@@ -2397,6 +2474,8 @@ declare const keyframes: (style: {
|
|
|
2397
2474
|
readonly 'red-700': any;
|
|
2398
2475
|
readonly 'red-800': any;
|
|
2399
2476
|
readonly 'red-900': any;
|
|
2477
|
+
readonly transparent: any;
|
|
2478
|
+
readonly white: any;
|
|
2400
2479
|
readonly 'yellow-100': any;
|
|
2401
2480
|
readonly 'yellow-200': any;
|
|
2402
2481
|
readonly 'yellow-300': any;
|
|
@@ -2406,113 +2485,112 @@ declare const keyframes: (style: {
|
|
|
2406
2485
|
readonly 'yellow-700': any;
|
|
2407
2486
|
readonly 'yellow-800': any;
|
|
2408
2487
|
readonly 'yellow-900': any;
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2455
|
-
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
2466
|
-
|
|
2467
|
-
|
|
2468
|
-
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
|
|
2489
|
-
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
|
|
2494
|
-
|
|
2495
|
-
|
|
2496
|
-
|
|
2497
|
-
|
|
2498
|
-
|
|
2499
|
-
|
|
2500
|
-
|
|
2501
|
-
|
|
2502
|
-
|
|
2503
|
-
|
|
2504
|
-
|
|
2505
|
-
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
|
|
2515
|
-
readonly 'border-warning'?: any;
|
|
2488
|
+
"background-alpha-active"?: any;
|
|
2489
|
+
"background-alpha-hover"?: any;
|
|
2490
|
+
"background-danger-prominent"?: any;
|
|
2491
|
+
"background-danger-prominent-active"?: any;
|
|
2492
|
+
"background-danger-prominent-hover"?: any;
|
|
2493
|
+
"background-danger-subtle"?: any;
|
|
2494
|
+
"background-danger-subtle-active"?: any;
|
|
2495
|
+
"background-danger-subtle-hover"?: any;
|
|
2496
|
+
"background-neutrals"?: any;
|
|
2497
|
+
"background-neutrals-active"?: any;
|
|
2498
|
+
"background-neutrals-container"?: any;
|
|
2499
|
+
"background-neutrals-controls-disabled"?: any;
|
|
2500
|
+
"background-neutrals-disabled"?: any;
|
|
2501
|
+
"background-neutrals-hover"?: any;
|
|
2502
|
+
"background-neutrals-inactive"?: any;
|
|
2503
|
+
"background-neutrals-inactive-hover"?: any;
|
|
2504
|
+
"background-neutrals-inverted"?: any;
|
|
2505
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
2506
|
+
"background-neutrals-page"?: any;
|
|
2507
|
+
"background-neutrals-page-subtle"?: any;
|
|
2508
|
+
"background-neutrals-scrolls"?: any;
|
|
2509
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
2510
|
+
"background-neutrals-subtle"?: any;
|
|
2511
|
+
"background-neutrals-subtle-active"?: any;
|
|
2512
|
+
"background-neutrals-subtle-hover"?: any;
|
|
2513
|
+
"background-primary-prominent"?: any;
|
|
2514
|
+
"background-primary-prominent-active"?: any;
|
|
2515
|
+
"background-primary-prominent-hover"?: any;
|
|
2516
|
+
"background-primary-prominent-selected"?: any;
|
|
2517
|
+
"background-primary-subtle"?: any;
|
|
2518
|
+
"background-primary-subtle-active"?: any;
|
|
2519
|
+
"background-primary-subtle-hover"?: any;
|
|
2520
|
+
"background-primary-subtle-selected"?: any;
|
|
2521
|
+
"background-success"?: any;
|
|
2522
|
+
"background-warning-prominent"?: any;
|
|
2523
|
+
"background-warning-subtle"?: any;
|
|
2524
|
+
"border-danger"?: any;
|
|
2525
|
+
"border-danger-active"?: any;
|
|
2526
|
+
"border-danger-hover"?: any;
|
|
2527
|
+
"border-focus-inner"?: any;
|
|
2528
|
+
"border-focus-middle"?: any;
|
|
2529
|
+
"border-focus-outer"?: any;
|
|
2530
|
+
"border-neutrals"?: any;
|
|
2531
|
+
"border-neutrals-active"?: any;
|
|
2532
|
+
"border-neutrals-controls"?: any;
|
|
2533
|
+
"border-neutrals-controls-disabled"?: any;
|
|
2534
|
+
"border-neutrals-disabled"?: any;
|
|
2535
|
+
"border-neutrals-hover"?: any;
|
|
2536
|
+
"border-neutrals-inverted"?: any;
|
|
2537
|
+
"border-neutrals-subtle"?: any;
|
|
2538
|
+
"border-neutrals-text"?: any;
|
|
2539
|
+
"border-neutrals-text-active"?: any;
|
|
2540
|
+
"border-neutrals-text-hover"?: any;
|
|
2541
|
+
"border-neutrals-text-subtle"?: any;
|
|
2542
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
2543
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
2544
|
+
"border-neutrals-transparent"?: any;
|
|
2545
|
+
"border-primary"?: any;
|
|
2546
|
+
"border-primary-active"?: any;
|
|
2547
|
+
"border-primary-hover"?: any;
|
|
2548
|
+
"border-primary-inverted"?: any;
|
|
2549
|
+
"border-success"?: any;
|
|
2550
|
+
"border-warning"?: any;
|
|
2551
|
+
"icon-danger"?: any;
|
|
2552
|
+
"icon-danger-active"?: any;
|
|
2553
|
+
"icon-danger-hover"?: any;
|
|
2554
|
+
"icon-danger-inverted"?: any;
|
|
2555
|
+
"icon-neutrals"?: any;
|
|
2556
|
+
"icon-neutrals-disabled"?: any;
|
|
2557
|
+
"icon-neutrals-inactive"?: any;
|
|
2558
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
2559
|
+
"icon-neutrals-inverted"?: any;
|
|
2560
|
+
"icon-neutrals-search"?: any;
|
|
2561
|
+
"icon-neutrals-subtle"?: any;
|
|
2562
|
+
"icon-neutrals-text"?: any;
|
|
2563
|
+
"icon-primary"?: any;
|
|
2564
|
+
"icon-primary-active"?: any;
|
|
2565
|
+
"icon-primary-hover"?: any;
|
|
2566
|
+
"icon-primary-inverted"?: any;
|
|
2567
|
+
"icon-primary-selected"?: any;
|
|
2568
|
+
"icon-success"?: any;
|
|
2569
|
+
"icon-success-inverted"?: any;
|
|
2570
|
+
"icon-warning"?: any;
|
|
2571
|
+
"icon-warning-prominent"?: any;
|
|
2572
|
+
"text-danger"?: any;
|
|
2573
|
+
"text-danger-active"?: any;
|
|
2574
|
+
"text-danger-hover"?: any;
|
|
2575
|
+
"text-danger-inverted"?: any;
|
|
2576
|
+
"text-neutrals"?: any;
|
|
2577
|
+
"text-neutrals-active"?: any;
|
|
2578
|
+
"text-neutrals-disabled"?: any;
|
|
2579
|
+
"text-neutrals-hover"?: any;
|
|
2580
|
+
"text-neutrals-inverted"?: any;
|
|
2581
|
+
"text-neutrals-placeholder"?: any;
|
|
2582
|
+
"text-neutrals-placeholder-only"?: any;
|
|
2583
|
+
"text-neutrals-subtle"?: any;
|
|
2584
|
+
"text-neutrals-subtle-active"?: any;
|
|
2585
|
+
"text-neutrals-subtle-hover"?: any;
|
|
2586
|
+
"text-primary"?: any;
|
|
2587
|
+
"text-primary-active"?: any;
|
|
2588
|
+
"text-primary-hover"?: any;
|
|
2589
|
+
"text-primary-inverted"?: any;
|
|
2590
|
+
"text-primary-inverted-subtle"?: any;
|
|
2591
|
+
"text-primary-selected"?: any;
|
|
2592
|
+
"text-success"?: any;
|
|
2593
|
+
"text-warning"?: any;
|
|
2516
2594
|
};
|
|
2517
2595
|
'font-sizes': {
|
|
2518
2596
|
readonly 150: "0.75rem";
|
|
@@ -2966,7 +3044,7 @@ declare type ThemeMap = typeof themeMap;
|
|
|
2966
3044
|
|
|
2967
3045
|
interface Theme {
|
|
2968
3046
|
'border-widths': typeof Tokens.borderWidths;
|
|
2969
|
-
colors: typeof Tokens.colors;
|
|
3047
|
+
colors: typeof Tokens.colors & AliasColors;
|
|
2970
3048
|
'font-sizes': typeof Tokens.fontSizes;
|
|
2971
3049
|
radii: typeof Tokens.radii;
|
|
2972
3050
|
shadows: typeof Tokens.shadows;
|
|
@@ -3027,6 +3105,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3027
3105
|
readonly lg: "4px";
|
|
3028
3106
|
};
|
|
3029
3107
|
colors: {
|
|
3108
|
+
readonly black: any;
|
|
3030
3109
|
readonly 'blue-100': any;
|
|
3031
3110
|
readonly 'blue-200': any;
|
|
3032
3111
|
readonly 'blue-300': any;
|
|
@@ -3046,6 +3125,15 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3046
3125
|
readonly 'gray-700': any;
|
|
3047
3126
|
readonly 'gray-800': any;
|
|
3048
3127
|
readonly 'gray-900': any;
|
|
3128
|
+
readonly 'green-100': any;
|
|
3129
|
+
readonly 'green-200': any;
|
|
3130
|
+
readonly 'green-300': any;
|
|
3131
|
+
readonly 'green-400': any;
|
|
3132
|
+
readonly 'green-500': any;
|
|
3133
|
+
readonly 'green-600': any;
|
|
3134
|
+
readonly 'green-700': any;
|
|
3135
|
+
readonly 'green-800': any;
|
|
3136
|
+
readonly 'green-900': any;
|
|
3049
3137
|
readonly 'indigo-100': any;
|
|
3050
3138
|
readonly 'indigo-200': any;
|
|
3051
3139
|
readonly 'indigo-300': any;
|
|
@@ -3064,6 +3152,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3064
3152
|
readonly 'red-700': any;
|
|
3065
3153
|
readonly 'red-800': any;
|
|
3066
3154
|
readonly 'red-900': any;
|
|
3155
|
+
readonly transparent: any;
|
|
3156
|
+
readonly white: any;
|
|
3067
3157
|
readonly 'yellow-100': any;
|
|
3068
3158
|
readonly 'yellow-200': any;
|
|
3069
3159
|
readonly 'yellow-300': any;
|
|
@@ -3073,113 +3163,112 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3073
3163
|
readonly 'yellow-700': any;
|
|
3074
3164
|
readonly 'yellow-800': any;
|
|
3075
3165
|
readonly 'yellow-900': any;
|
|
3076
|
-
|
|
3077
|
-
|
|
3078
|
-
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3089
|
-
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
|
|
3093
|
-
|
|
3094
|
-
|
|
3095
|
-
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
|
|
3102
|
-
|
|
3103
|
-
|
|
3104
|
-
|
|
3105
|
-
|
|
3106
|
-
|
|
3107
|
-
|
|
3108
|
-
|
|
3109
|
-
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
|
|
3113
|
-
|
|
3114
|
-
|
|
3115
|
-
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3124
|
-
|
|
3125
|
-
|
|
3126
|
-
|
|
3127
|
-
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
|
|
3131
|
-
|
|
3132
|
-
|
|
3133
|
-
|
|
3134
|
-
|
|
3135
|
-
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3139
|
-
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3143
|
-
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3147
|
-
|
|
3148
|
-
|
|
3149
|
-
|
|
3150
|
-
|
|
3151
|
-
|
|
3152
|
-
|
|
3153
|
-
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3157
|
-
|
|
3158
|
-
|
|
3159
|
-
|
|
3160
|
-
|
|
3161
|
-
|
|
3162
|
-
|
|
3163
|
-
|
|
3164
|
-
|
|
3165
|
-
|
|
3166
|
-
|
|
3167
|
-
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3171
|
-
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3175
|
-
|
|
3176
|
-
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
|
|
3180
|
-
|
|
3181
|
-
|
|
3182
|
-
readonly 'border-warning'?: any;
|
|
3166
|
+
"background-alpha-active"?: any;
|
|
3167
|
+
"background-alpha-hover"?: any;
|
|
3168
|
+
"background-danger-prominent"?: any;
|
|
3169
|
+
"background-danger-prominent-active"?: any;
|
|
3170
|
+
"background-danger-prominent-hover"?: any;
|
|
3171
|
+
"background-danger-subtle"?: any;
|
|
3172
|
+
"background-danger-subtle-active"?: any;
|
|
3173
|
+
"background-danger-subtle-hover"?: any;
|
|
3174
|
+
"background-neutrals"?: any;
|
|
3175
|
+
"background-neutrals-active"?: any;
|
|
3176
|
+
"background-neutrals-container"?: any;
|
|
3177
|
+
"background-neutrals-controls-disabled"?: any;
|
|
3178
|
+
"background-neutrals-disabled"?: any;
|
|
3179
|
+
"background-neutrals-hover"?: any;
|
|
3180
|
+
"background-neutrals-inactive"?: any;
|
|
3181
|
+
"background-neutrals-inactive-hover"?: any;
|
|
3182
|
+
"background-neutrals-inverted"?: any;
|
|
3183
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
3184
|
+
"background-neutrals-page"?: any;
|
|
3185
|
+
"background-neutrals-page-subtle"?: any;
|
|
3186
|
+
"background-neutrals-scrolls"?: any;
|
|
3187
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
3188
|
+
"background-neutrals-subtle"?: any;
|
|
3189
|
+
"background-neutrals-subtle-active"?: any;
|
|
3190
|
+
"background-neutrals-subtle-hover"?: any;
|
|
3191
|
+
"background-primary-prominent"?: any;
|
|
3192
|
+
"background-primary-prominent-active"?: any;
|
|
3193
|
+
"background-primary-prominent-hover"?: any;
|
|
3194
|
+
"background-primary-prominent-selected"?: any;
|
|
3195
|
+
"background-primary-subtle"?: any;
|
|
3196
|
+
"background-primary-subtle-active"?: any;
|
|
3197
|
+
"background-primary-subtle-hover"?: any;
|
|
3198
|
+
"background-primary-subtle-selected"?: any;
|
|
3199
|
+
"background-success"?: any;
|
|
3200
|
+
"background-warning-prominent"?: any;
|
|
3201
|
+
"background-warning-subtle"?: any;
|
|
3202
|
+
"border-danger"?: any;
|
|
3203
|
+
"border-danger-active"?: any;
|
|
3204
|
+
"border-danger-hover"?: any;
|
|
3205
|
+
"border-focus-inner"?: any;
|
|
3206
|
+
"border-focus-middle"?: any;
|
|
3207
|
+
"border-focus-outer"?: any;
|
|
3208
|
+
"border-neutrals"?: any;
|
|
3209
|
+
"border-neutrals-active"?: any;
|
|
3210
|
+
"border-neutrals-controls"?: any;
|
|
3211
|
+
"border-neutrals-controls-disabled"?: any;
|
|
3212
|
+
"border-neutrals-disabled"?: any;
|
|
3213
|
+
"border-neutrals-hover"?: any;
|
|
3214
|
+
"border-neutrals-inverted"?: any;
|
|
3215
|
+
"border-neutrals-subtle"?: any;
|
|
3216
|
+
"border-neutrals-text"?: any;
|
|
3217
|
+
"border-neutrals-text-active"?: any;
|
|
3218
|
+
"border-neutrals-text-hover"?: any;
|
|
3219
|
+
"border-neutrals-text-subtle"?: any;
|
|
3220
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
3221
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
3222
|
+
"border-neutrals-transparent"?: any;
|
|
3223
|
+
"border-primary"?: any;
|
|
3224
|
+
"border-primary-active"?: any;
|
|
3225
|
+
"border-primary-hover"?: any;
|
|
3226
|
+
"border-primary-inverted"?: any;
|
|
3227
|
+
"border-success"?: any;
|
|
3228
|
+
"border-warning"?: any;
|
|
3229
|
+
"icon-danger"?: any;
|
|
3230
|
+
"icon-danger-active"?: any;
|
|
3231
|
+
"icon-danger-hover"?: any;
|
|
3232
|
+
"icon-danger-inverted"?: any;
|
|
3233
|
+
"icon-neutrals"?: any;
|
|
3234
|
+
"icon-neutrals-disabled"?: any;
|
|
3235
|
+
"icon-neutrals-inactive"?: any;
|
|
3236
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
3237
|
+
"icon-neutrals-inverted"?: any;
|
|
3238
|
+
"icon-neutrals-search"?: any;
|
|
3239
|
+
"icon-neutrals-subtle"?: any;
|
|
3240
|
+
"icon-neutrals-text"?: any;
|
|
3241
|
+
"icon-primary"?: any;
|
|
3242
|
+
"icon-primary-active"?: any;
|
|
3243
|
+
"icon-primary-hover"?: any;
|
|
3244
|
+
"icon-primary-inverted"?: any;
|
|
3245
|
+
"icon-primary-selected"?: any;
|
|
3246
|
+
"icon-success"?: any;
|
|
3247
|
+
"icon-success-inverted"?: any;
|
|
3248
|
+
"icon-warning"?: any;
|
|
3249
|
+
"icon-warning-prominent"?: any;
|
|
3250
|
+
"text-danger"?: any;
|
|
3251
|
+
"text-danger-active"?: any;
|
|
3252
|
+
"text-danger-hover"?: any;
|
|
3253
|
+
"text-danger-inverted"?: any;
|
|
3254
|
+
"text-neutrals"?: any;
|
|
3255
|
+
"text-neutrals-active"?: any;
|
|
3256
|
+
"text-neutrals-disabled"?: any;
|
|
3257
|
+
"text-neutrals-hover"?: any;
|
|
3258
|
+
"text-neutrals-inverted"?: any;
|
|
3259
|
+
"text-neutrals-placeholder"?: any;
|
|
3260
|
+
"text-neutrals-placeholder-only"?: any;
|
|
3261
|
+
"text-neutrals-subtle"?: any;
|
|
3262
|
+
"text-neutrals-subtle-active"?: any;
|
|
3263
|
+
"text-neutrals-subtle-hover"?: any;
|
|
3264
|
+
"text-primary"?: any;
|
|
3265
|
+
"text-primary-active"?: any;
|
|
3266
|
+
"text-primary-hover"?: any;
|
|
3267
|
+
"text-primary-inverted"?: any;
|
|
3268
|
+
"text-primary-inverted-subtle"?: any;
|
|
3269
|
+
"text-primary-selected"?: any;
|
|
3270
|
+
"text-success"?: any;
|
|
3271
|
+
"text-warning"?: any;
|
|
3183
3272
|
};
|
|
3184
3273
|
'font-sizes': {
|
|
3185
3274
|
readonly 150: "0.75rem";
|
|
@@ -3473,6 +3562,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3473
3562
|
readonly lg: "4px";
|
|
3474
3563
|
};
|
|
3475
3564
|
colors: {
|
|
3565
|
+
readonly black: any;
|
|
3476
3566
|
readonly 'blue-100': any;
|
|
3477
3567
|
readonly 'blue-200': any;
|
|
3478
3568
|
readonly 'blue-300': any;
|
|
@@ -3492,6 +3582,15 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3492
3582
|
readonly 'gray-700': any;
|
|
3493
3583
|
readonly 'gray-800': any;
|
|
3494
3584
|
readonly 'gray-900': any;
|
|
3585
|
+
readonly 'green-100': any;
|
|
3586
|
+
readonly 'green-200': any;
|
|
3587
|
+
readonly 'green-300': any;
|
|
3588
|
+
readonly 'green-400': any;
|
|
3589
|
+
readonly 'green-500': any;
|
|
3590
|
+
readonly 'green-600': any;
|
|
3591
|
+
readonly 'green-700': any;
|
|
3592
|
+
readonly 'green-800': any;
|
|
3593
|
+
readonly 'green-900': any;
|
|
3495
3594
|
readonly 'indigo-100': any;
|
|
3496
3595
|
readonly 'indigo-200': any;
|
|
3497
3596
|
readonly 'indigo-300': any;
|
|
@@ -3510,6 +3609,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3510
3609
|
readonly 'red-700': any;
|
|
3511
3610
|
readonly 'red-800': any;
|
|
3512
3611
|
readonly 'red-900': any;
|
|
3612
|
+
readonly transparent: any;
|
|
3613
|
+
readonly white: any;
|
|
3513
3614
|
readonly 'yellow-100': any;
|
|
3514
3615
|
readonly 'yellow-200': any;
|
|
3515
3616
|
readonly 'yellow-300': any;
|
|
@@ -3519,113 +3620,112 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3519
3620
|
readonly 'yellow-700': any;
|
|
3520
3621
|
readonly 'yellow-800': any;
|
|
3521
3622
|
readonly 'yellow-900': any;
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3528
|
-
|
|
3529
|
-
|
|
3530
|
-
|
|
3531
|
-
|
|
3532
|
-
|
|
3533
|
-
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3539
|
-
|
|
3540
|
-
|
|
3541
|
-
|
|
3542
|
-
|
|
3543
|
-
|
|
3544
|
-
|
|
3545
|
-
|
|
3546
|
-
|
|
3547
|
-
|
|
3548
|
-
|
|
3549
|
-
|
|
3550
|
-
|
|
3551
|
-
|
|
3552
|
-
|
|
3553
|
-
|
|
3554
|
-
|
|
3555
|
-
|
|
3556
|
-
|
|
3557
|
-
|
|
3558
|
-
|
|
3559
|
-
|
|
3560
|
-
|
|
3561
|
-
|
|
3562
|
-
|
|
3563
|
-
|
|
3564
|
-
|
|
3565
|
-
|
|
3566
|
-
|
|
3567
|
-
|
|
3568
|
-
|
|
3569
|
-
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
3611
|
-
|
|
3612
|
-
|
|
3613
|
-
|
|
3614
|
-
|
|
3615
|
-
|
|
3616
|
-
|
|
3617
|
-
|
|
3618
|
-
|
|
3619
|
-
|
|
3620
|
-
|
|
3621
|
-
|
|
3622
|
-
|
|
3623
|
-
|
|
3624
|
-
|
|
3625
|
-
|
|
3626
|
-
|
|
3627
|
-
|
|
3628
|
-
readonly 'border-warning'?: any;
|
|
3623
|
+
"background-alpha-active"?: any;
|
|
3624
|
+
"background-alpha-hover"?: any;
|
|
3625
|
+
"background-danger-prominent"?: any;
|
|
3626
|
+
"background-danger-prominent-active"?: any;
|
|
3627
|
+
"background-danger-prominent-hover"?: any;
|
|
3628
|
+
"background-danger-subtle"?: any;
|
|
3629
|
+
"background-danger-subtle-active"?: any;
|
|
3630
|
+
"background-danger-subtle-hover"?: any;
|
|
3631
|
+
"background-neutrals"?: any;
|
|
3632
|
+
"background-neutrals-active"?: any;
|
|
3633
|
+
"background-neutrals-container"?: any;
|
|
3634
|
+
"background-neutrals-controls-disabled"?: any;
|
|
3635
|
+
"background-neutrals-disabled"?: any;
|
|
3636
|
+
"background-neutrals-hover"?: any;
|
|
3637
|
+
"background-neutrals-inactive"?: any;
|
|
3638
|
+
"background-neutrals-inactive-hover"?: any;
|
|
3639
|
+
"background-neutrals-inverted"?: any;
|
|
3640
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
3641
|
+
"background-neutrals-page"?: any;
|
|
3642
|
+
"background-neutrals-page-subtle"?: any;
|
|
3643
|
+
"background-neutrals-scrolls"?: any;
|
|
3644
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
3645
|
+
"background-neutrals-subtle"?: any;
|
|
3646
|
+
"background-neutrals-subtle-active"?: any;
|
|
3647
|
+
"background-neutrals-subtle-hover"?: any;
|
|
3648
|
+
"background-primary-prominent"?: any;
|
|
3649
|
+
"background-primary-prominent-active"?: any;
|
|
3650
|
+
"background-primary-prominent-hover"?: any;
|
|
3651
|
+
"background-primary-prominent-selected"?: any;
|
|
3652
|
+
"background-primary-subtle"?: any;
|
|
3653
|
+
"background-primary-subtle-active"?: any;
|
|
3654
|
+
"background-primary-subtle-hover"?: any;
|
|
3655
|
+
"background-primary-subtle-selected"?: any;
|
|
3656
|
+
"background-success"?: any;
|
|
3657
|
+
"background-warning-prominent"?: any;
|
|
3658
|
+
"background-warning-subtle"?: any;
|
|
3659
|
+
"border-danger"?: any;
|
|
3660
|
+
"border-danger-active"?: any;
|
|
3661
|
+
"border-danger-hover"?: any;
|
|
3662
|
+
"border-focus-inner"?: any;
|
|
3663
|
+
"border-focus-middle"?: any;
|
|
3664
|
+
"border-focus-outer"?: any;
|
|
3665
|
+
"border-neutrals"?: any;
|
|
3666
|
+
"border-neutrals-active"?: any;
|
|
3667
|
+
"border-neutrals-controls"?: any;
|
|
3668
|
+
"border-neutrals-controls-disabled"?: any;
|
|
3669
|
+
"border-neutrals-disabled"?: any;
|
|
3670
|
+
"border-neutrals-hover"?: any;
|
|
3671
|
+
"border-neutrals-inverted"?: any;
|
|
3672
|
+
"border-neutrals-subtle"?: any;
|
|
3673
|
+
"border-neutrals-text"?: any;
|
|
3674
|
+
"border-neutrals-text-active"?: any;
|
|
3675
|
+
"border-neutrals-text-hover"?: any;
|
|
3676
|
+
"border-neutrals-text-subtle"?: any;
|
|
3677
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
3678
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
3679
|
+
"border-neutrals-transparent"?: any;
|
|
3680
|
+
"border-primary"?: any;
|
|
3681
|
+
"border-primary-active"?: any;
|
|
3682
|
+
"border-primary-hover"?: any;
|
|
3683
|
+
"border-primary-inverted"?: any;
|
|
3684
|
+
"border-success"?: any;
|
|
3685
|
+
"border-warning"?: any;
|
|
3686
|
+
"icon-danger"?: any;
|
|
3687
|
+
"icon-danger-active"?: any;
|
|
3688
|
+
"icon-danger-hover"?: any;
|
|
3689
|
+
"icon-danger-inverted"?: any;
|
|
3690
|
+
"icon-neutrals"?: any;
|
|
3691
|
+
"icon-neutrals-disabled"?: any;
|
|
3692
|
+
"icon-neutrals-inactive"?: any;
|
|
3693
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
3694
|
+
"icon-neutrals-inverted"?: any;
|
|
3695
|
+
"icon-neutrals-search"?: any;
|
|
3696
|
+
"icon-neutrals-subtle"?: any;
|
|
3697
|
+
"icon-neutrals-text"?: any;
|
|
3698
|
+
"icon-primary"?: any;
|
|
3699
|
+
"icon-primary-active"?: any;
|
|
3700
|
+
"icon-primary-hover"?: any;
|
|
3701
|
+
"icon-primary-inverted"?: any;
|
|
3702
|
+
"icon-primary-selected"?: any;
|
|
3703
|
+
"icon-success"?: any;
|
|
3704
|
+
"icon-success-inverted"?: any;
|
|
3705
|
+
"icon-warning"?: any;
|
|
3706
|
+
"icon-warning-prominent"?: any;
|
|
3707
|
+
"text-danger"?: any;
|
|
3708
|
+
"text-danger-active"?: any;
|
|
3709
|
+
"text-danger-hover"?: any;
|
|
3710
|
+
"text-danger-inverted"?: any;
|
|
3711
|
+
"text-neutrals"?: any;
|
|
3712
|
+
"text-neutrals-active"?: any;
|
|
3713
|
+
"text-neutrals-disabled"?: any;
|
|
3714
|
+
"text-neutrals-hover"?: any;
|
|
3715
|
+
"text-neutrals-inverted"?: any;
|
|
3716
|
+
"text-neutrals-placeholder"?: any;
|
|
3717
|
+
"text-neutrals-placeholder-only"?: any;
|
|
3718
|
+
"text-neutrals-subtle"?: any;
|
|
3719
|
+
"text-neutrals-subtle-active"?: any;
|
|
3720
|
+
"text-neutrals-subtle-hover"?: any;
|
|
3721
|
+
"text-primary"?: any;
|
|
3722
|
+
"text-primary-active"?: any;
|
|
3723
|
+
"text-primary-hover"?: any;
|
|
3724
|
+
"text-primary-inverted"?: any;
|
|
3725
|
+
"text-primary-inverted-subtle"?: any;
|
|
3726
|
+
"text-primary-selected"?: any;
|
|
3727
|
+
"text-success"?: any;
|
|
3728
|
+
"text-warning"?: any;
|
|
3629
3729
|
};
|
|
3630
3730
|
'font-sizes': {
|
|
3631
3731
|
readonly 150: "0.75rem";
|