@praxisui/manual-form 1.0.0-beta.60 → 1.0.0-beta.63
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 +11 -4
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -43,12 +43,19 @@ last_updated: "2026-03-07"
|
|
|
43
43
|
|
|
44
44
|
# Manual Form Toolkit
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
Biblioteca voltada a formularios declarativos baseados em componentes `pdx-*`, com suporte a persistencia, autodeteccao de campos e ponte com editores de metadata.
|
|
47
47
|
|
|
48
|
-
|
|
48
|
+
## Documentation
|
|
49
49
|
|
|
50
|
-
-
|
|
51
|
-
-
|
|
50
|
+
- Documentação oficial: https://praxisui.dev
|
|
51
|
+
- Aplicação de referência: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
52
|
+
- Indicado para: equipes que precisam montar formularios Praxis manualmente sem perder consistencia, autosave e governanca
|
|
53
|
+
|
|
54
|
+
## When to use
|
|
55
|
+
|
|
56
|
+
- Declarar formularios manualmente com componentes `pdx-*` sem abrir mao de infraestrutura
|
|
57
|
+
- Adicionar autosave, persistencia e hot update de metadata ao fluxo do host
|
|
58
|
+
- Reduzir o atrito entre formularios manuais e o restante do ecossistema Praxis UI
|
|
52
59
|
|
|
53
60
|
## Instalação
|
|
54
61
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/manual-form",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.63",
|
|
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": "^20.1.0",
|
|
7
7
|
"@angular/core": "^20.1.0",
|
|
8
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
9
|
-
"@praxisui/dynamic-fields": "^1.0.0-beta.
|
|
10
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/metadata-editor": "^1.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^1.0.0-beta.63",
|
|
9
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.63",
|
|
10
|
+
"@praxisui/settings-panel": "^1.0.0-beta.63",
|
|
11
|
+
"@praxisui/metadata-editor": "^1.0.0-beta.63"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
14
|
"tslib": "^2.3.0"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type": "git",
|
|
22
22
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
23
23
|
},
|
|
24
|
-
"homepage": "https://
|
|
24
|
+
"homepage": "https://praxisui.dev",
|
|
25
25
|
"bugs": {
|
|
26
26
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
27
27
|
},
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"praxisui",
|
|
31
31
|
"manual-form",
|
|
32
32
|
"forms",
|
|
33
|
-
"
|
|
33
|
+
"autosave",
|
|
34
|
+
"metadata"
|
|
34
35
|
],
|
|
35
36
|
"sideEffects": false,
|
|
36
37
|
"module": "fesm2022/praxisui-manual-form.mjs",
|