innodep-ds 0.0.19 → 0.0.21
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/README.md +1 -0
- package/dist/index.cjs.js +48 -48
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.es.js +6421 -5622
- package/dist/index.es.js.map +1 -1
- package/dist/stories/components/overlay/sonner/Sonner.d.ts +6 -0
- package/package.json +4 -1
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ToasterProps, toast as sonnerToast } from "sonner";
|
|
2
|
+
export interface ISonnerProps extends Omit<ToasterProps, "theme"> {
|
|
3
|
+
size?: "min" | "normal" | "max";
|
|
4
|
+
}
|
|
5
|
+
declare const Toaster: ({ size, ...props }: ISonnerProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export { Toaster, sonnerToast as toast };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "innodep-ds",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.21",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
@@ -57,6 +57,7 @@
|
|
|
57
57
|
"@radix-ui/react-slot": "^1.2.2",
|
|
58
58
|
"@radix-ui/react-switch": "^1.2.4",
|
|
59
59
|
"@radix-ui/react-tabs": "^1.1.11",
|
|
60
|
+
"@radix-ui/react-toast": "^1.2.14",
|
|
60
61
|
"@radix-ui/react-toggle": "^1.1.8",
|
|
61
62
|
"@radix-ui/react-toggle-group": "^1.1.9",
|
|
62
63
|
"@radix-ui/react-tooltip": "^1.2.6",
|
|
@@ -66,7 +67,9 @@
|
|
|
66
67
|
"cmdk": "^1.1.1",
|
|
67
68
|
"date-fns": "^4.1.0",
|
|
68
69
|
"lucide-react": "^0.488.0",
|
|
70
|
+
"next-themes": "^0.4.6",
|
|
69
71
|
"react-day-picker": "8.10.1",
|
|
72
|
+
"sonner": "^2.0.5",
|
|
70
73
|
"styled-components": "^6.1.18",
|
|
71
74
|
"tailwind-merge": "^3.2.0",
|
|
72
75
|
"tailwindcss": "^4.1.4",
|