@workday/canvas-kit-docs 11.0.0-alpha.696-next.0 → 11.0.0-alpha.697-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 +0 -18
- package/dist/mdx/11.0-UPGRADE-GUIDE.mdx +12 -0
- package/package.json +6 -6
package/dist/es6/lib/docs.js
CHANGED
|
@@ -202500,24 +202500,6 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
|
|
|
202500
202500
|
],
|
|
202501
202501
|
"tags": {}
|
|
202502
202502
|
},
|
|
202503
|
-
{
|
|
202504
|
-
"kind": "property",
|
|
202505
|
-
"name": "theme",
|
|
202506
|
-
"required": false,
|
|
202507
|
-
"type": {
|
|
202508
|
-
"kind": "symbol",
|
|
202509
|
-
"name": "EmotionCanvasTheme",
|
|
202510
|
-
"value": "EmotionCanvasTheme"
|
|
202511
|
-
},
|
|
202512
|
-
"description": "",
|
|
202513
|
-
"declarations": [
|
|
202514
|
-
{
|
|
202515
|
-
"name": "theme",
|
|
202516
|
-
"filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/theming/types.ts"
|
|
202517
|
-
}
|
|
202518
|
-
],
|
|
202519
|
-
"tags": {}
|
|
202520
|
-
},
|
|
202521
202503
|
{
|
|
202522
202504
|
"kind": "property",
|
|
202523
202505
|
"name": "children",
|
|
@@ -22,6 +22,7 @@ any questions.
|
|
|
22
22
|
- [Count Badge](#count-badge)
|
|
23
23
|
- [Form Field Preview](#form-field-preview)
|
|
24
24
|
- [Radio (Preview)](#radio-preview)
|
|
25
|
+
- [Switch](#switch)
|
|
25
26
|
- [Table (Preview)](#table-preview)
|
|
26
27
|
- [Text](#text)
|
|
27
28
|
|
|
@@ -424,6 +425,17 @@ our
|
|
|
424
425
|
The component now supports the `cs` prop, but otherwise the API has not changed. It should behave
|
|
425
426
|
identically as it did in previous versions.
|
|
426
427
|
|
|
428
|
+
### Switch
|
|
429
|
+
|
|
430
|
+
**PR:** [#2583](https://github.com/Workday/canvas-kit/pull/2583)
|
|
431
|
+
|
|
432
|
+
`Switch` now uses
|
|
433
|
+
[Canvas Tokens](https://workday.github.io/canvas-tokens/?path=/docs/docs-getting-started--docs) and
|
|
434
|
+
our
|
|
435
|
+
[new styling utilities](https://workday.github.io/canvas-kit/?path=/docs/styling-basics--create-modifiers#createstyles-api).
|
|
436
|
+
The component now supports the `cs` prop, but otherwise the API has not changed. It should behave
|
|
437
|
+
identically as it did in previous versions.
|
|
438
|
+
|
|
427
439
|
### Table (Preview)
|
|
428
440
|
|
|
429
441
|
**PR:** [#2567](https://github.com/Workday/canvas-kit/pull/2567)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "11.0.0-alpha.
|
|
3
|
+
"version": "11.0.0-alpha.697-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",
|
|
@@ -44,10 +44,10 @@
|
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@emotion/styled": "^11.6.0",
|
|
46
46
|
"@storybook/csf": "0.0.1",
|
|
47
|
-
"@workday/canvas-kit-labs-react": "^11.0.0-alpha.
|
|
48
|
-
"@workday/canvas-kit-preview-react": "^11.0.0-alpha.
|
|
49
|
-
"@workday/canvas-kit-react": "^11.0.0-alpha.
|
|
50
|
-
"@workday/canvas-kit-styling": "^11.0.0-alpha.
|
|
47
|
+
"@workday/canvas-kit-labs-react": "^11.0.0-alpha.697-next.0",
|
|
48
|
+
"@workday/canvas-kit-preview-react": "^11.0.0-alpha.697-next.0",
|
|
49
|
+
"@workday/canvas-kit-react": "^11.0.0-alpha.697-next.0",
|
|
50
|
+
"@workday/canvas-kit-styling": "^11.0.0-alpha.697-next.0",
|
|
51
51
|
"@workday/canvas-system-icons-web": "^3.0.0",
|
|
52
52
|
"@workday/canvas-tokens-web": "^1.0.2",
|
|
53
53
|
"markdown-to-jsx": "^6.10.3",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"mkdirp": "^1.0.3",
|
|
60
60
|
"typescript": "4.2"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "eb7a03f18423b4ffaef4a4df21d3e5256e728563"
|
|
63
63
|
}
|