visual-forge-hub-test-env 0.1.0 → 0.1.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.
- package/dist/index.es.js +5069 -5067
- package/dist/index.umd.js +61 -61
- package/dist/pages/PublicPage.d.ts +7 -1
- package/package.json +1 -5
|
@@ -1,5 +1,11 @@
|
|
|
1
|
+
interface LinkProps {
|
|
2
|
+
to: string;
|
|
3
|
+
className?: string;
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
}
|
|
1
6
|
interface PublicPageProps {
|
|
2
7
|
slug?: string;
|
|
8
|
+
LinkComponent?: React.ComponentType<LinkProps>;
|
|
3
9
|
}
|
|
4
|
-
declare const PublicPage: ({ slug
|
|
10
|
+
declare const PublicPage: ({ slug, LinkComponent, }: PublicPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
11
|
export default PublicPage;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "visual-forge-hub-test-env",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.2",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.umd.js",
|
|
7
7
|
"module": "./dist/index.es.js",
|
|
@@ -55,7 +55,6 @@
|
|
|
55
55
|
"@radix-ui/react-toggle-group": "^1.1.10",
|
|
56
56
|
"@radix-ui/react-tooltip": "^1.2.7",
|
|
57
57
|
"@supabase/supabase-js": "^2.78.0",
|
|
58
|
-
"@tanstack/react-query": "^5.83.0",
|
|
59
58
|
"class-variance-authority": "^0.7.1",
|
|
60
59
|
"clsx": "^2.1.1",
|
|
61
60
|
"cmdk": "^1.1.1",
|
|
@@ -64,12 +63,9 @@
|
|
|
64
63
|
"input-otp": "^1.4.2",
|
|
65
64
|
"lucide-react": "^0.462.0",
|
|
66
65
|
"next-themes": "^0.3.0",
|
|
67
|
-
"react": "^18.3.1",
|
|
68
66
|
"react-day-picker": "^8.10.1",
|
|
69
|
-
"react-dom": "^18.3.1",
|
|
70
67
|
"react-hook-form": "^7.61.1",
|
|
71
68
|
"react-resizable-panels": "^2.1.9",
|
|
72
|
-
"react-router-dom": "^6.30.1",
|
|
73
69
|
"recharts": "^2.15.4",
|
|
74
70
|
"sonner": "^1.7.4",
|
|
75
71
|
"tailwind-merge": "^2.6.0",
|