@mosaicoo/form-angular 0.6.0 → 0.8.0
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 +19 -0
- package/fesm2022/mosaicoo-form-angular-designer.mjs +573 -82
- package/fesm2022/mosaicoo-form-angular-designer.mjs.map +1 -1
- package/fesm2022/mosaicoo-form-angular.mjs +191 -41
- package/fesm2022/mosaicoo-form-angular.mjs.map +1 -1
- package/package.json +2 -2
- package/types/mosaicoo-form-angular-designer.d.ts +153 -4
- package/types/mosaicoo-form-angular.d.ts +25 -2
package/README.md
CHANGED
|
@@ -74,6 +74,25 @@ contribute a palette entry; the Inspector edits its settings through the
|
|
|
74
74
|
**Workspace** — panels (Fields, Structure, Properties) dock left or right or
|
|
75
75
|
hide, with presets and per-user persistence, like a professional IDE.
|
|
76
76
|
|
|
77
|
+
**Drag and drop** — drag palette entries onto the canvas, INTO containers and
|
|
78
|
+
into individual columns; reorder nodes by dragging. Drop zones highlight the
|
|
79
|
+
landing position and the columns map stays consistent automatically.
|
|
80
|
+
|
|
81
|
+
**Localizable** — every designer string comes from `[labels]` (partial
|
|
82
|
+
overrides fall back to English); translate the palette by passing your own
|
|
83
|
+
`[catalog]` (start from `DEFAULT_CATALOG`).
|
|
84
|
+
|
|
85
|
+
**Resizable docks** — drag the splitter between a panel rail and the canvas;
|
|
86
|
+
widths persist with the layout.
|
|
87
|
+
|
|
88
|
+
**Reusable blocks** — save any subtree as a named block and drop it into other
|
|
89
|
+
forms (keys are regenerated). Blocks persist locally by default; bind
|
|
90
|
+
`[blocks]` / `(blocksChanged)` to store them wherever your platform keeps
|
|
91
|
+
shared assets.
|
|
92
|
+
|
|
93
|
+
The canvas renders leaves with the RUNTIME components and the runtime theme,
|
|
94
|
+
so what you design is exactly what your users get.
|
|
95
|
+
|
|
77
96
|
## Material Design 3 adapter
|
|
78
97
|
|
|
79
98
|
Optional entry point (requires `@angular/material`, an optional peer):
|