demio-ui 1.0.22 → 1.0.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/cjs/index.css +1 -1
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/types/src/components/Tooltip/Tooltip.d.ts +2 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/types/src/components/Tooltip/Tooltip.d.ts +2 -1
- package/dist/types.d.ts +2 -1
- package/package.json +15 -15
|
@@ -12,9 +12,10 @@ type Props = {
|
|
|
12
12
|
skipDelayDuration?: number;
|
|
13
13
|
alignOffset?: number;
|
|
14
14
|
sideOffset?: number;
|
|
15
|
+
isPortal?: boolean;
|
|
15
16
|
};
|
|
16
17
|
/**
|
|
17
18
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
18
19
|
**/
|
|
19
|
-
export declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, ...props }: Props): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
20
|
+
export declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, isPortal, ...props }: Props): string | number | boolean | Iterable<React.ReactNode> | React.JSX.Element | null | undefined;
|
|
20
21
|
export default Tooltip;
|
package/dist/types.d.ts
CHANGED
|
@@ -95,11 +95,12 @@ type Props$4 = {
|
|
|
95
95
|
skipDelayDuration?: number;
|
|
96
96
|
alignOffset?: number;
|
|
97
97
|
sideOffset?: number;
|
|
98
|
+
isPortal?: boolean;
|
|
98
99
|
};
|
|
99
100
|
/**
|
|
100
101
|
* Accessibility [Keyboard Interactions](https://www.radix-ui.com/docs/primitives/components/tooltip#keyboard-interactions)
|
|
101
102
|
**/
|
|
102
|
-
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, ...props }: Props$4): string | number | boolean | Iterable<React__default.ReactNode> | React__default.JSX.Element | null | undefined;
|
|
103
|
+
declare function Tooltip({ children, content, open, defaultOpen, onOpenChange, side, align, className, delayDuration, sideOffset, isPortal, ...props }: Props$4): string | number | boolean | Iterable<React__default.ReactNode> | React__default.JSX.Element | null | undefined;
|
|
103
104
|
|
|
104
105
|
type SelectProps = {
|
|
105
106
|
children: React__default.ReactNode;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "demio-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.24",
|
|
4
4
|
"description": "",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -63,19 +63,19 @@
|
|
|
63
63
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
64
64
|
"@rollup/plugin-terser": "^0.4.3",
|
|
65
65
|
"@rollup/plugin-typescript": "^11.1.1",
|
|
66
|
-
"@storybook/addon-a11y": "^7.0
|
|
67
|
-
"@storybook/addon-actions": "^7.0
|
|
68
|
-
"@storybook/addon-essentials": "^7.0
|
|
69
|
-
"@storybook/addon-interactions": "^7.0
|
|
70
|
-
"@storybook/addon-links": "^7.0
|
|
71
|
-
"@storybook/addon-mdx-gfm": "^7.0
|
|
72
|
-
"@storybook/addon-styling": "^1.3.
|
|
73
|
-
"@storybook/cli": "^7.0
|
|
74
|
-
"@storybook/manager-api": "^7.0
|
|
75
|
-
"@storybook/react": "^7.0
|
|
76
|
-
"@storybook/react-webpack5": "^7.0
|
|
66
|
+
"@storybook/addon-a11y": "^7.2.0",
|
|
67
|
+
"@storybook/addon-actions": "^7.2.0",
|
|
68
|
+
"@storybook/addon-essentials": "^7.2.0",
|
|
69
|
+
"@storybook/addon-interactions": "^7.2.0",
|
|
70
|
+
"@storybook/addon-links": "^7.2.0",
|
|
71
|
+
"@storybook/addon-mdx-gfm": "^7.2.0",
|
|
72
|
+
"@storybook/addon-styling": "^1.3.5",
|
|
73
|
+
"@storybook/cli": "^7.2.0",
|
|
74
|
+
"@storybook/manager-api": "^7.2.0",
|
|
75
|
+
"@storybook/react": "^7.2.0",
|
|
76
|
+
"@storybook/react-webpack5": "^7.2.0",
|
|
77
77
|
"@storybook/testing-library": "^0.2.0",
|
|
78
|
-
"@storybook/theming": "^7.0
|
|
78
|
+
"@storybook/theming": "^7.2.0",
|
|
79
79
|
"@svgr/rollup": "^8.0.1",
|
|
80
80
|
"@svgr/webpack": "^8.0.1",
|
|
81
81
|
"@testing-library/jest-dom": "^5.16.5",
|
|
@@ -88,7 +88,7 @@
|
|
|
88
88
|
"babel-loader": "^8.3.0",
|
|
89
89
|
"eslint": "^8.42.0",
|
|
90
90
|
"eslint-plugin-prettier": "^4.2.1",
|
|
91
|
-
"eslint-plugin-storybook": "^0.6.
|
|
91
|
+
"eslint-plugin-storybook": "^0.6.13",
|
|
92
92
|
"file-loader": "^6.2.0",
|
|
93
93
|
"husky": "^6.0.0",
|
|
94
94
|
"identity-obj-proxy": "^3.0.0",
|
|
@@ -106,7 +106,7 @@
|
|
|
106
106
|
"rollup-plugin-dts": "^5.3.0",
|
|
107
107
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
108
108
|
"rollup-plugin-postcss": "^4.0.2",
|
|
109
|
-
"storybook": "^7.0
|
|
109
|
+
"storybook": "^7.2.0",
|
|
110
110
|
"storybook-css-modules": "^1.0.8",
|
|
111
111
|
"stylelint": "^15.7.0",
|
|
112
112
|
"stylelint-config-standard": "^33.0.0",
|