@workday/canvas-kit-docs 11.1.18 → 11.1.19
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 +6 -6
- package/dist/es6/lib/specs.js +30 -0
- package/package.json +6 -6
package/dist/es6/lib/docs.js
CHANGED
|
@@ -198922,12 +198922,6 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
|
|
|
198922
198922
|
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/select/lib/hooks/useSelectInput.ts",
|
|
198923
198923
|
"value": "useComboboxInput"
|
|
198924
198924
|
},
|
|
198925
|
-
{
|
|
198926
|
-
"kind": "symbol",
|
|
198927
|
-
"name": "useComboboxKeyboardTypeAhead",
|
|
198928
|
-
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/select/lib/hooks/useSelectInput.ts",
|
|
198929
|
-
"value": "useComboboxKeyboardTypeAhead"
|
|
198930
|
-
},
|
|
198931
198925
|
{
|
|
198932
198926
|
"kind": "symbol",
|
|
198933
198927
|
"name": "useComboboxResetCursorToSelected",
|
|
@@ -199298,6 +199292,12 @@ export const docs = (typeof window !== 'undefined' && window.__docs) ||
|
|
|
199298
199292
|
}
|
|
199299
199293
|
]
|
|
199300
199294
|
}
|
|
199295
|
+
},
|
|
199296
|
+
{
|
|
199297
|
+
"kind": "symbol",
|
|
199298
|
+
"name": "useComboboxKeyboardTypeAhead",
|
|
199299
|
+
"fileName": "/home/runner/work/canvas-kit/canvas-kit/modules/react/select/lib/hooks/useSelectInput.ts",
|
|
199300
|
+
"value": "useComboboxKeyboardTypeAhead"
|
|
199301
199301
|
}
|
|
199302
199302
|
]
|
|
199303
199303
|
}
|
package/dist/es6/lib/specs.js
CHANGED
|
@@ -4808,6 +4808,16 @@ module.exports = {specifications: [
|
|
|
4808
4808
|
"name": "should select phone and the selected value should be visible"
|
|
4809
4809
|
}
|
|
4810
4810
|
]
|
|
4811
|
+
},
|
|
4812
|
+
{
|
|
4813
|
+
"type": "describe",
|
|
4814
|
+
"name": "when spacebar is types and no value exists",
|
|
4815
|
+
"children": [
|
|
4816
|
+
{
|
|
4817
|
+
"type": "it",
|
|
4818
|
+
"name": "should select phone and the selected value should be visible"
|
|
4819
|
+
}
|
|
4820
|
+
]
|
|
4811
4821
|
}
|
|
4812
4822
|
]
|
|
4813
4823
|
},
|
|
@@ -4893,6 +4903,26 @@ module.exports = {specifications: [
|
|
|
4893
4903
|
}
|
|
4894
4904
|
]
|
|
4895
4905
|
},
|
|
4906
|
+
{
|
|
4907
|
+
"type": "describe",
|
|
4908
|
+
"name": "given the \"Ref Forwarding\" story is rendered",
|
|
4909
|
+
"children": [
|
|
4910
|
+
{
|
|
4911
|
+
"type": "it",
|
|
4912
|
+
"name": "should not have any axe errors"
|
|
4913
|
+
},
|
|
4914
|
+
{
|
|
4915
|
+
"type": "describe",
|
|
4916
|
+
"name": "the select input",
|
|
4917
|
+
"children": [
|
|
4918
|
+
{
|
|
4919
|
+
"type": "it",
|
|
4920
|
+
"name": "should receive focus via ref forwarding when the button is clicked"
|
|
4921
|
+
}
|
|
4922
|
+
]
|
|
4923
|
+
}
|
|
4924
|
+
]
|
|
4925
|
+
},
|
|
4896
4926
|
{
|
|
4897
4927
|
"type": "describe",
|
|
4898
4928
|
"name": "given the \"Complex\" story is rendered",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "11.1.
|
|
3
|
+
"version": "11.1.19",
|
|
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.1.
|
|
48
|
-
"@workday/canvas-kit-preview-react": "^11.1.
|
|
49
|
-
"@workday/canvas-kit-react": "^11.1.
|
|
50
|
-
"@workday/canvas-kit-styling": "^11.1.
|
|
47
|
+
"@workday/canvas-kit-labs-react": "^11.1.19",
|
|
48
|
+
"@workday/canvas-kit-preview-react": "^11.1.19",
|
|
49
|
+
"@workday/canvas-kit-react": "^11.1.19",
|
|
50
|
+
"@workday/canvas-kit-styling": "^11.1.19",
|
|
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": "a8c95915756e6d3b184433220f3a5c7112f168a0"
|
|
63
63
|
}
|