@croquiscom/pds 10.5.0 → 10.6.0
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/CHANGELOG.md
CHANGED
|
@@ -37,6 +37,11 @@ export interface DrawerProps {
|
|
|
37
37
|
* @default true
|
|
38
38
|
*/
|
|
39
39
|
lockScroll?: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* Drawer 닫힐 때 애니메이션 사용 여부
|
|
42
|
+
* @default true
|
|
43
|
+
*/
|
|
44
|
+
animationOnClose?: boolean;
|
|
40
45
|
onClose?: () => void;
|
|
41
46
|
}
|
|
42
47
|
export declare const Drawer: React.ComponentType<DrawerProps & {
|
|
@@ -6,6 +6,7 @@ type Story = StoryObj<typeof Drawer>;
|
|
|
6
6
|
export declare const Base: Story;
|
|
7
7
|
export declare const Width: Story;
|
|
8
8
|
export declare const NoUsePortal: Story;
|
|
9
|
+
export declare const NoUseAnimationOnClose: Story;
|
|
9
10
|
export declare const Direction: Story;
|
|
10
11
|
export declare const DrawerWithNavigation: Story;
|
|
11
12
|
export declare const DrawerWithModal: Story;
|