@neo4j-ndl/base 3.7.35 → 4.0.0-alpha.0.14b0ae9
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/index.js +1 -2
- package/lib/cjs/index.js.map +1 -1
- package/lib/cjs/tailwind-preset.config.js +38 -5
- package/lib/cjs/tailwind-preset.config.js.map +1 -1
- package/lib/cjs/tailwindTheme.mjs +16 -66
- package/lib/cjs/tailwindTheme.mjs.map +1 -1
- package/lib/cjs/tokens/js/tokens-esm.js +476 -463
- package/lib/cjs/tokens/js/tokens-esm.js.map +1 -1
- package/lib/cjs/tokens/js/tokens.js +479 -464
- package/lib/cjs/tokens/js/tokens.js.map +1 -1
- package/lib/esm/index.js +1 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/tailwind-preset.config.js +37 -5
- package/lib/esm/tailwind-preset.config.js.map +1 -1
- package/lib/esm/tailwindTheme.mjs +16 -64
- package/lib/esm/tailwindTheme.mjs.map +1 -1
- package/lib/esm/tokens/js/tokens-esm.js +476 -463
- package/lib/esm/tokens/js/tokens-esm.js.map +1 -1
- package/lib/esm/tokens/js/tokens.js +477 -465
- package/lib/esm/tokens/js/tokens.js.map +1 -1
- package/lib/neo4j-ds-styles.css +42380 -97054
- package/lib/tokens/css/tokens.css +435 -419
- package/lib/types/index.d.ts +1 -2
- package/lib/types/tokens/js/tokens-esm.d.ts +243 -236
- package/lib/types/tokens/js/tokens.d.ts +713 -704
- package/package.json +8 -6
- package/lib/cjs/tokens/js/storybook-design-token.js +0 -3969
- package/lib/cjs/tokens/js/storybook-design-token.js.map +0 -1
- package/lib/cjs/typescale.js +0 -147
- package/lib/cjs/typescale.js.map +0 -1
- package/lib/esm/tokens/js/storybook-design-token.js +0 -3966
- package/lib/esm/tokens/js/storybook-design-token.js.map +0 -1
- package/lib/esm/typescale.js +0 -144
- package/lib/esm/typescale.js.map +0 -1
- package/lib/tokens/js/tokens-raw.js +0 -9291
- package/lib/tokens/js/tokens.js +0 -637
- package/lib/tokens/scss/tokens.scss +0 -427
- package/lib/types/tokens/js/storybook-design-token.d.ts +0 -126
- package/lib/types/typescale.d.ts +0 -93
package/lib/types/index.d.ts
CHANGED
|
@@ -19,7 +19,6 @@
|
|
|
19
19
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
20
|
*/
|
|
21
21
|
export * from './typings';
|
|
22
|
-
export * from './tokens/js/tokens
|
|
23
|
-
export * from './typescale';
|
|
22
|
+
export * from './tokens/js/tokens';
|
|
24
23
|
export * from './tailwindTheme.mjs';
|
|
25
24
|
export * from './tailwind-preset.config';
|
|
@@ -20,170 +20,128 @@
|
|
|
20
20
|
*/
|
|
21
21
|
|
|
22
22
|
export namespace tokens {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
quick: string;
|
|
30
|
-
slow: string;
|
|
31
|
-
};
|
|
32
|
-
"timing-function": {
|
|
33
|
-
default: string;
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
namespace stripped {
|
|
37
|
-
let quick: string;
|
|
38
|
-
let slow: string;
|
|
39
|
-
}
|
|
40
|
-
namespace full {
|
|
41
|
-
let quick_1: string;
|
|
42
|
-
export { quick_1 as quick };
|
|
43
|
-
let slow_1: string;
|
|
44
|
-
export { slow_1 as slow };
|
|
45
|
-
}
|
|
46
|
-
}
|
|
47
|
-
let borderRadius: {
|
|
48
|
-
none: string;
|
|
23
|
+
let breakpoint: {
|
|
24
|
+
"5xs": string;
|
|
25
|
+
"4xs": string;
|
|
26
|
+
"3xs": string;
|
|
27
|
+
"2xs": string;
|
|
28
|
+
xs: string;
|
|
49
29
|
sm: string;
|
|
50
30
|
md: string;
|
|
51
31
|
lg: string;
|
|
52
32
|
xl: string;
|
|
53
|
-
"1xl": string;
|
|
54
33
|
"2xl": string;
|
|
55
34
|
"3xl": string;
|
|
56
|
-
"4xl": string;
|
|
57
|
-
"5xl": string;
|
|
58
|
-
full: string;
|
|
59
35
|
};
|
|
60
|
-
namespace
|
|
61
|
-
namespace
|
|
62
|
-
let
|
|
63
|
-
let
|
|
64
|
-
let
|
|
36
|
+
namespace code {
|
|
37
|
+
namespace light {
|
|
38
|
+
export let comment: string;
|
|
39
|
+
export let keyword: string;
|
|
40
|
+
export let keywordLiteral: string;
|
|
41
|
+
export let operator: string;
|
|
42
|
+
export let label: string;
|
|
43
|
+
export let predicateFunction: string;
|
|
44
|
+
let _function: string;
|
|
45
|
+
export { _function as function };
|
|
46
|
+
export let procedure: string;
|
|
47
|
+
export let stringLiteral: string;
|
|
48
|
+
export let numberLiteral: string;
|
|
49
|
+
export let booleanLiteral: string;
|
|
50
|
+
export let paramValue: string;
|
|
51
|
+
export let property: string;
|
|
52
|
+
}
|
|
53
|
+
namespace dark {
|
|
54
|
+
let comment_1: string;
|
|
55
|
+
export { comment_1 as comment };
|
|
56
|
+
let keyword_1: string;
|
|
57
|
+
export { keyword_1 as keyword };
|
|
58
|
+
let keywordLiteral_1: string;
|
|
59
|
+
export { keywordLiteral_1 as keywordLiteral };
|
|
60
|
+
let operator_1: string;
|
|
61
|
+
export { operator_1 as operator };
|
|
62
|
+
let label_1: string;
|
|
63
|
+
export { label_1 as label };
|
|
64
|
+
let predicateFunction_1: string;
|
|
65
|
+
export { predicateFunction_1 as predicateFunction };
|
|
66
|
+
let _function_1: string;
|
|
67
|
+
export { _function_1 as function };
|
|
68
|
+
let procedure_1: string;
|
|
69
|
+
export { procedure_1 as procedure };
|
|
70
|
+
let stringLiteral_1: string;
|
|
71
|
+
export { stringLiteral_1 as stringLiteral };
|
|
72
|
+
let numberLiteral_1: string;
|
|
73
|
+
export { numberLiteral_1 as numberLiteral };
|
|
74
|
+
let booleanLiteral_1: string;
|
|
75
|
+
export { booleanLiteral_1 as booleanLiteral };
|
|
76
|
+
let paramValue_1: string;
|
|
77
|
+
export { paramValue_1 as paramValue };
|
|
78
|
+
let property_1: string;
|
|
79
|
+
export { property_1 as property };
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
namespace content {
|
|
83
|
+
export namespace extraLight {
|
|
84
|
+
let maxWidth: string;
|
|
65
85
|
}
|
|
66
|
-
namespace
|
|
67
|
-
let
|
|
68
|
-
export {
|
|
69
|
-
let med_1: string;
|
|
70
|
-
export { med_1 as med };
|
|
71
|
-
let max_1: string;
|
|
72
|
-
export { max_1 as max };
|
|
86
|
+
export namespace light_1 {
|
|
87
|
+
let maxWidth_1: string;
|
|
88
|
+
export { maxWidth_1 as maxWidth };
|
|
73
89
|
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
export { med_2 as med };
|
|
79
|
-
let max_2: string;
|
|
80
|
-
export { max_2 as max };
|
|
90
|
+
export { light_1 as light };
|
|
91
|
+
export namespace heavy {
|
|
92
|
+
let maxWidth_2: string;
|
|
93
|
+
export { maxWidth_2 as maxWidth };
|
|
81
94
|
}
|
|
82
|
-
namespace
|
|
83
|
-
let
|
|
84
|
-
export {
|
|
85
|
-
let max_3: string;
|
|
86
|
-
export { max_3 as max };
|
|
95
|
+
export namespace max {
|
|
96
|
+
let maxWidth_3: string;
|
|
97
|
+
export { maxWidth_3 as maxWidth };
|
|
87
98
|
}
|
|
88
99
|
}
|
|
89
|
-
let
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
"
|
|
100
|
-
"
|
|
100
|
+
let categorical: {
|
|
101
|
+
"1": string;
|
|
102
|
+
"2": string;
|
|
103
|
+
"3": string;
|
|
104
|
+
"4": string;
|
|
105
|
+
"5": string;
|
|
106
|
+
"6": string;
|
|
107
|
+
"7": string;
|
|
108
|
+
"8": string;
|
|
109
|
+
"9": string;
|
|
110
|
+
"10": string;
|
|
111
|
+
"11": string;
|
|
112
|
+
"12": string;
|
|
101
113
|
};
|
|
102
|
-
let
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
"
|
|
114
|
+
let graph: {
|
|
115
|
+
"1": string;
|
|
116
|
+
"2": string;
|
|
117
|
+
"3": string;
|
|
118
|
+
"4": string;
|
|
119
|
+
"5": string;
|
|
120
|
+
"6": string;
|
|
121
|
+
"7": string;
|
|
122
|
+
"8": string;
|
|
123
|
+
"9": string;
|
|
124
|
+
"10": string;
|
|
125
|
+
"11": string;
|
|
126
|
+
"12": string;
|
|
109
127
|
};
|
|
110
|
-
namespace
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
};
|
|
125
|
-
namespace code {
|
|
126
|
-
namespace light {
|
|
127
|
-
export let comment: string;
|
|
128
|
-
export let keyword: string;
|
|
129
|
-
export let keywordLiteral: string;
|
|
130
|
-
export let operator: string;
|
|
131
|
-
export let label: string;
|
|
132
|
-
export let predicateFunction: string;
|
|
133
|
-
let _function: string;
|
|
134
|
-
export { _function as function };
|
|
135
|
-
export let procedure: string;
|
|
136
|
-
export let stringLiteral: string;
|
|
137
|
-
export let numberLiteral: string;
|
|
138
|
-
export let booleanLiteral: string;
|
|
139
|
-
export let paramValue: string;
|
|
140
|
-
export let property: string;
|
|
141
|
-
}
|
|
142
|
-
namespace dark {
|
|
143
|
-
let comment_1: string;
|
|
144
|
-
export { comment_1 as comment };
|
|
145
|
-
let keyword_1: string;
|
|
146
|
-
export { keyword_1 as keyword };
|
|
147
|
-
let keywordLiteral_1: string;
|
|
148
|
-
export { keywordLiteral_1 as keywordLiteral };
|
|
149
|
-
let operator_1: string;
|
|
150
|
-
export { operator_1 as operator };
|
|
151
|
-
let label_1: string;
|
|
152
|
-
export { label_1 as label };
|
|
153
|
-
let predicateFunction_1: string;
|
|
154
|
-
export { predicateFunction_1 as predicateFunction };
|
|
155
|
-
let _function_1: string;
|
|
156
|
-
export { _function_1 as function };
|
|
157
|
-
let procedure_1: string;
|
|
158
|
-
export { procedure_1 as procedure };
|
|
159
|
-
let stringLiteral_1: string;
|
|
160
|
-
export { stringLiteral_1 as stringLiteral };
|
|
161
|
-
let numberLiteral_1: string;
|
|
162
|
-
export { numberLiteral_1 as numberLiteral };
|
|
163
|
-
let booleanLiteral_1: string;
|
|
164
|
-
export { booleanLiteral_1 as booleanLiteral };
|
|
165
|
-
let paramValue_1: string;
|
|
166
|
-
export { paramValue_1 as paramValue };
|
|
167
|
-
let property_1: string;
|
|
168
|
-
export { property_1 as property };
|
|
169
|
-
}
|
|
128
|
+
namespace motion {
|
|
129
|
+
namespace duration {
|
|
130
|
+
let quick: string;
|
|
131
|
+
let slow: string;
|
|
132
|
+
}
|
|
133
|
+
namespace easing {
|
|
134
|
+
let standard: string;
|
|
135
|
+
}
|
|
136
|
+
namespace transition {
|
|
137
|
+
let quick_1: string;
|
|
138
|
+
export { quick_1 as quick };
|
|
139
|
+
let slow_1: string;
|
|
140
|
+
export { slow_1 as slow };
|
|
141
|
+
export let delayed: string;
|
|
170
142
|
}
|
|
171
|
-
let graph: {
|
|
172
|
-
"1": string;
|
|
173
|
-
"2": string;
|
|
174
|
-
"3": string;
|
|
175
|
-
"4": string;
|
|
176
|
-
"5": string;
|
|
177
|
-
"6": string;
|
|
178
|
-
"7": string;
|
|
179
|
-
"8": string;
|
|
180
|
-
"9": string;
|
|
181
|
-
"10": string;
|
|
182
|
-
"11": string;
|
|
183
|
-
"12": string;
|
|
184
|
-
};
|
|
185
143
|
}
|
|
186
|
-
namespace
|
|
144
|
+
namespace palette {
|
|
187
145
|
let baltic: {
|
|
188
146
|
"10": string;
|
|
189
147
|
"15": string;
|
|
@@ -334,23 +292,36 @@ export namespace tokens {
|
|
|
334
292
|
let periwinkle: string;
|
|
335
293
|
}
|
|
336
294
|
}
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
}
|
|
295
|
+
let borderRadius: {
|
|
296
|
+
none: string;
|
|
297
|
+
sm: string;
|
|
298
|
+
md: string;
|
|
299
|
+
lg: string;
|
|
300
|
+
xl: string;
|
|
301
|
+
"2xl": string;
|
|
302
|
+
"3xl": string;
|
|
303
|
+
full: string;
|
|
304
|
+
};
|
|
305
|
+
let space: {
|
|
306
|
+
"2": string;
|
|
307
|
+
"4": string;
|
|
308
|
+
"6": string;
|
|
309
|
+
"8": string;
|
|
310
|
+
"12": string;
|
|
311
|
+
"16": string;
|
|
312
|
+
"20": string;
|
|
313
|
+
"24": string;
|
|
314
|
+
"32": string;
|
|
315
|
+
"48": string;
|
|
316
|
+
"64": string;
|
|
317
|
+
};
|
|
347
318
|
namespace theme {
|
|
348
319
|
export namespace dark_1 {
|
|
349
|
-
|
|
320
|
+
namespace boxShadow {
|
|
350
321
|
let raised: string;
|
|
351
322
|
let overlay: string;
|
|
352
323
|
}
|
|
353
|
-
|
|
324
|
+
namespace color {
|
|
354
325
|
export namespace neutral_1 {
|
|
355
326
|
namespace text {
|
|
356
327
|
export let weakest: string;
|
|
@@ -448,10 +419,10 @@ export namespace tokens {
|
|
|
448
419
|
export namespace pressed_2 {
|
|
449
420
|
let weak_9: string;
|
|
450
421
|
export { weak_9 as weak };
|
|
451
|
-
let strong_8: string;
|
|
452
|
-
export { strong_8 as strong };
|
|
453
422
|
}
|
|
454
423
|
export { pressed_2 as pressed };
|
|
424
|
+
let strong_8: string;
|
|
425
|
+
export { strong_8 as strong };
|
|
455
426
|
}
|
|
456
427
|
export namespace warning {
|
|
457
428
|
let text_3: string;
|
|
@@ -520,7 +491,6 @@ export namespace tokens {
|
|
|
520
491
|
export { border_5 as border };
|
|
521
492
|
}
|
|
522
493
|
}
|
|
523
|
-
export { palette_1 as palette };
|
|
524
494
|
}
|
|
525
495
|
export { dark_1 as dark };
|
|
526
496
|
export namespace light_2 {
|
|
@@ -531,7 +501,7 @@ export namespace tokens {
|
|
|
531
501
|
export { overlay_1 as overlay };
|
|
532
502
|
}
|
|
533
503
|
export { boxShadow_1 as boxShadow };
|
|
534
|
-
export namespace
|
|
504
|
+
export namespace color_1 {
|
|
535
505
|
export namespace neutral_2 {
|
|
536
506
|
export namespace text_6 {
|
|
537
507
|
let weakest_1: string;
|
|
@@ -721,84 +691,121 @@ export namespace tokens {
|
|
|
721
691
|
}
|
|
722
692
|
export { discovery_1 as discovery };
|
|
723
693
|
}
|
|
724
|
-
export {
|
|
694
|
+
export { color_1 as color };
|
|
725
695
|
}
|
|
726
696
|
export { light_2 as light };
|
|
727
697
|
}
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
label: string;
|
|
698
|
+
namespace weight {
|
|
699
|
+
export let bold: number;
|
|
700
|
+
export let semibold: number;
|
|
701
|
+
export let normal: number;
|
|
702
|
+
export let medium: number;
|
|
703
|
+
let light_3: number;
|
|
704
|
+
export { light_3 as light };
|
|
705
|
+
}
|
|
706
|
+
let typography: {
|
|
707
|
+
code: {
|
|
708
|
+
fontFamily: string;
|
|
709
|
+
fontSize: string;
|
|
710
|
+
fontWeight: number;
|
|
711
|
+
letterSpacing: string;
|
|
712
|
+
lineHeight: number;
|
|
744
713
|
};
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
714
|
+
display: {
|
|
715
|
+
fontFamily: string;
|
|
716
|
+
fontSize: string;
|
|
717
|
+
fontWeight: number;
|
|
718
|
+
letterSpacing: string;
|
|
719
|
+
lineHeight: number;
|
|
751
720
|
};
|
|
752
|
-
"
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
h6: string;
|
|
759
|
-
"subheading-large": string;
|
|
760
|
-
"subheading-medium": string;
|
|
761
|
-
"subheading-small": string;
|
|
762
|
-
"body-large": string;
|
|
763
|
-
"body-medium": string;
|
|
764
|
-
"body-small": string;
|
|
765
|
-
code: string;
|
|
766
|
-
label: string;
|
|
721
|
+
"title-1": {
|
|
722
|
+
fontFamily: string;
|
|
723
|
+
fontSize: string;
|
|
724
|
+
fontWeight: number;
|
|
725
|
+
letterSpacing: string;
|
|
726
|
+
lineHeight: number;
|
|
767
727
|
};
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
"
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
"
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
"
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
728
|
+
"title-2": {
|
|
729
|
+
fontFamily: string;
|
|
730
|
+
fontSize: string;
|
|
731
|
+
fontWeight: number;
|
|
732
|
+
letterSpacing: string;
|
|
733
|
+
lineHeight: number;
|
|
734
|
+
};
|
|
735
|
+
"title-3": {
|
|
736
|
+
fontFamily: string;
|
|
737
|
+
fontSize: string;
|
|
738
|
+
fontWeight: number;
|
|
739
|
+
letterSpacing: string;
|
|
740
|
+
lineHeight: number;
|
|
741
|
+
};
|
|
742
|
+
"title-4": {
|
|
743
|
+
fontFamily: string;
|
|
744
|
+
fontSize: string;
|
|
745
|
+
fontWeight: number;
|
|
746
|
+
letterSpacing: string;
|
|
747
|
+
lineHeight: number;
|
|
748
|
+
};
|
|
749
|
+
"subheading-large": {
|
|
750
|
+
fontFamily: string;
|
|
751
|
+
fontSize: string;
|
|
752
|
+
fontWeight: number;
|
|
753
|
+
letterSpacing: string;
|
|
754
|
+
lineHeight: number;
|
|
755
|
+
};
|
|
756
|
+
"subheading-medium": {
|
|
757
|
+
fontFamily: string;
|
|
758
|
+
fontSize: string;
|
|
759
|
+
fontWeight: number;
|
|
760
|
+
letterSpacing: string;
|
|
761
|
+
lineHeight: number;
|
|
762
|
+
};
|
|
763
|
+
"subheading-small": {
|
|
764
|
+
fontFamily: string;
|
|
765
|
+
fontSize: string;
|
|
766
|
+
fontWeight: number;
|
|
767
|
+
letterSpacing: string;
|
|
768
|
+
lineHeight: number;
|
|
769
|
+
};
|
|
770
|
+
"body-large": {
|
|
771
|
+
fontFamily: string;
|
|
772
|
+
fontSize: string;
|
|
773
|
+
fontWeight: number;
|
|
774
|
+
letterSpacing: string;
|
|
775
|
+
lineHeight: number;
|
|
776
|
+
};
|
|
777
|
+
"body-medium": {
|
|
778
|
+
fontFamily: string;
|
|
779
|
+
fontSize: string;
|
|
780
|
+
fontWeight: number;
|
|
781
|
+
letterSpacing: string;
|
|
782
|
+
lineHeight: number;
|
|
783
|
+
};
|
|
784
|
+
"body-small": {
|
|
785
|
+
fontFamily: string;
|
|
786
|
+
fontSize: string;
|
|
787
|
+
fontWeight: number;
|
|
788
|
+
letterSpacing: string;
|
|
789
|
+
lineHeight: number;
|
|
790
|
+
};
|
|
791
|
+
label: {
|
|
792
|
+
fontFamily: string;
|
|
793
|
+
fontSize: string;
|
|
794
|
+
fontWeight: number;
|
|
795
|
+
letterSpacing: string;
|
|
796
|
+
lineHeight: number;
|
|
802
797
|
};
|
|
803
798
|
};
|
|
799
|
+
namespace zIndex {
|
|
800
|
+
export let deep: number;
|
|
801
|
+
export let base: number;
|
|
802
|
+
let overlay_2: number;
|
|
803
|
+
export { overlay_2 as overlay };
|
|
804
|
+
export let banner: number;
|
|
805
|
+
export let blanket: number;
|
|
806
|
+
export let popover: number;
|
|
807
|
+
export let tooltip: number;
|
|
808
|
+
export let modal: number;
|
|
809
|
+
}
|
|
804
810
|
}
|
|
811
|
+
export default tokens;
|