@ai-matrx/records-ui 0.82.0 → 0.83.1
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 +37 -0
- package/dist/index.cjs +347 -61
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +73 -4
- package/dist/index.d.ts +73 -4
- package/dist/index.js +447 -160
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/records-ui
|
|
2
2
|
|
|
3
|
+
## 0.83.1
|
|
4
|
+
|
|
5
|
+
**A table shared by link is in the World lane, not Community.** (lane HUB-FIX, chair ruling
|
|
6
|
+
2026-09-23.)
|
|
7
|
+
|
|
8
|
+
* `visibilityLaneFor` maps `link` → `world` (was `community`). A link anyone can open without
|
|
9
|
+
signing in reaches the world; Community is for things any SIGNED-IN account can reach, and
|
|
10
|
+
the store has no signed-in-only link yet, so no stored visibility lands in Community today.
|
|
11
|
+
`VISIBILITY_LANES` still carries all four — the chip stays.
|
|
12
|
+
* Test: `src/visibility-lanes.test.tsx` updated (link → world) plus a case pinning that no
|
|
13
|
+
stored visibility maps to Community yet — 5 cases.
|
|
14
|
+
|
|
15
|
+
**Consumer action:** none. The hub reads `visibilityLaneFor`, so link-shared tables move from
|
|
16
|
+
the Community chip to the World chip on install.
|
|
17
|
+
|
|
18
|
+
## 0.83.0
|
|
19
|
+
|
|
20
|
+
**Four visibility lanes a filter can read, and the store's own choice lists stop sitting
|
|
21
|
+
among a person's tables.** (lane HUB-FIX, VERIFIER-15.)
|
|
22
|
+
|
|
23
|
+
* New `VISIBILITY_LANES` (`mine`, `organization`, `community`, `world`),
|
|
24
|
+
`VISIBILITY_LANE_TITLE` and `visibilityLaneFor(table)`: who can SEE a table, from its
|
|
25
|
+
own `visibility` — personal → Mine, internal → My organization, link → Community,
|
|
26
|
+
public → World. A kernel table, the app's bookkeeping and a store-kept choice list
|
|
27
|
+
answer `null`: nobody chose a visibility for them. `TABLE_LANES` (the table list's
|
|
28
|
+
SECTIONS: who MADE a table) is unchanged.
|
|
29
|
+
* `laneFor` puts a table whose record carries `kept_by_the_app: true` in the `app` lane.
|
|
30
|
+
On Rincon Plumbing Co that moves 27 per-field "Crew choices" / "Status choices" tables
|
|
31
|
+
out of My organization, where the hub above already counted them as the app's.
|
|
32
|
+
* New export `keptByTheApp(table)`.
|
|
33
|
+
* Test: `src/visibility-lanes.test.tsx` (4 cases).
|
|
34
|
+
|
|
35
|
+
**Consumer action (matrx-frontend):** the organization hub's lane strip
|
|
36
|
+
(`features/unified-data/hub/OrganizationHub.tsx`) renders `VISIBILITY_LANES` with
|
|
37
|
+
`VISIBILITY_LANE_TITLE`, and `features/unified-data/hub/capabilities.ts` decides an item's
|
|
38
|
+
lane with `visibilityLaneFor` (dropping its local `keptByTheApp`).
|
|
39
|
+
|
|
3
40
|
## 0.82.0
|
|
4
41
|
|
|
5
42
|
**A link can open a table's Forms, Notifications, Portals or Share — and the thing inside
|