@mirohq/design-system-popover 5.1.8 → 5.1.9
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 +40 -0
- package/package.json +4 -4
package/dist/types.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import * as _mirohq_design_system_stitches from '@mirohq/design-system-stitches'
|
|
|
6
6
|
import { StrictComponentProps } from '@mirohq/design-system-stitches';
|
|
7
7
|
import * as _stitches_react_types_styled_component from '@stitches/react/types/styled-component';
|
|
8
8
|
import * as _stitches_react_types_css_util from '@stitches/react/types/css-util';
|
|
9
|
+
import * as _stitches_react from '@stitches/react';
|
|
9
10
|
|
|
10
11
|
declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_design_system_stitches.StyledComponentProps<_stitches_react_types_styled_component.StyledComponent<react.ForwardRefExoticComponent<_radix_ui_react_popover.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>, {}, {}, _stitches_react_types_css_util.CSS<{}, {
|
|
11
12
|
'border-widths': {
|
|
@@ -492,6 +493,19 @@ declare const StyledTrigger: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_d
|
|
|
492
493
|
readonly [$$PropertyValue]: "width";
|
|
493
494
|
};
|
|
494
495
|
};
|
|
496
|
+
_hover: (css: _stitches_react.CSS<{
|
|
497
|
+
media: {};
|
|
498
|
+
theme: {};
|
|
499
|
+
themeMap: {};
|
|
500
|
+
utils: {};
|
|
501
|
+
}>) => {
|
|
502
|
+
'&:hover, &[data-hovered]': _stitches_react.CSS<{
|
|
503
|
+
media: {};
|
|
504
|
+
theme: {};
|
|
505
|
+
themeMap: {};
|
|
506
|
+
utils: {};
|
|
507
|
+
}>;
|
|
508
|
+
};
|
|
495
509
|
}>>>, never> & _stitches_react_types_styled_component.TransformProps<{}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_popover.PopoverTriggerProps & react.RefAttributes<HTMLButtonElement>>, {}, {}>;
|
|
496
510
|
declare type StyledTriggerProps = StrictComponentProps<typeof StyledTrigger>;
|
|
497
511
|
|
|
@@ -987,6 +1001,19 @@ declare const StyledContent: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_d
|
|
|
987
1001
|
readonly [$$PropertyValue]: "width";
|
|
988
1002
|
};
|
|
989
1003
|
};
|
|
1004
|
+
_hover: (css: _stitches_react.CSS<{
|
|
1005
|
+
media: {};
|
|
1006
|
+
theme: {};
|
|
1007
|
+
themeMap: {};
|
|
1008
|
+
utils: {};
|
|
1009
|
+
}>) => {
|
|
1010
|
+
'&:hover, &[data-hovered]': _stitches_react.CSS<{
|
|
1011
|
+
media: {};
|
|
1012
|
+
theme: {};
|
|
1013
|
+
themeMap: {};
|
|
1014
|
+
utils: {};
|
|
1015
|
+
}>;
|
|
1016
|
+
};
|
|
990
1017
|
}>>>, "variant"> & _stitches_react_types_styled_component.TransformProps<{
|
|
991
1018
|
variant?: "dark" | "light" | undefined;
|
|
992
1019
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLDivElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_popover.PopoverContentProps & react.RefAttributes<HTMLDivElement>>, {
|
|
@@ -1602,6 +1629,19 @@ declare const StyledClose: react.ForwardRefExoticComponent<Omit<Omit<_mirohq_des
|
|
|
1602
1629
|
readonly [$$PropertyValue]: "width";
|
|
1603
1630
|
};
|
|
1604
1631
|
};
|
|
1632
|
+
_hover: (css: _stitches_react.CSS<{
|
|
1633
|
+
media: {};
|
|
1634
|
+
theme: {};
|
|
1635
|
+
themeMap: {};
|
|
1636
|
+
utils: {};
|
|
1637
|
+
}>) => {
|
|
1638
|
+
'&:hover, &[data-hovered]': _stitches_react.CSS<{
|
|
1639
|
+
media: {};
|
|
1640
|
+
theme: {};
|
|
1641
|
+
themeMap: {};
|
|
1642
|
+
utils: {};
|
|
1643
|
+
}>;
|
|
1644
|
+
};
|
|
1605
1645
|
}>>>, "variant"> & _stitches_react_types_styled_component.TransformProps<{
|
|
1606
1646
|
variant?: "dark" | "light" | undefined;
|
|
1607
1647
|
}, {}> & _mirohq_design_system_stitches.CustomStylesProps, "ref"> & react.RefAttributes<HTMLButtonElement>> & _mirohq_design_system_stitches.StitchesInternals<react.ForwardRefExoticComponent<_radix_ui_react_popover.PopoverCloseProps & react.RefAttributes<HTMLButtonElement>>, {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mirohq/design-system-popover",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.9",
|
|
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-icons": "^0.32.
|
|
32
|
+
"@mirohq/design-system-icons": "^0.32.5",
|
|
33
|
+
"@mirohq/design-system-stitches": "^2.5.0",
|
|
33
34
|
"@mirohq/design-system-primitive": "^1.1.1",
|
|
34
|
-
"@mirohq/design-system-
|
|
35
|
-
"@mirohq/design-system-styles": "^1.1.16"
|
|
35
|
+
"@mirohq/design-system-styles": "^1.1.17"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
38
|
"build": "rollup -c ../../../rollup.config.js",
|