@workday/canvas-kit-docs 8.6.3 → 8.6.5

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,25 +18,25 @@ const borderPadProps = {
18
18
  };
19
19
 
20
20
  const Header = ({children, ...props}: GridProps) => (
21
- <Grid gridArea="Header" depth={1} {...props} {...borderPadProps}>
21
+ <Grid as="header" gridArea="Header" depth={1} {...props} {...borderPadProps}>
22
22
  {children}
23
23
  </Grid>
24
24
  );
25
25
 
26
26
  const BodyContent = ({children, ...props}: GridProps) => (
27
- <Grid gridArea="BodyContent" depth={1} {...props} {...borderPadProps}>
27
+ <Grid as="main" gridArea="BodyContent" depth={1} {...props} {...borderPadProps}>
28
28
  {children}
29
29
  </Grid>
30
30
  );
31
31
 
32
32
  const SideBar = ({children, ...props}: GridProps) => (
33
- <Grid gridArea="SideBar" depth={1} {...props} {...borderPadProps}>
33
+ <Grid as="aside" gridArea="SideBar" depth={1} {...props} {...borderPadProps}>
34
34
  {children}
35
35
  </Grid>
36
36
  );
37
37
 
38
38
  const Footer = ({children, ...props}: GridProps) => (
39
- <Grid gridArea="Footer" depth={1} {...props} {...borderPadProps}>
39
+ <Grid as="footer" gridArea="Footer" depth={1} {...props} {...borderPadProps}>
40
40
  {children}
41
41
  </Grid>
42
42
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-docs",
3
- "version": "8.6.3",
3
+ "version": "8.6.5",
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,9 +44,9 @@
44
44
  "dependencies": {
45
45
  "@emotion/styled": "^11.6.0",
46
46
  "@storybook/csf": "0.0.1",
47
- "@workday/canvas-kit-labs-react": "^8.6.3",
48
- "@workday/canvas-kit-preview-react": "^8.6.3",
49
- "@workday/canvas-kit-react": "^8.6.3",
47
+ "@workday/canvas-kit-labs-react": "^8.6.5",
48
+ "@workday/canvas-kit-preview-react": "^8.6.5",
49
+ "@workday/canvas-kit-react": "^8.6.5",
50
50
  "@workday/canvas-system-icons-web": "^3.0.0",
51
51
  "markdown-to-jsx": "^6.10.3",
52
52
  "ts-node": "^10.9.1"
@@ -57,5 +57,5 @@
57
57
  "mkdirp": "^1.0.3",
58
58
  "typescript": "4.2"
59
59
  },
60
- "gitHead": "33cdfbb027c090770e7a93b9ed033c886c010946"
60
+ "gitHead": "ce55b939269407b74c9ba47492283dea36d3329a"
61
61
  }