@praxisui/specification 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.
Files changed (2) hide show
  1. package/README.md +9 -4
  2. package/package.json +6 -4
package/README.md CHANGED
@@ -1,11 +1,16 @@
1
1
  # @praxisui/specification
2
2
 
3
- ## 🔰 Exemplos / Quickstart
3
+ ## Documentation
4
4
 
5
- Para ver esta biblioteca em funcionamento em uma aplicação completa, utilize o projeto de exemplo (Quickstart):
5
+ - Documentação oficial: https://praxisui.dev
6
+ - Aplicação de referência: https://github.com/codexrodrigues/praxis-ui-quickstart
7
+ - Indicado para: validacoes composaveis, DSL legivel e regras reutilizaveis em apps Angular e TypeScript
6
8
 
7
- - Repositório: https://github.com/codexrodrigues/praxis-ui-quickstart
8
- - O Quickstart demonstra a integração das bibliotecas `@praxisui/*` em um app Angular, incluindo instalação, configuração e uso em telas reais.
9
+ ## When to use
10
+
11
+ - Declarar regras de negocio composaveis com DSL e JSON serializavel
12
+ - Compartilhar validacoes entre frontend, motores de configuracao e fluxos internos
13
+ - Evitar logica espalhada em componentes e services ad hoc
9
14
 
10
15
  > Biblioteca TypeScript para criar validações composáveis (Specification Pattern), com DSL legível, serialização JSON, metadados ricos e registries de funções/transformações.
11
16
 
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@praxisui/specification",
3
- "version": "1.0.0-beta.61",
3
+ "version": "1.0.0-beta.63",
4
4
  "description": "Praxis UI specification engine: logical composition (and/or/not/xor/implies), validation and DSL helpers.",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",
7
7
  "@angular/core": "^20.0.0",
8
- "@praxisui/specification-core": "^1.0.0-beta.61"
8
+ "@praxisui/specification-core": "^1.0.0-beta.63"
9
9
  },
10
10
  "dependencies": {
11
11
  "tslib": "^2.3.0"
@@ -18,7 +18,7 @@
18
18
  "type": "git",
19
19
  "url": "https://github.com/codexrodrigues/praxis-ui-angular"
20
20
  },
21
- "homepage": "https://github.com/codexrodrigues/praxis-ui-angular#readme",
21
+ "homepage": "https://praxisui.dev",
22
22
  "bugs": {
23
23
  "url": "https://github.com/codexrodrigues/praxis-ui-angular/issues"
24
24
  },
@@ -27,7 +27,9 @@
27
27
  "praxisui",
28
28
  "specification",
29
29
  "dsl",
30
- "validation"
30
+ "validation",
31
+ "rules-engine",
32
+ "business-rules"
31
33
  ],
32
34
  "sideEffects": false,
33
35
  "module": "fesm2022/praxisui-specification.mjs",