@object-ui/plugin-designer 3.0.3 → 3.1.1
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 -21
- package/dist/index.js +5122 -2359
- package/dist/index.umd.cjs +2 -2
- package/dist/plugin-designer/src/AppCreationWizard.d.ts +24 -0
- package/dist/plugin-designer/src/BrandingEditor.d.ts +18 -0
- package/dist/plugin-designer/src/DashboardEditor.d.ts +21 -0
- package/dist/plugin-designer/src/DashboardEditor.stories.d.ts +15 -0
- package/dist/plugin-designer/src/EditorModeToggle.d.ts +21 -0
- package/dist/plugin-designer/src/NavigationDesigner.d.ts +19 -0
- package/dist/plugin-designer/src/ObjectViewConfigurator.d.ts +41 -0
- package/dist/plugin-designer/src/PageCanvasEditor.d.ts +24 -0
- package/dist/plugin-designer/src/PageCanvasEditor.stories.d.ts +15 -0
- package/dist/plugin-designer/src/hooks/index.d.ts +3 -0
- package/dist/plugin-designer/src/hooks/useDesignerHistory.d.ts +23 -0
- package/dist/plugin-designer/src/hooks/useDesignerTranslation.d.ts +12 -0
- package/dist/plugin-designer/src/index.d.ts +16 -3
- package/package.json +13 -9
- package/dist/plugin-designer/src/ViewDesigner.d.ts +0 -67
package/README.md
CHANGED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
# @object-ui/plugin-designer
|
|
2
2
|
|
|
3
|
-
Visual designers for Object UI — page,
|
|
3
|
+
Visual designers for Object UI — page, data model, process, and report designers with collaboration support.
|
|
4
4
|
|
|
5
5
|
## Features
|
|
6
6
|
|
|
7
7
|
- 🎨 **Page Designer** - Drag-and-drop page builder with component tree
|
|
8
|
-
- 📊 **View Designer** - Configure grid, list, and detail views visually
|
|
9
8
|
- 🗄️ **Data Model Designer** - Entity-relationship diagram editor with auto-layout
|
|
10
9
|
- ⚙️ **Process Designer** - BPMN-style process flow editor with minimap
|
|
11
10
|
- 📝 **Report Designer** - Visual report layout builder with sections
|
|
@@ -33,7 +32,6 @@ npm install @object-ui/plugin-designer
|
|
|
33
32
|
```tsx
|
|
34
33
|
import {
|
|
35
34
|
PageDesigner,
|
|
36
|
-
ViewDesigner,
|
|
37
35
|
DataModelDesigner,
|
|
38
36
|
CollaborationProvider,
|
|
39
37
|
} from '@object-ui/plugin-designer';
|
|
@@ -49,16 +47,6 @@ function DesignerApp() {
|
|
|
49
47
|
</CollaborationProvider>
|
|
50
48
|
);
|
|
51
49
|
}
|
|
52
|
-
|
|
53
|
-
function ViewEditor() {
|
|
54
|
-
return (
|
|
55
|
-
<ViewDesigner
|
|
56
|
-
objectName="Contact"
|
|
57
|
-
viewType="grid"
|
|
58
|
-
viewLabel="All Contacts"
|
|
59
|
-
/>
|
|
60
|
-
);
|
|
61
|
-
}
|
|
62
50
|
```
|
|
63
51
|
|
|
64
52
|
## API
|
|
@@ -77,14 +65,6 @@ Drag-and-drop page layout builder:
|
|
|
77
65
|
/>
|
|
78
66
|
```
|
|
79
67
|
|
|
80
|
-
### ViewDesigner
|
|
81
|
-
|
|
82
|
-
Visual view configuration editor:
|
|
83
|
-
|
|
84
|
-
```tsx
|
|
85
|
-
<ViewDesigner objectName="Order" viewType="grid" viewLabel="My Orders" />
|
|
86
|
-
```
|
|
87
|
-
|
|
88
68
|
### DataModelDesigner
|
|
89
69
|
|
|
90
70
|
Entity-relationship diagram editor:
|