@ai-matrx/records-ui 0.16.0 → 0.16.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 +12 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog — @ai-matrx/records-ui
|
|
2
2
|
|
|
3
|
+
## 0.16.1
|
|
4
|
+
|
|
5
|
+
**`FormSubmitOutcome` is exported.** It is the return type of
|
|
6
|
+
`FormRunnerProps.onSubmit`, so a host supplying its own submit could not type
|
|
7
|
+
its own handler: matrx-frontend's `PublicFormRunner` failed `tsc` on 0.16.0 with
|
|
8
|
+
TS2459, "declares it locally, but it is not exported". A public surface is every
|
|
9
|
+
type a consumer has to name.
|
|
10
|
+
|
|
11
|
+
### Consumer action
|
|
12
|
+
|
|
13
|
+
None beyond importing it if you implement `onSubmit`.
|
|
14
|
+
|
|
3
15
|
## 0.16.0
|
|
4
16
|
|
|
5
17
|
**The grid never draws a row before it knows what the person may do.** My own
|