@urbicon-ui/design-engine 6.2.0 → 6.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@urbicon-ui/design-engine",
3
- "version": "6.2.0",
3
+ "version": "6.3.1",
4
4
  "description": "Deterministic design engine for Urbicon UI — the zero-dependency design linter, manifest parser and quality rubric that power the design loop (validate · context · judge).",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -115,6 +115,9 @@ const INTERACTIVE_CORES = [
115
115
  /** Chart series tokens → `text-chart-1` … `text-chart-6`. */
116
116
  const CHART_CORES = ['chart-1', 'chart-2', 'chart-3', 'chart-4', 'chart-5', 'chart-6'] as const;
117
117
 
118
+ /** Skeleton loading tokens → `bg-skeleton-shimmer` (the shimmer overlay sweep). */
119
+ const SKELETON_CORES = ['skeleton-shimmer'] as const;
120
+
118
121
  function buildIntentCores(): string[] {
119
122
  const cores: string[] = [];
120
123
  for (const intent of INTENT_NAMES) {
@@ -138,7 +141,8 @@ export const VALID_TOKEN_CORES: ReadonlySet<string> = new Set([
138
141
  ...WARM_NEUTRAL_STEPS.map((s) => `warm-neutral-${s}`),
139
142
  ...FEEDBACK_CORES,
140
143
  ...INTERACTIVE_CORES,
141
- ...CHART_CORES
144
+ ...CHART_CORES,
145
+ ...SKELETON_CORES
142
146
  ]);
143
147
 
144
148
  /**