@object-ui/plugin-designer 3.3.0 → 3.3.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.
@@ -32,3 +32,7 @@ export { ConfirmDialog } from './components/ConfirmDialog';
32
32
  export { Minimap } from './components/Minimap';
33
33
  export { PropertyEditor } from './components/PropertyEditor';
34
34
  export { VersionHistory } from './components/VersionHistory';
35
+ export { CreateAppPage } from './pages/CreateAppPage';
36
+ export { EditAppPage } from './pages/EditAppPage';
37
+ export { PageDesignPage } from './pages/PageDesignPage';
38
+ export { DashboardDesignPage } from './pages/DashboardDesignPage';
@@ -0,0 +1,9 @@
1
+ /**
2
+ * CreateAppPage
3
+ *
4
+ * Console page that renders the AppCreationWizard from @object-ui/plugin-designer.
5
+ * Handles wizard callbacks: onComplete (create app), onCancel (navigate back),
6
+ * onSaveDraft (persist to localStorage).
7
+ * @module
8
+ */
9
+ export declare function CreateAppPage(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * DashboardDesignPage
3
+ *
4
+ * Console page that wraps the DashboardEditor for editing dashboard schemas.
5
+ *
6
+ * Route: /design/dashboard/:dashboardName
7
+ */
8
+ export declare function DashboardDesignPage(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * EditAppPage
3
+ *
4
+ * Console page that reuses AppCreationWizard in edit mode.
5
+ * Loads the existing app configuration as `initialDraft` and
6
+ * updates the app on completion.
7
+ * @module
8
+ */
9
+ export declare function EditAppPage(): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,8 @@
1
+ /**
2
+ * PageDesignPage
3
+ *
4
+ * Console page that wraps the PageCanvasEditor for editing page schemas.
5
+ *
6
+ * Route: /design/page/:pageName
7
+ */
8
+ export declare function PageDesignPage(): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@object-ui/plugin-designer",
3
- "version": "3.3.0",
3
+ "version": "3.3.2",
4
4
  "type": "module",
5
5
  "license": "MIT",
6
6
  "description": "Visual designer plugin for Object UI with page, data model, process, and report designers plus collaborative editing.",
@@ -15,11 +15,15 @@
15
15
  }
16
16
  },
17
17
  "files": [
18
- "dist"
18
+ "dist",
19
+ "README.md",
20
+ "CHANGELOG.md",
21
+ "LICENSE"
19
22
  ],
20
23
  "peerDependencies": {
21
24
  "react": "^18.0.0 || ^19.0.0",
22
- "react-dom": "^18.0.0 || ^19.0.0"
25
+ "react-dom": "^18.0.0 || ^19.0.0",
26
+ "react-router-dom": "^6.0.0 || ^7.0.0"
23
27
  },
24
28
  "dependencies": {
25
29
  "@dnd-kit/core": "^6.3.1",
@@ -27,24 +31,52 @@
27
31
  "@dnd-kit/utilities": "^3.2.2",
28
32
  "clsx": "^2.1.1",
29
33
  "lucide-react": "^1.8.0",
34
+ "sonner": "^2.0.7",
30
35
  "tailwind-merge": "^3.5.0",
31
- "@object-ui/components": "3.3.0",
32
- "@object-ui/core": "3.3.0",
33
- "@object-ui/fields": "3.3.0",
34
- "@object-ui/i18n": "3.3.0",
35
- "@object-ui/plugin-form": "3.3.0",
36
- "@object-ui/plugin-grid": "3.3.0",
37
- "@object-ui/react": "3.3.0",
38
- "@object-ui/types": "3.3.0"
36
+ "@object-ui/components": "3.3.2",
37
+ "@object-ui/core": "3.3.2",
38
+ "@object-ui/fields": "3.3.2",
39
+ "@object-ui/i18n": "3.3.2",
40
+ "@object-ui/plugin-form": "3.3.2",
41
+ "@object-ui/plugin-grid": "3.3.2",
42
+ "@object-ui/react": "3.3.2",
43
+ "@object-ui/types": "3.3.2"
39
44
  },
40
45
  "devDependencies": {
41
46
  "@types/node": "^25.6.0",
42
47
  "@types/react": "19.2.14",
43
48
  "@types/react-dom": "19.2.3",
44
49
  "@vitejs/plugin-react": "^6.0.1",
45
- "vite": "^8.0.8",
50
+ "vite": "^8.0.10",
46
51
  "vite-plugin-dts": "^4.5.4",
47
- "vitest": "^4.1.4"
52
+ "vitest": "^4.1.5"
53
+ },
54
+ "keywords": [
55
+ "objectui",
56
+ "sdui",
57
+ "schema-driven-ui",
58
+ "react",
59
+ "tailwind",
60
+ "shadcn",
61
+ "objectstack",
62
+ "plugin",
63
+ "designer",
64
+ "wysiwyg",
65
+ "page-builder",
66
+ "low-code"
67
+ ],
68
+ "author": "ObjectStack Team <team@objectstack.ai>",
69
+ "repository": {
70
+ "type": "git",
71
+ "url": "git+https://github.com/objectstack-ai/objectui.git",
72
+ "directory": "packages/plugin-designer"
73
+ },
74
+ "bugs": {
75
+ "url": "https://github.com/objectstack-ai/objectui/issues"
76
+ },
77
+ "homepage": "https://www.objectui.org/docs/plugins/plugin-designer",
78
+ "publishConfig": {
79
+ "access": "public"
48
80
  },
49
81
  "scripts": {
50
82
  "build": "vite build",