create-zudo-sg 0.1.4 → 0.1.5

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
@@ -4,6 +4,18 @@ All notable changes to `create-zudo-sg` are documented in this file.
4
4
 
5
5
  The format is based on Keep a Changelog.
6
6
 
7
+ ## [0.1.5] - 2026-09-23
8
+
9
+ ### Changed
10
+
11
+ - Support optional host token-group metadata in the starter preview panel,
12
+ while retaining type compatibility with legacy five-array manifests.
13
+ - Update the starter engine range to `@takazudo/zudo-sg ^0.3.2`, which supports
14
+ host-defined token vocabularies, portable component scaffolds, and unique
15
+ registry import bindings.
16
+ - Verify flat and nested generated components in the packed starter proof,
17
+ including typechecking and built routes.
18
+
7
19
  ## [0.1.4] - 2026-09-21
8
20
 
9
21
  Gives a fresh starter a working preview token panel, not just the button that
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-zudo-sg",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Create a new zudo-sg styleguide project",
5
5
  "license": "MIT",
6
6
  "author": "Takeshi Takatsudo",
@@ -17,7 +17,7 @@
17
17
  "@takazudo/zfb-md-wasm": "2.20.0",
18
18
  "@takazudo/zfb-runtime": "2.20.0",
19
19
  "@takazudo/zudo-doc": "5.26.2",
20
- "@takazudo/zudo-sg": "^0.3.1",
20
+ "@takazudo/zudo-sg": "^0.3.2",
21
21
  "diff": "^8.0.4",
22
22
  "katex": "^0.16.38",
23
23
  "preact": "^10.29.1",
@@ -12,4 +12,4 @@ minimumReleaseAgeExclude:
12
12
  - "@takazudo/zfb-win32-x64-msvc@2.20.0"
13
13
  - "@takazudo/zfb@2.20.0"
14
14
  - "@takazudo/zudo-doc@5.26.2"
15
- - "@takazudo/zudo-sg@0.3.1"
15
+ - "@takazudo/zudo-sg@0.3.2"
@@ -6,20 +6,19 @@
6
6
  // preview-token-panel-bootstrap.tsx).
7
7
  import { buildUiTokenTabs } from "@takazudo/zudo-sg/token-dashboard";
8
8
  import type { UiDesignTokensManifest } from "@takazudo/zudo-sg/token-dashboard";
9
- import {
10
- UI_PALETTE_COLORS,
11
- UI_COLOR_TOKENS,
12
- UI_SPACING_TOKENS,
13
- UI_FONT_TOKENS,
14
- UI_SIZE_TOKENS,
15
- } from "../styleguide/token-manifest.ts";
9
+ import * as tokens from "../styleguide/token-manifest.ts";
10
+
11
+ const tokenGroups = tokens as typeof tokens & {
12
+ UI_TOKEN_GROUPS?: UiDesignTokensManifest["groups"];
13
+ };
16
14
 
17
15
  const uiDesignTokensManifest: UiDesignTokensManifest = {
18
- paletteColors: UI_PALETTE_COLORS,
19
- colorTokens: UI_COLOR_TOKENS,
20
- spacingTokens: UI_SPACING_TOKENS,
21
- fontTokens: UI_FONT_TOKENS,
22
- sizeTokens: UI_SIZE_TOKENS,
16
+ paletteColors: tokens.UI_PALETTE_COLORS,
17
+ colorTokens: tokens.UI_COLOR_TOKENS,
18
+ spacingTokens: tokens.UI_SPACING_TOKENS,
19
+ fontTokens: tokens.UI_FONT_TOKENS,
20
+ sizeTokens: tokens.UI_SIZE_TOKENS,
21
+ groups: tokenGroups.UI_TOKEN_GROUPS,
23
22
  };
24
23
 
25
24
  export const tabs = buildUiTokenTabs(uiDesignTokensManifest);