@praxisui/settings-panel 1.0.0-beta.61 → 1.0.0-beta.64
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 +10 -5
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -41,14 +41,19 @@ last_updated: "2026-03-07"
|
|
|
41
41
|
|
|
42
42
|
# @praxisui/settings-panel
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Painel de configuracoes baseado em drawer para hospedar editores de runtime com UX consistente de Apply, Save, Reset e Cancel.
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
## Documentation
|
|
47
47
|
|
|
48
|
-
-
|
|
49
|
-
-
|
|
48
|
+
- Documentação oficial: https://praxisui.dev
|
|
49
|
+
- Aplicação de referência: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
50
|
+
- Indicado para: apps host que precisam abrir editores embutidos com consistencia operacional e visual
|
|
50
51
|
|
|
51
|
-
|
|
52
|
+
## When to use
|
|
53
|
+
|
|
54
|
+
- Abrir editores de configuracao dentro do proprio app host
|
|
55
|
+
- Padronizar acoes de Apply, Save, Reset e Cancel em runtime
|
|
56
|
+
- Reduzir divergencias de UX entre diferentes editores do ecossistema Praxis UI
|
|
52
57
|
|
|
53
58
|
## Instalação
|
|
54
59
|
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/settings-panel",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.64",
|
|
4
4
|
"description": "Settings panel for Praxis UI libraries: open editors for configuration at runtime and persist settings.",
|
|
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
9
|
"@angular/material": "^20.0.0",
|
|
10
|
-
"@praxisui/dynamic-fields": "^1.0.0-beta.
|
|
10
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.64"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
13
|
"tslib": "^2.3.0"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"type": "git",
|
|
21
21
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
22
22
|
},
|
|
23
|
-
"homepage": "https://
|
|
23
|
+
"homepage": "https://praxisui.dev",
|
|
24
24
|
"bugs": {
|
|
25
25
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
26
26
|
},
|
|
@@ -29,7 +29,8 @@
|
|
|
29
29
|
"praxisui",
|
|
30
30
|
"settings",
|
|
31
31
|
"panel",
|
|
32
|
-
"
|
|
32
|
+
"drawer",
|
|
33
|
+
"runtime-config"
|
|
33
34
|
],
|
|
34
35
|
"sideEffects": false,
|
|
35
36
|
"module": "fesm2022/praxisui-settings-panel.mjs",
|