@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.
- package/LICENSE +7 -0
- package/README.md +26 -0
- package/package.json +1 -1
package/LICENSE
ADDED
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