@viax.io/uxm 4.41.0 → 4.42.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 +7 -0
- package/README.md +11 -1
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [4.42.0](https://github.com/viax-io/uxm/compare/v4.41.0...v4.42.0) (2026-09-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **cdn:** add build:cdn pipeline for self-contained script-tag bundles ([77a48be](https://github.com/viax-io/uxm/commit/77a48bedddb4b2a6c25f2d8f65ff6d7a67a29eab))
|
|
7
|
+
|
|
1
8
|
# [4.41.0](https://github.com/viax-io/uxm/compare/v4.40.2...v4.41.0) (2026-09-11)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -38,7 +38,17 @@ Every example in this README imports from `@viax.io/uxm` and its subpaths.
|
|
|
38
38
|
|
|
39
39
|
Peer deps: `react@^19`, `react-dom@^19`. Node `>=20` for local dev.
|
|
40
40
|
|
|
41
|
-
Published publicly on npm — no registry configuration, credentials or VPN required
|
|
41
|
+
Published publicly on npm — no registry configuration, credentials or VPN required for a plain
|
|
42
|
+
`npm i @viax.io/uxm` against the default npm registry.
|
|
43
|
+
|
|
44
|
+
> **If your project's default registry points at Nexus** (`registry=https://nexus.viax.tech/repository/viax-npm/`
|
|
45
|
+
> in `.npmrc` — the common viax-internal setup), add a scope override so this package still
|
|
46
|
+
> resolves straight from npm:
|
|
47
|
+
> ```
|
|
48
|
+
> @viax.io:registry=https://registry.npmjs.org/
|
|
49
|
+
> ```
|
|
50
|
+
> Nexus mirrors `registry.npmjs.org` with a delay, so installing right after a fresh release can
|
|
51
|
+
> 404 or silently resolve a stale version through Nexus without this override.
|
|
42
52
|
|
|
43
53
|
## Quick start
|
|
44
54
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@viax.io/uxm",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.42.0",
|
|
4
4
|
"description": "Viax UXM — React 19 UI primitives and design tokens.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"private": false,
|
|
@@ -60,6 +60,7 @@
|
|
|
60
60
|
"build": "tsup && npm run build:studio-css && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.json --outDir dist --resolve-full-paths && node scripts/fix-cjs-requires.mjs",
|
|
61
61
|
"build:studio-css": "tailwindcss -i ./src/studio/studio.css -o ./dist/studio/studio.css --minify",
|
|
62
62
|
"build:modo": "vite build -c portal/vite.config.ts",
|
|
63
|
+
"build:cdn": "node scripts/build-cdn.mjs",
|
|
63
64
|
"dev": "tsup --watch",
|
|
64
65
|
"dev:modo": "vite -c portal/vite.config.ts",
|
|
65
66
|
"clean": "rm -rf dist",
|
|
@@ -117,6 +118,7 @@
|
|
|
117
118
|
"axe-core": "^4.13.0",
|
|
118
119
|
"commitizen": "^4.3.1",
|
|
119
120
|
"cz-conventional-changelog": "^3.3.0",
|
|
121
|
+
"esbuild": "^0.27.7",
|
|
120
122
|
"eslint": "^9.39.4",
|
|
121
123
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
122
124
|
"eslint-plugin-import": "^2.32.0",
|