@agile-team/mach-table 0.15.0 → 0.18.0
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 +14 -0
- package/dist/index.cjs +6 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +211 -15
- package/dist/index.d.ts +211 -15
- package/dist/index.js +6 -6
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,6 +41,20 @@ await api.applyTransactionAsync({ update: realtimeRows });
|
|
|
41
41
|
api.applyState(state);
|
|
42
42
|
```
|
|
43
43
|
|
|
44
|
+
0.18 adds governed runtime APIs, nested filters, named views, conflict-aware saves and performance evidence:
|
|
45
|
+
|
|
46
|
+
```ts
|
|
47
|
+
const views = createGridViewManager(api, { scope: "tenant:user:orders" });
|
|
48
|
+
await views.save("My pending orders");
|
|
49
|
+
|
|
50
|
+
const result = await api.saveChangesDetailed(orderApi.saveChanges);
|
|
51
|
+
console.table(result.failures);
|
|
52
|
+
console.table(result.conflicts);
|
|
53
|
+
console.info(api.getDiagnostics().performance);
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
`GridState` v1 inputs migrate to v2 automatically. `GridFeature` manifests can declare `version`, `requires` and `conflicts`; invalid graphs are isolated before setup side effects run. JavaScript/JSON option patches are sanitized from the same metadata registry used by Core and framework adapters.
|
|
57
|
+
|
|
44
58
|
0.13 added a built-in/headless column workbench and cancellable lazy trees:
|
|
45
59
|
|
|
46
60
|
```ts
|