Skip to content

Commit

Permalink
MAT-7653: Update dependency for failures
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmcphillips committed Sep 23, 2024
1 parent f7b9c63 commit 22140c6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
22 changes: 9 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@
"@tanstack/match-sorter-utils": "^8.8.4",
"@tanstack/react-table": "^8.10.3",
"axios": "^1.7.4",
"babel-plugin-dynamic-import-node": "^2.3.3",
"classnames": "^2.3.1",
"file-saver": "^2.0.5",
"formik": "^2.2.9",
Expand Down
6 changes: 3 additions & 3 deletions src/types/madie-components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,23 +13,23 @@ declare module "@madie/madie-components" {
readonly lg: "lg";
readonly xl: "xl";
};
export type ButtonSize = typeof ButtonSizeDefs[keyof typeof ButtonSizeDefs];
export type ButtonSize = (typeof ButtonSizeDefs)[keyof typeof ButtonSizeDefs];

export const ButtonVariantDefs: {
readonly primary: "primary";
readonly secondary: "secondary";
readonly white: "white";
};
export type ButtonVariant =
typeof ButtonVariantDefs[keyof typeof ButtonVariantDefs];
(typeof ButtonVariantDefs)[keyof typeof ButtonVariantDefs];

export const ButtonShapeDefs: {
readonly normal: "normal";
readonly round: "round";
readonly circular: "circular";
};
export type ButtonShape =
typeof ButtonShapeDefs[keyof typeof ButtonShapeDefs];
(typeof ButtonShapeDefs)[keyof typeof ButtonShapeDefs];

export type IconType = (props: React.ComponentProps<"svg">) => JSX.Element;

Expand Down

0 comments on commit 22140c6

Please sign in to comment.