@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 +6 -0
- package/dist/components/bottom-sheet/BottomSheet.d.ts +1 -1
- package/dist/components/bottom-sheet/BottomSheet.stories.d.ts +1 -0
- package/dist/components/drawer/Drawer.d.ts +1 -1
- package/dist/components/drawer/Drawer.stories.d.ts +2 -0
- package/dist/index.es.js +6 -6
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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:
|
|
45
|
+
export declare const BottomSheet: React.ComponentType<BottomSheetProps>;
|
|
@@ -39,6 +39,6 @@ export interface DrawerProps {
|
|
|
39
39
|
lockScroll?: boolean;
|
|
40
40
|
onClose?: () => void;
|
|
41
41
|
}
|
|
42
|
-
export declare const Drawer: React.
|
|
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;
|