@praxisui/table-rule-builder 1.0.0-beta.10 → 1.0.0-beta.12

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 (3) hide show
  1. package/LICENSE +7 -0
  2. package/README.md +26 -0
  3. package/package.json +1 -1
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ This package is licensed under the Apache License, Version 2.0.
2
+
3
+ For the full license text, see the repository root LICENSE file:
4
+ ../../LICENSE
5
+
6
+ Apache License 2.0: https://www.apache.org/licenses/LICENSE-2.0
7
+
package/README.md ADDED
@@ -0,0 +1,26 @@
1
+ # @praxisui/table-rule-builder
2
+
3
+ Componentes de UI e utilitários para construir e aplicar efeitos visuais em regras de tabela do Praxis UI.
4
+
5
+ ## 🔰 Exemplos / Quickstart
6
+
7
+ Para ver esta biblioteca em funcionamento em uma aplicação completa, utilize o projeto de exemplo (Quickstart):
8
+
9
+ - Repositório: https://github.com/codexrodrigues/praxis-ui-quickstart
10
+ - O Quickstart demonstra a integração das bibliotecas `@praxisui/*` em um app Angular, incluindo instalação, configuração e uso em telas reais.
11
+
12
+ ## Instalação
13
+
14
+ ```bash
15
+ npm i @praxisui/table-rule-builder
16
+ ```
17
+
18
+ Peers (Angular v20): `@angular/core`, `@angular/common`, `@angular/forms`, `@angular/material`.
19
+
20
+ ## Exportações (resumo)
21
+
22
+ - `RuleEffectsPanelComponent` — painel standalone para editar efeitos (estilo, layout, ícone/badge, fundo, animação e tooltip)
23
+ - `toCellClassAndStyle(effects)` — converte o modelo em `{ classList, style }` para renderização em células/linhas
24
+ - `DEFAULT_EFFECT_PRESETS` — presets prontos de efeitos
25
+ - Tipos: `RuleEffectDefinition`, `RuleScope`
26
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/table-rule-builder",
3
- "version": "1.0.0-beta.10",
3
+ "version": "1.0.0-beta.12",
4
4
  "description": "Praxis Table Rule Builder: UI components and engine utils for table rules",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^20.0.0",