@meta-1/design 0.0.182 → 0.0.183
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 +6 -6
- package/src/assets/style/theme.css +1 -1
- package/src/index.ts +5 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meta-1/design",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.183",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"easykit",
|
|
6
6
|
"design",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@radix-ui/react-alert-dialog": "1.1.2",
|
|
26
26
|
"@radix-ui/react-avatar": "1.1.1",
|
|
27
27
|
"@radix-ui/react-checkbox": "1.1.2",
|
|
28
|
-
"@radix-ui/react-context-menu": "
|
|
28
|
+
"@radix-ui/react-context-menu": "2.2.16",
|
|
29
29
|
"@radix-ui/react-dialog": "1.1.2",
|
|
30
30
|
"@radix-ui/react-dismissable-layer": "1.1.1",
|
|
31
31
|
"@radix-ui/react-dropdown-menu": "2.1.2",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@radix-ui/react-hover-card": "1.1.2",
|
|
34
34
|
"@radix-ui/react-icons": "1.3.2",
|
|
35
35
|
"@radix-ui/react-label": "2.1.0",
|
|
36
|
-
"@radix-ui/react-navigation-menu": "
|
|
36
|
+
"@radix-ui/react-navigation-menu": "1.2.5",
|
|
37
37
|
"@radix-ui/react-popover": "1.1.2",
|
|
38
38
|
"@radix-ui/react-progress": "1.1.0",
|
|
39
39
|
"@radix-ui/react-radio-group": "1.2.1",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"date-fns": "3.6.0",
|
|
53
53
|
"escape-html": "1.0.3",
|
|
54
54
|
"github-markdown-css": "5.6.1",
|
|
55
|
-
"input-otp": "
|
|
55
|
+
"input-otp": "1.4.2",
|
|
56
56
|
"is-hotkey": "0.2.0",
|
|
57
57
|
"lodash": "4.17.21",
|
|
58
58
|
"lucide-react": "0.400.0",
|
|
@@ -60,12 +60,12 @@
|
|
|
60
60
|
"rc-tree": "5.12.4",
|
|
61
61
|
"react-day-picker": "8.10.1",
|
|
62
62
|
"react-dropzone": "14.2.3",
|
|
63
|
-
"react-hook-form": "7.
|
|
63
|
+
"react-hook-form": "^7.55.0",
|
|
64
64
|
"react-resizable-panels": "2.0.20",
|
|
65
65
|
"slate": "0.103.0",
|
|
66
66
|
"slate-history": "0.100.0",
|
|
67
67
|
"slate-react": "0.106.0",
|
|
68
|
-
"sonner": "
|
|
68
|
+
"sonner": "2.0.3",
|
|
69
69
|
"uuid": "10.0.0"
|
|
70
70
|
},
|
|
71
71
|
"devDependencies": {
|
package/src/index.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
//
|
|
2
|
-
|
|
1
|
+
// others
|
|
3
2
|
export { toast } from "sonner";
|
|
4
3
|
|
|
4
|
+
// shadcn/ui
|
|
5
5
|
export {
|
|
6
6
|
InputOTP,
|
|
7
7
|
InputOTPGroup,
|
|
@@ -94,7 +94,7 @@ export {
|
|
|
94
94
|
} from "./components/ui/table";
|
|
95
95
|
export { Tabs, TabsContent, TabsList, TabsTrigger } from "./components/ui/tabs";
|
|
96
96
|
export { Textarea } from "./components/ui/textarea";
|
|
97
|
-
//
|
|
97
|
+
// advanced components
|
|
98
98
|
export type { ActionProps } from "./components/uix/action";
|
|
99
99
|
export { Action } from "./components/uix/action";
|
|
100
100
|
export type { AlertProps } from "./components/uix/alert";
|
|
@@ -174,6 +174,7 @@ export { Uploader } from "./components/uix/uploader";
|
|
|
174
174
|
export type { HandleProps, UploadFile } from "./components/uix/uploader/type";
|
|
175
175
|
export type { ValueFormatterProps } from "./components/uix/value-formatter";
|
|
176
176
|
export { register, ValueFormatter } from "./components/uix/value-formatter";
|
|
177
|
-
// hooks
|
|
177
|
+
// custom hooks
|
|
178
178
|
export * from "./hooks";
|
|
179
|
+
// utils
|
|
179
180
|
export * from "./lib";
|