@zvk/ui 0.1.7 → 0.1.8

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.1.8](https://github.com/brandon-schabel/zvk/compare/v0.1.7...v0.1.8) (2026-06-16)
4
+
5
+
6
+ ### Features
7
+
8
+ * add composite component package ([dc0920f](https://github.com/brandon-schabel/zvk/commit/dc0920fe77dd2bd63015a40b3d7675fe8f1d0067))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * restore preview source aliases ([6fd494a](https://github.com/brandon-schabel/zvk/commit/6fd494af071bc4dd3fe1685bce9cd5c44aa22bd6))
14
+
3
15
  ## [0.1.7](https://github.com/brandon-schabel/zvk/compare/v0.1.6...v0.1.7) (2026-06-15)
4
16
 
5
17
 
package/README.md CHANGED
@@ -22,8 +22,8 @@ import "@zvk/ui/styles.css";
22
22
 
23
23
  GitHub Actions runs `bun run preflight` before release publishing. Release Please opens
24
24
  reviewable version-bump PRs from conventional commits; merging a release PR creates the
25
- GitHub release and publishes `@zvk/ui` to npm through trusted publishing in the protected
26
- `npm-publish` environment.
25
+ GitHub release and publishes any package with a created release, including `@zvk/ui`, to npm
26
+ through trusted publishing in the protected `npm-publish` environment.
27
27
 
28
28
  ## Component Surface
29
29
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zvk/ui",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "A polished, zero-runtime-dependency React component library for ZvkUi applications.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -258,6 +258,7 @@
258
258
  },
259
259
  "scripts": {
260
260
  "clean": "bun run scripts/clean.mjs",
261
+ "dev": "bun run preview",
261
262
  "build:types": "tsc -p tsconfig.build.json",
262
263
  "build:css": "bun run scripts/build-css.mjs",
263
264
  "build": "bun run clean && bun run build:types && bun run build:css",