@ai-matrx/records-ui 0.83.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 +15 -0
- package/dist/index.cjs +90 -37
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +8 -2
- package/dist/index.d.ts +8 -2
- package/dist/index.js +191 -137
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -3147,8 +3147,14 @@ declare function laneFor(table: Table): TableLane;
|
|
|
3147
3147
|
* filter over these four leaves it out rather than inventing a lane for it.
|
|
3148
3148
|
*
|
|
3149
3149
|
* From the record's own `visibility`, the store's closed four:
|
|
3150
|
-
* personal → Mine · internal → My organization · link →
|
|
3151
|
-
*
|
|
3150
|
+
* personal → Mine · internal → My organization · link → World · public → World.
|
|
3151
|
+
*
|
|
3152
|
+
* 🚨 WHY `link` IS WORLD (chair ruling, 2026-09-23). A link anyone can open
|
|
3153
|
+
* WITHOUT signing in is reachable by the world; being unlisted does not make it
|
|
3154
|
+
* narrower. Community is the lane for things any SIGNED-IN account can reach,
|
|
3155
|
+
* and the store has no signed-in-only link yet — so today nothing is in
|
|
3156
|
+
* Community, and a signed-in-only link lands there the day it exists. The chip
|
|
3157
|
+
* stays, because a lane that is empty today is still a lane a person chooses.
|
|
3152
3158
|
*/
|
|
3153
3159
|
type VisibilityLane = "mine" | "organization" | "community" | "world";
|
|
3154
3160
|
declare const VISIBILITY_LANES: readonly VisibilityLane[];
|
package/dist/index.d.ts
CHANGED
|
@@ -3147,8 +3147,14 @@ declare function laneFor(table: Table): TableLane;
|
|
|
3147
3147
|
* filter over these four leaves it out rather than inventing a lane for it.
|
|
3148
3148
|
*
|
|
3149
3149
|
* From the record's own `visibility`, the store's closed four:
|
|
3150
|
-
* personal → Mine · internal → My organization · link →
|
|
3151
|
-
*
|
|
3150
|
+
* personal → Mine · internal → My organization · link → World · public → World.
|
|
3151
|
+
*
|
|
3152
|
+
* 🚨 WHY `link` IS WORLD (chair ruling, 2026-09-23). A link anyone can open
|
|
3153
|
+
* WITHOUT signing in is reachable by the world; being unlisted does not make it
|
|
3154
|
+
* narrower. Community is the lane for things any SIGNED-IN account can reach,
|
|
3155
|
+
* and the store has no signed-in-only link yet — so today nothing is in
|
|
3156
|
+
* Community, and a signed-in-only link lands there the day it exists. The chip
|
|
3157
|
+
* stays, because a lane that is empty today is still a lane a person chooses.
|
|
3152
3158
|
*/
|
|
3153
3159
|
type VisibilityLane = "mine" | "organization" | "community" | "world";
|
|
3154
3160
|
declare const VISIBILITY_LANES: readonly VisibilityLane[];
|