@praxisui/tabs 1.0.0-beta.61 → 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 +9 -4
- package/package.json +8 -7
package/README.md
CHANGED
|
@@ -40,12 +40,17 @@ last_updated: "2026-03-07"
|
|
|
40
40
|
|
|
41
41
|
# @praxisui/tabs — Praxis Tabs
|
|
42
42
|
|
|
43
|
-
##
|
|
43
|
+
## Documentation
|
|
44
44
|
|
|
45
|
-
|
|
45
|
+
- Documentação oficial: https://praxisui.dev
|
|
46
|
+
- Aplicação de referência: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
47
|
+
- Indicado para: navegacao por abas metadata-driven com persistencia, widgets internos e editor em runtime
|
|
46
48
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
+
## When to use
|
|
50
|
+
|
|
51
|
+
- Organizar conteudo em grupos ou navegacao por abas com metadados
|
|
52
|
+
- Persistir configuracao e comportamento por instancia de tabs
|
|
53
|
+
- Compor tabs com widgets e campos dinamicos sem implementar cada variacao manualmente
|
|
49
54
|
|
|
50
55
|
Componente de abas (grupo e nav) configurável por metadados, com suporte a widgets internos, presets de estilo e editor integrado via Settings Panel.
|
|
51
56
|
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/tabs",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.63",
|
|
4
4
|
"description": "Configurable tabs (group and nav) for Praxis UI with metadata-driven content and runtime editor.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.0.0",
|
|
7
7
|
"@angular/core": "^20.0.0",
|
|
8
8
|
"@angular/material": "^20.0.0",
|
|
9
9
|
"@angular/cdk": "^20.0.0",
|
|
10
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/dynamic-fields": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
10
|
+
"@praxisui/core": "^1.0.0-beta.63",
|
|
11
|
+
"@praxisui/dynamic-fields": "^1.0.0-beta.63",
|
|
12
|
+
"@praxisui/settings-panel": "^1.0.0-beta.63"
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"tslib": "^2.3.0",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"type": "git",
|
|
24
24
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
25
25
|
},
|
|
26
|
-
"homepage": "https://
|
|
26
|
+
"homepage": "https://praxisui.dev",
|
|
27
27
|
"bugs": {
|
|
28
28
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
29
29
|
},
|
|
@@ -31,8 +31,9 @@
|
|
|
31
31
|
"angular",
|
|
32
32
|
"praxisui",
|
|
33
33
|
"tabs",
|
|
34
|
-
"
|
|
35
|
-
"material"
|
|
34
|
+
"navigation",
|
|
35
|
+
"material",
|
|
36
|
+
"metadata-driven"
|
|
36
37
|
],
|
|
37
38
|
"sideEffects": false,
|
|
38
39
|
"module": "fesm2022/praxisui-tabs.mjs",
|