@croquiscom/pds 10.5.0 → 10.6.1

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
@@ -1,5 +1,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 10.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5b06c82: feat: Drawer animationOnClose false인 경우 opacity animation 제거
8
+
9
+ ## 10.6.0
10
+
11
+ ### Minor Changes
12
+
13
+ - d4199d8: feat: Drawer close animation 사용여부 prop 추가
14
+
3
15
  ## 10.5.0
4
16
 
5
17
  ### Minor Changes
@@ -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;