@croquiscom/pds 8.28.0 → 8.28.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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 8.28.1
4
+
5
+ ### Patch Changes
6
+
7
+ - cc7d378: Bottomsheet, Drawer 다른 모달 컴포넌트와 같이 닫히는 이슈 수정
8
+
3
9
  ## 8.28.0
4
10
 
5
11
  ### Minor Changes
@@ -42,4 +42,4 @@ export interface BottomSheetProps {
42
42
  }
43
43
  export declare const MIN_BOTTOM_SHEET_Y = 44;
44
44
  export declare const HANDLE_AREA_HEIGHT = 28;
45
- export declare const BottomSheet: ({ className, zIndex, opened: openProp, canClickOutside, canCloseEscapeKey, canDragClose, title, subTitle, content, contentProps, onClose, }: BottomSheetProps) => React.JSX.Element;
45
+ export declare const BottomSheet: React.ComponentType<BottomSheetProps>;
@@ -8,3 +8,4 @@ export declare const MaxHeight: Story;
8
8
  export declare const DisabledCloseDimClick: Story;
9
9
  export declare const DisabledCloseDrag: Story;
10
10
  export declare const ContentWithCloseAction: Story;
11
+ export declare const BottomSheetWithModal: Story;
@@ -39,6 +39,6 @@ export interface DrawerProps {
39
39
  lockScroll?: boolean;
40
40
  onClose?: () => void;
41
41
  }
42
- export declare const Drawer: React.ForwardRefExoticComponent<DrawerProps & {
42
+ export declare const Drawer: React.ComponentType<DrawerProps & {
43
43
  children?: React.ReactNode;
44
44
  } & React.RefAttributes<HTMLDivElement>>;
@@ -8,3 +8,5 @@ export declare const Width: Story;
8
8
  export declare const NoUsePortal: Story;
9
9
  export declare const Direction: Story;
10
10
  export declare const DrawerWithNavigation: Story;
11
+ export declare const DrawerWithModal: Story;
12
+ export declare const DrawerWithModalNoUsePortal: Story;