@praxisui/dynamic-form 1.0.0-beta.48 → 1.0.0-beta.52

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.
Files changed (2) hide show
  1. package/README.md +44 -1
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -1,3 +1,45 @@
1
+ ---
2
+ title: "Dynamic Form"
3
+ slug: "dynamic-form-overview"
4
+ description: "Visao geral do @praxisui/dynamic-form com schema-driven UI, editor embutido, layout runtime e integracao orientada a contrato."
5
+ doc_type: "reference"
6
+ document_kind: "component-overview"
7
+ component: "dynamic-form"
8
+ category: "components"
9
+ audience:
10
+ - "frontend"
11
+ - "host"
12
+ - "architect"
13
+ level: "intermediate"
14
+ status: "active"
15
+ owner: "praxis-ui"
16
+ tags:
17
+ - "dynamic-form"
18
+ - "schema-driven"
19
+ - "runtime"
20
+ - "layout"
21
+ - "config-editor"
22
+ order: 30
23
+ icon: "dynamic_form"
24
+ toc: true
25
+ sidebar: true
26
+ search_boost: 1.0
27
+ reading_time: 12
28
+ estimated_setup_time: 20
29
+ version: "1.0"
30
+ related_docs:
31
+ - "dynamic-form-hot-metadata-updates"
32
+ - "praxis-dynamic-form-json-api"
33
+ - "host-integration-guide"
34
+ - "consumer-integration-quickstart"
35
+ keywords:
36
+ - "FormConfig"
37
+ - "schema-driven"
38
+ - "layout editor"
39
+ - "settings integration"
40
+ last_updated: "2026-03-07"
41
+ ---
42
+
1
43
  # @praxisui/dynamic-form
2
44
 
3
45
  > Standalone dynamic form component with schema-driven UI, native field cascades, settings integration, and a built-in configuration editor.
@@ -57,7 +99,7 @@ export class FormDemoComponent {
57
99
  rows: [
58
100
  {
59
101
  columns: [
60
- { fields: [{ name: 'fullName', label: 'Full Name', controlType: 'text' }] },
102
+ { fields: [{ name: 'fullName', label: 'Full Name', controlType: 'input' }] },
61
103
  { fields: [{ name: 'email', label: 'E-mail', controlType: 'email' }] },
62
104
  ],
63
105
  },
@@ -115,6 +157,7 @@ See public exports: `projects/praxis-dynamic-form/src/public-api.ts`.
115
157
 
116
158
  ## Documentacao Tecnica da Lib
117
159
 
160
+ - `projects/praxis-dynamic-form/src/lib/praxis-dynamic-form.json-api.md`
118
161
  - `projects/praxis-dynamic-form/docs/hot-metadata-updates.md`
119
162
 
120
163
  ## IA — catálogo de capacidades (composição)
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@praxisui/dynamic-form",
3
- "version": "1.0.0-beta.48",
3
+ "version": "1.0.0-beta.52",
4
4
  "description": "Angular dynamic form engine for Praxis UI: metadata-driven forms, hooks, and services integrating @praxisui/* packages.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
7
7
  "@angular/core": "^20.0.0",
8
8
  "@angular/cdk": "^20.0.0",
9
- "@praxisui/settings-panel": "^1.0.0-beta.48",
10
- "@praxisui/visual-builder": "^1.0.0-beta.48",
11
- "@praxisui/specification-core": "^1.0.0-beta.48",
12
- "@praxisui/specification": "^1.0.0-beta.48",
13
- "@praxisui/core": "^1.0.0-beta.48",
14
- "@praxisui/cron-builder": "^1.0.0-beta.48"
9
+ "@praxisui/settings-panel": "^1.0.0-beta.52",
10
+ "@praxisui/visual-builder": "^1.0.0-beta.52",
11
+ "@praxisui/specification-core": "^1.0.0-beta.52",
12
+ "@praxisui/specification": "^1.0.0-beta.52",
13
+ "@praxisui/core": "^1.0.0-beta.52",
14
+ "@praxisui/cron-builder": "^1.0.0-beta.52"
15
15
  },
16
16
  "dependencies": {
17
17
  "tslib": "^2.3.0",