@workday/canvas-kit-docs 14.0.0-alpha.1125-next.0 → 14.0.0-alpha.1126-next.0
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/es6/lib/docs.js +1775 -482
- package/dist/mdx/14.0-UPGRADE-GUIDE.mdx +7 -5
- package/package.json +6 -6
|
@@ -86,16 +86,18 @@ Several components have been refactored to use our Canvas tokens and styling API
|
|
|
86
86
|
The following components have been updated:
|
|
87
87
|
|
|
88
88
|
- `Breadcrumbs` [#3270](https://github.com/Workday/canvas-kit/pull/3270)
|
|
89
|
+
- `SegmentedControl` (main) [#3278](https://github.com/Workday/canvas-kit/pull/3278)
|
|
90
|
+
- `SegmentedControl` (preview) [#3278](https://github.com/Workday/canvas-kit/pull/3278)
|
|
89
91
|
|
|
90
92
|
## Troubleshooting
|
|
91
93
|
|
|
92
94
|
- When upgrading to the latest major version of Canvas Kit, all related Canvas Kit packages should
|
|
93
95
|
be updated at the same time:
|
|
94
|
-
- `"@workday/canvas-kit-react": "^
|
|
95
|
-
- `"@workday/canvas-kit-styling": "^
|
|
96
|
-
- `"@workday/canvas-kit-preview-react": "^
|
|
97
|
-
`"@workday/canvas-kit-preview-react": "^
|
|
98
|
-
- `"@workday/canvas-kit-labs-react": "^
|
|
96
|
+
- `"@workday/canvas-kit-react": "^13.5.6"` -> `"@workday/canvas-kit-react": "^14.0.0"`
|
|
97
|
+
- `"@workday/canvas-kit-styling": "^13.5.6"` -> `"@workday/canvas-kit-styling": "^14.0.0"`
|
|
98
|
+
- `"@workday/canvas-kit-preview-react": "^13.5.6"` ->
|
|
99
|
+
`"@workday/canvas-kit-preview-react": "^14.0.0"`
|
|
100
|
+
- `"@workday/canvas-kit-labs-react": "^13.5.6"` -> `"@workday/canvas-kit-labs-react": "^14.0.0"`
|
|
99
101
|
- Our components rely on the `@workday/canvas-tokens-web` package which provides our CSS variables
|
|
100
102
|
and ensures the correct styling of our components. Make sure to upgrade to the latest version of
|
|
101
103
|
Canvas Tokens Web and install it correctly. For more information,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "14.0.0-alpha.
|
|
3
|
+
"version": "14.0.0-alpha.1126-next.0",
|
|
4
4
|
"description": "Documentation components of Canvas Kit components",
|
|
5
5
|
"author": "Workday, Inc. (https://www.workday.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"@emotion/styled": "^11.6.0",
|
|
46
46
|
"@stackblitz/sdk": "^1.11.0",
|
|
47
47
|
"@storybook/csf": "0.0.1",
|
|
48
|
-
"@workday/canvas-kit-labs-react": "^14.0.0-alpha.
|
|
49
|
-
"@workday/canvas-kit-preview-react": "^14.0.0-alpha.
|
|
50
|
-
"@workday/canvas-kit-react": "^14.0.0-alpha.
|
|
51
|
-
"@workday/canvas-kit-styling": "^14.0.0-alpha.
|
|
48
|
+
"@workday/canvas-kit-labs-react": "^14.0.0-alpha.1126-next.0",
|
|
49
|
+
"@workday/canvas-kit-preview-react": "^14.0.0-alpha.1126-next.0",
|
|
50
|
+
"@workday/canvas-kit-react": "^14.0.0-alpha.1126-next.0",
|
|
51
|
+
"@workday/canvas-kit-styling": "^14.0.0-alpha.1126-next.0",
|
|
52
52
|
"@workday/canvas-system-icons-web": "^3.0.0",
|
|
53
53
|
"@workday/canvas-tokens-web": "^2.1.1",
|
|
54
54
|
"markdown-to-jsx": "^7.2.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"mkdirp": "^1.0.3",
|
|
62
62
|
"typescript": "5.0"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "5420bd738ba9800e4443d4ec6103df51634529e9"
|
|
65
65
|
}
|