prometeo-design-system 1.3.7 → 1.4.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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "prometeo-design-system",
3
3
  "private": false,
4
- "version": "1.3.7",
4
+ "version": "1.4.1",
5
5
  "type": "module",
6
6
  "description": "design kit system",
7
7
  "main": "dist/prometeo-design-system.umd.js",
@@ -78,6 +78,7 @@
78
78
  "typescript": "~5.8.3",
79
79
  "typescript-eslint": "^8.39.1",
80
80
  "use-debounce": "^10.0.0",
81
+ "vaul": "^1.1.2",
81
82
  "vite": "^7.1.2",
82
83
  "vite-plugin-dts": "^4.5.4"
83
84
  },
@@ -95,6 +96,7 @@
95
96
  "react-spinners": "^0.17.0",
96
97
  "sonner": "^2.0.7",
97
98
  "tailwind-merge": "^3.0.0",
98
- "use-debounce": "^10.0.0"
99
+ "use-debounce": "^10.0.0",
100
+ "vaul": "^1.1.2"
99
101
  }
100
102
  }
@@ -1,12 +0,0 @@
1
- interface DrawerProps {
2
- children: React.ReactNode;
3
- onClose?: () => void;
4
- className?: string;
5
- }
6
- export interface DrawerHandle {
7
- open: () => void;
8
- close: () => void;
9
- isOpen: boolean;
10
- }
11
- declare const Drawer: import('react').ForwardRefExoticComponent<DrawerProps & import('react').RefAttributes<DrawerHandle>>;
12
- export default Drawer;
@@ -1,2 +0,0 @@
1
- import { RefObject } from 'react';
2
- export declare const useAnimateDrawer: (drawerRef: RefObject<HTMLDivElement | null>, isOpen: boolean) => void;
@@ -1,7 +0,0 @@
1
- import { DrawerHandle } from './Drawer';
2
- export declare const useDrawerControl: () => {
3
- ref: import('react').RefObject<DrawerHandle | null>;
4
- open: () => void;
5
- close: () => void;
6
- isOpen: () => boolean;
7
- };
@@ -1,2 +0,0 @@
1
- declare function DrawerPreview(): import("react/jsx-runtime").JSX.Element;
2
- export default DrawerPreview;