@praxisui/core 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 +23 -0
- package/fesm2022/praxisui-core.mjs +1667 -402
- package/index.d.ts +228 -54
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -222,6 +222,29 @@ Regra de plataforma: não crie editor local no host para uma semântica que já
|
|
|
222
222
|
tem dono canônico. Corrija ou publique o `configEditor` no metadata da lib dona
|
|
223
223
|
do componente.
|
|
224
224
|
|
|
225
|
+
### Component AI authoring manifests
|
|
226
|
+
|
|
227
|
+
`ComponentDocMeta.authoringManifestRef` é a superfície pública canônica para um
|
|
228
|
+
componente declarar que possui manifesto executável de authoring por IA. O
|
|
229
|
+
manifesto continua pertencendo à lib dona do componente; hosts e page builders
|
|
230
|
+
devem usar esse campo para discovery, delegação e readiness, não para redefinir
|
|
231
|
+
operações internas localmente.
|
|
232
|
+
|
|
233
|
+
Contrato esperado:
|
|
234
|
+
|
|
235
|
+
```ts
|
|
236
|
+
registry.register({
|
|
237
|
+
id: 'praxis-table',
|
|
238
|
+
selector: 'praxis-table',
|
|
239
|
+
component: PraxisTable,
|
|
240
|
+
friendlyName: 'Praxis Table',
|
|
241
|
+
authoringManifestRef: {
|
|
242
|
+
componentId: 'praxis-table',
|
|
243
|
+
source: 'PRAXIS_TABLE_AUTHORING_MANIFEST',
|
|
244
|
+
},
|
|
245
|
+
});
|
|
246
|
+
```
|
|
247
|
+
|
|
225
248
|
### Widget Shell body layout
|
|
226
249
|
|
|
227
250
|
`WidgetShellConfig.bodyLayout` declares how projected widget content should use
|