@yamada-ui/popover 0.3.25 → 0.3.27

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.
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverBodyProps = HTMLUIProps<"main">;
5
5
  declare const PopoverBody: _yamada_ui_core.Component<"main", PopoverBodyProps>;
6
6
 
7
- export { PopoverBody, PopoverBodyProps };
7
+ export { PopoverBody, type PopoverBodyProps };
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverBodyProps = HTMLUIProps<"main">;
5
5
  declare const PopoverBody: _yamada_ui_core.Component<"main", PopoverBodyProps>;
6
6
 
7
- export { PopoverBody, PopoverBodyProps };
7
+ export { PopoverBody, type PopoverBodyProps };
@@ -4,4 +4,4 @@ import { CloseButtonProps } from '@yamada-ui/close-button';
4
4
  type PopoverCloseButtonProps = CloseButtonProps;
5
5
  declare const PopoverCloseButton: _yamada_ui_core.Component<"button", CloseButtonProps>;
6
6
 
7
- export { PopoverCloseButton, PopoverCloseButtonProps };
7
+ export { PopoverCloseButton, type PopoverCloseButtonProps };
@@ -4,4 +4,4 @@ import { CloseButtonProps } from '@yamada-ui/close-button';
4
4
  type PopoverCloseButtonProps = CloseButtonProps;
5
5
  declare const PopoverCloseButton: _yamada_ui_core.Component<"button", CloseButtonProps>;
6
6
 
7
- export { PopoverCloseButton, PopoverCloseButtonProps };
7
+ export { PopoverCloseButton, type PopoverCloseButtonProps };
@@ -5,4 +5,4 @@ import { HTMLMotionProps } from '@yamada-ui/motion';
5
5
  type PopoverContentProps = Omit<HTMLUIProps<"section">, keyof Omit<HTMLMotionProps<"section">, "children">> & Omit<HTMLMotionProps<"section">, "color" | "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "variants" | "transition">;
6
6
  declare const PopoverContent: _yamada_ui_core.Component<"section", PopoverContentProps>;
7
7
 
8
- export { PopoverContent, PopoverContentProps };
8
+ export { PopoverContent, type PopoverContentProps };
@@ -5,4 +5,4 @@ import { HTMLMotionProps } from '@yamada-ui/motion';
5
5
  type PopoverContentProps = Omit<HTMLUIProps<"section">, keyof Omit<HTMLMotionProps<"section">, "children">> & Omit<HTMLMotionProps<"section">, "color" | "style" | "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart" | "variants" | "transition">;
6
6
  declare const PopoverContent: _yamada_ui_core.Component<"section", PopoverContentProps>;
7
7
 
8
- export { PopoverContent, PopoverContentProps };
8
+ export { PopoverContent, type PopoverContentProps };
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverFooterProps = HTMLUIProps<"footer">;
5
5
  declare const PopoverFooter: _yamada_ui_core.Component<"footer", PopoverFooterProps>;
6
6
 
7
- export { PopoverFooter, PopoverFooterProps };
7
+ export { PopoverFooter, type PopoverFooterProps };
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverFooterProps = HTMLUIProps<"footer">;
5
5
  declare const PopoverFooter: _yamada_ui_core.Component<"footer", PopoverFooterProps>;
6
6
 
7
- export { PopoverFooter, PopoverFooterProps };
7
+ export { PopoverFooter, type PopoverFooterProps };
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverHeaderProps = HTMLUIProps<"header">;
5
5
  declare const PopoverHeader: _yamada_ui_core.Component<"header", PopoverHeaderProps>;
6
6
 
7
- export { PopoverHeader, PopoverHeaderProps };
7
+ export { PopoverHeader, type PopoverHeaderProps };
@@ -4,4 +4,4 @@ import { HTMLUIProps } from '@yamada-ui/core';
4
4
  type PopoverHeaderProps = HTMLUIProps<"header">;
5
5
  declare const PopoverHeader: _yamada_ui_core.Component<"header", PopoverHeaderProps>;
6
6
 
7
- export { PopoverHeader, PopoverHeaderProps };
7
+ export { PopoverHeader, type PopoverHeaderProps };
@@ -120,4 +120,4 @@ declare const usePopover: () => PopoverContext;
120
120
 
121
121
  declare const Popover: FC<PopoverProps>;
122
122
 
123
- export { Popover, PopoverProps, popoverProperties, usePopover };
123
+ export { Popover, type PopoverProps, popoverProperties, usePopover };
package/dist/popover.d.ts CHANGED
@@ -120,4 +120,4 @@ declare const usePopover: () => PopoverContext;
120
120
 
121
121
  declare const Popover: FC<PopoverProps>;
122
122
 
123
- export { Popover, PopoverProps, popoverProperties, usePopover };
123
+ export { Popover, type PopoverProps, popoverProperties, usePopover };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamada-ui/popover",
3
- "version": "0.3.25",
3
+ "version": "0.3.27",
4
4
  "description": "Yamada UI popover component",
5
5
  "keywords": [
6
6
  "yamada",
@@ -35,15 +35,15 @@
35
35
  "url": "https://github.com/hirotomoyamada/yamada-ui/issues"
36
36
  },
37
37
  "dependencies": {
38
- "@yamada-ui/core": "0.12.8",
39
- "@yamada-ui/utils": "0.3.3",
40
- "@yamada-ui/close-button": "0.3.19",
41
- "@yamada-ui/transitions": "0.3.20",
42
- "@yamada-ui/motion": "0.4.18",
43
- "@yamada-ui/use-popper": "0.4.18",
44
- "@yamada-ui/use-disclosure": "0.4.3",
45
- "@yamada-ui/use-focus": "0.2.6",
46
- "@yamada-ui/use-animation": "0.4.7"
38
+ "@yamada-ui/core": "0.13.1",
39
+ "@yamada-ui/utils": "0.4.0",
40
+ "@yamada-ui/close-button": "0.3.21",
41
+ "@yamada-ui/transitions": "0.3.22",
42
+ "@yamada-ui/motion": "0.4.20",
43
+ "@yamada-ui/use-popper": "0.4.20",
44
+ "@yamada-ui/use-disclosure": "0.4.4",
45
+ "@yamada-ui/use-focus": "0.2.7",
46
+ "@yamada-ui/use-animation": "0.4.9"
47
47
  },
48
48
  "devDependencies": {
49
49
  "react": "^18.0.0",