@workday/canvas-kit-docs 13.0.0 → 13.0.2

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.
@@ -18,11 +18,11 @@ export const packageJSONFile = `{
18
18
  "@emotion/react": "11.11.4",
19
19
  "@types/react": "18.2.60",
20
20
  "@types/react-dom": "18.2.19",
21
- "@workday/canvas-kit-labs-react": "13.0.0",
22
- "@workday/canvas-kit-preview-react": "13.0.0",
23
- "@workday/canvas-kit-react": "13.0.0",
24
- "@workday/canvas-kit-react-fonts": "^13.0.0",
25
- "@workday/canvas-kit-styling": "13.0.0",
21
+ "@workday/canvas-kit-labs-react": "13.0.2",
22
+ "@workday/canvas-kit-preview-react": "13.0.2",
23
+ "@workday/canvas-kit-react": "13.0.2",
24
+ "@workday/canvas-kit-react-fonts": "^13.0.2",
25
+ "@workday/canvas-kit-styling": "13.0.2",
26
26
  "@workday/canvas-system-icons-web": "3.0.22",
27
27
  "@workday/canvas-tokens-web": "2.0.0"
28
28
  },
@@ -18,11 +18,11 @@ export const packageJSONFile = `{
18
18
  "@emotion/react": "11.11.4",
19
19
  "@types/react": "18.2.60",
20
20
  "@types/react-dom": "18.2.19",
21
- "@workday/canvas-kit-labs-react": "13.0.0",
22
- "@workday/canvas-kit-preview-react": "13.0.0",
23
- "@workday/canvas-kit-react": "13.0.0",
24
- "@workday/canvas-kit-react-fonts": "^13.0.0",
25
- "@workday/canvas-kit-styling": "13.0.0",
21
+ "@workday/canvas-kit-labs-react": "13.0.2",
22
+ "@workday/canvas-kit-preview-react": "13.0.2",
23
+ "@workday/canvas-kit-react": "13.0.2",
24
+ "@workday/canvas-kit-react-fonts": "^13.0.2",
25
+ "@workday/canvas-kit-styling": "13.0.2",
26
26
  "@workday/canvas-system-icons-web": "3.0.22",
27
27
  "@workday/canvas-tokens-web": "2.0.0"
28
28
  },
@@ -33,7 +33,7 @@ export default () => {
33
33
  const model = useGridModel({
34
34
  columnCount: 5,
35
35
  // @ts-ignore Create an array of [{id: 1}, ...{id: n}]
36
- items: [...Array(25).keys()].map(i => ({id: i + 1})),
36
+ items: [...Array(25).keys()].map(i => ({id: `${i + 1}`})),
37
37
  // we don't need virtualization here
38
38
  shouldVirtualize: false,
39
39
  });
@@ -34,7 +34,7 @@ export default () => {
34
34
  const model = useGridModel({
35
35
  columnCount: 5,
36
36
  // @ts-ignore Create an array of [{id: 1}, ...{id: n}]
37
- items: [...Array(25).keys()].map(i => ({id: i + 1})),
37
+ items: [...Array(25).keys()].map(i => ({id: `${i + 1}`})),
38
38
  // we don't need virtualization here
39
39
  shouldVirtualize: false,
40
40
  navigation: wrappingNavigationManager,
@@ -5,7 +5,8 @@ import Icons from './examples/Icons';
5
5
  import SelectableMenu from './examples/SelectableMenu';
6
6
  import Grouping from './examples/Grouping';
7
7
  import Nested from './examples/Nested';
8
- import NestedDynamic from './examples/Nested';
8
+ import NestedDynamic from './examples/NestedDynamic';
9
+
9
10
 
10
11
  # Canvas Kit Menu
11
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-docs",
3
- "version": "13.0.0",
3
+ "version": "13.0.2",
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": "^13.0.0",
49
- "@workday/canvas-kit-preview-react": "^13.0.0",
50
- "@workday/canvas-kit-react": "^13.0.0",
51
- "@workday/canvas-kit-styling": "^13.0.0",
48
+ "@workday/canvas-kit-labs-react": "^13.0.2",
49
+ "@workday/canvas-kit-preview-react": "^13.0.2",
50
+ "@workday/canvas-kit-react": "^13.0.2",
51
+ "@workday/canvas-kit-styling": "^13.0.2",
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": "3cb203410f3b0b8b912e6ec84a846d3108e4958f"
64
+ "gitHead": "0e6edf0f65a96bcf4d7ed369741aa56a924f7bbb"
65
65
  }