@nice2dev/ui-designers 1.0.10
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 +20 -0
- package/dist/index.cjs +6511 -0
- package/dist/index.d.ts +667 -0
- package/dist/index.mjs +78199 -0
- package/package.json +67 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @nice2dev/ui-designers
|
|
2
|
+
|
|
3
|
+
Visual designer & no-code/low-code builder React components extracted from `@nice2dev/ui`.
|
|
4
|
+
|
|
5
|
+
## Components
|
|
6
|
+
|
|
7
|
+
- **NiceDashboardDesigner** — Drag & drop dashboard builder with widgets/layouts.
|
|
8
|
+
- **NiceWorkflowDesigner** — Visual workflow/flowchart designer with nodes & connections.
|
|
9
|
+
- **NiceThemeDesigner** — Visual theme designer (high-level wrapper around NiceThemeBuilder).
|
|
10
|
+
- **NiceThemeBuilder** — Theme builder primitive: tokens, presets, live preview.
|
|
11
|
+
- **NiceViewBuilder** — View builder for grid/row/cell-based layouts.
|
|
12
|
+
- **NiceControlConfigurator** — Property editor for component prop schemas.
|
|
13
|
+
|
|
14
|
+
## Install
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npm install @nice2dev/ui-designers @nice2dev/ui @nice2dev/i18n
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Requires `@nice2dev/ui` & `@nice2dev/i18n` as peer dependencies.
|