@ai-matrx/records-ui 0.77.0 → 0.79.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/CHANGELOG.md +54 -0
- package/dist/index.cjs +311 -94
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +367 -130
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/records-ui
|
|
2
2
|
|
|
3
|
+
## 0.79.0
|
|
4
|
+
|
|
5
|
+
**A joined column says what joins it.** (lane STORE-TAILS-2, VERIFIER-11 finding F5.)
|
|
6
|
+
|
|
7
|
+
Greenline Landscaping Crew's Jobs board, "Job label" joining Job Number and Service Type,
|
|
8
|
+
read `GL-2034mow_edge` on all 35 rows — beside a cell reading `Mow & Edge`. Two wrongs in
|
|
9
|
+
one string. The machine's word is the store's half and is fixed there (`custom.rule_eval`'s
|
|
10
|
+
concat arm now resolves a choice to its label and a relation to its display words through
|
|
11
|
+
`custom.field_words`, while every comparison keeps the stored value). The missing separator
|
|
12
|
+
is this package's: nothing on the field panel ever asked for one, so there was no way to
|
|
13
|
+
send one.
|
|
14
|
+
|
|
15
|
+
* **"Joined by"** — a new box on the worked-out-column builder, offered only for *Join them
|
|
16
|
+
together*, defaulting to ` — `. It is sent as `expr.separator`, which the store has
|
|
17
|
+
accepted since the migration above. Emptying it sends no key at all, which is exactly what
|
|
18
|
+
every formula written before today already holds, so nothing saved changes its answer.
|
|
19
|
+
* A sum, a product or a difference is not offered the box and never sends the key — a
|
|
20
|
+
control that set something the evaluator ignores would be a setting that silently does
|
|
21
|
+
nothing.
|
|
22
|
+
* **The panel reads an existing worked-out column back** — its operation, its columns and
|
|
23
|
+
its separator — instead of starting at "concat" with nothing picked whatever the column
|
|
24
|
+
actually held.
|
|
25
|
+
* **And it says out loud what it still cannot do.** Opening an existing worked-out column
|
|
26
|
+
draws no formula controls (this panel never has), and now it says so in a sentence instead
|
|
27
|
+
of standing silent over the one thing that column is. Re-aiming an existing formula needs
|
|
28
|
+
`expr` on `FieldPatch` in `@ai-matrx/records`; the store door already takes it.
|
|
29
|
+
|
|
30
|
+
Consumer action: none.
|
|
31
|
+
|
|
32
|
+
## 0.78.0
|
|
33
|
+
|
|
34
|
+
**The button that could not get rid of a table now can, and says what it does.** (lane
|
|
35
|
+
FIX-11A, VERIFIER-11 finding F3.)
|
|
36
|
+
|
|
37
|
+
`TableSettings` called `useRecordMutation().remove` with the TABLE's id — one unbounded
|
|
38
|
+
statement — so on a 1,430-record table it died twelve seconds in on `57014` and told the
|
|
39
|
+
person nothing had changed and to "try a smaller page". There is no page.
|
|
40
|
+
|
|
41
|
+
* The panel now drives `useTableArchive` from `@ai-matrx/records` 0.53.0: it previews
|
|
42
|
+
first (`chunk: 0`) so the confirm names the real number of records, then archives in
|
|
43
|
+
passes and shows "N of M records put away so far" while it works.
|
|
44
|
+
* **It never claims nothing happened.** A refused pass or a stopped run says what went
|
|
45
|
+
wrong, how many records are already archived and how many are left, and offers **Carry on
|
|
46
|
+
archiving**, which picks up exactly where it stopped. There is a **Stop** while it runs.
|
|
47
|
+
* When the store is busy the loop takes smaller passes, and the screen SAYS so rather than
|
|
48
|
+
going quietly four times slower.
|
|
49
|
+
* **The control's word matches what it does.** It said "Delete this table" over a sentence
|
|
50
|
+
explaining the store keeps everything for a year; the store's own verb is archive
|
|
51
|
+
(`table_archive`, `record_restore`, `read_records_archived`), so that is the word on the
|
|
52
|
+
button and the sentence says plainly it can be brought back.
|
|
53
|
+
|
|
54
|
+
Consumer action: none — the panel's props are unchanged; `onDeleted` still fires, now when
|
|
55
|
+
the Table itself has been archived.
|
|
56
|
+
|
|
3
57
|
## 0.77.0
|
|
4
58
|
|
|
5
59
|
**A publish button that would hand out a dead link is not drawn.** (lane STORE-OFF, from
|