@ai-matrx/kit 0.9.0 → 0.9.2
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 +14 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/url-state.cjs +1 -1
- package/dist/url-state.cjs.map +1 -1
- package/dist/url-state.js +1 -1
- package/dist/url-state.js.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.9.2 — 2026-09-11
|
|
4
|
+
|
|
5
|
+
Removed unused URL-state destructuring so strict workspace consumers with
|
|
6
|
+
`noUnusedLocals` can import the shared table URL-state entry. Runtime behavior
|
|
7
|
+
is unchanged: callbacks are still read through the current options ref.
|
|
8
|
+
|
|
9
|
+
**Consumer action:** Update the package; no API change.
|
|
10
|
+
|
|
11
|
+
## 0.9.1
|
|
12
|
+
|
|
13
|
+
Automatic changed-only republish (docs/metadata drift since the last tag — see
|
|
14
|
+
`git diff npm/kit/v0.9.0..npm/kit/v0.9.1 -- apps/shared/kit`).
|
|
15
|
+
No source changes intended and no consumer action required.
|
|
16
|
+
|
|
3
17
|
## 0.9.0 — 2026-09-07
|
|
4
18
|
|
|
5
19
|
**THE CONFIRM DIALOG LEAVES THIS PACKAGE.** `@ai-matrx/kit/confirm` is removed.
|
package/dist/index.cjs
CHANGED
|
@@ -1794,7 +1794,7 @@ function jsonUrlCodec(defaultValue, isValid) {
|
|
|
1794
1794
|
};
|
|
1795
1795
|
}
|
|
1796
1796
|
function useMirroredUrlState(options) {
|
|
1797
|
-
const { parse,
|
|
1797
|
+
const { parse, textKeys = [], resetKey } = options;
|
|
1798
1798
|
const params = useUrlSearchParams();
|
|
1799
1799
|
const optionsRef = (0, import_react6.useRef)(options);
|
|
1800
1800
|
optionsRef.current = options;
|