@praxisui/page-builder 8.0.0-beta.80 → 8.0.0-beta.82
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 +10 -0
- package/fesm2022/praxisui-page-builder.mjs +450 -6
- package/package.json +4 -4
- package/types/praxisui-page-builder.d.ts +6 -3
package/README.md
CHANGED
|
@@ -79,6 +79,16 @@ bootstrapApplication(AppComponent, {
|
|
|
79
79
|
});
|
|
80
80
|
```
|
|
81
81
|
|
|
82
|
+
## Agentic Dashboard E2E
|
|
83
|
+
|
|
84
|
+
O fluxo de dashboard 360 de funcionarios tem um E2E dedicado:
|
|
85
|
+
|
|
86
|
+
```bash
|
|
87
|
+
npm run e2e:page-builder-agentic-dashboard
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
O teste usa o runner agentic oficial para subir quickstart + UI e valida a rota `/page-builder-ia` com provider LLM real. Dentro do spec, apenas a persistencia inicial de `/api/praxis/config/ui` e isolada para começar com uma pagina vazia; chamadas de authoring, materializacao LLM e dados dos funcionarios continuam passando pelo backend real. O contrato coberto inclui materializacao de filtro, graficos, tabela, `composition.links` e clique em grafico filtrando a tabela.
|
|
91
|
+
|
|
82
92
|
Registro manual (util para apps que precisam customizar o mapa):
|
|
83
93
|
|
|
84
94
|
```ts
|