@mirohq/design-system-tooltip 3.2.17 → 3.2.18-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/types.d.ts +236 -214
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
16
16
|
readonly lg: "4px";
|
|
17
17
|
};
|
|
18
18
|
colors: {
|
|
19
|
+
readonly black: any;
|
|
19
20
|
readonly 'blue-100': any;
|
|
20
21
|
readonly 'blue-200': any;
|
|
21
22
|
readonly 'blue-300': any;
|
|
@@ -35,6 +36,15 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
35
36
|
readonly 'gray-700': any;
|
|
36
37
|
readonly 'gray-800': any;
|
|
37
38
|
readonly 'gray-900': any;
|
|
39
|
+
readonly 'green-100': any;
|
|
40
|
+
readonly 'green-200': any;
|
|
41
|
+
readonly 'green-300': any;
|
|
42
|
+
readonly 'green-400': any;
|
|
43
|
+
readonly 'green-500': any;
|
|
44
|
+
readonly 'green-600': any;
|
|
45
|
+
readonly 'green-700': any;
|
|
46
|
+
readonly 'green-800': any;
|
|
47
|
+
readonly 'green-900': any;
|
|
38
48
|
readonly 'indigo-100': any;
|
|
39
49
|
readonly 'indigo-200': any;
|
|
40
50
|
readonly 'indigo-300': any;
|
|
@@ -53,6 +63,8 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
53
63
|
readonly 'red-700': any;
|
|
54
64
|
readonly 'red-800': any;
|
|
55
65
|
readonly 'red-900': any;
|
|
66
|
+
readonly transparent: any;
|
|
67
|
+
readonly white: any;
|
|
56
68
|
readonly 'yellow-100': any;
|
|
57
69
|
readonly 'yellow-200': any;
|
|
58
70
|
readonly 'yellow-300': any;
|
|
@@ -62,113 +74,112 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
62
74
|
readonly 'yellow-700': any;
|
|
63
75
|
readonly 'yellow-800': any;
|
|
64
76
|
readonly 'yellow-900': any;
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
readonly 'border-warning'?: any;
|
|
77
|
+
"background-alpha-active"?: any;
|
|
78
|
+
"background-alpha-hover"?: any;
|
|
79
|
+
"background-danger-prominent"?: any;
|
|
80
|
+
"background-danger-prominent-active"?: any;
|
|
81
|
+
"background-danger-prominent-hover"?: any;
|
|
82
|
+
"background-danger-subtle"?: any;
|
|
83
|
+
"background-danger-subtle-active"?: any;
|
|
84
|
+
"background-danger-subtle-hover"?: any;
|
|
85
|
+
"background-neutrals"?: any;
|
|
86
|
+
"background-neutrals-active"?: any;
|
|
87
|
+
"background-neutrals-container"?: any;
|
|
88
|
+
"background-neutrals-controls-disabled"?: any;
|
|
89
|
+
"background-neutrals-disabled"?: any;
|
|
90
|
+
"background-neutrals-hover"?: any;
|
|
91
|
+
"background-neutrals-inactive"?: any;
|
|
92
|
+
"background-neutrals-inactive-hover"?: any;
|
|
93
|
+
"background-neutrals-inverted"?: any;
|
|
94
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
95
|
+
"background-neutrals-page"?: any;
|
|
96
|
+
"background-neutrals-page-subtle"?: any;
|
|
97
|
+
"background-neutrals-scrolls"?: any;
|
|
98
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
99
|
+
"background-neutrals-subtle"?: any;
|
|
100
|
+
"background-neutrals-subtle-active"?: any;
|
|
101
|
+
"background-neutrals-subtle-hover"?: any;
|
|
102
|
+
"background-primary-prominent"?: any;
|
|
103
|
+
"background-primary-prominent-active"?: any;
|
|
104
|
+
"background-primary-prominent-hover"?: any;
|
|
105
|
+
"background-primary-prominent-selected"?: any;
|
|
106
|
+
"background-primary-subtle"?: any;
|
|
107
|
+
"background-primary-subtle-active"?: any;
|
|
108
|
+
"background-primary-subtle-hover"?: any;
|
|
109
|
+
"background-primary-subtle-selected"?: any;
|
|
110
|
+
"background-success"?: any;
|
|
111
|
+
"background-warning-prominent"?: any;
|
|
112
|
+
"background-warning-subtle"?: any;
|
|
113
|
+
"border-danger"?: any;
|
|
114
|
+
"border-danger-active"?: any;
|
|
115
|
+
"border-danger-hover"?: any;
|
|
116
|
+
"border-focus-inner"?: any;
|
|
117
|
+
"border-focus-middle"?: any;
|
|
118
|
+
"border-focus-outer"?: any;
|
|
119
|
+
"border-neutrals"?: any;
|
|
120
|
+
"border-neutrals-active"?: any;
|
|
121
|
+
"border-neutrals-controls"?: any;
|
|
122
|
+
"border-neutrals-controls-disabled"?: any;
|
|
123
|
+
"border-neutrals-disabled"?: any;
|
|
124
|
+
"border-neutrals-hover"?: any;
|
|
125
|
+
"border-neutrals-inverted"?: any;
|
|
126
|
+
"border-neutrals-subtle"?: any;
|
|
127
|
+
"border-neutrals-text"?: any;
|
|
128
|
+
"border-neutrals-text-active"?: any;
|
|
129
|
+
"border-neutrals-text-hover"?: any;
|
|
130
|
+
"border-neutrals-text-subtle"?: any;
|
|
131
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
132
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
133
|
+
"border-neutrals-transparent"?: any;
|
|
134
|
+
"border-primary"?: any;
|
|
135
|
+
"border-primary-active"?: any;
|
|
136
|
+
"border-primary-hover"?: any;
|
|
137
|
+
"border-primary-inverted"?: any;
|
|
138
|
+
"border-success"?: any;
|
|
139
|
+
"border-warning"?: any;
|
|
140
|
+
"icon-danger"?: any;
|
|
141
|
+
"icon-danger-active"?: any;
|
|
142
|
+
"icon-danger-hover"?: any;
|
|
143
|
+
"icon-danger-inverted"?: any;
|
|
144
|
+
"icon-neutrals"?: any;
|
|
145
|
+
"icon-neutrals-disabled"?: any;
|
|
146
|
+
"icon-neutrals-inactive"?: any;
|
|
147
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
148
|
+
"icon-neutrals-inverted"?: any;
|
|
149
|
+
"icon-neutrals-search"?: any;
|
|
150
|
+
"icon-neutrals-subtle"?: any;
|
|
151
|
+
"icon-neutrals-text"?: any;
|
|
152
|
+
"icon-primary"?: any;
|
|
153
|
+
"icon-primary-active"?: any;
|
|
154
|
+
"icon-primary-hover"?: any;
|
|
155
|
+
"icon-primary-inverted"?: any;
|
|
156
|
+
"icon-primary-selected"?: any;
|
|
157
|
+
"icon-success"?: any;
|
|
158
|
+
"icon-success-inverted"?: any;
|
|
159
|
+
"icon-warning"?: any;
|
|
160
|
+
"icon-warning-prominent"?: any;
|
|
161
|
+
"text-danger"?: any;
|
|
162
|
+
"text-danger-active"?: any;
|
|
163
|
+
"text-danger-hover"?: any;
|
|
164
|
+
"text-danger-inverted"?: any;
|
|
165
|
+
"text-neutrals"?: any;
|
|
166
|
+
"text-neutrals-active"?: any;
|
|
167
|
+
"text-neutrals-disabled"?: any;
|
|
168
|
+
"text-neutrals-hover"?: any;
|
|
169
|
+
"text-neutrals-inverted"?: any;
|
|
170
|
+
"text-neutrals-placeholder"?: any;
|
|
171
|
+
"text-neutrals-placeholder-only"?: any;
|
|
172
|
+
"text-neutrals-subtle"?: any;
|
|
173
|
+
"text-neutrals-subtle-active"?: any;
|
|
174
|
+
"text-neutrals-subtle-hover"?: any;
|
|
175
|
+
"text-primary"?: any;
|
|
176
|
+
"text-primary-active"?: any;
|
|
177
|
+
"text-primary-hover"?: any;
|
|
178
|
+
"text-primary-inverted"?: any;
|
|
179
|
+
"text-primary-inverted-subtle"?: any;
|
|
180
|
+
"text-primary-selected"?: any;
|
|
181
|
+
"text-success"?: any;
|
|
182
|
+
"text-warning"?: any;
|
|
172
183
|
};
|
|
173
184
|
'font-sizes': {
|
|
174
185
|
readonly 150: "0.75rem";
|
|
@@ -545,6 +556,7 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
545
556
|
readonly lg: "4px";
|
|
546
557
|
};
|
|
547
558
|
colors: {
|
|
559
|
+
readonly black: any;
|
|
548
560
|
readonly 'blue-100': any;
|
|
549
561
|
readonly 'blue-200': any;
|
|
550
562
|
readonly 'blue-300': any;
|
|
@@ -564,6 +576,15 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
564
576
|
readonly 'gray-700': any;
|
|
565
577
|
readonly 'gray-800': any;
|
|
566
578
|
readonly 'gray-900': any;
|
|
579
|
+
readonly 'green-100': any;
|
|
580
|
+
readonly 'green-200': any;
|
|
581
|
+
readonly 'green-300': any;
|
|
582
|
+
readonly 'green-400': any;
|
|
583
|
+
readonly 'green-500': any;
|
|
584
|
+
readonly 'green-600': any;
|
|
585
|
+
readonly 'green-700': any;
|
|
586
|
+
readonly 'green-800': any;
|
|
587
|
+
readonly 'green-900': any;
|
|
567
588
|
readonly 'indigo-100': any;
|
|
568
589
|
readonly 'indigo-200': any;
|
|
569
590
|
readonly 'indigo-300': any;
|
|
@@ -582,6 +603,8 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
582
603
|
readonly 'red-700': any;
|
|
583
604
|
readonly 'red-800': any;
|
|
584
605
|
readonly 'red-900': any;
|
|
606
|
+
readonly transparent: any;
|
|
607
|
+
readonly white: any;
|
|
585
608
|
readonly 'yellow-100': any;
|
|
586
609
|
readonly 'yellow-200': any;
|
|
587
610
|
readonly 'yellow-300': any;
|
|
@@ -591,113 +614,112 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
591
614
|
readonly 'yellow-700': any;
|
|
592
615
|
readonly 'yellow-800': any;
|
|
593
616
|
readonly 'yellow-900': any;
|
|
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
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
readonly 'border-warning'?: any;
|
|
617
|
+
"background-alpha-active"?: any;
|
|
618
|
+
"background-alpha-hover"?: any;
|
|
619
|
+
"background-danger-prominent"?: any;
|
|
620
|
+
"background-danger-prominent-active"?: any;
|
|
621
|
+
"background-danger-prominent-hover"?: any;
|
|
622
|
+
"background-danger-subtle"?: any;
|
|
623
|
+
"background-danger-subtle-active"?: any;
|
|
624
|
+
"background-danger-subtle-hover"?: any;
|
|
625
|
+
"background-neutrals"?: any;
|
|
626
|
+
"background-neutrals-active"?: any;
|
|
627
|
+
"background-neutrals-container"?: any;
|
|
628
|
+
"background-neutrals-controls-disabled"?: any;
|
|
629
|
+
"background-neutrals-disabled"?: any;
|
|
630
|
+
"background-neutrals-hover"?: any;
|
|
631
|
+
"background-neutrals-inactive"?: any;
|
|
632
|
+
"background-neutrals-inactive-hover"?: any;
|
|
633
|
+
"background-neutrals-inverted"?: any;
|
|
634
|
+
"background-neutrals-inverted-subtle"?: any;
|
|
635
|
+
"background-neutrals-page"?: any;
|
|
636
|
+
"background-neutrals-page-subtle"?: any;
|
|
637
|
+
"background-neutrals-scrolls"?: any;
|
|
638
|
+
"background-neutrals-scrolls-hover"?: any;
|
|
639
|
+
"background-neutrals-subtle"?: any;
|
|
640
|
+
"background-neutrals-subtle-active"?: any;
|
|
641
|
+
"background-neutrals-subtle-hover"?: any;
|
|
642
|
+
"background-primary-prominent"?: any;
|
|
643
|
+
"background-primary-prominent-active"?: any;
|
|
644
|
+
"background-primary-prominent-hover"?: any;
|
|
645
|
+
"background-primary-prominent-selected"?: any;
|
|
646
|
+
"background-primary-subtle"?: any;
|
|
647
|
+
"background-primary-subtle-active"?: any;
|
|
648
|
+
"background-primary-subtle-hover"?: any;
|
|
649
|
+
"background-primary-subtle-selected"?: any;
|
|
650
|
+
"background-success"?: any;
|
|
651
|
+
"background-warning-prominent"?: any;
|
|
652
|
+
"background-warning-subtle"?: any;
|
|
653
|
+
"border-danger"?: any;
|
|
654
|
+
"border-danger-active"?: any;
|
|
655
|
+
"border-danger-hover"?: any;
|
|
656
|
+
"border-focus-inner"?: any;
|
|
657
|
+
"border-focus-middle"?: any;
|
|
658
|
+
"border-focus-outer"?: any;
|
|
659
|
+
"border-neutrals"?: any;
|
|
660
|
+
"border-neutrals-active"?: any;
|
|
661
|
+
"border-neutrals-controls"?: any;
|
|
662
|
+
"border-neutrals-controls-disabled"?: any;
|
|
663
|
+
"border-neutrals-disabled"?: any;
|
|
664
|
+
"border-neutrals-hover"?: any;
|
|
665
|
+
"border-neutrals-inverted"?: any;
|
|
666
|
+
"border-neutrals-subtle"?: any;
|
|
667
|
+
"border-neutrals-text"?: any;
|
|
668
|
+
"border-neutrals-text-active"?: any;
|
|
669
|
+
"border-neutrals-text-hover"?: any;
|
|
670
|
+
"border-neutrals-text-subtle"?: any;
|
|
671
|
+
"border-neutrals-text-subtle-active"?: any;
|
|
672
|
+
"border-neutrals-text-subtle-hover"?: any;
|
|
673
|
+
"border-neutrals-transparent"?: any;
|
|
674
|
+
"border-primary"?: any;
|
|
675
|
+
"border-primary-active"?: any;
|
|
676
|
+
"border-primary-hover"?: any;
|
|
677
|
+
"border-primary-inverted"?: any;
|
|
678
|
+
"border-success"?: any;
|
|
679
|
+
"border-warning"?: any;
|
|
680
|
+
"icon-danger"?: any;
|
|
681
|
+
"icon-danger-active"?: any;
|
|
682
|
+
"icon-danger-hover"?: any;
|
|
683
|
+
"icon-danger-inverted"?: any;
|
|
684
|
+
"icon-neutrals"?: any;
|
|
685
|
+
"icon-neutrals-disabled"?: any;
|
|
686
|
+
"icon-neutrals-inactive"?: any;
|
|
687
|
+
"icon-neutrals-inactive-hover"?: any;
|
|
688
|
+
"icon-neutrals-inverted"?: any;
|
|
689
|
+
"icon-neutrals-search"?: any;
|
|
690
|
+
"icon-neutrals-subtle"?: any;
|
|
691
|
+
"icon-neutrals-text"?: any;
|
|
692
|
+
"icon-primary"?: any;
|
|
693
|
+
"icon-primary-active"?: any;
|
|
694
|
+
"icon-primary-hover"?: any;
|
|
695
|
+
"icon-primary-inverted"?: any;
|
|
696
|
+
"icon-primary-selected"?: any;
|
|
697
|
+
"icon-success"?: any;
|
|
698
|
+
"icon-success-inverted"?: any;
|
|
699
|
+
"icon-warning"?: any;
|
|
700
|
+
"icon-warning-prominent"?: any;
|
|
701
|
+
"text-danger"?: any;
|
|
702
|
+
"text-danger-active"?: any;
|
|
703
|
+
"text-danger-hover"?: any;
|
|
704
|
+
"text-danger-inverted"?: any;
|
|
705
|
+
"text-neutrals"?: any;
|
|
706
|
+
"text-neutrals-active"?: any;
|
|
707
|
+
"text-neutrals-disabled"?: any;
|
|
708
|
+
"text-neutrals-hover"?: any;
|
|
709
|
+
"text-neutrals-inverted"?: any;
|
|
710
|
+
"text-neutrals-placeholder"?: any;
|
|
711
|
+
"text-neutrals-placeholder-only"?: any;
|
|
712
|
+
"text-neutrals-subtle"?: any;
|
|
713
|
+
"text-neutrals-subtle-active"?: any;
|
|
714
|
+
"text-neutrals-subtle-hover"?: any;
|
|
715
|
+
"text-primary"?: any;
|
|
716
|
+
"text-primary-active"?: any;
|
|
717
|
+
"text-primary-hover"?: any;
|
|
718
|
+
"text-primary-inverted"?: any;
|
|
719
|
+
"text-primary-inverted-subtle"?: any;
|
|
720
|
+
"text-primary-selected"?: any;
|
|
721
|
+
"text-success"?: any;
|
|
722
|
+
"text-warning"?: any;
|
|
701
723
|
};
|
|
702
724
|
'font-sizes': {
|
|
703
725
|
readonly 150: "0.75rem";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-tooltip",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.18-themes.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@radix-ui/react-tooltip": "^1.0.3",
|
|
31
|
-
"@mirohq/design-system-stitches": "^2.3.
|
|
32
|
-
"@mirohq/design-system-styles": "^1.1.
|
|
31
|
+
"@mirohq/design-system-stitches": "^2.3.5-themes.1",
|
|
32
|
+
"@mirohq/design-system-styles": "^1.1.1-themes.1",
|
|
33
33
|
"@mirohq/design-system-utils": "^0.14.1",
|
|
34
|
-
"@mirohq/design-tokens": "^
|
|
34
|
+
"@mirohq/design-tokens": "^3.0.0-themes.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "rollup -c ../../../rollup.config.js",
|