ownui-system 0.0.2 → 0.0.3
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/dist/components/BottomSheet/bottomsheet-context.d.ts +2 -0
- package/dist/components/BottomSheet/bottomsheet.d.ts +3 -1
- package/dist/index.d.ts +0 -3
- package/dist/ownui-system.js +967 -1145
- package/dist/ownui-system.js.map +1 -1
- package/dist/ownui-system.umd.cjs +10 -10
- package/dist/ownui-system.umd.cjs.map +1 -1
- package/package.json +1 -1
- package/dist/App.d.ts +0 -2
- package/dist/components/Accordion/Accordion.stories.d.ts +0 -23
- package/dist/components/Badge/Badge.stories.d.ts +0 -14
- package/dist/components/Button/Button.stories.d.ts +0 -43
- package/dist/components/Checkbox/Checkbox.stories.d.ts +0 -30
- package/dist/components/Divider/Divider.stories.d.ts +0 -19
- package/dist/components/Drawer/Drawer.stories.d.ts +0 -36
- package/dist/components/Dropdown/Dropdown.stories.d.ts +0 -12
- package/dist/components/Input/Input.stories.d.ts +0 -37
- package/dist/components/Modal/Modal.stories.d.ts +0 -12
- package/dist/components/Popover/Popover.stories.d.ts +0 -32
- package/dist/components/Tab/Tab.stories.d.ts +0 -16
- package/dist/components/TextArea/TextArea.stories.d.ts +0 -33
- package/dist/components/TextField/TextField.stories.d.ts +0 -30
- package/dist/main.d.ts +0 -0
|
@@ -6,9 +6,11 @@ export interface BottomSheetProps {
|
|
|
6
6
|
children: React.ReactNode;
|
|
7
7
|
color?: string;
|
|
8
8
|
allowCloseOnClickBackDrop?: boolean;
|
|
9
|
+
minHeight?: string;
|
|
10
|
+
maxHeight?: string;
|
|
9
11
|
onClose?: () => void;
|
|
10
12
|
onOpen?: () => void;
|
|
11
13
|
onOpenChange: (isOpen: boolean) => void;
|
|
12
14
|
}
|
|
13
|
-
declare function BottomSheet({ children, removeDimmer, isOpen, allowCloseOnClickBackDrop, color, zIndex, ...props }: BottomSheetProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
declare function BottomSheet({ children, removeDimmer, isOpen, allowCloseOnClickBackDrop, color, zIndex, maxHeight, minHeight, ...props }: BottomSheetProps): import("react/jsx-runtime").JSX.Element;
|
|
14
16
|
export default BottomSheet;
|