@ai-matrx/design-system 0.7.0 → 0.7.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 +14 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.7.1 — 2026-09-07
|
|
4
|
+
|
|
5
|
+
- **`ResizableHandle` defaults to `xs` (2px), not `sm` (4px).** Caught in the
|
|
6
|
+
live spot-check of the 0.7.0 adoption: matrx-frontend's `/notes` split
|
|
7
|
+
rendered a 4px rule where its fork had drawn 2px. The port was supposed to be
|
|
8
|
+
behaviour-verbatim, and `size="sm"` was simply the wrong rung to call the
|
|
9
|
+
default. Every explicit `size=` is unaffected, and
|
|
10
|
+
`components/ui/matrx/resizable.tsx` still binds `md`.
|
|
11
|
+
|
|
12
|
+
### Consumer action (C28)
|
|
13
|
+
|
|
14
|
+
None. If you adopted 0.7.0 and liked the slightly thicker default, pass
|
|
15
|
+
`size="sm"`.
|
|
16
|
+
|
|
3
17
|
## 0.7.0 — 2026-09-07
|
|
4
18
|
|
|
5
19
|
**GROWTH WAVE 2 (C18).** Wave 1 (0.5.0) deleted 34 forked primitives but had
|
package/dist/index.cjs
CHANGED
|
@@ -3716,7 +3716,7 @@ ResizablePanelGroup.displayName = "ResizablePanelGroup";
|
|
|
3716
3716
|
var ResizablePanel = import_react_resizable_panels.Panel;
|
|
3717
3717
|
var ResizableHandle = ({
|
|
3718
3718
|
withHandle,
|
|
3719
|
-
size = "
|
|
3719
|
+
size = "xs",
|
|
3720
3720
|
className,
|
|
3721
3721
|
...props
|
|
3722
3722
|
}) => /* @__PURE__ */ (0, import_jsx_runtime38.jsx)(
|