@mirohq/design-system-popover 5.0.28-link.0 → 5.0.28
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 +12 -6
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -219,6 +219,7 @@ declare const StyledTrigger: 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 StyledTrigger: 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";
|
|
@@ -701,6 +703,7 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
701
703
|
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";
|
|
702
704
|
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";
|
|
703
705
|
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";
|
|
706
|
+
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";
|
|
704
707
|
};
|
|
705
708
|
sizes: {
|
|
706
709
|
readonly number: string;
|
|
@@ -770,8 +773,9 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
770
773
|
};
|
|
771
774
|
'z-indices': {
|
|
772
775
|
readonly dropdownMenu: 100;
|
|
773
|
-
readonly
|
|
774
|
-
readonly
|
|
776
|
+
readonly select: 200;
|
|
777
|
+
readonly popover: 300;
|
|
778
|
+
readonly tooltip: 400;
|
|
775
779
|
};
|
|
776
780
|
}, {
|
|
777
781
|
readonly background: "colors";
|
|
@@ -1301,6 +1305,7 @@ declare const StyledClose: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
1301
1305
|
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";
|
|
1302
1306
|
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";
|
|
1303
1307
|
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";
|
|
1308
|
+
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";
|
|
1304
1309
|
};
|
|
1305
1310
|
sizes: {
|
|
1306
1311
|
readonly number: string;
|
|
@@ -1370,8 +1375,9 @@ declare const StyledClose: react.ForwardRefExoticComponent<Omit<Omit<{
|
|
|
1370
1375
|
};
|
|
1371
1376
|
'z-indices': {
|
|
1372
1377
|
readonly dropdownMenu: 100;
|
|
1373
|
-
readonly
|
|
1374
|
-
readonly
|
|
1378
|
+
readonly select: 200;
|
|
1379
|
+
readonly popover: 300;
|
|
1380
|
+
readonly tooltip: 400;
|
|
1375
1381
|
};
|
|
1376
1382
|
}, {
|
|
1377
1383
|
readonly background: "colors";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-popover",
|
|
3
|
-
"version": "5.0.28
|
|
3
|
+
"version": "5.0.28",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Miro",
|
|
6
6
|
"source": "src/index.ts",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@radix-ui/react-popover": "^1.0.0",
|
|
31
31
|
"@radix-ui/react-use-size": "^1.0.1",
|
|
32
|
-
"@mirohq/design-system-
|
|
33
|
-
"@mirohq/design-system-icons": "^0.30.1-link.0",
|
|
32
|
+
"@mirohq/design-system-icons": "^0.30.1",
|
|
34
33
|
"@mirohq/design-system-primitive": "^1.1.1",
|
|
35
|
-
"@mirohq/design-system-stitches": "^2.3.
|
|
34
|
+
"@mirohq/design-system-stitches": "^2.3.11",
|
|
35
|
+
"@mirohq/design-system-styles": "^1.1.7"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "rollup -c ../../../rollup.config.js",
|