@mirohq/design-system-tooltip 3.2.24-link.0 → 3.2.24
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 +8 -4
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
219
219
|
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";
|
|
220
220
|
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";
|
|
221
221
|
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
222
|
+
readonly 'focus-controls-error': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-danger, 0 0 0 5px $colors$background-danger-subtle-hover";
|
|
222
223
|
};
|
|
223
224
|
sizes: {
|
|
224
225
|
readonly number: string;
|
|
@@ -288,8 +289,9 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
288
289
|
};
|
|
289
290
|
'z-indices': {
|
|
290
291
|
readonly dropdownMenu: 100;
|
|
291
|
-
readonly
|
|
292
|
-
readonly
|
|
292
|
+
readonly select: 200;
|
|
293
|
+
readonly popover: 300;
|
|
294
|
+
readonly tooltip: 400;
|
|
293
295
|
};
|
|
294
296
|
}, {
|
|
295
297
|
readonly background: "colors";
|
|
@@ -769,6 +771,7 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
769
771
|
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";
|
|
770
772
|
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";
|
|
771
773
|
readonly 'focus-controls': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-focus-middle, 0 0 0 5px $colors$border-focus-outer";
|
|
774
|
+
readonly 'focus-controls-error': "0 0 0 1px $colors$border-focus-inner, 0 0 0 3px $colors$border-danger, 0 0 0 5px $colors$background-danger-subtle-hover";
|
|
772
775
|
};
|
|
773
776
|
sizes: {
|
|
774
777
|
readonly number: string;
|
|
@@ -838,8 +841,9 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<{}, never
|
|
|
838
841
|
};
|
|
839
842
|
'z-indices': {
|
|
840
843
|
readonly dropdownMenu: 100;
|
|
841
|
-
readonly
|
|
842
|
-
readonly
|
|
844
|
+
readonly select: 200;
|
|
845
|
+
readonly popover: 300;
|
|
846
|
+
readonly tooltip: 400;
|
|
843
847
|
};
|
|
844
848
|
}, {
|
|
845
849
|
readonly background: "colors";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-tooltip",
|
|
3
|
-
"version": "3.2.24
|
|
3
|
+
"version": "3.2.24",
|
|
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-
|
|
32
|
-
"@mirohq/design-system-
|
|
31
|
+
"@mirohq/design-system-styles": "^1.1.7",
|
|
32
|
+
"@mirohq/design-system-stitches": "^2.3.11",
|
|
33
33
|
"@mirohq/design-system-utils": "^0.14.3",
|
|
34
|
-
"@mirohq/design-tokens": "^3.
|
|
34
|
+
"@mirohq/design-tokens": "^3.2.0"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"build": "rollup -c ../../../rollup.config.js",
|