@praxisui/stepper 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 +9 -4
- package/package.json +17 -8
package/README.md
CHANGED
|
@@ -42,12 +42,17 @@ last_updated: "2026-03-07"
|
|
|
42
42
|
|
|
43
43
|
# @praxisui/stepper
|
|
44
44
|
|
|
45
|
-
##
|
|
45
|
+
## Documentation
|
|
46
46
|
|
|
47
|
-
|
|
47
|
+
- Documentação oficial: https://praxisui.dev
|
|
48
|
+
- Aplicação de referência: https://github.com/codexrodrigues/praxis-ui-quickstart
|
|
49
|
+
- Indicado para: fluxos multi-etapas com formularios, uploads, listas e pagina builder no mesmo wizard
|
|
48
50
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
+
## When to use
|
|
52
|
+
|
|
53
|
+
- Construir wizards com multiplas etapas e contratos compartilhados
|
|
54
|
+
- Reutilizar formularios, uploads, listas e widgets dentro do mesmo fluxo
|
|
55
|
+
- Persistir configuracao de stepper sem reinventar navegacao e edicao
|
|
51
56
|
|
|
52
57
|
Componente stepper standalone com integração opcional ao `@praxisui/dynamic-form`, suporte a ícones Material Icons/Symbols e editor de configuração embutido.
|
|
53
58
|
|
package/package.json
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/stepper",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.64",
|
|
4
|
+
"description": "Stepper workflows for Praxis UI with integrated forms, lists, uploads and page builder support.",
|
|
4
5
|
"peerDependencies": {
|
|
5
6
|
"@angular/common": "^20.0.0",
|
|
6
7
|
"@angular/core": "^20.0.0",
|
|
7
8
|
"@angular/material": "^20.0.0",
|
|
8
9
|
"@angular/cdk": "^20.0.0",
|
|
9
|
-
"@praxisui/core": "^1.0.0-beta.
|
|
10
|
-
"@praxisui/dynamic-form": "^1.0.0-beta.
|
|
11
|
-
"@praxisui/settings-panel": "^1.0.0-beta.
|
|
12
|
-
"@praxisui/list": "^1.0.0-beta.
|
|
13
|
-
"@praxisui/files-upload": "^1.0.0-beta.
|
|
14
|
-
"@praxisui/page-builder": "^1.0.0-beta.
|
|
10
|
+
"@praxisui/core": "^1.0.0-beta.64",
|
|
11
|
+
"@praxisui/dynamic-form": "^1.0.0-beta.64",
|
|
12
|
+
"@praxisui/settings-panel": "^1.0.0-beta.64",
|
|
13
|
+
"@praxisui/list": "^1.0.0-beta.64",
|
|
14
|
+
"@praxisui/files-upload": "^1.0.0-beta.64",
|
|
15
|
+
"@praxisui/page-builder": "^1.0.0-beta.64"
|
|
15
16
|
},
|
|
16
17
|
"dependencies": {
|
|
17
18
|
"tslib": "^2.3.0"
|
|
@@ -24,10 +25,18 @@
|
|
|
24
25
|
"type": "git",
|
|
25
26
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular"
|
|
26
27
|
},
|
|
27
|
-
"homepage": "https://
|
|
28
|
+
"homepage": "https://praxisui.dev",
|
|
28
29
|
"bugs": {
|
|
29
30
|
"url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
|
|
30
31
|
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"angular",
|
|
34
|
+
"praxisui",
|
|
35
|
+
"stepper",
|
|
36
|
+
"wizard",
|
|
37
|
+
"forms",
|
|
38
|
+
"workflow"
|
|
39
|
+
],
|
|
31
40
|
"sideEffects": false,
|
|
32
41
|
"module": "fesm2022/praxisui-stepper.mjs",
|
|
33
42
|
"typings": "index.d.ts",
|