@mirohq/design-system-stitches 2.0.10-colors.0 → 2.0.11-colors.0
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 +72 -27
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -84,11 +84,12 @@ declare const config: {
|
|
|
84
84
|
readonly 'background-neutrals-body'?: any;
|
|
85
85
|
readonly 'background-neutrals-container'?: any;
|
|
86
86
|
readonly 'background-neutrals-inverted'?: any;
|
|
87
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
87
88
|
readonly 'background-neutrals-subtle'?: any;
|
|
88
89
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
89
90
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
90
91
|
readonly 'background-neutrals-disabled'?: any;
|
|
91
|
-
readonly 'background-neutrals-disabled
|
|
92
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
92
93
|
readonly 'background-neutrals-scrolls'?: any;
|
|
93
94
|
readonly 'background-neutrals-inactive'?: any;
|
|
94
95
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -110,7 +111,7 @@ declare const config: {
|
|
|
110
111
|
readonly 'background-warning-prominent'?: any;
|
|
111
112
|
readonly 'text-neutrals-inverted'?: any;
|
|
112
113
|
readonly 'text-neutrals'?: any;
|
|
113
|
-
readonly 'text-neutrals-
|
|
114
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
114
115
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
115
116
|
readonly 'text-neutrals-placeholder'?: any;
|
|
116
117
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -119,6 +120,7 @@ declare const config: {
|
|
|
119
120
|
readonly 'text-primary-hover'?: any;
|
|
120
121
|
readonly 'text-primary-active'?: any;
|
|
121
122
|
readonly 'text-primary-selected'?: any;
|
|
123
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
122
124
|
readonly 'text-danger-inverted'?: any;
|
|
123
125
|
readonly 'text-danger'?: any;
|
|
124
126
|
readonly 'text-danger-hover'?: any;
|
|
@@ -127,9 +129,12 @@ declare const config: {
|
|
|
127
129
|
readonly 'text-warning'?: any;
|
|
128
130
|
readonly 'icon-neutrals-inverted'?: any;
|
|
129
131
|
readonly 'icon-neutrals'?: any;
|
|
130
|
-
readonly 'icon-neutrals-
|
|
132
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
133
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
131
134
|
readonly 'icon-neutrals-disabled'?: any;
|
|
132
135
|
readonly 'icon-neutrals-search'?: any;
|
|
136
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
137
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
133
138
|
readonly 'icon-primary-inverted'?: any;
|
|
134
139
|
readonly 'icon-primary'?: any;
|
|
135
140
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -493,11 +498,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
493
498
|
readonly 'background-neutrals-body'?: string | number | boolean | undefined;
|
|
494
499
|
readonly 'background-neutrals-container'?: string | number | boolean | undefined;
|
|
495
500
|
readonly 'background-neutrals-inverted'?: string | number | boolean | undefined;
|
|
501
|
+
readonly 'background-neutrals-inverted-subtle'?: string | number | boolean | undefined;
|
|
496
502
|
readonly 'background-neutrals-subtle'?: string | number | boolean | undefined;
|
|
497
503
|
readonly 'background-neutrals-subtle-hover'?: string | number | boolean | undefined;
|
|
498
504
|
readonly 'background-neutrals-subtle-active'?: string | number | boolean | undefined;
|
|
499
505
|
readonly 'background-neutrals-disabled'?: string | number | boolean | undefined;
|
|
500
|
-
readonly 'background-neutrals-disabled
|
|
506
|
+
readonly 'background-neutrals-controls-disabled'?: string | number | boolean | undefined;
|
|
501
507
|
readonly 'background-neutrals-scrolls'?: string | number | boolean | undefined;
|
|
502
508
|
readonly 'background-neutrals-inactive'?: string | number | boolean | undefined;
|
|
503
509
|
readonly 'background-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
@@ -519,7 +525,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
519
525
|
readonly 'background-warning-prominent'?: string | number | boolean | undefined;
|
|
520
526
|
readonly 'text-neutrals-inverted'?: string | number | boolean | undefined;
|
|
521
527
|
readonly 'text-neutrals'?: string | number | boolean | undefined;
|
|
522
|
-
readonly 'text-neutrals-
|
|
528
|
+
readonly 'text-neutrals-subtle'?: string | number | boolean | undefined;
|
|
523
529
|
readonly 'text-neutrals-placeholder-only'?: string | number | boolean | undefined;
|
|
524
530
|
readonly 'text-neutrals-placeholder'?: string | number | boolean | undefined;
|
|
525
531
|
readonly 'text-neutrals-disabled'?: string | number | boolean | undefined;
|
|
@@ -528,6 +534,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
528
534
|
readonly 'text-primary-hover'?: string | number | boolean | undefined;
|
|
529
535
|
readonly 'text-primary-active'?: string | number | boolean | undefined;
|
|
530
536
|
readonly 'text-primary-selected'?: string | number | boolean | undefined;
|
|
537
|
+
readonly 'text-primary-inverted-subtle'?: string | number | boolean | undefined;
|
|
531
538
|
readonly 'text-danger-inverted'?: string | number | boolean | undefined;
|
|
532
539
|
readonly 'text-danger'?: string | number | boolean | undefined;
|
|
533
540
|
readonly 'text-danger-hover'?: string | number | boolean | undefined;
|
|
@@ -536,9 +543,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
536
543
|
readonly 'text-warning'?: string | number | boolean | undefined;
|
|
537
544
|
readonly 'icon-neutrals-inverted'?: string | number | boolean | undefined;
|
|
538
545
|
readonly 'icon-neutrals'?: string | number | boolean | undefined;
|
|
539
|
-
readonly 'icon-neutrals-
|
|
546
|
+
readonly 'icon-neutrals-with-text'?: string | number | boolean | undefined;
|
|
547
|
+
readonly 'icon-neutrals-subtle'?: string | number | boolean | undefined;
|
|
540
548
|
readonly 'icon-neutrals-disabled'?: string | number | boolean | undefined;
|
|
541
549
|
readonly 'icon-neutrals-search'?: string | number | boolean | undefined;
|
|
550
|
+
readonly 'icon-neutrals-inactive'?: string | number | boolean | undefined;
|
|
551
|
+
readonly 'icon-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
542
552
|
readonly 'icon-primary-inverted'?: string | number | boolean | undefined;
|
|
543
553
|
readonly 'icon-primary'?: string | number | boolean | undefined;
|
|
544
554
|
readonly 'icon-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -733,11 +743,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
733
743
|
readonly 'background-neutrals-body'?: string | number | boolean | undefined;
|
|
734
744
|
readonly 'background-neutrals-container'?: string | number | boolean | undefined;
|
|
735
745
|
readonly 'background-neutrals-inverted'?: string | number | boolean | undefined;
|
|
746
|
+
readonly 'background-neutrals-inverted-subtle'?: string | number | boolean | undefined;
|
|
736
747
|
readonly 'background-neutrals-subtle'?: string | number | boolean | undefined;
|
|
737
748
|
readonly 'background-neutrals-subtle-hover'?: string | number | boolean | undefined;
|
|
738
749
|
readonly 'background-neutrals-subtle-active'?: string | number | boolean | undefined;
|
|
739
750
|
readonly 'background-neutrals-disabled'?: string | number | boolean | undefined;
|
|
740
|
-
readonly 'background-neutrals-disabled
|
|
751
|
+
readonly 'background-neutrals-controls-disabled'?: string | number | boolean | undefined;
|
|
741
752
|
readonly 'background-neutrals-scrolls'?: string | number | boolean | undefined;
|
|
742
753
|
readonly 'background-neutrals-inactive'?: string | number | boolean | undefined;
|
|
743
754
|
readonly 'background-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
@@ -759,7 +770,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
759
770
|
readonly 'background-warning-prominent'?: string | number | boolean | undefined;
|
|
760
771
|
readonly 'text-neutrals-inverted'?: string | number | boolean | undefined;
|
|
761
772
|
readonly 'text-neutrals'?: string | number | boolean | undefined;
|
|
762
|
-
readonly 'text-neutrals-
|
|
773
|
+
readonly 'text-neutrals-subtle'?: string | number | boolean | undefined;
|
|
763
774
|
readonly 'text-neutrals-placeholder-only'?: string | number | boolean | undefined;
|
|
764
775
|
readonly 'text-neutrals-placeholder'?: string | number | boolean | undefined;
|
|
765
776
|
readonly 'text-neutrals-disabled'?: string | number | boolean | undefined;
|
|
@@ -768,6 +779,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
768
779
|
readonly 'text-primary-hover'?: string | number | boolean | undefined;
|
|
769
780
|
readonly 'text-primary-active'?: string | number | boolean | undefined;
|
|
770
781
|
readonly 'text-primary-selected'?: string | number | boolean | undefined;
|
|
782
|
+
readonly 'text-primary-inverted-subtle'?: string | number | boolean | undefined;
|
|
771
783
|
readonly 'text-danger-inverted'?: string | number | boolean | undefined;
|
|
772
784
|
readonly 'text-danger'?: string | number | boolean | undefined;
|
|
773
785
|
readonly 'text-danger-hover'?: string | number | boolean | undefined;
|
|
@@ -776,9 +788,12 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
776
788
|
readonly 'text-warning'?: string | number | boolean | undefined;
|
|
777
789
|
readonly 'icon-neutrals-inverted'?: string | number | boolean | undefined;
|
|
778
790
|
readonly 'icon-neutrals'?: string | number | boolean | undefined;
|
|
779
|
-
readonly 'icon-neutrals-
|
|
791
|
+
readonly 'icon-neutrals-with-text'?: string | number | boolean | undefined;
|
|
792
|
+
readonly 'icon-neutrals-subtle'?: string | number | boolean | undefined;
|
|
780
793
|
readonly 'icon-neutrals-disabled'?: string | number | boolean | undefined;
|
|
781
794
|
readonly 'icon-neutrals-search'?: string | number | boolean | undefined;
|
|
795
|
+
readonly 'icon-neutrals-inactive'?: string | number | boolean | undefined;
|
|
796
|
+
readonly 'icon-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
782
797
|
readonly 'icon-primary-inverted'?: string | number | boolean | undefined;
|
|
783
798
|
readonly 'icon-primary'?: string | number | boolean | undefined;
|
|
784
799
|
readonly 'icon-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -979,11 +994,12 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
979
994
|
readonly 'background-neutrals-body'?: any;
|
|
980
995
|
readonly 'background-neutrals-container'?: any;
|
|
981
996
|
readonly 'background-neutrals-inverted'?: any;
|
|
997
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
982
998
|
readonly 'background-neutrals-subtle'?: any;
|
|
983
999
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
984
1000
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
985
1001
|
readonly 'background-neutrals-disabled'?: any;
|
|
986
|
-
readonly 'background-neutrals-disabled
|
|
1002
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
987
1003
|
readonly 'background-neutrals-scrolls'?: any;
|
|
988
1004
|
readonly 'background-neutrals-inactive'?: any;
|
|
989
1005
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -1005,7 +1021,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1005
1021
|
readonly 'background-warning-prominent'?: any;
|
|
1006
1022
|
readonly 'text-neutrals-inverted'?: any;
|
|
1007
1023
|
readonly 'text-neutrals'?: any;
|
|
1008
|
-
readonly 'text-neutrals-
|
|
1024
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
1009
1025
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1010
1026
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1011
1027
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -1014,6 +1030,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1014
1030
|
readonly 'text-primary-hover'?: any;
|
|
1015
1031
|
readonly 'text-primary-active'?: any;
|
|
1016
1032
|
readonly 'text-primary-selected'?: any;
|
|
1033
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
1017
1034
|
readonly 'text-danger-inverted'?: any;
|
|
1018
1035
|
readonly 'text-danger'?: any;
|
|
1019
1036
|
readonly 'text-danger-hover'?: any;
|
|
@@ -1022,9 +1039,12 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1022
1039
|
readonly 'text-warning'?: any;
|
|
1023
1040
|
readonly 'icon-neutrals-inverted'?: any;
|
|
1024
1041
|
readonly 'icon-neutrals'?: any;
|
|
1025
|
-
readonly 'icon-neutrals-
|
|
1042
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
1043
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
1026
1044
|
readonly 'icon-neutrals-disabled'?: any;
|
|
1027
1045
|
readonly 'icon-neutrals-search'?: any;
|
|
1046
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
1047
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1028
1048
|
readonly 'icon-primary-inverted'?: any;
|
|
1029
1049
|
readonly 'icon-primary'?: any;
|
|
1030
1050
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -1403,11 +1423,12 @@ declare const globalCss: <Styles extends {
|
|
|
1403
1423
|
readonly 'background-neutrals-body'?: any;
|
|
1404
1424
|
readonly 'background-neutrals-container'?: any;
|
|
1405
1425
|
readonly 'background-neutrals-inverted'?: any;
|
|
1426
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1406
1427
|
readonly 'background-neutrals-subtle'?: any;
|
|
1407
1428
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
1408
1429
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
1409
1430
|
readonly 'background-neutrals-disabled'?: any;
|
|
1410
|
-
readonly 'background-neutrals-disabled
|
|
1431
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1411
1432
|
readonly 'background-neutrals-scrolls'?: any;
|
|
1412
1433
|
readonly 'background-neutrals-inactive'?: any;
|
|
1413
1434
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -1429,7 +1450,7 @@ declare const globalCss: <Styles extends {
|
|
|
1429
1450
|
readonly 'background-warning-prominent'?: any;
|
|
1430
1451
|
readonly 'text-neutrals-inverted'?: any;
|
|
1431
1452
|
readonly 'text-neutrals'?: any;
|
|
1432
|
-
readonly 'text-neutrals-
|
|
1453
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
1433
1454
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1434
1455
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1435
1456
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -1438,6 +1459,7 @@ declare const globalCss: <Styles extends {
|
|
|
1438
1459
|
readonly 'text-primary-hover'?: any;
|
|
1439
1460
|
readonly 'text-primary-active'?: any;
|
|
1440
1461
|
readonly 'text-primary-selected'?: any;
|
|
1462
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
1441
1463
|
readonly 'text-danger-inverted'?: any;
|
|
1442
1464
|
readonly 'text-danger'?: any;
|
|
1443
1465
|
readonly 'text-danger-hover'?: any;
|
|
@@ -1446,9 +1468,12 @@ declare const globalCss: <Styles extends {
|
|
|
1446
1468
|
readonly 'text-warning'?: any;
|
|
1447
1469
|
readonly 'icon-neutrals-inverted'?: any;
|
|
1448
1470
|
readonly 'icon-neutrals'?: any;
|
|
1449
|
-
readonly 'icon-neutrals-
|
|
1471
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
1472
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
1450
1473
|
readonly 'icon-neutrals-disabled'?: any;
|
|
1451
1474
|
readonly 'icon-neutrals-search'?: any;
|
|
1475
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
1476
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1452
1477
|
readonly 'icon-primary-inverted'?: any;
|
|
1453
1478
|
readonly 'icon-primary'?: any;
|
|
1454
1479
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -1809,11 +1834,12 @@ declare const globalCss: <Styles extends {
|
|
|
1809
1834
|
readonly 'background-neutrals-body'?: any;
|
|
1810
1835
|
readonly 'background-neutrals-container'?: any;
|
|
1811
1836
|
readonly 'background-neutrals-inverted'?: any;
|
|
1837
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1812
1838
|
readonly 'background-neutrals-subtle'?: any;
|
|
1813
1839
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
1814
1840
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
1815
1841
|
readonly 'background-neutrals-disabled'?: any;
|
|
1816
|
-
readonly 'background-neutrals-disabled
|
|
1842
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1817
1843
|
readonly 'background-neutrals-scrolls'?: any;
|
|
1818
1844
|
readonly 'background-neutrals-inactive'?: any;
|
|
1819
1845
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -1835,7 +1861,7 @@ declare const globalCss: <Styles extends {
|
|
|
1835
1861
|
readonly 'background-warning-prominent'?: any;
|
|
1836
1862
|
readonly 'text-neutrals-inverted'?: any;
|
|
1837
1863
|
readonly 'text-neutrals'?: any;
|
|
1838
|
-
readonly 'text-neutrals-
|
|
1864
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
1839
1865
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1840
1866
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1841
1867
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -1844,6 +1870,7 @@ declare const globalCss: <Styles extends {
|
|
|
1844
1870
|
readonly 'text-primary-hover'?: any;
|
|
1845
1871
|
readonly 'text-primary-active'?: any;
|
|
1846
1872
|
readonly 'text-primary-selected'?: any;
|
|
1873
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
1847
1874
|
readonly 'text-danger-inverted'?: any;
|
|
1848
1875
|
readonly 'text-danger'?: any;
|
|
1849
1876
|
readonly 'text-danger-hover'?: any;
|
|
@@ -1852,9 +1879,12 @@ declare const globalCss: <Styles extends {
|
|
|
1852
1879
|
readonly 'text-warning'?: any;
|
|
1853
1880
|
readonly 'icon-neutrals-inverted'?: any;
|
|
1854
1881
|
readonly 'icon-neutrals'?: any;
|
|
1855
|
-
readonly 'icon-neutrals-
|
|
1882
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
1883
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
1856
1884
|
readonly 'icon-neutrals-disabled'?: any;
|
|
1857
1885
|
readonly 'icon-neutrals-search'?: any;
|
|
1886
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
1887
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
1858
1888
|
readonly 'icon-primary-inverted'?: any;
|
|
1859
1889
|
readonly 'icon-primary'?: any;
|
|
1860
1890
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -2216,11 +2246,12 @@ declare const keyframes: (style: {
|
|
|
2216
2246
|
readonly 'background-neutrals-body'?: any;
|
|
2217
2247
|
readonly 'background-neutrals-container'?: any;
|
|
2218
2248
|
readonly 'background-neutrals-inverted'?: any;
|
|
2249
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
2219
2250
|
readonly 'background-neutrals-subtle'?: any;
|
|
2220
2251
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
2221
2252
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
2222
2253
|
readonly 'background-neutrals-disabled'?: any;
|
|
2223
|
-
readonly 'background-neutrals-disabled
|
|
2254
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
2224
2255
|
readonly 'background-neutrals-scrolls'?: any;
|
|
2225
2256
|
readonly 'background-neutrals-inactive'?: any;
|
|
2226
2257
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -2242,7 +2273,7 @@ declare const keyframes: (style: {
|
|
|
2242
2273
|
readonly 'background-warning-prominent'?: any;
|
|
2243
2274
|
readonly 'text-neutrals-inverted'?: any;
|
|
2244
2275
|
readonly 'text-neutrals'?: any;
|
|
2245
|
-
readonly 'text-neutrals-
|
|
2276
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
2246
2277
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
2247
2278
|
readonly 'text-neutrals-placeholder'?: any;
|
|
2248
2279
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -2251,6 +2282,7 @@ declare const keyframes: (style: {
|
|
|
2251
2282
|
readonly 'text-primary-hover'?: any;
|
|
2252
2283
|
readonly 'text-primary-active'?: any;
|
|
2253
2284
|
readonly 'text-primary-selected'?: any;
|
|
2285
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
2254
2286
|
readonly 'text-danger-inverted'?: any;
|
|
2255
2287
|
readonly 'text-danger'?: any;
|
|
2256
2288
|
readonly 'text-danger-hover'?: any;
|
|
@@ -2259,9 +2291,12 @@ declare const keyframes: (style: {
|
|
|
2259
2291
|
readonly 'text-warning'?: any;
|
|
2260
2292
|
readonly 'icon-neutrals-inverted'?: any;
|
|
2261
2293
|
readonly 'icon-neutrals'?: any;
|
|
2262
|
-
readonly 'icon-neutrals-
|
|
2294
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
2295
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
2263
2296
|
readonly 'icon-neutrals-disabled'?: any;
|
|
2264
2297
|
readonly 'icon-neutrals-search'?: any;
|
|
2298
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
2299
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
2265
2300
|
readonly 'icon-primary-inverted'?: any;
|
|
2266
2301
|
readonly 'icon-primary'?: any;
|
|
2267
2302
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -2843,11 +2878,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
2843
2878
|
readonly 'background-neutrals-body'?: any;
|
|
2844
2879
|
readonly 'background-neutrals-container'?: any;
|
|
2845
2880
|
readonly 'background-neutrals-inverted'?: any;
|
|
2881
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
2846
2882
|
readonly 'background-neutrals-subtle'?: any;
|
|
2847
2883
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
2848
2884
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
2849
2885
|
readonly 'background-neutrals-disabled'?: any;
|
|
2850
|
-
readonly 'background-neutrals-disabled
|
|
2886
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
2851
2887
|
readonly 'background-neutrals-scrolls'?: any;
|
|
2852
2888
|
readonly 'background-neutrals-inactive'?: any;
|
|
2853
2889
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -2869,7 +2905,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
2869
2905
|
readonly 'background-warning-prominent'?: any;
|
|
2870
2906
|
readonly 'text-neutrals-inverted'?: any;
|
|
2871
2907
|
readonly 'text-neutrals'?: any;
|
|
2872
|
-
readonly 'text-neutrals-
|
|
2908
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
2873
2909
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
2874
2910
|
readonly 'text-neutrals-placeholder'?: any;
|
|
2875
2911
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -2878,6 +2914,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
2878
2914
|
readonly 'text-primary-hover'?: any;
|
|
2879
2915
|
readonly 'text-primary-active'?: any;
|
|
2880
2916
|
readonly 'text-primary-selected'?: any;
|
|
2917
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
2881
2918
|
readonly 'text-danger-inverted'?: any;
|
|
2882
2919
|
readonly 'text-danger'?: any;
|
|
2883
2920
|
readonly 'text-danger-hover'?: any;
|
|
@@ -2886,9 +2923,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
2886
2923
|
readonly 'text-warning'?: any;
|
|
2887
2924
|
readonly 'icon-neutrals-inverted'?: any;
|
|
2888
2925
|
readonly 'icon-neutrals'?: any;
|
|
2889
|
-
readonly 'icon-neutrals-
|
|
2926
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
2927
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
2890
2928
|
readonly 'icon-neutrals-disabled'?: any;
|
|
2891
2929
|
readonly 'icon-neutrals-search'?: any;
|
|
2930
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
2931
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
2892
2932
|
readonly 'icon-primary-inverted'?: any;
|
|
2893
2933
|
readonly 'icon-primary'?: any;
|
|
2894
2934
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -3248,11 +3288,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3248
3288
|
readonly 'background-neutrals-body'?: any;
|
|
3249
3289
|
readonly 'background-neutrals-container'?: any;
|
|
3250
3290
|
readonly 'background-neutrals-inverted'?: any;
|
|
3291
|
+
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
3251
3292
|
readonly 'background-neutrals-subtle'?: any;
|
|
3252
3293
|
readonly 'background-neutrals-subtle-hover'?: any;
|
|
3253
3294
|
readonly 'background-neutrals-subtle-active'?: any;
|
|
3254
3295
|
readonly 'background-neutrals-disabled'?: any;
|
|
3255
|
-
readonly 'background-neutrals-disabled
|
|
3296
|
+
readonly 'background-neutrals-controls-disabled'?: any;
|
|
3256
3297
|
readonly 'background-neutrals-scrolls'?: any;
|
|
3257
3298
|
readonly 'background-neutrals-inactive'?: any;
|
|
3258
3299
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
@@ -3274,7 +3315,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3274
3315
|
readonly 'background-warning-prominent'?: any;
|
|
3275
3316
|
readonly 'text-neutrals-inverted'?: any;
|
|
3276
3317
|
readonly 'text-neutrals'?: any;
|
|
3277
|
-
readonly 'text-neutrals-
|
|
3318
|
+
readonly 'text-neutrals-subtle'?: any;
|
|
3278
3319
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
3279
3320
|
readonly 'text-neutrals-placeholder'?: any;
|
|
3280
3321
|
readonly 'text-neutrals-disabled'?: any;
|
|
@@ -3283,6 +3324,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3283
3324
|
readonly 'text-primary-hover'?: any;
|
|
3284
3325
|
readonly 'text-primary-active'?: any;
|
|
3285
3326
|
readonly 'text-primary-selected'?: any;
|
|
3327
|
+
readonly 'text-primary-inverted-subtle'?: any;
|
|
3286
3328
|
readonly 'text-danger-inverted'?: any;
|
|
3287
3329
|
readonly 'text-danger'?: any;
|
|
3288
3330
|
readonly 'text-danger-hover'?: any;
|
|
@@ -3291,9 +3333,12 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3291
3333
|
readonly 'text-warning'?: any;
|
|
3292
3334
|
readonly 'icon-neutrals-inverted'?: any;
|
|
3293
3335
|
readonly 'icon-neutrals'?: any;
|
|
3294
|
-
readonly 'icon-neutrals-
|
|
3336
|
+
readonly 'icon-neutrals-with-text'?: any;
|
|
3337
|
+
readonly 'icon-neutrals-subtle'?: any;
|
|
3295
3338
|
readonly 'icon-neutrals-disabled'?: any;
|
|
3296
3339
|
readonly 'icon-neutrals-search'?: any;
|
|
3340
|
+
readonly 'icon-neutrals-inactive'?: any;
|
|
3341
|
+
readonly 'icon-neutrals-inactive-hover'?: any;
|
|
3297
3342
|
readonly 'icon-primary-inverted'?: any;
|
|
3298
3343
|
readonly 'icon-primary'?: any;
|
|
3299
3344
|
readonly 'icon-primary-hover'?: any;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-stitches",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.11-colors.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@mirohq/design-system-types": "^0.2.0",
|
|
30
|
-
"@mirohq/design-tokens": "^
|
|
30
|
+
"@mirohq/design-tokens": "^1.6.2-colors.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@mirohq/design-system-primitive": "^1.0.4"
|