@workday/canvas-kit-mcp 13.2.41 → 14.1.4
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 +39 -2
- package/dist/cli.js.map +2 -2
- package/dist/index.js +39 -2
- package/dist/index.js.map +2 -2
- package/dist/lib/llm-txt/llm-style-props-migration.txt +2346 -0
- package/dist/lib/llm-txt/llm-token-migration-14.txt +826 -0
- package/dist/lib/upgrade-guides/14.0-UPGRADE-GUIDE.md +1095 -0
- package/dist/types/lib/index.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/cli.js
CHANGED
|
@@ -11880,7 +11880,7 @@ import { fileURLToPath } from "node:url";
|
|
|
11880
11880
|
// package.json
|
|
11881
11881
|
var package_default = {
|
|
11882
11882
|
name: "@workday/canvas-kit-mcp",
|
|
11883
|
-
version: "
|
|
11883
|
+
version: "14.1.4",
|
|
11884
11884
|
description: "MCP package for Canvas Kit",
|
|
11885
11885
|
author: "Workday, Inc. (https://www.workday.com)",
|
|
11886
11886
|
license: "Apache-2.0",
|
|
@@ -11939,7 +11939,10 @@ var package_default = {
|
|
|
11939
11939
|
var config_default = {
|
|
11940
11940
|
upgradeGuideFiles: [
|
|
11941
11941
|
"upgrade-guides/12.0-UPGRADE-GUIDE.md",
|
|
11942
|
-
"upgrade-guides/13.0-UPGRADE-GUIDE.md"
|
|
11942
|
+
"upgrade-guides/13.0-UPGRADE-GUIDE.md",
|
|
11943
|
+
"upgrade-guides/14.0-UPGRADE-GUIDE.md",
|
|
11944
|
+
"llm-txt/llm-token-migration-14.txt",
|
|
11945
|
+
"llm-txt/llm-style-props-migration.txt"
|
|
11943
11946
|
]
|
|
11944
11947
|
};
|
|
11945
11948
|
|
|
@@ -14599,6 +14602,40 @@ In this release, we:
|
|
|
14599
14602
|
uri: "docs://upgrade-guides/13.0-UPGRADE-GUIDE",
|
|
14600
14603
|
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14601
14604
|
};
|
|
14605
|
+
case "llm-txt/llm-token-migration-14.txt":
|
|
14606
|
+
return {
|
|
14607
|
+
title: "Canvas Kit Token Migration Guide",
|
|
14608
|
+
description: `# Canvas Kit Token Migration Guide
|
|
14609
|
+
Guide for migrating from @workday/canvas-kit-react/tokens to @workday/canvas-tokens-web.
|
|
14610
|
+
This migration enables better theming capabilities, improved performance, and a more standardized approach to styling.`,
|
|
14611
|
+
mimeType: "text/plain",
|
|
14612
|
+
uri: "docs://llm-txt/llm-token-migration-14",
|
|
14613
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14614
|
+
};
|
|
14615
|
+
case "llm-txt/llm-style-props-migration.txt":
|
|
14616
|
+
return {
|
|
14617
|
+
title: "Canvas Kit Style Props Migration Guide",
|
|
14618
|
+
description: `# Canvas Kit Style Props Migration Guide
|
|
14619
|
+
Guide for migrating from Emotion's style props to @workday/canvas-kit-styling.
|
|
14620
|
+
This migration improves performance, consistency, and maintainability by moving away from runtime styling to static CSS compilation.`,
|
|
14621
|
+
mimeType: "text/plain",
|
|
14622
|
+
uri: "docs://llm-txt/llm-style-props-migration",
|
|
14623
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14624
|
+
};
|
|
14625
|
+
case "upgrade-guides/14.0-UPGRADE-GUIDE.md":
|
|
14626
|
+
return {
|
|
14627
|
+
title: "Canvas Kit 14.0 Upgrade Guide",
|
|
14628
|
+
description: `# Canvas Kit 14.0 Upgrade Guide
|
|
14629
|
+
This guide contains an overview of the changes in Canvas Kit v14.
|
|
14630
|
+
|
|
14631
|
+
In this release, we:
|
|
14632
|
+
- introduced Workday's new brand direction with a new color palette
|
|
14633
|
+
- made styling updates to our components
|
|
14634
|
+
- improved token system and theming capabilities`,
|
|
14635
|
+
mimeType: "text/markdown",
|
|
14636
|
+
uri: "docs://upgrade-guides/14.0-UPGRADE-GUIDE",
|
|
14637
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14638
|
+
};
|
|
14602
14639
|
default:
|
|
14603
14640
|
throw new Error(`${fileName} is not a valid resource`);
|
|
14604
14641
|
}
|