@ai-matrx/design-system 0.15.1 → 0.15.2
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/CHANGELOG.md +16 -0
- package/README.md +6 -0
- package/dist/data-table/index.cjs +1009 -676
- package/dist/data-table/index.cjs.map +1 -1
- package/dist/data-table/index.js +1010 -677
- package/dist/data-table/index.js.map +1 -1
- package/dist/data-table/infer-filter.cjs +0 -3
- package/dist/data-table/infer-filter.cjs.map +1 -1
- package/dist/data-table/infer-filter.js +0 -3
- package/dist/data-table/infer-filter.js.map +1 -1
- package/dist/data-table/query-control.cjs +0 -3
- package/dist/data-table/query-control.cjs.map +1 -1
- package/dist/data-table/query-control.js +0 -3
- package/dist/data-table/query-control.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.15.2 — 2026-09-11
|
|
4
|
+
|
|
5
|
+
Editable append tables retain unsaved drafts by source identity. Returning to the
|
|
6
|
+
same query restores them; previous-result drafts can be copied or explicitly
|
|
7
|
+
discarded. Save completions are scoped so an older request cannot clear newer
|
|
8
|
+
edits or another query's saving state. Concurrent cell saves and immediate
|
|
9
|
+
callback failures are covered by regression tests. Explicit select filters also
|
|
10
|
+
retain every distinct value already loaded, removing a silent 500-option cutoff.
|
|
11
|
+
|
|
12
|
+
### Consumer action
|
|
13
|
+
|
|
14
|
+
Upgrade before enabling editable `controlled-append` tables. Include every source
|
|
15
|
+
and identity dimension in the pagination query key. Drafts remain in component
|
|
16
|
+
memory; applications still own persistence and component lifetime. Existing
|
|
17
|
+
local and exact-page modes keep their query contracts.
|
|
18
|
+
|
|
3
19
|
## 0.15.1 — 2026-09-11
|
|
4
20
|
|
|
5
21
|
The unpublished 0.15.0 candidate caught a clean-checkout test-order defect.
|
package/README.md
CHANGED
|
@@ -162,3 +162,9 @@ Framework-specific identity ports are optional via
|
|
|
162
162
|
`@ai-matrx/design-system/data-table/host`. Utilities and types have dedicated
|
|
163
163
|
subpaths listed in the export map. The package retains copy/subset/export, row
|
|
164
164
|
windows, hierarchy, selection, inline editing, and accessible manual pagination.
|
|
165
|
+
|
|
166
|
+
Editable append tables keep drafts separately for each query identity during the
|
|
167
|
+
component lifetime. A return to that identity restores its drafts; drafts from
|
|
168
|
+
other results offer Copy and confirmed Discard, never a save against the current
|
|
169
|
+
rows. Applications own persistence across unmounts and must remount the table
|
|
170
|
+
when changing authenticated users so prior-user drafts are not exposed.
|