@workday/canvas-kit-docs 11.2.2 → 11.2.3
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 +63 -3
- package/package.json +6 -6
package/dist/es6/lib/docs.js
CHANGED
|
@@ -122537,12 +122537,53 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
|
|
|
122537
122537
|
}
|
|
122538
122538
|
},
|
|
122539
122539
|
{
|
|
122540
|
-
"name": "
|
|
122540
|
+
"name": "isMouseFocusable",
|
|
122541
122541
|
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts",
|
|
122542
|
-
"description": "Is an element focusable? This function performs various tests to see if the element in question\ncan receive focus. Should skip disabled elements as they are not focusable.",
|
|
122542
|
+
"description": "Is an element focusable? This function performs various tests to see if the element in question\ncan receive focus via a pointer. Should skip disabled elements as they are not focusable.",
|
|
122543
122543
|
"declarations": [
|
|
122544
122544
|
{
|
|
122545
|
-
"name": "
|
|
122545
|
+
"name": "isMouseFocusable",
|
|
122546
|
+
"filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts"
|
|
122547
|
+
}
|
|
122548
|
+
],
|
|
122549
|
+
"tags": {},
|
|
122550
|
+
"type": {
|
|
122551
|
+
"kind": "function",
|
|
122552
|
+
"parameters": [
|
|
122553
|
+
{
|
|
122554
|
+
"kind": "parameter",
|
|
122555
|
+
"name": "element",
|
|
122556
|
+
"type": {
|
|
122557
|
+
"kind": "external",
|
|
122558
|
+
"name": "Element",
|
|
122559
|
+
"url": "https://developer.mozilla.org/en-US/docs/Web/API/element"
|
|
122560
|
+
},
|
|
122561
|
+
"required": true,
|
|
122562
|
+
"rest": false,
|
|
122563
|
+
"description": "",
|
|
122564
|
+
"declarations": [
|
|
122565
|
+
{
|
|
122566
|
+
"name": "element",
|
|
122567
|
+
"filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts"
|
|
122568
|
+
}
|
|
122569
|
+
],
|
|
122570
|
+
"tags": {}
|
|
122571
|
+
}
|
|
122572
|
+
],
|
|
122573
|
+
"members": [],
|
|
122574
|
+
"returnType": {
|
|
122575
|
+
"kind": "primitive",
|
|
122576
|
+
"value": "boolean"
|
|
122577
|
+
}
|
|
122578
|
+
}
|
|
122579
|
+
},
|
|
122580
|
+
{
|
|
122581
|
+
"name": "isKeyboardFocusable",
|
|
122582
|
+
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts",
|
|
122583
|
+
"description": "Is an element focusable? This function performs various tests to see if the element in question\ncan receive focus via the keyboard. Should skip disabled elements as they are not focusable.",
|
|
122584
|
+
"declarations": [
|
|
122585
|
+
{
|
|
122586
|
+
"name": "isKeyboardFocusable",
|
|
122546
122587
|
"filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts"
|
|
122547
122588
|
}
|
|
122548
122589
|
],
|
|
@@ -122577,6 +122618,25 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
|
|
|
122577
122618
|
}
|
|
122578
122619
|
}
|
|
122579
122620
|
},
|
|
122621
|
+
{
|
|
122622
|
+
"name": "isFocusable",
|
|
122623
|
+
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts",
|
|
122624
|
+
"description": "",
|
|
122625
|
+
"declarations": [
|
|
122626
|
+
{
|
|
122627
|
+
"name": "isFocusable",
|
|
122628
|
+
"filePath": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts"
|
|
122629
|
+
}
|
|
122630
|
+
],
|
|
122631
|
+
"tags": {
|
|
122632
|
+
"deprecated": "Use `isMouseFocusable` for mouse events and `isKeyboardFocusable` for keyboard\nevents. `isFocusable` is an alias to `isKeyboardFocusable`"
|
|
122633
|
+
},
|
|
122634
|
+
"type": {
|
|
122635
|
+
"kind": "symbol",
|
|
122636
|
+
"name": "isKeyboardFocusable",
|
|
122637
|
+
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts"
|
|
122638
|
+
}
|
|
122639
|
+
},
|
|
122580
122640
|
{
|
|
122581
122641
|
"name": "getFirstFocusableElement",
|
|
122582
122642
|
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/common/lib/utils/elements.ts",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "11.2.
|
|
3
|
+
"version": "11.2.3",
|
|
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.2.
|
|
48
|
-
"@workday/canvas-kit-preview-react": "^11.2.
|
|
49
|
-
"@workday/canvas-kit-react": "^11.2.
|
|
50
|
-
"@workday/canvas-kit-styling": "^11.2.
|
|
47
|
+
"@workday/canvas-kit-labs-react": "^11.2.3",
|
|
48
|
+
"@workday/canvas-kit-preview-react": "^11.2.3",
|
|
49
|
+
"@workday/canvas-kit-react": "^11.2.3",
|
|
50
|
+
"@workday/canvas-kit-styling": "^11.2.3",
|
|
51
51
|
"@workday/canvas-system-icons-web": "^3.0.0",
|
|
52
52
|
"@workday/canvas-tokens-web": "^2.0.0",
|
|
53
53
|
"markdown-to-jsx": "^7.2.0",
|
|
@@ -59,5 +59,5 @@
|
|
|
59
59
|
"mkdirp": "^1.0.3",
|
|
60
60
|
"typescript": "4.2"
|
|
61
61
|
},
|
|
62
|
-
"gitHead": "
|
|
62
|
+
"gitHead": "1ab83a11d31a48c599be15f3f9248cb282cc1255"
|
|
63
63
|
}
|