@ai-matrx/design-system 0.1.0 → 0.1.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 +6 -0
- package/dist/index.js +1 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.1 — 2026-08-22
|
|
4
|
+
|
|
5
|
+
- Preserved the package-level `"use client"` boundary in the built ESM entry so
|
|
6
|
+
Next.js consumers classify the bundled Radix/React primitives correctly.
|
|
7
|
+
- Added a packed-tarball assertion for that boundary.
|
|
8
|
+
|
|
3
9
|
## 0.1.0 — 2026-08-22
|
|
4
10
|
|
|
5
11
|
- Added Button, Badge, Label, Separator, and `cn` as the first shared semantic UI foundation.
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/design-system",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "AI Matrx semantic React primitives shared across Vite, Next.js, desktop, and customer-built applications.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"sideEffects": false,
|
|
61
61
|
"scripts": {
|
|
62
|
-
"build": "tsup",
|
|
62
|
+
"build": "tsup && node ./scripts/stamp-client-boundary.mjs",
|
|
63
63
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
64
64
|
"check:package": "pnpm build && publint && pnpm verify:tarball",
|
|
65
65
|
"typecheck": "tsc --noEmit",
|