@mirohq/design-system-tooltip 3.2.27 → 3.2.29
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 +30 -6
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -117,6 +117,9 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
117
117
|
"background-primary-subtle-pressed-hover"?: any;
|
|
118
118
|
"background-primary-subtle-selected"?: any;
|
|
119
119
|
"background-success"?: any;
|
|
120
|
+
"background-success-prominent"?: any;
|
|
121
|
+
"background-success-prominent-active"?: any;
|
|
122
|
+
"background-success-prominent-hover"?: any;
|
|
120
123
|
"background-warning-prominent"?: any;
|
|
121
124
|
"background-warning-subtle"?: any;
|
|
122
125
|
"border-danger"?: any;
|
|
@@ -145,6 +148,8 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
145
148
|
"border-primary-hover"?: any;
|
|
146
149
|
"border-primary-inverted"?: any;
|
|
147
150
|
"border-success"?: any;
|
|
151
|
+
"border-success-active"?: any;
|
|
152
|
+
"border-success-hover"?: any;
|
|
148
153
|
"border-warning"?: any;
|
|
149
154
|
"icon-danger"?: any;
|
|
150
155
|
"icon-danger-active"?: any;
|
|
@@ -164,9 +169,12 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
164
169
|
"icon-primary-inverted"?: any;
|
|
165
170
|
"icon-primary-selected"?: any;
|
|
166
171
|
"icon-success"?: any;
|
|
172
|
+
"icon-success-active"?: any;
|
|
173
|
+
"icon-success-hover"?: any;
|
|
167
174
|
"icon-success-inverted"?: any;
|
|
168
175
|
"icon-warning"?: any;
|
|
169
176
|
"icon-warning-prominent"?: any;
|
|
177
|
+
"icon-warning-subtle"?: any;
|
|
170
178
|
"text-danger"?: any;
|
|
171
179
|
"text-danger-active"?: any;
|
|
172
180
|
"text-danger-hover"?: any;
|
|
@@ -188,7 +196,11 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
188
196
|
"text-primary-inverted-subtle"?: any;
|
|
189
197
|
"text-primary-selected"?: any;
|
|
190
198
|
"text-success"?: any;
|
|
199
|
+
"text-success-active"?: any;
|
|
200
|
+
"text-success-hover"?: any;
|
|
201
|
+
"text-success-inverted"?: any;
|
|
191
202
|
"text-warning"?: any;
|
|
203
|
+
"text-warning-subtle"?: any;
|
|
192
204
|
};
|
|
193
205
|
'font-sizes': {
|
|
194
206
|
readonly 150: "0.75rem";
|
|
@@ -217,8 +229,6 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
217
229
|
readonly 200: "16px";
|
|
218
230
|
};
|
|
219
231
|
shadows: {
|
|
220
|
-
readonly 50: "0 4px 16px #05003812";
|
|
221
|
-
readonly 100: "0 8px 32px #05003808";
|
|
222
232
|
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
223
233
|
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
224
234
|
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
@@ -232,7 +242,8 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
232
242
|
readonly 'icon-400': "32px";
|
|
233
243
|
};
|
|
234
244
|
space: {
|
|
235
|
-
readonly 0:
|
|
245
|
+
readonly 0: "0px";
|
|
246
|
+
readonly 25: "2px";
|
|
236
247
|
readonly 50: "4px";
|
|
237
248
|
readonly 100: "8px";
|
|
238
249
|
readonly 150: "12px";
|
|
@@ -262,6 +273,7 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
262
273
|
readonly 300: any;
|
|
263
274
|
readonly 400: any;
|
|
264
275
|
readonly 600: any;
|
|
276
|
+
readonly 700: any;
|
|
265
277
|
readonly 800: any;
|
|
266
278
|
readonly 1200: any;
|
|
267
279
|
readonly 1600: any;
|
|
@@ -673,6 +685,9 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
673
685
|
"background-primary-subtle-pressed-hover"?: any;
|
|
674
686
|
"background-primary-subtle-selected"?: any;
|
|
675
687
|
"background-success"?: any;
|
|
688
|
+
"background-success-prominent"?: any;
|
|
689
|
+
"background-success-prominent-active"?: any;
|
|
690
|
+
"background-success-prominent-hover"?: any;
|
|
676
691
|
"background-warning-prominent"?: any;
|
|
677
692
|
"background-warning-subtle"?: any;
|
|
678
693
|
"border-danger"?: any;
|
|
@@ -701,6 +716,8 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
701
716
|
"border-primary-hover"?: any;
|
|
702
717
|
"border-primary-inverted"?: any;
|
|
703
718
|
"border-success"?: any;
|
|
719
|
+
"border-success-active"?: any;
|
|
720
|
+
"border-success-hover"?: any;
|
|
704
721
|
"border-warning"?: any;
|
|
705
722
|
"icon-danger"?: any;
|
|
706
723
|
"icon-danger-active"?: any;
|
|
@@ -720,9 +737,12 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
720
737
|
"icon-primary-inverted"?: any;
|
|
721
738
|
"icon-primary-selected"?: any;
|
|
722
739
|
"icon-success"?: any;
|
|
740
|
+
"icon-success-active"?: any;
|
|
741
|
+
"icon-success-hover"?: any;
|
|
723
742
|
"icon-success-inverted"?: any;
|
|
724
743
|
"icon-warning"?: any;
|
|
725
744
|
"icon-warning-prominent"?: any;
|
|
745
|
+
"icon-warning-subtle"?: any;
|
|
726
746
|
"text-danger"?: any;
|
|
727
747
|
"text-danger-active"?: any;
|
|
728
748
|
"text-danger-hover"?: any;
|
|
@@ -744,7 +764,11 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
744
764
|
"text-primary-inverted-subtle"?: any;
|
|
745
765
|
"text-primary-selected"?: any;
|
|
746
766
|
"text-success"?: any;
|
|
767
|
+
"text-success-active"?: any;
|
|
768
|
+
"text-success-hover"?: any;
|
|
769
|
+
"text-success-inverted"?: any;
|
|
747
770
|
"text-warning"?: any;
|
|
771
|
+
"text-warning-subtle"?: any;
|
|
748
772
|
};
|
|
749
773
|
'font-sizes': {
|
|
750
774
|
readonly 150: "0.75rem";
|
|
@@ -773,8 +797,6 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
773
797
|
readonly 200: "16px";
|
|
774
798
|
};
|
|
775
799
|
shadows: {
|
|
776
|
-
readonly 50: "0 4px 16px #05003812";
|
|
777
|
-
readonly 100: "0 8px 32px #05003808";
|
|
778
800
|
readonly 'focus-small': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-inner";
|
|
779
801
|
readonly 'focus-small-outline': "0 0 0 2px $colors$border-focus-outer, inset 0 0 0 1px $colors$border-focus-middle, inset 0 0 0 2px $colors$border-focus-inner";
|
|
780
802
|
readonly 'focus-large': "0 0 0 4px $colors$border-focus-inner, inset 0 0 0 2px $colors$border-focus-middle, inset 0 0 0 3px $colors$border-focus-outer";
|
|
@@ -788,7 +810,8 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
788
810
|
readonly 'icon-400': "32px";
|
|
789
811
|
};
|
|
790
812
|
space: {
|
|
791
|
-
readonly 0:
|
|
813
|
+
readonly 0: "0px";
|
|
814
|
+
readonly 25: "2px";
|
|
792
815
|
readonly 50: "4px";
|
|
793
816
|
readonly 100: "8px";
|
|
794
817
|
readonly 150: "12px";
|
|
@@ -818,6 +841,7 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
818
841
|
readonly 300: any;
|
|
819
842
|
readonly 400: any;
|
|
820
843
|
readonly 600: any;
|
|
844
|
+
readonly 700: any;
|
|
821
845
|
readonly 800: any;
|
|
822
846
|
readonly 1200: any;
|
|
823
847
|
readonly 1600: any;
|
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.29",
|
|
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.
|
|
31
|
+
"@mirohq/design-system-stitches": "^2.3.14",
|
|
32
|
+
"@mirohq/design-system-styles": "^1.1.11",
|
|
32
33
|
"@mirohq/design-system-utils": "^0.14.3",
|
|
33
|
-
"@mirohq/design-tokens": "^3.
|
|
34
|
-
"@mirohq/design-system-styles": "^1.1.9"
|
|
34
|
+
"@mirohq/design-tokens": "^3.4.1"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "rollup -c ../../../rollup.config.js",
|