@workday/canvas-kit-docs 9.0.10 → 9.0.12

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.
@@ -76422,7 +76422,7 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
76422
76422
  "name": "T",
76423
76423
  "defaultValue": {
76424
76424
  "kind": "primitive",
76425
- "value": "unknown"
76425
+ "value": "any"
76426
76426
  },
76427
76427
  "required": false
76428
76428
  }
@@ -2,6 +2,7 @@ import {LoadingDots} from '@workday/canvas-kit-react/loading-dots';
2
2
 
3
3
  import Basic from './examples/Basic';
4
4
  import RTL from './examples/RTL';
5
+ import Accessible from './examples/Accessible';
5
6
 
6
7
 
7
8
  # Canvas Kit Loading Dots
@@ -27,6 +28,10 @@ yarn add @workday/canvas-kit-react
27
28
 
28
29
  <ExampleCodeBlock code={RTL} />
29
30
 
31
+ ### Accessible Example
32
+
33
+ <ExampleCodeBlock code={Accessible} />
34
+
30
35
  ## Props
31
36
 
32
37
  Loading Dots does not have any documented props. Undocumented props are spread to its outermost
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ import {LoadingDots} from '@workday/canvas-kit-react/loading-dots';
3
+
4
+ export default () => {
5
+ return <LoadingDots aria-live="polite" aria-label="Loading Users" />;
6
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-docs",
3
- "version": "9.0.10",
3
+ "version": "9.0.12",
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": "^9.0.10",
48
- "@workday/canvas-kit-preview-react": "^9.0.10",
49
- "@workday/canvas-kit-react": "^9.0.10",
47
+ "@workday/canvas-kit-labs-react": "^9.0.12",
48
+ "@workday/canvas-kit-preview-react": "^9.0.12",
49
+ "@workday/canvas-kit-react": "^9.0.12",
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": "8fa72860c376f39967e95014afe43664f55d1683"
60
+ "gitHead": "b00c1a1e84fe54d249e37c217b30af1402195c25"
61
61
  }