@ai-matrx/records-ui 0.84.4 → 0.84.7
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 +48 -0
- package/dist/index.cjs +2644 -2427
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.js +2605 -2396
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/records-ui
|
|
2
2
|
|
|
3
|
+
## 0.84.7 (unpublished — needs @ai-matrx/records 0.57.3)
|
|
4
|
+
|
|
5
|
+
* **The suite is green again (386/386), and the class is gone rather than patched.** 0.84.5's
|
|
6
|
+
publish gate went red in 15 files because records 0.57.2 made every table list ask
|
|
7
|
+
`custom.table_facts`. Only `TablesHome` sorts tables into sections, so only it asks now
|
|
8
|
+
(`client.tableFacts()` + `withTableFacts`); no test double had to learn the door. It says
|
|
9
|
+
`SECTIONS_UNKNOWN` only when the store has the door and it failed.
|
|
10
|
+
|
|
11
|
+
## 0.84.6 (unpublished)
|
|
12
|
+
|
|
13
|
+
**A choice column that takes other values lets a person type one.** (lane STORE-RULE-GAPS.)
|
|
14
|
+
The production walk found the "A value that is not one of the choices is added to them" tick
|
|
15
|
+
saved, while the grid cell and the record form drew a closed drop-down — nothing could send an
|
|
16
|
+
off-list word. Now, on a column with `config.allow_other`, `FieldControl` (the one editor the
|
|
17
|
+
grid cell, the record form and the form runner draw) is the relation picker's shape: a search
|
|
18
|
+
over the choices and **Add “<typed>”** at the foot, which sends the word as typed (the store adds
|
|
19
|
+
it to the column's choices and stores its key). A word that already names a choice picks that
|
|
20
|
+
choice. Several-choices columns keep what was picked. Columns that do not take other values are
|
|
21
|
+
unchanged. The field editor's tick is gated on the same code path
|
|
22
|
+
(`CHOICE_EDITOR_ADDS_WHAT_IS_TYPED`). Paste keeps its own "add these options" step.
|
|
23
|
+
|
|
24
|
+
**One "pick or add" builder.** `PickOrAdd` (search box, list, Add/Create “<typed>” foot) is the
|
|
25
|
+
ONE layout both `RelationPicker` and the open choice editor are built from — same look, one place.
|
|
26
|
+
The choice editor orders choices by the store's own `metadata.option_position` (`inTheStoresOrder`),
|
|
27
|
+
so a choice added by typing is last, where the store put it, not wherever the lookup returned it.
|
|
28
|
+
|
|
29
|
+
Consumer action: none.
|
|
30
|
+
|
|
31
|
+
## 0.84.5 (unpublished — needs @ai-matrx/records 0.57.2 published first)
|
|
32
|
+
|
|
33
|
+
**Mine is what you made, and an archived table's own address says it is archived.** (lane
|
|
34
|
+
HUB-FIX, guide re-walk 2026-09-23 + chair ruling.)
|
|
35
|
+
|
|
36
|
+
* `TablesHome`'s Mine section is the tables the person signed in MADE (`created_by`, folded in
|
|
37
|
+
by records 0.57.2's `tableList` from `custom.table_facts`), whatever their visibility — a new
|
|
38
|
+
internal table is under Mine AND My organization. When the store HAS `custom.table_facts`
|
|
39
|
+
and it does not answer, the page says so (`SECTIONS_UNKNOWN`) instead of filing everything
|
|
40
|
+
under My organization with Mine empty; when the store's catalogue does not carry the door at
|
|
41
|
+
all, nothing is asked and nothing is said (the door-presence pattern). `TablePage`'s archived
|
|
42
|
+
screen reads only the archive door every table already uses — it does not depend on
|
|
43
|
+
`table_facts`. `LANE_EMPTY.mine` says what is true under the new meaning.
|
|
44
|
+
* `TablePage` asks the archive (`client.tableArchived`) before saying a table is not here. An
|
|
45
|
+
archived table reads "This table is archived", who archived it and when, and **Bring it
|
|
46
|
+
back**; `TABLE_NOT_REACHABLE` no longer says "…or it may have been deleted".
|
|
47
|
+
* New exports `SECTIONS_UNKNOWN`, `TABLE_IS_ARCHIVED`. Full suite 379/379.
|
|
48
|
+
|
|
49
|
+
**Consumer action:** none beyond installing it with records 0.57.2.
|
|
50
|
+
|
|
3
51
|
## 0.84.4 (unpublished — needs @ai-matrx/records 0.57.1 published first)
|
|
4
52
|
|
|
5
53
|
**The guide re-walk's small wrong things, each fixed as a class.** (lane RECORDS-UI-FIX,
|