@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/index.js
CHANGED
|
@@ -6796,7 +6796,7 @@ import { fileURLToPath } from "node:url";
|
|
|
6796
6796
|
// package.json
|
|
6797
6797
|
var package_default = {
|
|
6798
6798
|
name: "@workday/canvas-kit-mcp",
|
|
6799
|
-
version: "
|
|
6799
|
+
version: "14.1.4",
|
|
6800
6800
|
description: "MCP package for Canvas Kit",
|
|
6801
6801
|
author: "Workday, Inc. (https://www.workday.com)",
|
|
6802
6802
|
license: "Apache-2.0",
|
|
@@ -6855,7 +6855,10 @@ var package_default = {
|
|
|
6855
6855
|
var config_default = {
|
|
6856
6856
|
upgradeGuideFiles: [
|
|
6857
6857
|
"upgrade-guides/12.0-UPGRADE-GUIDE.md",
|
|
6858
|
-
"upgrade-guides/13.0-UPGRADE-GUIDE.md"
|
|
6858
|
+
"upgrade-guides/13.0-UPGRADE-GUIDE.md",
|
|
6859
|
+
"upgrade-guides/14.0-UPGRADE-GUIDE.md",
|
|
6860
|
+
"llm-txt/llm-token-migration-14.txt",
|
|
6861
|
+
"llm-txt/llm-style-props-migration.txt"
|
|
6859
6862
|
]
|
|
6860
6863
|
};
|
|
6861
6864
|
|
|
@@ -14503,6 +14506,40 @@ In this release, we:
|
|
|
14503
14506
|
uri: "docs://upgrade-guides/13.0-UPGRADE-GUIDE",
|
|
14504
14507
|
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14505
14508
|
};
|
|
14509
|
+
case "llm-txt/llm-token-migration-14.txt":
|
|
14510
|
+
return {
|
|
14511
|
+
title: "Canvas Kit Token Migration Guide",
|
|
14512
|
+
description: `# Canvas Kit Token Migration Guide
|
|
14513
|
+
Guide for migrating from @workday/canvas-kit-react/tokens to @workday/canvas-tokens-web.
|
|
14514
|
+
This migration enables better theming capabilities, improved performance, and a more standardized approach to styling.`,
|
|
14515
|
+
mimeType: "text/plain",
|
|
14516
|
+
uri: "docs://llm-txt/llm-token-migration-14",
|
|
14517
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14518
|
+
};
|
|
14519
|
+
case "llm-txt/llm-style-props-migration.txt":
|
|
14520
|
+
return {
|
|
14521
|
+
title: "Canvas Kit Style Props Migration Guide",
|
|
14522
|
+
description: `# Canvas Kit Style Props Migration Guide
|
|
14523
|
+
Guide for migrating from Emotion's style props to @workday/canvas-kit-styling.
|
|
14524
|
+
This migration improves performance, consistency, and maintainability by moving away from runtime styling to static CSS compilation.`,
|
|
14525
|
+
mimeType: "text/plain",
|
|
14526
|
+
uri: "docs://llm-txt/llm-style-props-migration",
|
|
14527
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14528
|
+
};
|
|
14529
|
+
case "upgrade-guides/14.0-UPGRADE-GUIDE.md":
|
|
14530
|
+
return {
|
|
14531
|
+
title: "Canvas Kit 14.0 Upgrade Guide",
|
|
14532
|
+
description: `# Canvas Kit 14.0 Upgrade Guide
|
|
14533
|
+
This guide contains an overview of the changes in Canvas Kit v14.
|
|
14534
|
+
|
|
14535
|
+
In this release, we:
|
|
14536
|
+
- introduced Workday's new brand direction with a new color palette
|
|
14537
|
+
- made styling updates to our components
|
|
14538
|
+
- improved token system and theming capabilities`,
|
|
14539
|
+
mimeType: "text/markdown",
|
|
14540
|
+
uri: "docs://upgrade-guides/14.0-UPGRADE-GUIDE",
|
|
14541
|
+
contents: fs.readFileSync(path.resolve(__dirname, "lib", fileName), "utf8")
|
|
14542
|
+
};
|
|
14506
14543
|
default:
|
|
14507
14544
|
throw new Error(`${fileName} is not a valid resource`);
|
|
14508
14545
|
}
|