@praxisui/manual-form 8.0.0-beta.98 → 9.0.0-beta.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 +21 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -60,7 +60,27 @@ Biblioteca voltada a formularios declarativos baseados em componentes `pdx-*`, c
|
|
|
60
60
|
## Instalação
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
|
-
npm install @praxisui/manual-form
|
|
63
|
+
npm install @praxisui/manual-form@beta
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Minimal standalone host
|
|
67
|
+
|
|
68
|
+
```ts
|
|
69
|
+
import { Component } from '@angular/core';
|
|
70
|
+
import { ReactiveFormsModule } from '@angular/forms';
|
|
71
|
+
import { ManualFormComponent } from '@praxisui/manual-form';
|
|
72
|
+
|
|
73
|
+
@Component({
|
|
74
|
+
selector: 'app-manual-form-host',
|
|
75
|
+
standalone: true,
|
|
76
|
+
imports: [ReactiveFormsModule, ManualFormComponent],
|
|
77
|
+
template: `
|
|
78
|
+
<praxis-manual-form formId="cargo" formTitle="Cargo">
|
|
79
|
+
<!-- Declare pdx-* fields owned by @praxisui/dynamic-fields here. -->
|
|
80
|
+
</praxis-manual-form>
|
|
81
|
+
`,
|
|
82
|
+
})
|
|
83
|
+
export class ManualFormHostComponent {}
|
|
64
84
|
```
|
|
65
85
|
|
|
66
86
|
Peers necessários (instale no app host):
|
package/package.json
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/manual-form",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0-beta.0",
|
|
4
4
|
"description": "Manual form toolkit for Praxis UI: container, instance factory and editor bridge for @praxisui/* fields.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
|
-
"@praxisui/core": "^
|
|
9
|
-
"@praxisui/dynamic-fields": "^
|
|
10
|
-
"@praxisui/settings-panel": "^
|
|
11
|
-
"@praxisui/metadata-editor": "^
|
|
8
|
+
"@praxisui/core": "^9.0.0-beta.0",
|
|
9
|
+
"@praxisui/dynamic-fields": "^9.0.0-beta.0",
|
|
10
|
+
"@praxisui/settings-panel": "^9.0.0-beta.0",
|
|
11
|
+
"@praxisui/metadata-editor": "^9.0.0-beta.0",
|
|
12
12
|
"@angular/cdk": "^21.0.0",
|
|
13
13
|
"@angular/forms": "^21.0.0",
|
|
14
14
|
"@angular/material": "^21.0.0",
|
|
15
15
|
"@angular/router": "^21.0.0",
|
|
16
|
-
"@praxisui/ai": "^
|
|
16
|
+
"@praxisui/ai": "^9.0.0-beta.0",
|
|
17
17
|
"rxjs": "~7.8.0"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|