@mirohq/design-system-stitches 2.3.1 → 2.3.2
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 +99 -45
- package/package.json +2 -5
package/dist/types.d.ts
CHANGED
|
@@ -86,7 +86,6 @@ declare const config: {
|
|
|
86
86
|
readonly 'background-danger-prominent-active'?: any;
|
|
87
87
|
readonly 'background-danger-prominent-hover'?: any;
|
|
88
88
|
readonly 'background-neutrals'?: any;
|
|
89
|
-
readonly 'background-neutrals-body'?: any;
|
|
90
89
|
readonly 'background-neutrals-container'?: any;
|
|
91
90
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
92
91
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -94,6 +93,8 @@ declare const config: {
|
|
|
94
93
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
95
94
|
readonly 'background-neutrals-inverted'?: any;
|
|
96
95
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
96
|
+
readonly 'background-neutrals-page'?: any;
|
|
97
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
97
98
|
readonly 'background-neutrals-scrolls'?: any;
|
|
98
99
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
99
100
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -117,12 +118,11 @@ declare const config: {
|
|
|
117
118
|
readonly 'text-neutrals'?: any;
|
|
118
119
|
readonly 'text-neutrals-disabled'?: any;
|
|
119
120
|
readonly 'text-neutrals-inverted'?: any;
|
|
120
|
-
readonly 'text-neutrals-link'?: any;
|
|
121
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
122
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
123
121
|
readonly 'text-neutrals-placeholder'?: any;
|
|
124
122
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
125
123
|
readonly 'text-neutrals-subtle'?: any;
|
|
124
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
125
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
126
126
|
readonly 'text-primary'?: any;
|
|
127
127
|
readonly 'text-primary-active'?: any;
|
|
128
128
|
readonly 'text-primary-hover'?: any;
|
|
@@ -142,7 +142,7 @@ declare const config: {
|
|
|
142
142
|
readonly 'icon-neutrals-inverted'?: any;
|
|
143
143
|
readonly 'icon-neutrals-search'?: any;
|
|
144
144
|
readonly 'icon-neutrals-subtle'?: any;
|
|
145
|
-
readonly 'icon-neutrals-
|
|
145
|
+
readonly 'icon-neutrals-text'?: any;
|
|
146
146
|
readonly 'icon-primary'?: any;
|
|
147
147
|
readonly 'icon-primary-active'?: any;
|
|
148
148
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -151,7 +151,10 @@ declare const config: {
|
|
|
151
151
|
readonly 'icon-success'?: any;
|
|
152
152
|
readonly 'icon-success-inverted'?: any;
|
|
153
153
|
readonly 'icon-warning'?: any;
|
|
154
|
+
readonly 'icon-warning-prominent'?: any;
|
|
154
155
|
readonly 'border-danger'?: any;
|
|
156
|
+
readonly 'border-danger-active'?: any;
|
|
157
|
+
readonly 'border-danger-hover'?: any;
|
|
155
158
|
readonly 'border-focus-inner'?: any;
|
|
156
159
|
readonly 'border-focus-middle'?: any;
|
|
157
160
|
readonly 'border-focus-outer'?: any;
|
|
@@ -163,6 +166,9 @@ declare const config: {
|
|
|
163
166
|
readonly 'border-neutrals-hover'?: any;
|
|
164
167
|
readonly 'border-neutrals-inverted'?: any;
|
|
165
168
|
readonly 'border-neutrals-subtle'?: any;
|
|
169
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
170
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
171
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
166
172
|
readonly 'border-primary'?: any;
|
|
167
173
|
readonly 'border-primary-active'?: any;
|
|
168
174
|
readonly 'border-primary-hover'?: any;
|
|
@@ -527,7 +533,6 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
527
533
|
readonly 'background-danger-prominent-active'?: string | number | boolean | undefined;
|
|
528
534
|
readonly 'background-danger-prominent-hover'?: string | number | boolean | undefined;
|
|
529
535
|
readonly 'background-neutrals'?: string | number | boolean | undefined;
|
|
530
|
-
readonly 'background-neutrals-body'?: string | number | boolean | undefined;
|
|
531
536
|
readonly 'background-neutrals-container'?: string | number | boolean | undefined;
|
|
532
537
|
readonly 'background-neutrals-controls-disabled'?: string | number | boolean | undefined;
|
|
533
538
|
readonly 'background-neutrals-disabled'?: string | number | boolean | undefined;
|
|
@@ -535,6 +540,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
535
540
|
readonly 'background-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
536
541
|
readonly 'background-neutrals-inverted'?: string | number | boolean | undefined;
|
|
537
542
|
readonly 'background-neutrals-inverted-subtle'?: string | number | boolean | undefined;
|
|
543
|
+
readonly 'background-neutrals-page'?: string | number | boolean | undefined;
|
|
544
|
+
readonly 'background-neutrals-page-subtle'?: string | number | boolean | undefined;
|
|
538
545
|
readonly 'background-neutrals-scrolls'?: string | number | boolean | undefined;
|
|
539
546
|
readonly 'background-neutrals-scrolls-hover'?: string | number | boolean | undefined;
|
|
540
547
|
readonly 'background-neutrals-subtle'?: string | number | boolean | undefined;
|
|
@@ -558,12 +565,11 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
558
565
|
readonly 'text-neutrals'?: string | number | boolean | undefined;
|
|
559
566
|
readonly 'text-neutrals-disabled'?: string | number | boolean | undefined;
|
|
560
567
|
readonly 'text-neutrals-inverted'?: string | number | boolean | undefined;
|
|
561
|
-
readonly 'text-neutrals-link'?: string | number | boolean | undefined;
|
|
562
|
-
readonly 'text-neutrals-link-active'?: string | number | boolean | undefined;
|
|
563
|
-
readonly 'text-neutrals-link-hover'?: string | number | boolean | undefined;
|
|
564
568
|
readonly 'text-neutrals-placeholder'?: string | number | boolean | undefined;
|
|
565
569
|
readonly 'text-neutrals-placeholder-only'?: string | number | boolean | undefined;
|
|
566
570
|
readonly 'text-neutrals-subtle'?: string | number | boolean | undefined;
|
|
571
|
+
readonly 'text-neutrals-subtle-active'?: string | number | boolean | undefined;
|
|
572
|
+
readonly 'text-neutrals-subtle-hover'?: string | number | boolean | undefined;
|
|
567
573
|
readonly 'text-primary'?: string | number | boolean | undefined;
|
|
568
574
|
readonly 'text-primary-active'?: string | number | boolean | undefined;
|
|
569
575
|
readonly 'text-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -583,7 +589,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
583
589
|
readonly 'icon-neutrals-inverted'?: string | number | boolean | undefined;
|
|
584
590
|
readonly 'icon-neutrals-search'?: string | number | boolean | undefined;
|
|
585
591
|
readonly 'icon-neutrals-subtle'?: string | number | boolean | undefined;
|
|
586
|
-
readonly 'icon-neutrals-
|
|
592
|
+
readonly 'icon-neutrals-text'?: string | number | boolean | undefined;
|
|
587
593
|
readonly 'icon-primary'?: string | number | boolean | undefined;
|
|
588
594
|
readonly 'icon-primary-active'?: string | number | boolean | undefined;
|
|
589
595
|
readonly 'icon-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -592,7 +598,10 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
592
598
|
readonly 'icon-success'?: string | number | boolean | undefined;
|
|
593
599
|
readonly 'icon-success-inverted'?: string | number | boolean | undefined;
|
|
594
600
|
readonly 'icon-warning'?: string | number | boolean | undefined;
|
|
601
|
+
readonly 'icon-warning-prominent'?: string | number | boolean | undefined;
|
|
595
602
|
readonly 'border-danger'?: string | number | boolean | undefined;
|
|
603
|
+
readonly 'border-danger-active'?: string | number | boolean | undefined;
|
|
604
|
+
readonly 'border-danger-hover'?: string | number | boolean | undefined;
|
|
596
605
|
readonly 'border-focus-inner'?: string | number | boolean | undefined;
|
|
597
606
|
readonly 'border-focus-middle'?: string | number | boolean | undefined;
|
|
598
607
|
readonly 'border-focus-outer'?: string | number | boolean | undefined;
|
|
@@ -604,6 +613,9 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
604
613
|
readonly 'border-neutrals-hover'?: string | number | boolean | undefined;
|
|
605
614
|
readonly 'border-neutrals-inverted'?: string | number | boolean | undefined;
|
|
606
615
|
readonly 'border-neutrals-subtle'?: string | number | boolean | undefined;
|
|
616
|
+
readonly 'border-neutrals-text-subtle'?: string | number | boolean | undefined;
|
|
617
|
+
readonly 'border-neutrals-text-subtle-active'?: string | number | boolean | undefined;
|
|
618
|
+
readonly 'border-neutrals-text-subtle-hover'?: string | number | boolean | undefined;
|
|
607
619
|
readonly 'border-primary'?: string | number | boolean | undefined;
|
|
608
620
|
readonly 'border-primary-active'?: string | number | boolean | undefined;
|
|
609
621
|
readonly 'border-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -788,7 +800,6 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
788
800
|
readonly 'background-danger-prominent-active'?: string | number | boolean | undefined;
|
|
789
801
|
readonly 'background-danger-prominent-hover'?: string | number | boolean | undefined;
|
|
790
802
|
readonly 'background-neutrals'?: string | number | boolean | undefined;
|
|
791
|
-
readonly 'background-neutrals-body'?: string | number | boolean | undefined;
|
|
792
803
|
readonly 'background-neutrals-container'?: string | number | boolean | undefined;
|
|
793
804
|
readonly 'background-neutrals-controls-disabled'?: string | number | boolean | undefined;
|
|
794
805
|
readonly 'background-neutrals-disabled'?: string | number | boolean | undefined;
|
|
@@ -796,6 +807,8 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
796
807
|
readonly 'background-neutrals-inactive-hover'?: string | number | boolean | undefined;
|
|
797
808
|
readonly 'background-neutrals-inverted'?: string | number | boolean | undefined;
|
|
798
809
|
readonly 'background-neutrals-inverted-subtle'?: string | number | boolean | undefined;
|
|
810
|
+
readonly 'background-neutrals-page'?: string | number | boolean | undefined;
|
|
811
|
+
readonly 'background-neutrals-page-subtle'?: string | number | boolean | undefined;
|
|
799
812
|
readonly 'background-neutrals-scrolls'?: string | number | boolean | undefined;
|
|
800
813
|
readonly 'background-neutrals-scrolls-hover'?: string | number | boolean | undefined;
|
|
801
814
|
readonly 'background-neutrals-subtle'?: string | number | boolean | undefined;
|
|
@@ -819,12 +832,11 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
819
832
|
readonly 'text-neutrals'?: string | number | boolean | undefined;
|
|
820
833
|
readonly 'text-neutrals-disabled'?: string | number | boolean | undefined;
|
|
821
834
|
readonly 'text-neutrals-inverted'?: string | number | boolean | undefined;
|
|
822
|
-
readonly 'text-neutrals-link'?: string | number | boolean | undefined;
|
|
823
|
-
readonly 'text-neutrals-link-active'?: string | number | boolean | undefined;
|
|
824
|
-
readonly 'text-neutrals-link-hover'?: string | number | boolean | undefined;
|
|
825
835
|
readonly 'text-neutrals-placeholder'?: string | number | boolean | undefined;
|
|
826
836
|
readonly 'text-neutrals-placeholder-only'?: string | number | boolean | undefined;
|
|
827
837
|
readonly 'text-neutrals-subtle'?: string | number | boolean | undefined;
|
|
838
|
+
readonly 'text-neutrals-subtle-active'?: string | number | boolean | undefined;
|
|
839
|
+
readonly 'text-neutrals-subtle-hover'?: string | number | boolean | undefined;
|
|
828
840
|
readonly 'text-primary'?: string | number | boolean | undefined;
|
|
829
841
|
readonly 'text-primary-active'?: string | number | boolean | undefined;
|
|
830
842
|
readonly 'text-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -844,7 +856,7 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
844
856
|
readonly 'icon-neutrals-inverted'?: string | number | boolean | undefined;
|
|
845
857
|
readonly 'icon-neutrals-search'?: string | number | boolean | undefined;
|
|
846
858
|
readonly 'icon-neutrals-subtle'?: string | number | boolean | undefined;
|
|
847
|
-
readonly 'icon-neutrals-
|
|
859
|
+
readonly 'icon-neutrals-text'?: string | number | boolean | undefined;
|
|
848
860
|
readonly 'icon-primary'?: string | number | boolean | undefined;
|
|
849
861
|
readonly 'icon-primary-active'?: string | number | boolean | undefined;
|
|
850
862
|
readonly 'icon-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -853,7 +865,10 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
853
865
|
readonly 'icon-success'?: string | number | boolean | undefined;
|
|
854
866
|
readonly 'icon-success-inverted'?: string | number | boolean | undefined;
|
|
855
867
|
readonly 'icon-warning'?: string | number | boolean | undefined;
|
|
868
|
+
readonly 'icon-warning-prominent'?: string | number | boolean | undefined;
|
|
856
869
|
readonly 'border-danger'?: string | number | boolean | undefined;
|
|
870
|
+
readonly 'border-danger-active'?: string | number | boolean | undefined;
|
|
871
|
+
readonly 'border-danger-hover'?: string | number | boolean | undefined;
|
|
857
872
|
readonly 'border-focus-inner'?: string | number | boolean | undefined;
|
|
858
873
|
readonly 'border-focus-middle'?: string | number | boolean | undefined;
|
|
859
874
|
readonly 'border-focus-outer'?: string | number | boolean | undefined;
|
|
@@ -865,6 +880,9 @@ declare const createTheme: <Argument0 extends string | ({
|
|
|
865
880
|
readonly 'border-neutrals-hover'?: string | number | boolean | undefined;
|
|
866
881
|
readonly 'border-neutrals-inverted'?: string | number | boolean | undefined;
|
|
867
882
|
readonly 'border-neutrals-subtle'?: string | number | boolean | undefined;
|
|
883
|
+
readonly 'border-neutrals-text-subtle'?: string | number | boolean | undefined;
|
|
884
|
+
readonly 'border-neutrals-text-subtle-active'?: string | number | boolean | undefined;
|
|
885
|
+
readonly 'border-neutrals-text-subtle-hover'?: string | number | boolean | undefined;
|
|
868
886
|
readonly 'border-primary'?: string | number | boolean | undefined;
|
|
869
887
|
readonly 'border-primary-active'?: string | number | boolean | undefined;
|
|
870
888
|
readonly 'border-primary-hover'?: string | number | boolean | undefined;
|
|
@@ -1055,7 +1073,6 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1055
1073
|
readonly 'background-danger-prominent-active'?: any;
|
|
1056
1074
|
readonly 'background-danger-prominent-hover'?: any;
|
|
1057
1075
|
readonly 'background-neutrals'?: any;
|
|
1058
|
-
readonly 'background-neutrals-body'?: any;
|
|
1059
1076
|
readonly 'background-neutrals-container'?: any;
|
|
1060
1077
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1061
1078
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -1063,6 +1080,8 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1063
1080
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
1064
1081
|
readonly 'background-neutrals-inverted'?: any;
|
|
1065
1082
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1083
|
+
readonly 'background-neutrals-page'?: any;
|
|
1084
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
1066
1085
|
readonly 'background-neutrals-scrolls'?: any;
|
|
1067
1086
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
1068
1087
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -1086,12 +1105,11 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1086
1105
|
readonly 'text-neutrals'?: any;
|
|
1087
1106
|
readonly 'text-neutrals-disabled'?: any;
|
|
1088
1107
|
readonly 'text-neutrals-inverted'?: any;
|
|
1089
|
-
readonly 'text-neutrals-link'?: any;
|
|
1090
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
1091
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
1092
1108
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1093
1109
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1094
1110
|
readonly 'text-neutrals-subtle'?: any;
|
|
1111
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
1112
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
1095
1113
|
readonly 'text-primary'?: any;
|
|
1096
1114
|
readonly 'text-primary-active'?: any;
|
|
1097
1115
|
readonly 'text-primary-hover'?: any;
|
|
@@ -1111,7 +1129,7 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1111
1129
|
readonly 'icon-neutrals-inverted'?: any;
|
|
1112
1130
|
readonly 'icon-neutrals-search'?: any;
|
|
1113
1131
|
readonly 'icon-neutrals-subtle'?: any;
|
|
1114
|
-
readonly 'icon-neutrals-
|
|
1132
|
+
readonly 'icon-neutrals-text'?: any;
|
|
1115
1133
|
readonly 'icon-primary'?: any;
|
|
1116
1134
|
readonly 'icon-primary-active'?: any;
|
|
1117
1135
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -1120,7 +1138,10 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1120
1138
|
readonly 'icon-success'?: any;
|
|
1121
1139
|
readonly 'icon-success-inverted'?: any;
|
|
1122
1140
|
readonly 'icon-warning'?: any;
|
|
1141
|
+
readonly 'icon-warning-prominent'?: any;
|
|
1123
1142
|
readonly 'border-danger'?: any;
|
|
1143
|
+
readonly 'border-danger-active'?: any;
|
|
1144
|
+
readonly 'border-danger-hover'?: any;
|
|
1124
1145
|
readonly 'border-focus-inner'?: any;
|
|
1125
1146
|
readonly 'border-focus-middle'?: any;
|
|
1126
1147
|
readonly 'border-focus-outer'?: any;
|
|
@@ -1132,6 +1153,9 @@ declare const css: <Composers extends (string | _stitches_react_types_util.Funct
|
|
|
1132
1153
|
readonly 'border-neutrals-hover'?: any;
|
|
1133
1154
|
readonly 'border-neutrals-inverted'?: any;
|
|
1134
1155
|
readonly 'border-neutrals-subtle'?: any;
|
|
1156
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
1157
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
1158
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
1135
1159
|
readonly 'border-primary'?: any;
|
|
1136
1160
|
readonly 'border-primary-active'?: any;
|
|
1137
1161
|
readonly 'border-primary-hover'?: any;
|
|
@@ -1511,7 +1535,6 @@ declare const globalCss: <Styles extends {
|
|
|
1511
1535
|
readonly 'background-danger-prominent-active'?: any;
|
|
1512
1536
|
readonly 'background-danger-prominent-hover'?: any;
|
|
1513
1537
|
readonly 'background-neutrals'?: any;
|
|
1514
|
-
readonly 'background-neutrals-body'?: any;
|
|
1515
1538
|
readonly 'background-neutrals-container'?: any;
|
|
1516
1539
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1517
1540
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -1519,6 +1542,8 @@ declare const globalCss: <Styles extends {
|
|
|
1519
1542
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
1520
1543
|
readonly 'background-neutrals-inverted'?: any;
|
|
1521
1544
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1545
|
+
readonly 'background-neutrals-page'?: any;
|
|
1546
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
1522
1547
|
readonly 'background-neutrals-scrolls'?: any;
|
|
1523
1548
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
1524
1549
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -1542,12 +1567,11 @@ declare const globalCss: <Styles extends {
|
|
|
1542
1567
|
readonly 'text-neutrals'?: any;
|
|
1543
1568
|
readonly 'text-neutrals-disabled'?: any;
|
|
1544
1569
|
readonly 'text-neutrals-inverted'?: any;
|
|
1545
|
-
readonly 'text-neutrals-link'?: any;
|
|
1546
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
1547
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
1548
1570
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1549
1571
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1550
1572
|
readonly 'text-neutrals-subtle'?: any;
|
|
1573
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
1574
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
1551
1575
|
readonly 'text-primary'?: any;
|
|
1552
1576
|
readonly 'text-primary-active'?: any;
|
|
1553
1577
|
readonly 'text-primary-hover'?: any;
|
|
@@ -1567,7 +1591,7 @@ declare const globalCss: <Styles extends {
|
|
|
1567
1591
|
readonly 'icon-neutrals-inverted'?: any;
|
|
1568
1592
|
readonly 'icon-neutrals-search'?: any;
|
|
1569
1593
|
readonly 'icon-neutrals-subtle'?: any;
|
|
1570
|
-
readonly 'icon-neutrals-
|
|
1594
|
+
readonly 'icon-neutrals-text'?: any;
|
|
1571
1595
|
readonly 'icon-primary'?: any;
|
|
1572
1596
|
readonly 'icon-primary-active'?: any;
|
|
1573
1597
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -1576,7 +1600,10 @@ declare const globalCss: <Styles extends {
|
|
|
1576
1600
|
readonly 'icon-success'?: any;
|
|
1577
1601
|
readonly 'icon-success-inverted'?: any;
|
|
1578
1602
|
readonly 'icon-warning'?: any;
|
|
1603
|
+
readonly 'icon-warning-prominent'?: any;
|
|
1579
1604
|
readonly 'border-danger'?: any;
|
|
1605
|
+
readonly 'border-danger-active'?: any;
|
|
1606
|
+
readonly 'border-danger-hover'?: any;
|
|
1580
1607
|
readonly 'border-focus-inner'?: any;
|
|
1581
1608
|
readonly 'border-focus-middle'?: any;
|
|
1582
1609
|
readonly 'border-focus-outer'?: any;
|
|
@@ -1588,6 +1615,9 @@ declare const globalCss: <Styles extends {
|
|
|
1588
1615
|
readonly 'border-neutrals-hover'?: any;
|
|
1589
1616
|
readonly 'border-neutrals-inverted'?: any;
|
|
1590
1617
|
readonly 'border-neutrals-subtle'?: any;
|
|
1618
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
1619
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
1620
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
1591
1621
|
readonly 'border-primary'?: any;
|
|
1592
1622
|
readonly 'border-primary-active'?: any;
|
|
1593
1623
|
readonly 'border-primary-hover'?: any;
|
|
@@ -1949,7 +1979,6 @@ declare const globalCss: <Styles extends {
|
|
|
1949
1979
|
readonly 'background-danger-prominent-active'?: any;
|
|
1950
1980
|
readonly 'background-danger-prominent-hover'?: any;
|
|
1951
1981
|
readonly 'background-neutrals'?: any;
|
|
1952
|
-
readonly 'background-neutrals-body'?: any;
|
|
1953
1982
|
readonly 'background-neutrals-container'?: any;
|
|
1954
1983
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
1955
1984
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -1957,6 +1986,8 @@ declare const globalCss: <Styles extends {
|
|
|
1957
1986
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
1958
1987
|
readonly 'background-neutrals-inverted'?: any;
|
|
1959
1988
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
1989
|
+
readonly 'background-neutrals-page'?: any;
|
|
1990
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
1960
1991
|
readonly 'background-neutrals-scrolls'?: any;
|
|
1961
1992
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
1962
1993
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -1980,12 +2011,11 @@ declare const globalCss: <Styles extends {
|
|
|
1980
2011
|
readonly 'text-neutrals'?: any;
|
|
1981
2012
|
readonly 'text-neutrals-disabled'?: any;
|
|
1982
2013
|
readonly 'text-neutrals-inverted'?: any;
|
|
1983
|
-
readonly 'text-neutrals-link'?: any;
|
|
1984
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
1985
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
1986
2014
|
readonly 'text-neutrals-placeholder'?: any;
|
|
1987
2015
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
1988
2016
|
readonly 'text-neutrals-subtle'?: any;
|
|
2017
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
2018
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
1989
2019
|
readonly 'text-primary'?: any;
|
|
1990
2020
|
readonly 'text-primary-active'?: any;
|
|
1991
2021
|
readonly 'text-primary-hover'?: any;
|
|
@@ -2005,7 +2035,7 @@ declare const globalCss: <Styles extends {
|
|
|
2005
2035
|
readonly 'icon-neutrals-inverted'?: any;
|
|
2006
2036
|
readonly 'icon-neutrals-search'?: any;
|
|
2007
2037
|
readonly 'icon-neutrals-subtle'?: any;
|
|
2008
|
-
readonly 'icon-neutrals-
|
|
2038
|
+
readonly 'icon-neutrals-text'?: any;
|
|
2009
2039
|
readonly 'icon-primary'?: any;
|
|
2010
2040
|
readonly 'icon-primary-active'?: any;
|
|
2011
2041
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -2014,7 +2044,10 @@ declare const globalCss: <Styles extends {
|
|
|
2014
2044
|
readonly 'icon-success'?: any;
|
|
2015
2045
|
readonly 'icon-success-inverted'?: any;
|
|
2016
2046
|
readonly 'icon-warning'?: any;
|
|
2047
|
+
readonly 'icon-warning-prominent'?: any;
|
|
2017
2048
|
readonly 'border-danger'?: any;
|
|
2049
|
+
readonly 'border-danger-active'?: any;
|
|
2050
|
+
readonly 'border-danger-hover'?: any;
|
|
2018
2051
|
readonly 'border-focus-inner'?: any;
|
|
2019
2052
|
readonly 'border-focus-middle'?: any;
|
|
2020
2053
|
readonly 'border-focus-outer'?: any;
|
|
@@ -2026,6 +2059,9 @@ declare const globalCss: <Styles extends {
|
|
|
2026
2059
|
readonly 'border-neutrals-hover'?: any;
|
|
2027
2060
|
readonly 'border-neutrals-inverted'?: any;
|
|
2028
2061
|
readonly 'border-neutrals-subtle'?: any;
|
|
2062
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
2063
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
2064
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
2029
2065
|
readonly 'border-primary'?: any;
|
|
2030
2066
|
readonly 'border-primary-active'?: any;
|
|
2031
2067
|
readonly 'border-primary-hover'?: any;
|
|
@@ -2388,7 +2424,6 @@ declare const keyframes: (style: {
|
|
|
2388
2424
|
readonly 'background-danger-prominent-active'?: any;
|
|
2389
2425
|
readonly 'background-danger-prominent-hover'?: any;
|
|
2390
2426
|
readonly 'background-neutrals'?: any;
|
|
2391
|
-
readonly 'background-neutrals-body'?: any;
|
|
2392
2427
|
readonly 'background-neutrals-container'?: any;
|
|
2393
2428
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
2394
2429
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -2396,6 +2431,8 @@ declare const keyframes: (style: {
|
|
|
2396
2431
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
2397
2432
|
readonly 'background-neutrals-inverted'?: any;
|
|
2398
2433
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
2434
|
+
readonly 'background-neutrals-page'?: any;
|
|
2435
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
2399
2436
|
readonly 'background-neutrals-scrolls'?: any;
|
|
2400
2437
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
2401
2438
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -2419,12 +2456,11 @@ declare const keyframes: (style: {
|
|
|
2419
2456
|
readonly 'text-neutrals'?: any;
|
|
2420
2457
|
readonly 'text-neutrals-disabled'?: any;
|
|
2421
2458
|
readonly 'text-neutrals-inverted'?: any;
|
|
2422
|
-
readonly 'text-neutrals-link'?: any;
|
|
2423
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
2424
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
2425
2459
|
readonly 'text-neutrals-placeholder'?: any;
|
|
2426
2460
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
2427
2461
|
readonly 'text-neutrals-subtle'?: any;
|
|
2462
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
2463
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
2428
2464
|
readonly 'text-primary'?: any;
|
|
2429
2465
|
readonly 'text-primary-active'?: any;
|
|
2430
2466
|
readonly 'text-primary-hover'?: any;
|
|
@@ -2444,7 +2480,7 @@ declare const keyframes: (style: {
|
|
|
2444
2480
|
readonly 'icon-neutrals-inverted'?: any;
|
|
2445
2481
|
readonly 'icon-neutrals-search'?: any;
|
|
2446
2482
|
readonly 'icon-neutrals-subtle'?: any;
|
|
2447
|
-
readonly 'icon-neutrals-
|
|
2483
|
+
readonly 'icon-neutrals-text'?: any;
|
|
2448
2484
|
readonly 'icon-primary'?: any;
|
|
2449
2485
|
readonly 'icon-primary-active'?: any;
|
|
2450
2486
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -2453,7 +2489,10 @@ declare const keyframes: (style: {
|
|
|
2453
2489
|
readonly 'icon-success'?: any;
|
|
2454
2490
|
readonly 'icon-success-inverted'?: any;
|
|
2455
2491
|
readonly 'icon-warning'?: any;
|
|
2492
|
+
readonly 'icon-warning-prominent'?: any;
|
|
2456
2493
|
readonly 'border-danger'?: any;
|
|
2494
|
+
readonly 'border-danger-active'?: any;
|
|
2495
|
+
readonly 'border-danger-hover'?: any;
|
|
2457
2496
|
readonly 'border-focus-inner'?: any;
|
|
2458
2497
|
readonly 'border-focus-middle'?: any;
|
|
2459
2498
|
readonly 'border-focus-outer'?: any;
|
|
@@ -2465,6 +2504,9 @@ declare const keyframes: (style: {
|
|
|
2465
2504
|
readonly 'border-neutrals-hover'?: any;
|
|
2466
2505
|
readonly 'border-neutrals-inverted'?: any;
|
|
2467
2506
|
readonly 'border-neutrals-subtle'?: any;
|
|
2507
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
2508
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
2509
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
2468
2510
|
readonly 'border-primary'?: any;
|
|
2469
2511
|
readonly 'border-primary-active'?: any;
|
|
2470
2512
|
readonly 'border-primary-hover'?: any;
|
|
@@ -3049,7 +3091,6 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3049
3091
|
readonly 'background-danger-prominent-active'?: any;
|
|
3050
3092
|
readonly 'background-danger-prominent-hover'?: any;
|
|
3051
3093
|
readonly 'background-neutrals'?: any;
|
|
3052
|
-
readonly 'background-neutrals-body'?: any;
|
|
3053
3094
|
readonly 'background-neutrals-container'?: any;
|
|
3054
3095
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
3055
3096
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -3057,6 +3098,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3057
3098
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
3058
3099
|
readonly 'background-neutrals-inverted'?: any;
|
|
3059
3100
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
3101
|
+
readonly 'background-neutrals-page'?: any;
|
|
3102
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
3060
3103
|
readonly 'background-neutrals-scrolls'?: any;
|
|
3061
3104
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
3062
3105
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -3080,12 +3123,11 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3080
3123
|
readonly 'text-neutrals'?: any;
|
|
3081
3124
|
readonly 'text-neutrals-disabled'?: any;
|
|
3082
3125
|
readonly 'text-neutrals-inverted'?: any;
|
|
3083
|
-
readonly 'text-neutrals-link'?: any;
|
|
3084
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
3085
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
3086
3126
|
readonly 'text-neutrals-placeholder'?: any;
|
|
3087
3127
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
3088
3128
|
readonly 'text-neutrals-subtle'?: any;
|
|
3129
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
3130
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
3089
3131
|
readonly 'text-primary'?: any;
|
|
3090
3132
|
readonly 'text-primary-active'?: any;
|
|
3091
3133
|
readonly 'text-primary-hover'?: any;
|
|
@@ -3105,7 +3147,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3105
3147
|
readonly 'icon-neutrals-inverted'?: any;
|
|
3106
3148
|
readonly 'icon-neutrals-search'?: any;
|
|
3107
3149
|
readonly 'icon-neutrals-subtle'?: any;
|
|
3108
|
-
readonly 'icon-neutrals-
|
|
3150
|
+
readonly 'icon-neutrals-text'?: any;
|
|
3109
3151
|
readonly 'icon-primary'?: any;
|
|
3110
3152
|
readonly 'icon-primary-active'?: any;
|
|
3111
3153
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -3114,7 +3156,10 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3114
3156
|
readonly 'icon-success'?: any;
|
|
3115
3157
|
readonly 'icon-success-inverted'?: any;
|
|
3116
3158
|
readonly 'icon-warning'?: any;
|
|
3159
|
+
readonly 'icon-warning-prominent'?: any;
|
|
3117
3160
|
readonly 'border-danger'?: any;
|
|
3161
|
+
readonly 'border-danger-active'?: any;
|
|
3162
|
+
readonly 'border-danger-hover'?: any;
|
|
3118
3163
|
readonly 'border-focus-inner'?: any;
|
|
3119
3164
|
readonly 'border-focus-middle'?: any;
|
|
3120
3165
|
readonly 'border-focus-outer'?: any;
|
|
@@ -3126,6 +3171,9 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3126
3171
|
readonly 'border-neutrals-hover'?: any;
|
|
3127
3172
|
readonly 'border-neutrals-inverted'?: any;
|
|
3128
3173
|
readonly 'border-neutrals-subtle'?: any;
|
|
3174
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
3175
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
3176
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
3129
3177
|
readonly 'border-primary'?: any;
|
|
3130
3178
|
readonly 'border-primary-active'?: any;
|
|
3131
3179
|
readonly 'border-primary-hover'?: any;
|
|
@@ -3489,7 +3537,6 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3489
3537
|
readonly 'background-danger-prominent-active'?: any;
|
|
3490
3538
|
readonly 'background-danger-prominent-hover'?: any;
|
|
3491
3539
|
readonly 'background-neutrals'?: any;
|
|
3492
|
-
readonly 'background-neutrals-body'?: any;
|
|
3493
3540
|
readonly 'background-neutrals-container'?: any;
|
|
3494
3541
|
readonly 'background-neutrals-controls-disabled'?: any;
|
|
3495
3542
|
readonly 'background-neutrals-disabled'?: any;
|
|
@@ -3497,6 +3544,8 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3497
3544
|
readonly 'background-neutrals-inactive-hover'?: any;
|
|
3498
3545
|
readonly 'background-neutrals-inverted'?: any;
|
|
3499
3546
|
readonly 'background-neutrals-inverted-subtle'?: any;
|
|
3547
|
+
readonly 'background-neutrals-page'?: any;
|
|
3548
|
+
readonly 'background-neutrals-page-subtle'?: any;
|
|
3500
3549
|
readonly 'background-neutrals-scrolls'?: any;
|
|
3501
3550
|
readonly 'background-neutrals-scrolls-hover'?: any;
|
|
3502
3551
|
readonly 'background-neutrals-subtle'?: any;
|
|
@@ -3520,12 +3569,11 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3520
3569
|
readonly 'text-neutrals'?: any;
|
|
3521
3570
|
readonly 'text-neutrals-disabled'?: any;
|
|
3522
3571
|
readonly 'text-neutrals-inverted'?: any;
|
|
3523
|
-
readonly 'text-neutrals-link'?: any;
|
|
3524
|
-
readonly 'text-neutrals-link-active'?: any;
|
|
3525
|
-
readonly 'text-neutrals-link-hover'?: any;
|
|
3526
3572
|
readonly 'text-neutrals-placeholder'?: any;
|
|
3527
3573
|
readonly 'text-neutrals-placeholder-only'?: any;
|
|
3528
3574
|
readonly 'text-neutrals-subtle'?: any;
|
|
3575
|
+
readonly 'text-neutrals-subtle-active'?: any;
|
|
3576
|
+
readonly 'text-neutrals-subtle-hover'?: any;
|
|
3529
3577
|
readonly 'text-primary'?: any;
|
|
3530
3578
|
readonly 'text-primary-active'?: any;
|
|
3531
3579
|
readonly 'text-primary-hover'?: any;
|
|
@@ -3545,7 +3593,7 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3545
3593
|
readonly 'icon-neutrals-inverted'?: any;
|
|
3546
3594
|
readonly 'icon-neutrals-search'?: any;
|
|
3547
3595
|
readonly 'icon-neutrals-subtle'?: any;
|
|
3548
|
-
readonly 'icon-neutrals-
|
|
3596
|
+
readonly 'icon-neutrals-text'?: any;
|
|
3549
3597
|
readonly 'icon-primary'?: any;
|
|
3550
3598
|
readonly 'icon-primary-active'?: any;
|
|
3551
3599
|
readonly 'icon-primary-hover'?: any;
|
|
@@ -3554,7 +3602,10 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3554
3602
|
readonly 'icon-success'?: any;
|
|
3555
3603
|
readonly 'icon-success-inverted'?: any;
|
|
3556
3604
|
readonly 'icon-warning'?: any;
|
|
3605
|
+
readonly 'icon-warning-prominent'?: any;
|
|
3557
3606
|
readonly 'border-danger'?: any;
|
|
3607
|
+
readonly 'border-danger-active'?: any;
|
|
3608
|
+
readonly 'border-danger-hover'?: any;
|
|
3558
3609
|
readonly 'border-focus-inner'?: any;
|
|
3559
3610
|
readonly 'border-focus-middle'?: any;
|
|
3560
3611
|
readonly 'border-focus-outer'?: any;
|
|
@@ -3566,6 +3617,9 @@ declare const styled: <Element_1 extends _stitches_react_types_util.Function | k
|
|
|
3566
3617
|
readonly 'border-neutrals-hover'?: any;
|
|
3567
3618
|
readonly 'border-neutrals-inverted'?: any;
|
|
3568
3619
|
readonly 'border-neutrals-subtle'?: any;
|
|
3620
|
+
readonly 'border-neutrals-text-subtle'?: any;
|
|
3621
|
+
readonly 'border-neutrals-text-subtle-active'?: any;
|
|
3622
|
+
readonly 'border-neutrals-text-subtle-hover'?: any;
|
|
3569
3623
|
readonly 'border-primary'?: any;
|
|
3570
3624
|
readonly 'border-primary-active'?: any;
|
|
3571
3625
|
readonly 'border-primary-hover'?: any;
|
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.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -27,10 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@mirohq/design-system-types": "^0.5.0",
|
|
30
|
-
"@mirohq/design-tokens": "^2.
|
|
31
|
-
},
|
|
32
|
-
"devDependencies": {
|
|
33
|
-
"@mirohq/design-system-primitive": "^1.1.0"
|
|
30
|
+
"@mirohq/design-tokens": "^2.7.0"
|
|
34
31
|
},
|
|
35
32
|
"scripts": {
|
|
36
33
|
"build": "rollup -c ../../rollup.config.js",
|