@workday/canvas-kit-docs 6.4.0-next.2 → 6.4.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/mdx/preview-react/side-panel/examples/AlwaysOpen.tsx +1 -1
- package/dist/mdx/preview-react/side-panel/examples/Basic.tsx +1 -1
- package/dist/mdx/preview-react/side-panel/examples/ExternalControl.tsx +1 -1
- package/dist/mdx/preview-react/side-panel/examples/RightOrigin.tsx +1 -1
- package/dist/mdx/preview-react/side-panel/examples/Variant.tsx +1 -1
- package/dist/mdx/react/switch/examples/Error.tsx +1 -1
- package/package.json +3 -3
|
@@ -19,7 +19,7 @@ export default () => {
|
|
|
19
19
|
return (
|
|
20
20
|
<Flex height={320}>
|
|
21
21
|
<SidePanel {...panelProps}>
|
|
22
|
-
<Flex alignItems="center" paddingY="s" paddingX="
|
|
22
|
+
<Flex alignItems="center" paddingY="s" paddingX="s">
|
|
23
23
|
<AccentIcon css={iconStyles} icon={rocketIcon} />
|
|
24
24
|
<h3
|
|
25
25
|
css={{
|
|
@@ -28,7 +28,7 @@ export default () => {
|
|
|
28
28
|
<SidePanel {...panelProps} onStateTransition={setPanelState}>
|
|
29
29
|
<SidePanel.ToggleButton {...controlProps} />
|
|
30
30
|
{panelState === 'expanded' && (
|
|
31
|
-
<Flex alignItems="center" paddingY="s" paddingX="
|
|
31
|
+
<Flex alignItems="center" paddingY="s" paddingX="s">
|
|
32
32
|
<Flex marginInlineEnd="s">
|
|
33
33
|
<AccentIcon icon={rocketIcon} />
|
|
34
34
|
</Flex>
|
|
@@ -30,7 +30,7 @@ const RightPanel = () => {
|
|
|
30
30
|
<SidePanel {...panelProps} onStateTransition={setPanelState} origin="right" css={panelStyles}>
|
|
31
31
|
<SidePanel.ToggleButton {...controlProps} />
|
|
32
32
|
{panelState === 'expanded' && (
|
|
33
|
-
<Flex alignItems="center" justifyContent="flex-end" paddingY="s" paddingX="
|
|
33
|
+
<Flex alignItems="center" justifyContent="flex-end" paddingY="s" paddingX="s">
|
|
34
34
|
<h3
|
|
35
35
|
css={{
|
|
36
36
|
...type.levels.body.large,
|
|
@@ -26,7 +26,7 @@ export default () => {
|
|
|
26
26
|
<SidePanel {...panelProps} onStateTransition={setPanelState} variant="alternate">
|
|
27
27
|
<SidePanel.ToggleButton {...controlProps} />
|
|
28
28
|
{panelState === 'expanded' && (
|
|
29
|
-
<Flex alignItems="center" paddingY="s" paddingX="
|
|
29
|
+
<Flex alignItems="center" paddingY="s" paddingX="s">
|
|
30
30
|
<h3
|
|
31
31
|
css={{
|
|
32
32
|
...type.levels.body.large,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@workday/canvas-kit-docs",
|
|
3
|
-
"version": "6.4.
|
|
3
|
+
"version": "6.4.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",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
],
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"@storybook/csf": "0.0.1",
|
|
53
|
-
"@workday/canvas-kit-react": "^6.4.
|
|
53
|
+
"@workday/canvas-kit-react": "^6.4.3"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"fs-extra": "^10.0.0",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"mkdirp": "^1.0.3",
|
|
59
59
|
"typescript": "^3.8.3"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "5050446dff8ead91655998bc4bb8bfc2fbb3a2d9"
|
|
62
62
|
}
|