@mosaicoo/form-angular 0.5.0 → 0.6.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 CHANGED
@@ -57,6 +57,23 @@ undo/redo (Ctrl+Z/Y), duplicate/delete/move, live schema diagnostics,
57
57
  import/export and a Preview mode with test data. The host owns persistence:
58
58
  `schemaChanged` hands you the versioned schema document.
59
59
 
60
+ **Custom types in the palette** — register the component in the runtime and
61
+ contribute a palette entry; the Inspector edits its settings through the
62
+ `props` JSON editor, so a board, a map or a chart becomes a first-class field:
63
+
64
+ ```html
65
+ <mform-designer [extraCatalog]="[{
66
+ label: 'My components',
67
+ entries: [{ type: 'board', label: 'Board', icon: '▤', create: (schema) => ({
68
+ kind: 'input', key: generateKey(schema, 'board'), type: 'board',
69
+ dataType: 'object', props: { columns: ['To do', 'Doing', 'Done'] },
70
+ }) }],
71
+ }]" />
72
+ ```
73
+
74
+ **Workspace** — panels (Fields, Structure, Properties) dock left or right or
75
+ hide, with presets and per-user persistence, like a professional IDE.
76
+
60
77
  ## Material Design 3 adapter
61
78
 
62
79
  Optional entry point (requires `@angular/material`, an optional peer):