rdy-dashboard 1.0.3 → 1.0.4

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/bin/init.js CHANGED
@@ -35,15 +35,15 @@ function writeFile(filePath, content) {
35
35
  const files = [
36
36
  {
37
37
  filePath: path.join(root, "app/dashboard/layout.tsx"),
38
- templatePath: path.join(__dirname, "../templates/dashboard-layout.tsx")
38
+ templatePath: path.join(__dirname, "../dist/templates/dashboard-layout.tsx")
39
39
  },
40
40
  {
41
41
  filePath: path.join(root, "app/dashboard/page.tsx"),
42
- templatePath: path.join(__dirname, "../templates/dashboard-page.tsx")
42
+ templatePath: path.join(__dirname, "../dist/templates/dashboard-page.tsx")
43
43
  },
44
44
  {
45
45
  filePath: path.join(root, "app/login/page.tsx"),
46
- templatePath: path.join(__dirname, "../templates/login-page.tsx")
46
+ templatePath: path.join(__dirname, "../dist/templates/login-page.tsx")
47
47
  }
48
48
  ];
49
49
 
@@ -0,0 +1,3 @@
1
+ export default function DAshboardLayout({ children }: {
2
+ children: React.ReactNode;
3
+ }): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export default function DashboardPage(): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rdy-dashboard",
3
- "version": "1.0.3",
3
+ "version": "1.0.4",
4
4
  "description": "Rdy Admin Panel Package",
5
5
  "repository": {
6
6
  "type": "git",