@nation-a/ui 0.16.1 → 0.16.2
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.
|
@@ -9,3 +9,5 @@ export declare const CustomRounded: Story;
|
|
|
9
9
|
export declare const WithoutDefaultPadding: Story;
|
|
10
10
|
export declare const CustomDesignWithScroller: Story;
|
|
11
11
|
export declare const DisableBackdropBlocking: Story;
|
|
12
|
+
export declare const SnapPoint: Story;
|
|
13
|
+
export declare const ContentHeight: Story;
|
|
@@ -5,9 +5,10 @@ import { HTMLStyledProps } from '../../../styled-system/jsx';
|
|
|
5
5
|
export type BottomSheetProps = Omit<ComponentProps<typeof Sheet>, 'children'> & BottomSheetVariantProps & {
|
|
6
6
|
children: ReactNode;
|
|
7
7
|
snapPercent?: {
|
|
8
|
-
min
|
|
9
|
-
max
|
|
8
|
+
min?: number;
|
|
9
|
+
max?: number;
|
|
10
10
|
};
|
|
11
|
+
maxSnapPoint?: number;
|
|
11
12
|
rounded?: number;
|
|
12
13
|
onClose?: () => void;
|
|
13
14
|
};
|