@praxisui/dynamic-fields 1.0.0-beta.12 → 1.0.0-beta.14
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 +14 -0
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -21,6 +21,20 @@ Biblioteca de campos dinâmicos para aplicações Angular (v20+) com Material De
|
|
|
21
21
|
npm install @praxisui/dynamic-fields
|
|
22
22
|
```
|
|
23
23
|
|
|
24
|
+
### Estilos e tokens (opcional)
|
|
25
|
+
|
|
26
|
+
- Largura dos campos: quando o host usa `providePraxisDynamicFields()`, a lib injeta um estilo escopado que garante `mat-form-field { width: 100% }` dentro dos componentes. Não é necessário repetir no app.
|
|
27
|
+
- Gradiente de inputs/toolbar (se desejar): o host pode definir um gradiente de marca que alguns detalhes visuais consomem (ex.: inputs com gradiente configurado e toolbars de edição):
|
|
28
|
+
|
|
29
|
+
```scss
|
|
30
|
+
:root {
|
|
31
|
+
--p-primary-gradient: linear-gradient(90deg, #1f8a8a, #6c63ff);
|
|
32
|
+
--p-input-gradient: var(--p-primary-gradient);
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
Sem essas variáveis, a aparência deriva do tema M3 (tokens `--mat-sys-*` / `--md-sys-*`).
|
|
37
|
+
|
|
24
38
|
Peers (instale no app host):
|
|
25
39
|
- `@angular/core` `^20.1.0`, `@angular/common` `^20.1.0`, `@angular/forms` `^20.1.0`
|
|
26
40
|
- `@angular/material` `^20.1.0`, `@angular/cdk` `^20.1.0`, `@angular/router` `^20.1.0`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/dynamic-fields",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.14",
|
|
4
4
|
"description": "Angular Material-based dynamic form fields for Praxis UI with lazy loading and metadata-driven rendering.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.1.0",
|
|
@@ -10,10 +10,10 @@
|
|
|
10
10
|
"@angular/cdk": "^20.1.0",
|
|
11
11
|
"@angular/router": "^20.1.0",
|
|
12
12
|
"rxjs": "^7.8.0",
|
|
13
|
-
"@praxisui/specification-core": "^1.0.0-beta.
|
|
14
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
15
|
-
"@praxisui/cron-builder": "^1.0.0-beta.
|
|
16
|
-
"@praxisui/dialog": "^1.0.0-beta.
|
|
13
|
+
"@praxisui/specification-core": "^1.0.0-beta.14",
|
|
14
|
+
"@praxisui/core": "^1.0.0-beta.14",
|
|
15
|
+
"@praxisui/cron-builder": "^1.0.0-beta.14",
|
|
16
|
+
"@praxisui/dialog": "^1.0.0-beta.14"
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"tslib": "^2.3.0"
|