@urbicon-ui/design 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/dist/cli.js +3 -1
- package/package.json +3 -3
package/dist/cli.js
CHANGED
|
@@ -1671,6 +1671,7 @@ var INTERACTIVE_CORES = [
|
|
|
1671
1671
|
"interactive-disabled"
|
|
1672
1672
|
];
|
|
1673
1673
|
var CHART_CORES = ["chart-1", "chart-2", "chart-3", "chart-4", "chart-5", "chart-6"];
|
|
1674
|
+
var SKELETON_CORES = ["skeleton-shimmer"];
|
|
1674
1675
|
function buildIntentCores() {
|
|
1675
1676
|
const cores = [];
|
|
1676
1677
|
for (const intent of INTENT_NAMES) {
|
|
@@ -1691,7 +1692,8 @@ var VALID_TOKEN_CORES = new Set([
|
|
|
1691
1692
|
...WARM_NEUTRAL_STEPS.map((s) => `warm-neutral-${s}`),
|
|
1692
1693
|
...FEEDBACK_CORES,
|
|
1693
1694
|
...INTERACTIVE_CORES,
|
|
1694
|
-
...CHART_CORES
|
|
1695
|
+
...CHART_CORES,
|
|
1696
|
+
...SKELETON_CORES
|
|
1695
1697
|
]);
|
|
1696
1698
|
function normalizeExtraTokens(extra) {
|
|
1697
1699
|
return extra.map((token) => token.trim()).filter((token) => token.length > 0);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@urbicon-ui/design",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.1",
|
|
4
4
|
"description": "The urbicon CLI — version-pinned design validation and design-manifest tooling for projects built with Urbicon UI. Wraps @urbicon-ui/design-engine for editor hooks and CI.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"test:run": "vitest run"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@urbicon-ui/design-content": "6.
|
|
42
|
-
"@urbicon-ui/design-engine": "6.
|
|
41
|
+
"@urbicon-ui/design-content": "6.3.1",
|
|
42
|
+
"@urbicon-ui/design-engine": "6.3.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^6.0.3",
|