Skip to content

Commit

Permalink
feat: Fixed yarn lock file
Browse files Browse the repository at this point in the history
  • Loading branch information
josh-bagwell committed Sep 13, 2023
1 parent d979ca8 commit c0a077a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 5 additions & 1 deletion modules/labs-react/button/lib/DeleteButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,11 @@ export type DeleteButtonVariant = 'primary' | 'inverse';
* We omit `ref` since all of our buttons use `createComponent` and already give access to `ref`.
* Use this type to extend and customize any one off buttons that you want full control over styling.
*/
export interface DeleteButtonProps extends Omit<BaseButtonContainerProps, 'ref'> {}
export interface DeleteButtonProps
extends Omit<
BaseButtonContainerProps,
'ref' | 'icon' | 'iconPosition' | 'shouldMirrorIcon' | 'fillIcon'
> {}

const deleteStyles = cs({
[buttonVars.default.background]: cssVar(newTheme.colors.error.main),
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5040,6 +5040,11 @@
dependencies:
"@workday/design-assets-types" "0.2.8"

"@workday/[email protected]":
version "0.1.1"
resolved "https://registry.yarnpkg.com/@workday/canvas-tokens-web/-/canvas-tokens-web-0.1.1.tgz#284438b64054c9e8c1e365e43831516778c47fff"
integrity sha512-O0LyNhI5c+Slv2tr7CuhgqirdCocLHHLQH7seWs9MO0EZlIY7KyUbq1VnLvtTDv6S3FgqSKSNiVwSVNbPgmatg==

"@workday/[email protected]", "@workday/design-assets-types@^0.2.8":
version "0.2.8"
resolved "https://registry.yarnpkg.com/@workday/design-assets-types/-/design-assets-types-0.2.8.tgz#54026b4e6ea79861b12837a7deb83db9a16caad4"
Expand Down

0 comments on commit c0a077a

Please sign in to comment.