@ai-matrx/records-ui 0.47.0 → 0.48.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 +17 -0
- package/dist/index.cjs +4 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/records-ui
|
|
2
2
|
|
|
3
|
+
## 0.48.0
|
|
4
|
+
|
|
5
|
+
**The record panel says when it could not read the footnote.**
|
|
6
|
+
|
|
7
|
+
`@ai-matrx/records` 0.33.0 stops `custom.computed_provenance` — a door a person's
|
|
8
|
+
seat cannot call — from failing the whole record read, which is what told Cedar
|
|
9
|
+
Ridge Dental's own owner "You do not have access to this" above a record that
|
|
10
|
+
loaded everywhere else. This is the visible half: `Peek` says, in one line, that
|
|
11
|
+
it could not read which columns the system worked out for itself, instead of
|
|
12
|
+
leaving an empty space that means either "nothing is worked out here" or "nobody
|
|
13
|
+
could look" and never says which.
|
|
14
|
+
|
|
15
|
+
Needs `@ai-matrx/records` >= 0.33.0 for `RecordRead.computedUnavailable`; on an
|
|
16
|
+
older one the line simply never appears.
|
|
17
|
+
|
|
18
|
+
**Consumer action:** none.
|
|
19
|
+
|
|
3
20
|
## 0.47.0
|
|
4
21
|
|
|
5
22
|
Carries 0.45.0 and 0.46.0, neither of which reached npm: the publish of 0.45.0
|
package/dist/index.cjs
CHANGED
|
@@ -5110,6 +5110,10 @@ function Peek({ tableId, recordId, onClose, className }) {
|
|
|
5110
5110
|
] }),
|
|
5111
5111
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("dd", { className: "min-w-0", children: /* @__PURE__ */ (0, import_jsx_runtime20.jsx)(RecordValue, { field, value: document2?.[field.key], document: document2 }) })
|
|
5112
5112
|
] }, field.id)) }),
|
|
5113
|
+
record.data?.computedUnavailable ? /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
|
|
5114
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_design_system17.Separator, {}),
|
|
5115
|
+
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)("p", { className: "text-muted-foreground", children: "Nothing here can say which columns the system worked out for itself: that part of the record is not readable from your seat. Everything above is the record as it stands." })
|
|
5116
|
+
] }) : null,
|
|
5113
5117
|
record.data?.computed?.length ? /* @__PURE__ */ (0, import_jsx_runtime20.jsxs)(import_jsx_runtime20.Fragment, { children: [
|
|
5114
5118
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsx)(import_design_system17.Separator, {}),
|
|
5115
5119
|
/* @__PURE__ */ (0, import_jsx_runtime20.jsxs)("div", { className: "flex flex-col gap-1", children: [
|