@praxisui/crud 8.0.0-beta.5 → 8.0.0-beta.51
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
CHANGED
|
@@ -353,6 +353,39 @@ Direcao de plataforma:
|
|
|
353
353
|
- a semantica canonica continua cobrindo metadata, tabela interna, formulario, actions, open modes e persistencia/reabertura
|
|
354
354
|
- hosts consumidores devem permanecer como demonstradores do contrato, nao como donos de um editor paralelo
|
|
355
355
|
|
|
356
|
+
## Agentic Authoring Contract
|
|
357
|
+
|
|
358
|
+
`PRAXIS_CRUD_AUTHORING_MANIFEST` is the executable AI authoring contract for `@praxisui/crud`.
|
|
359
|
+
|
|
360
|
+
The manifest owns CRUD orchestration only:
|
|
361
|
+
|
|
362
|
+
- `resource.path`, `resourceKey`, `idField`, endpoint key and query context binding
|
|
363
|
+
- list surface orchestration and stable `crudContext`
|
|
364
|
+
- create/edit/view action open mode, route, form binding, params, `initialValue` and back policy
|
|
365
|
+
- delete enablement, confirmation, canonical submit contract and capability policy
|
|
366
|
+
- dialog/drawer/route defaults consumed by `CrudLauncherService`
|
|
367
|
+
- permissions derived from resource capabilities
|
|
368
|
+
|
|
369
|
+
The manifest does not own child component semantics:
|
|
370
|
+
|
|
371
|
+
- `TableConfig` edits must delegate to `praxis-table`
|
|
372
|
+
- `FormConfig` and `FieldMetadata` edits must delegate to `praxis-dynamic-form` or `praxis-metadata-editor`
|
|
373
|
+
- dialog shell changes outside CRUD defaults must delegate to `praxis-dialog` or `praxis-settings-panel`
|
|
374
|
+
|
|
375
|
+
Governed operation families:
|
|
376
|
+
|
|
377
|
+
- `resource.bind`
|
|
378
|
+
- `list.surface.configure`
|
|
379
|
+
- `surface.create.configure`
|
|
380
|
+
- `surface.edit.configure`
|
|
381
|
+
- `surface.view.configure`
|
|
382
|
+
- `delete.enabled.set`
|
|
383
|
+
- `dialog.size.set`
|
|
384
|
+
- `permissions.set`
|
|
385
|
+
- `form.childOperation.delegate`
|
|
386
|
+
|
|
387
|
+
Stable identities are resource path/key, `crudId`, action id and child operation id. Array indexes are not canonical identities. Destructive delete behavior requires explicit confirmation and backend capability support.
|
|
388
|
+
|
|
356
389
|
To build the library, run:
|
|
357
390
|
|
|
358
391
|
```bash
|