@workday/canvas-kit-docs 7.0.0 → 7.0.1

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.
@@ -712,12 +712,12 @@ export type BasicButtonProps = React.ButtonHTMLAttributes<HTMLButtonElement> & {
712
712
  export const BasicButton = ({children, ...elemProps}: BasicButtonProps) => {
713
713
  return (
714
714
  <BaseButton
715
- colors={getPaginationButtonColors(toggled)}
715
+ colors={getPaginationButtonColors()}
716
716
  {...elemProps}
717
717
  >
718
718
  <BaseButton.Label>{children}</BaseButton.Label>
719
719
  <BaseButton.Icon icon={plusIcon}>
720
- </StyledToggleButton>
720
+ </BaseButton>
721
721
  );
722
722
  };
723
723
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@workday/canvas-kit-docs",
3
- "version": "7.0.0",
3
+ "version": "7.0.1",
4
4
  "description": "Documentation components of Canvas Kit components",
5
5
  "author": "Workday, Inc. (https://www.workday.com)",
6
6
  "license": "Apache-2.0",
@@ -41,7 +41,7 @@
41
41
  ],
42
42
  "dependencies": {
43
43
  "@storybook/csf": "0.0.1",
44
- "@workday/canvas-kit-react": "^7.0.0"
44
+ "@workday/canvas-kit-react": "^7.0.1"
45
45
  },
46
46
  "devDependencies": {
47
47
  "fs-extra": "^10.0.0",
@@ -49,5 +49,5 @@
49
49
  "mkdirp": "^1.0.3",
50
50
  "typescript": "4.1"
51
51
  },
52
- "gitHead": "5f2a5c83ce927fa64ac24447f5391e467f51a406"
52
+ "gitHead": "568e656ef18c3e3bc8d321eb9d892480103cdce5"
53
53
  }