@orkestrel/table 0.0.2 → 0.0.4
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/README.md +6 -6
- package/dist/src/core/index.cjs +228 -196
- package/dist/src/core/index.cjs.map +1 -0
- package/dist/src/core/index.d.cts +237 -382
- package/dist/src/core/index.d.ts +237 -382
- package/dist/src/core/index.js +226 -191
- package/dist/src/core/index.js.map +1 -0
- package/package.json +20 -15
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @orkestrel/table
|
|
2
2
|
|
|
3
|
-
The environment-agnostic tabular document for the `@orkestrel` line — a schema of
|
|
3
|
+
The environment-agnostic tabular document for the `@orkestrel` line — a schema of typed column cells,
|
|
4
4
|
the rows held against it, and one lens of sort, filter, and page that decides which of them the view
|
|
5
5
|
shows. A grid, a report, a terminal listing, and a CSV export hold the same thing in different
|
|
6
6
|
places, so this package ships what they share and draws none of it. Every row carries its own
|
|
7
7
|
identity in a column the schema names, so a pick survives a re-sort; `view` and every tally are
|
|
8
|
-
worked out on read, so no second copy of an answer can go stale; and
|
|
8
|
+
worked out on read, so no second copy of an answer can go stale; and budgets bound what one
|
|
9
9
|
schema may retain, so a document that arrives from a wire costs a known maximum before anything
|
|
10
10
|
decides to trust it.
|
|
11
11
|
Built on `@orkestrel/contract` and `@orkestrel/emitter`.
|
|
@@ -70,11 +70,11 @@ table.selection.keys.has('1') // true — a key, so it survives the next sort
|
|
|
70
70
|
|
|
71
71
|
## Guide
|
|
72
72
|
|
|
73
|
-
See [guides/table.md](./guides/table.md) for the documented surface — the
|
|
73
|
+
See [guides/table.md](./guides/table.md) for the documented surface — the column cells and what
|
|
74
74
|
each one fixes, the required identity column and the refusals built on it, the lens of sort, filter,
|
|
75
|
-
and page and the order it applies in, the
|
|
76
|
-
|
|
77
|
-
|
|
75
|
+
and page and the order it applies in, the events and when each one stays silent, the serialize/parse
|
|
76
|
+
wire boundary and what never crosses it, the budgets that bound a schema, and the concept inventory
|
|
77
|
+
of what this package leaves to the layer above.
|
|
78
78
|
|
|
79
79
|
## Package
|
|
80
80
|
|