@mirohq/design-system-stitches 2.3.13 → 2.3.14
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 +117 -0
- package/package.json +3 -3
package/dist/types.d.ts
CHANGED
|
@@ -124,6 +124,9 @@ declare const config: {
|
|
|
124
124
|
"background-primary-subtle-pressed-hover"?: any;
|
|
125
125
|
"background-primary-subtle-selected"?: any;
|
|
126
126
|
"background-success"?: any;
|
|
127
|
+
"background-success-prominent"?: any;
|
|
128
|
+
"background-success-prominent-active"?: any;
|
|
129
|
+
"background-success-prominent-hover"?: any;
|
|
127
130
|
"background-warning-prominent"?: any;
|
|
128
131
|
"background-warning-subtle"?: any;
|
|
129
132
|
"border-danger"?: any;
|
|
@@ -152,6 +155,8 @@ declare const config: {
|
|
|
152
155
|
"border-primary-hover"?: any;
|
|
153
156
|
"border-primary-inverted"?: any;
|
|
154
157
|
"border-success"?: any;
|
|
158
|
+
"border-success-active"?: any;
|
|
159
|
+
"border-success-hover"?: any;
|
|
155
160
|
"border-warning"?: any;
|
|
156
161
|
"icon-danger"?: any;
|
|
157
162
|
"icon-danger-active"?: any;
|
|
@@ -171,9 +176,12 @@ declare const config: {
|
|
|
171
176
|
"icon-primary-inverted"?: any;
|
|
172
177
|
"icon-primary-selected"?: any;
|
|
173
178
|
"icon-success"?: any;
|
|
179
|
+
"icon-success-active"?: any;
|
|
180
|
+
"icon-success-hover"?: any;
|
|
174
181
|
"icon-success-inverted"?: any;
|
|
175
182
|
"icon-warning"?: any;
|
|
176
183
|
"icon-warning-prominent"?: any;
|
|
184
|
+
"icon-warning-subtle"?: any;
|
|
177
185
|
"text-danger"?: any;
|
|
178
186
|
"text-danger-active"?: any;
|
|
179
187
|
"text-danger-hover"?: any;
|
|
@@ -195,7 +203,11 @@ declare const config: {
|
|
|
195
203
|
"text-primary-inverted-subtle"?: any;
|
|
196
204
|
"text-primary-selected"?: any;
|
|
197
205
|
"text-success"?: any;
|
|
206
|
+
"text-success-active"?: any;
|
|
207
|
+
"text-success-hover"?: any;
|
|
208
|
+
"text-success-inverted"?: any;
|
|
198
209
|
"text-warning"?: any;
|
|
210
|
+
"text-warning-subtle"?: any;
|
|
199
211
|
};
|
|
200
212
|
'font-sizes': {
|
|
201
213
|
readonly 150: "0.75rem";
|
|
@@ -238,6 +250,7 @@ declare const config: {
|
|
|
238
250
|
};
|
|
239
251
|
space: {
|
|
240
252
|
readonly 0: "0px";
|
|
253
|
+
readonly 25: "2px";
|
|
241
254
|
readonly 50: "4px";
|
|
242
255
|
readonly 100: "8px";
|
|
243
256
|
readonly 150: "12px";
|
|
@@ -597,6 +610,9 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
597
610
|
"background-primary-subtle-pressed-hover"?: string | number | boolean | undefined;
|
|
598
611
|
"background-primary-subtle-selected"?: string | number | boolean | undefined;
|
|
599
612
|
"background-success"?: string | number | boolean | undefined;
|
|
613
|
+
"background-success-prominent"?: string | number | boolean | undefined;
|
|
614
|
+
"background-success-prominent-active"?: string | number | boolean | undefined;
|
|
615
|
+
"background-success-prominent-hover"?: string | number | boolean | undefined;
|
|
600
616
|
"background-warning-prominent"?: string | number | boolean | undefined;
|
|
601
617
|
"background-warning-subtle"?: string | number | boolean | undefined;
|
|
602
618
|
"border-danger"?: string | number | boolean | undefined;
|
|
@@ -625,6 +641,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
625
641
|
"border-primary-hover"?: string | number | boolean | undefined;
|
|
626
642
|
"border-primary-inverted"?: string | number | boolean | undefined;
|
|
627
643
|
"border-success"?: string | number | boolean | undefined;
|
|
644
|
+
"border-success-active"?: string | number | boolean | undefined;
|
|
645
|
+
"border-success-hover"?: string | number | boolean | undefined;
|
|
628
646
|
"border-warning"?: string | number | boolean | undefined;
|
|
629
647
|
"icon-danger"?: string | number | boolean | undefined;
|
|
630
648
|
"icon-danger-active"?: string | number | boolean | undefined;
|
|
@@ -644,9 +662,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
644
662
|
"icon-primary-inverted"?: string | number | boolean | undefined;
|
|
645
663
|
"icon-primary-selected"?: string | number | boolean | undefined;
|
|
646
664
|
"icon-success"?: string | number | boolean | undefined;
|
|
665
|
+
"icon-success-active"?: string | number | boolean | undefined;
|
|
666
|
+
"icon-success-hover"?: string | number | boolean | undefined;
|
|
647
667
|
"icon-success-inverted"?: string | number | boolean | undefined;
|
|
648
668
|
"icon-warning"?: string | number | boolean | undefined;
|
|
649
669
|
"icon-warning-prominent"?: string | number | boolean | undefined;
|
|
670
|
+
"icon-warning-subtle"?: string | number | boolean | undefined;
|
|
650
671
|
"text-danger"?: string | number | boolean | undefined;
|
|
651
672
|
"text-danger-active"?: string | number | boolean | undefined;
|
|
652
673
|
"text-danger-hover"?: string | number | boolean | undefined;
|
|
@@ -668,7 +689,11 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
668
689
|
"text-primary-inverted-subtle"?: string | number | boolean | undefined;
|
|
669
690
|
"text-primary-selected"?: string | number | boolean | undefined;
|
|
670
691
|
"text-success"?: string | number | boolean | undefined;
|
|
692
|
+
"text-success-active"?: string | number | boolean | undefined;
|
|
693
|
+
"text-success-hover"?: string | number | boolean | undefined;
|
|
694
|
+
"text-success-inverted"?: string | number | boolean | undefined;
|
|
671
695
|
"text-warning"?: string | number | boolean | undefined;
|
|
696
|
+
"text-warning-subtle"?: string | number | boolean | undefined;
|
|
672
697
|
} | undefined;
|
|
673
698
|
'font-sizes'?: {
|
|
674
699
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -711,6 +736,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
711
736
|
} | undefined;
|
|
712
737
|
space?: {
|
|
713
738
|
readonly 0?: string | number | boolean | undefined;
|
|
739
|
+
readonly 25?: string | number | boolean | undefined;
|
|
714
740
|
readonly 50?: string | number | boolean | undefined;
|
|
715
741
|
readonly 100?: string | number | boolean | undefined;
|
|
716
742
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -890,6 +916,9 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
890
916
|
"background-primary-subtle-pressed-hover"?: string | number | boolean | undefined;
|
|
891
917
|
"background-primary-subtle-selected"?: string | number | boolean | undefined;
|
|
892
918
|
"background-success"?: string | number | boolean | undefined;
|
|
919
|
+
"background-success-prominent"?: string | number | boolean | undefined;
|
|
920
|
+
"background-success-prominent-active"?: string | number | boolean | undefined;
|
|
921
|
+
"background-success-prominent-hover"?: string | number | boolean | undefined;
|
|
893
922
|
"background-warning-prominent"?: string | number | boolean | undefined;
|
|
894
923
|
"background-warning-subtle"?: string | number | boolean | undefined;
|
|
895
924
|
"border-danger"?: string | number | boolean | undefined;
|
|
@@ -918,6 +947,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
918
947
|
"border-primary-hover"?: string | number | boolean | undefined;
|
|
919
948
|
"border-primary-inverted"?: string | number | boolean | undefined;
|
|
920
949
|
"border-success"?: string | number | boolean | undefined;
|
|
950
|
+
"border-success-active"?: string | number | boolean | undefined;
|
|
951
|
+
"border-success-hover"?: string | number | boolean | undefined;
|
|
921
952
|
"border-warning"?: string | number | boolean | undefined;
|
|
922
953
|
"icon-danger"?: string | number | boolean | undefined;
|
|
923
954
|
"icon-danger-active"?: string | number | boolean | undefined;
|
|
@@ -937,9 +968,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
937
968
|
"icon-primary-inverted"?: string | number | boolean | undefined;
|
|
938
969
|
"icon-primary-selected"?: string | number | boolean | undefined;
|
|
939
970
|
"icon-success"?: string | number | boolean | undefined;
|
|
971
|
+
"icon-success-active"?: string | number | boolean | undefined;
|
|
972
|
+
"icon-success-hover"?: string | number | boolean | undefined;
|
|
940
973
|
"icon-success-inverted"?: string | number | boolean | undefined;
|
|
941
974
|
"icon-warning"?: string | number | boolean | undefined;
|
|
942
975
|
"icon-warning-prominent"?: string | number | boolean | undefined;
|
|
976
|
+
"icon-warning-subtle"?: string | number | boolean | undefined;
|
|
943
977
|
"text-danger"?: string | number | boolean | undefined;
|
|
944
978
|
"text-danger-active"?: string | number | boolean | undefined;
|
|
945
979
|
"text-danger-hover"?: string | number | boolean | undefined;
|
|
@@ -961,7 +995,11 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
961
995
|
"text-primary-inverted-subtle"?: string | number | boolean | undefined;
|
|
962
996
|
"text-primary-selected"?: string | number | boolean | undefined;
|
|
963
997
|
"text-success"?: string | number | boolean | undefined;
|
|
998
|
+
"text-success-active"?: string | number | boolean | undefined;
|
|
999
|
+
"text-success-hover"?: string | number | boolean | undefined;
|
|
1000
|
+
"text-success-inverted"?: string | number | boolean | undefined;
|
|
964
1001
|
"text-warning"?: string | number | boolean | undefined;
|
|
1002
|
+
"text-warning-subtle"?: string | number | boolean | undefined;
|
|
965
1003
|
} | undefined;
|
|
966
1004
|
'font-sizes'?: {
|
|
967
1005
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -1004,6 +1042,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
1004
1042
|
} | undefined;
|
|
1005
1043
|
space?: {
|
|
1006
1044
|
readonly 0?: string | number | boolean | undefined;
|
|
1045
|
+
readonly 25?: string | number | boolean | undefined;
|
|
1007
1046
|
readonly 50?: string | number | boolean | undefined;
|
|
1008
1047
|
readonly 100?: string | number | boolean | undefined;
|
|
1009
1048
|
readonly 150?: string | number | boolean | undefined;
|
|
@@ -1189,6 +1228,9 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1189
1228
|
"background-primary-subtle-pressed-hover"?: any;
|
|
1190
1229
|
"background-primary-subtle-selected"?: any;
|
|
1191
1230
|
"background-success"?: any;
|
|
1231
|
+
"background-success-prominent"?: any;
|
|
1232
|
+
"background-success-prominent-active"?: any;
|
|
1233
|
+
"background-success-prominent-hover"?: any;
|
|
1192
1234
|
"background-warning-prominent"?: any;
|
|
1193
1235
|
"background-warning-subtle"?: any;
|
|
1194
1236
|
"border-danger"?: any;
|
|
@@ -1217,6 +1259,8 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1217
1259
|
"border-primary-hover"?: any;
|
|
1218
1260
|
"border-primary-inverted"?: any;
|
|
1219
1261
|
"border-success"?: any;
|
|
1262
|
+
"border-success-active"?: any;
|
|
1263
|
+
"border-success-hover"?: any;
|
|
1220
1264
|
"border-warning"?: any;
|
|
1221
1265
|
"icon-danger"?: any;
|
|
1222
1266
|
"icon-danger-active"?: any;
|
|
@@ -1236,9 +1280,12 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1236
1280
|
"icon-primary-inverted"?: any;
|
|
1237
1281
|
"icon-primary-selected"?: any;
|
|
1238
1282
|
"icon-success"?: any;
|
|
1283
|
+
"icon-success-active"?: any;
|
|
1284
|
+
"icon-success-hover"?: any;
|
|
1239
1285
|
"icon-success-inverted"?: any;
|
|
1240
1286
|
"icon-warning"?: any;
|
|
1241
1287
|
"icon-warning-prominent"?: any;
|
|
1288
|
+
"icon-warning-subtle"?: any;
|
|
1242
1289
|
"text-danger"?: any;
|
|
1243
1290
|
"text-danger-active"?: any;
|
|
1244
1291
|
"text-danger-hover"?: any;
|
|
@@ -1260,7 +1307,11 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1260
1307
|
"text-primary-inverted-subtle"?: any;
|
|
1261
1308
|
"text-primary-selected"?: any;
|
|
1262
1309
|
"text-success"?: any;
|
|
1310
|
+
"text-success-active"?: any;
|
|
1311
|
+
"text-success-hover"?: any;
|
|
1312
|
+
"text-success-inverted"?: any;
|
|
1263
1313
|
"text-warning"?: any;
|
|
1314
|
+
"text-warning-subtle"?: any;
|
|
1264
1315
|
};
|
|
1265
1316
|
'font-sizes': {
|
|
1266
1317
|
readonly 150: "0.75rem";
|
|
@@ -1303,6 +1354,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1303
1354
|
};
|
|
1304
1355
|
space: {
|
|
1305
1356
|
readonly 0: "0px";
|
|
1357
|
+
readonly 25: "2px";
|
|
1306
1358
|
readonly 50: "4px";
|
|
1307
1359
|
readonly 100: "8px";
|
|
1308
1360
|
readonly 150: "12px";
|
|
@@ -1677,6 +1729,9 @@ declare const globalCss: <Styles extends {
|
|
|
1677
1729
|
"background-primary-subtle-pressed-hover"?: any;
|
|
1678
1730
|
"background-primary-subtle-selected"?: any;
|
|
1679
1731
|
"background-success"?: any;
|
|
1732
|
+
"background-success-prominent"?: any;
|
|
1733
|
+
"background-success-prominent-active"?: any;
|
|
1734
|
+
"background-success-prominent-hover"?: any;
|
|
1680
1735
|
"background-warning-prominent"?: any;
|
|
1681
1736
|
"background-warning-subtle"?: any;
|
|
1682
1737
|
"border-danger"?: any;
|
|
@@ -1705,6 +1760,8 @@ declare const globalCss: <Styles extends {
|
|
|
1705
1760
|
"border-primary-hover"?: any;
|
|
1706
1761
|
"border-primary-inverted"?: any;
|
|
1707
1762
|
"border-success"?: any;
|
|
1763
|
+
"border-success-active"?: any;
|
|
1764
|
+
"border-success-hover"?: any;
|
|
1708
1765
|
"border-warning"?: any;
|
|
1709
1766
|
"icon-danger"?: any;
|
|
1710
1767
|
"icon-danger-active"?: any;
|
|
@@ -1724,9 +1781,12 @@ declare const globalCss: <Styles extends {
|
|
|
1724
1781
|
"icon-primary-inverted"?: any;
|
|
1725
1782
|
"icon-primary-selected"?: any;
|
|
1726
1783
|
"icon-success"?: any;
|
|
1784
|
+
"icon-success-active"?: any;
|
|
1785
|
+
"icon-success-hover"?: any;
|
|
1727
1786
|
"icon-success-inverted"?: any;
|
|
1728
1787
|
"icon-warning"?: any;
|
|
1729
1788
|
"icon-warning-prominent"?: any;
|
|
1789
|
+
"icon-warning-subtle"?: any;
|
|
1730
1790
|
"text-danger"?: any;
|
|
1731
1791
|
"text-danger-active"?: any;
|
|
1732
1792
|
"text-danger-hover"?: any;
|
|
@@ -1748,7 +1808,11 @@ declare const globalCss: <Styles extends {
|
|
|
1748
1808
|
"text-primary-inverted-subtle"?: any;
|
|
1749
1809
|
"text-primary-selected"?: any;
|
|
1750
1810
|
"text-success"?: any;
|
|
1811
|
+
"text-success-active"?: any;
|
|
1812
|
+
"text-success-hover"?: any;
|
|
1813
|
+
"text-success-inverted"?: any;
|
|
1751
1814
|
"text-warning"?: any;
|
|
1815
|
+
"text-warning-subtle"?: any;
|
|
1752
1816
|
};
|
|
1753
1817
|
'font-sizes': {
|
|
1754
1818
|
readonly 150: "0.75rem";
|
|
@@ -1791,6 +1855,7 @@ declare const globalCss: <Styles extends {
|
|
|
1791
1855
|
};
|
|
1792
1856
|
space: {
|
|
1793
1857
|
readonly 0: "0px";
|
|
1858
|
+
readonly 25: "2px";
|
|
1794
1859
|
readonly 50: "4px";
|
|
1795
1860
|
readonly 100: "8px";
|
|
1796
1861
|
readonly 150: "12px";
|
|
@@ -2147,6 +2212,9 @@ declare const globalCss: <Styles extends {
|
|
|
2147
2212
|
"background-primary-subtle-pressed-hover"?: any;
|
|
2148
2213
|
"background-primary-subtle-selected"?: any;
|
|
2149
2214
|
"background-success"?: any;
|
|
2215
|
+
"background-success-prominent"?: any;
|
|
2216
|
+
"background-success-prominent-active"?: any;
|
|
2217
|
+
"background-success-prominent-hover"?: any;
|
|
2150
2218
|
"background-warning-prominent"?: any;
|
|
2151
2219
|
"background-warning-subtle"?: any;
|
|
2152
2220
|
"border-danger"?: any;
|
|
@@ -2175,6 +2243,8 @@ declare const globalCss: <Styles extends {
|
|
|
2175
2243
|
"border-primary-hover"?: any;
|
|
2176
2244
|
"border-primary-inverted"?: any;
|
|
2177
2245
|
"border-success"?: any;
|
|
2246
|
+
"border-success-active"?: any;
|
|
2247
|
+
"border-success-hover"?: any;
|
|
2178
2248
|
"border-warning"?: any;
|
|
2179
2249
|
"icon-danger"?: any;
|
|
2180
2250
|
"icon-danger-active"?: any;
|
|
@@ -2194,9 +2264,12 @@ declare const globalCss: <Styles extends {
|
|
|
2194
2264
|
"icon-primary-inverted"?: any;
|
|
2195
2265
|
"icon-primary-selected"?: any;
|
|
2196
2266
|
"icon-success"?: any;
|
|
2267
|
+
"icon-success-active"?: any;
|
|
2268
|
+
"icon-success-hover"?: any;
|
|
2197
2269
|
"icon-success-inverted"?: any;
|
|
2198
2270
|
"icon-warning"?: any;
|
|
2199
2271
|
"icon-warning-prominent"?: any;
|
|
2272
|
+
"icon-warning-subtle"?: any;
|
|
2200
2273
|
"text-danger"?: any;
|
|
2201
2274
|
"text-danger-active"?: any;
|
|
2202
2275
|
"text-danger-hover"?: any;
|
|
@@ -2218,7 +2291,11 @@ declare const globalCss: <Styles extends {
|
|
|
2218
2291
|
"text-primary-inverted-subtle"?: any;
|
|
2219
2292
|
"text-primary-selected"?: any;
|
|
2220
2293
|
"text-success"?: any;
|
|
2294
|
+
"text-success-active"?: any;
|
|
2295
|
+
"text-success-hover"?: any;
|
|
2296
|
+
"text-success-inverted"?: any;
|
|
2221
2297
|
"text-warning"?: any;
|
|
2298
|
+
"text-warning-subtle"?: any;
|
|
2222
2299
|
};
|
|
2223
2300
|
'font-sizes': {
|
|
2224
2301
|
readonly 150: "0.75rem";
|
|
@@ -2261,6 +2338,7 @@ declare const globalCss: <Styles extends {
|
|
|
2261
2338
|
};
|
|
2262
2339
|
space: {
|
|
2263
2340
|
readonly 0: "0px";
|
|
2341
|
+
readonly 25: "2px";
|
|
2264
2342
|
readonly 50: "4px";
|
|
2265
2343
|
readonly 100: "8px";
|
|
2266
2344
|
readonly 150: "12px";
|
|
@@ -2618,6 +2696,9 @@ declare const keyframes: (style: {
|
|
|
2618
2696
|
"background-primary-subtle-pressed-hover"?: any;
|
|
2619
2697
|
"background-primary-subtle-selected"?: any;
|
|
2620
2698
|
"background-success"?: any;
|
|
2699
|
+
"background-success-prominent"?: any;
|
|
2700
|
+
"background-success-prominent-active"?: any;
|
|
2701
|
+
"background-success-prominent-hover"?: any;
|
|
2621
2702
|
"background-warning-prominent"?: any;
|
|
2622
2703
|
"background-warning-subtle"?: any;
|
|
2623
2704
|
"border-danger"?: any;
|
|
@@ -2646,6 +2727,8 @@ declare const keyframes: (style: {
|
|
|
2646
2727
|
"border-primary-hover"?: any;
|
|
2647
2728
|
"border-primary-inverted"?: any;
|
|
2648
2729
|
"border-success"?: any;
|
|
2730
|
+
"border-success-active"?: any;
|
|
2731
|
+
"border-success-hover"?: any;
|
|
2649
2732
|
"border-warning"?: any;
|
|
2650
2733
|
"icon-danger"?: any;
|
|
2651
2734
|
"icon-danger-active"?: any;
|
|
@@ -2665,9 +2748,12 @@ declare const keyframes: (style: {
|
|
|
2665
2748
|
"icon-primary-inverted"?: any;
|
|
2666
2749
|
"icon-primary-selected"?: any;
|
|
2667
2750
|
"icon-success"?: any;
|
|
2751
|
+
"icon-success-active"?: any;
|
|
2752
|
+
"icon-success-hover"?: any;
|
|
2668
2753
|
"icon-success-inverted"?: any;
|
|
2669
2754
|
"icon-warning"?: any;
|
|
2670
2755
|
"icon-warning-prominent"?: any;
|
|
2756
|
+
"icon-warning-subtle"?: any;
|
|
2671
2757
|
"text-danger"?: any;
|
|
2672
2758
|
"text-danger-active"?: any;
|
|
2673
2759
|
"text-danger-hover"?: any;
|
|
@@ -2689,7 +2775,11 @@ declare const keyframes: (style: {
|
|
|
2689
2775
|
"text-primary-inverted-subtle"?: any;
|
|
2690
2776
|
"text-primary-selected"?: any;
|
|
2691
2777
|
"text-success"?: any;
|
|
2778
|
+
"text-success-active"?: any;
|
|
2779
|
+
"text-success-hover"?: any;
|
|
2780
|
+
"text-success-inverted"?: any;
|
|
2692
2781
|
"text-warning"?: any;
|
|
2782
|
+
"text-warning-subtle"?: any;
|
|
2693
2783
|
};
|
|
2694
2784
|
'font-sizes': {
|
|
2695
2785
|
readonly 150: "0.75rem";
|
|
@@ -2732,6 +2822,7 @@ declare const keyframes: (style: {
|
|
|
2732
2822
|
};
|
|
2733
2823
|
space: {
|
|
2734
2824
|
readonly 0: "0px";
|
|
2825
|
+
readonly 25: "2px";
|
|
2735
2826
|
readonly 50: "4px";
|
|
2736
2827
|
readonly 100: "8px";
|
|
2737
2828
|
readonly 150: "12px";
|
|
@@ -3312,6 +3403,9 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3312
3403
|
"background-primary-subtle-pressed-hover"?: any;
|
|
3313
3404
|
"background-primary-subtle-selected"?: any;
|
|
3314
3405
|
"background-success"?: any;
|
|
3406
|
+
"background-success-prominent"?: any;
|
|
3407
|
+
"background-success-prominent-active"?: any;
|
|
3408
|
+
"background-success-prominent-hover"?: any;
|
|
3315
3409
|
"background-warning-prominent"?: any;
|
|
3316
3410
|
"background-warning-subtle"?: any;
|
|
3317
3411
|
"border-danger"?: any;
|
|
@@ -3340,6 +3434,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3340
3434
|
"border-primary-hover"?: any;
|
|
3341
3435
|
"border-primary-inverted"?: any;
|
|
3342
3436
|
"border-success"?: any;
|
|
3437
|
+
"border-success-active"?: any;
|
|
3438
|
+
"border-success-hover"?: any;
|
|
3343
3439
|
"border-warning"?: any;
|
|
3344
3440
|
"icon-danger"?: any;
|
|
3345
3441
|
"icon-danger-active"?: any;
|
|
@@ -3359,9 +3455,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3359
3455
|
"icon-primary-inverted"?: any;
|
|
3360
3456
|
"icon-primary-selected"?: any;
|
|
3361
3457
|
"icon-success"?: any;
|
|
3458
|
+
"icon-success-active"?: any;
|
|
3459
|
+
"icon-success-hover"?: any;
|
|
3362
3460
|
"icon-success-inverted"?: any;
|
|
3363
3461
|
"icon-warning"?: any;
|
|
3364
3462
|
"icon-warning-prominent"?: any;
|
|
3463
|
+
"icon-warning-subtle"?: any;
|
|
3365
3464
|
"text-danger"?: any;
|
|
3366
3465
|
"text-danger-active"?: any;
|
|
3367
3466
|
"text-danger-hover"?: any;
|
|
@@ -3383,7 +3482,11 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3383
3482
|
"text-primary-inverted-subtle"?: any;
|
|
3384
3483
|
"text-primary-selected"?: any;
|
|
3385
3484
|
"text-success"?: any;
|
|
3485
|
+
"text-success-active"?: any;
|
|
3486
|
+
"text-success-hover"?: any;
|
|
3487
|
+
"text-success-inverted"?: any;
|
|
3386
3488
|
"text-warning"?: any;
|
|
3489
|
+
"text-warning-subtle"?: any;
|
|
3387
3490
|
};
|
|
3388
3491
|
'font-sizes': {
|
|
3389
3492
|
readonly 150: "0.75rem";
|
|
@@ -3426,6 +3529,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3426
3529
|
};
|
|
3427
3530
|
space: {
|
|
3428
3531
|
readonly 0: "0px";
|
|
3532
|
+
readonly 25: "2px";
|
|
3429
3533
|
readonly 50: "4px";
|
|
3430
3534
|
readonly 100: "8px";
|
|
3431
3535
|
readonly 150: "12px";
|
|
@@ -3784,6 +3888,9 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3784
3888
|
"background-primary-subtle-pressed-hover"?: any;
|
|
3785
3889
|
"background-primary-subtle-selected"?: any;
|
|
3786
3890
|
"background-success"?: any;
|
|
3891
|
+
"background-success-prominent"?: any;
|
|
3892
|
+
"background-success-prominent-active"?: any;
|
|
3893
|
+
"background-success-prominent-hover"?: any;
|
|
3787
3894
|
"background-warning-prominent"?: any;
|
|
3788
3895
|
"background-warning-subtle"?: any;
|
|
3789
3896
|
"border-danger"?: any;
|
|
@@ -3812,6 +3919,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3812
3919
|
"border-primary-hover"?: any;
|
|
3813
3920
|
"border-primary-inverted"?: any;
|
|
3814
3921
|
"border-success"?: any;
|
|
3922
|
+
"border-success-active"?: any;
|
|
3923
|
+
"border-success-hover"?: any;
|
|
3815
3924
|
"border-warning"?: any;
|
|
3816
3925
|
"icon-danger"?: any;
|
|
3817
3926
|
"icon-danger-active"?: any;
|
|
@@ -3831,9 +3940,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3831
3940
|
"icon-primary-inverted"?: any;
|
|
3832
3941
|
"icon-primary-selected"?: any;
|
|
3833
3942
|
"icon-success"?: any;
|
|
3943
|
+
"icon-success-active"?: any;
|
|
3944
|
+
"icon-success-hover"?: any;
|
|
3834
3945
|
"icon-success-inverted"?: any;
|
|
3835
3946
|
"icon-warning"?: any;
|
|
3836
3947
|
"icon-warning-prominent"?: any;
|
|
3948
|
+
"icon-warning-subtle"?: any;
|
|
3837
3949
|
"text-danger"?: any;
|
|
3838
3950
|
"text-danger-active"?: any;
|
|
3839
3951
|
"text-danger-hover"?: any;
|
|
@@ -3855,7 +3967,11 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3855
3967
|
"text-primary-inverted-subtle"?: any;
|
|
3856
3968
|
"text-primary-selected"?: any;
|
|
3857
3969
|
"text-success"?: any;
|
|
3970
|
+
"text-success-active"?: any;
|
|
3971
|
+
"text-success-hover"?: any;
|
|
3972
|
+
"text-success-inverted"?: any;
|
|
3858
3973
|
"text-warning"?: any;
|
|
3974
|
+
"text-warning-subtle"?: any;
|
|
3859
3975
|
};
|
|
3860
3976
|
'font-sizes': {
|
|
3861
3977
|
readonly 150: "0.75rem";
|
|
@@ -3898,6 +4014,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | R
|
|
|
3898
4014
|
};
|
|
3899
4015
|
space: {
|
|
3900
4016
|
readonly 0: "0px";
|
|
4017
|
+
readonly 25: "2px";
|
|
3901
4018
|
readonly 50: "4px";
|
|
3902
4019
|
readonly 100: "8px";
|
|
3903
4020
|
readonly 150: "12px";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-stitches",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,9 +27,9 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"lodash.merge": "^4.6.2",
|
|
30
|
-
"@mirohq/design-system-themes": "^0.5.0",
|
|
31
30
|
"@mirohq/design-system-types": "^0.6.2",
|
|
32
|
-
"@mirohq/design-
|
|
31
|
+
"@mirohq/design-system-themes": "^0.5.1",
|
|
32
|
+
"@mirohq/design-tokens": "^3.4.1"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@types/lodash.merge": "^4.6.7"
|