@praxisui/tabs 8.0.0-beta.20 → 8.0.0-beta.21
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 -0
- package/fesm2022/praxisui-tabs.mjs +929 -14
- package/index.d.ts +87 -6
- package/package.json +5 -5
- package/src/lib/praxis-tabs.json-api.md +5 -3
package/README.md
CHANGED
|
@@ -189,6 +189,15 @@ Quick Setup
|
|
|
189
189
|
- **Runtime/editor parity:** `tabs[].icon`, `tabs[].visible`, `nav.links[].icon` e `nav.links[].visible` são campos canônicos editáveis; itens com `visible: false` não são renderizados na navegação.
|
|
190
190
|
- **Registry projection:** o manifesto é exportado no `public-api` e projetado em `components['praxis-tabs'].authoringManifest` pelo AI Registry.
|
|
191
191
|
|
|
192
|
+
### Praxis Semantic Assistant
|
|
193
|
+
|
|
194
|
+
When `enableCustomization=true`, `praxis-tabs` opens the shared `PraxisAiAssistantShellComponent` and registers a minimized global session instead of embedding the legacy `PraxisAiAssistantComponent`.
|
|
195
|
+
|
|
196
|
+
- The assistant context is safe and semantic: component identity, tabs id, current mode, tab/link counts, field-name digest, manifest reference and governance hints.
|
|
197
|
+
- Business-rule, policy, compliance, publication, materialization or enforcement prompts are routed to governed `domain-rules/intake` handoff and are not applied as local tabs configuration.
|
|
198
|
+
- Free JSON patches from the backend are rejected. Local apply remains blocked until the response is compiled from a manifest-backed `componentEditPlan` validated against `PRAXIS_TABS_AUTHORING_MANIFEST`.
|
|
199
|
+
- `TabsAiAdapter.applyPatch(...)` remains available for legacy/editor internals, but the new assistant turn flow does not use it as an ungoverned patch path.
|
|
200
|
+
|
|
192
201
|
## Eventos e Conexões
|
|
193
202
|
|
|
194
203
|
Para conexoes canonicas de widgets internos, use `composition.links` com endpoint `component-port + nestedPath`.
|