@yamada-ui/modal 1.2.0 → 1.2.1-dev-20240409072750
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/chunk-74PDTFI6.mjs +942 -0
- package/dist/chunk-74PDTFI6.mjs.map +1 -0
- package/dist/dialog.js +206 -31168
- package/dist/dialog.js.map +1 -1
- package/dist/dialog.mjs +1 -1
- package/dist/drawer.d.mts +2 -3
- package/dist/drawer.d.ts +2 -3
- package/dist/drawer.js +497 -31455
- package/dist/drawer.js.map +1 -1
- package/dist/drawer.mjs +1 -1
- package/dist/index.d.mts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +218 -31180
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/modal-body.js +320 -31280
- package/dist/modal-body.js.map +1 -1
- package/dist/modal-body.mjs +1 -1
- package/dist/modal-close-button.js +321 -31281
- package/dist/modal-close-button.js.map +1 -1
- package/dist/modal-close-button.mjs +1 -1
- package/dist/modal-footer.js +321 -31281
- package/dist/modal-footer.js.map +1 -1
- package/dist/modal-footer.mjs +1 -1
- package/dist/modal-header.js +321 -31281
- package/dist/modal-header.js.map +1 -1
- package/dist/modal-header.mjs +1 -1
- package/dist/modal-overlay.js +309 -31269
- package/dist/modal-overlay.js.map +1 -1
- package/dist/modal-overlay.mjs +1 -1
- package/dist/modal.js +335 -31295
- package/dist/modal.js.map +1 -1
- package/dist/modal.mjs +1 -1
- package/package.json +5 -5
- package/dist/chunk-7GHPI6QC.mjs +0 -32675
- package/dist/chunk-7GHPI6QC.mjs.map +0 -1
package/dist/dialog.mjs
CHANGED
package/dist/drawer.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _yamada_ui_close_button from '@yamada-ui/close-button';
|
|
2
2
|
import * as _yamada_ui_core from '@yamada-ui/core';
|
|
3
3
|
import { ThemeProps, HTMLUIProps, CSSUIObject } from '@yamada-ui/core';
|
|
4
4
|
import { SlideProps } from '@yamada-ui/transitions';
|
|
@@ -12,7 +12,6 @@ import { ModalFooterProps } from './modal-footer.mjs';
|
|
|
12
12
|
import '@yamada-ui/focus-lock';
|
|
13
13
|
import '@yamada-ui/motion';
|
|
14
14
|
import '@yamada-ui/portal';
|
|
15
|
-
import '@yamada-ui/close-button';
|
|
16
15
|
|
|
17
16
|
type DrawerOptions = {
|
|
18
17
|
/**
|
|
@@ -80,7 +79,7 @@ declare const DrawerOverlay: _yamada_ui_core.Component<"div", ModalOverlayProps>
|
|
|
80
79
|
type DrawerDragBarProps = HTMLUIProps<"div">;
|
|
81
80
|
declare const DrawerDragBar: FC<DrawerDragBarProps>;
|
|
82
81
|
type DrawerCloseButtonProps = ModalCloseButtonProps;
|
|
83
|
-
declare const DrawerCloseButton: _yamada_ui_core.Component<"button",
|
|
82
|
+
declare const DrawerCloseButton: _yamada_ui_core.Component<"button", _yamada_ui_close_button.CloseButtonProps>;
|
|
84
83
|
type DrawerHeaderProps = ModalHeaderProps;
|
|
85
84
|
declare const DrawerHeader: _yamada_ui_core.Component<"header", ModalHeaderProps>;
|
|
86
85
|
type DrawerBodyProps = ModalBodyProps;
|
package/dist/drawer.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _yamada_ui_close_button from '@yamada-ui/close-button';
|
|
2
2
|
import * as _yamada_ui_core from '@yamada-ui/core';
|
|
3
3
|
import { ThemeProps, HTMLUIProps, CSSUIObject } from '@yamada-ui/core';
|
|
4
4
|
import { SlideProps } from '@yamada-ui/transitions';
|
|
@@ -12,7 +12,6 @@ import { ModalFooterProps } from './modal-footer.js';
|
|
|
12
12
|
import '@yamada-ui/focus-lock';
|
|
13
13
|
import '@yamada-ui/motion';
|
|
14
14
|
import '@yamada-ui/portal';
|
|
15
|
-
import '@yamada-ui/close-button';
|
|
16
15
|
|
|
17
16
|
type DrawerOptions = {
|
|
18
17
|
/**
|
|
@@ -80,7 +79,7 @@ declare const DrawerOverlay: _yamada_ui_core.Component<"div", ModalOverlayProps>
|
|
|
80
79
|
type DrawerDragBarProps = HTMLUIProps<"div">;
|
|
81
80
|
declare const DrawerDragBar: FC<DrawerDragBarProps>;
|
|
82
81
|
type DrawerCloseButtonProps = ModalCloseButtonProps;
|
|
83
|
-
declare const DrawerCloseButton: _yamada_ui_core.Component<"button",
|
|
82
|
+
declare const DrawerCloseButton: _yamada_ui_core.Component<"button", _yamada_ui_close_button.CloseButtonProps>;
|
|
84
83
|
type DrawerHeaderProps = ModalHeaderProps;
|
|
85
84
|
declare const DrawerHeader: _yamada_ui_core.Component<"header", ModalHeaderProps>;
|
|
86
85
|
type DrawerBodyProps = ModalBodyProps;
|