Skip to content

Commit

Permalink
Release v3.1.6 (#1111)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Valdivia <[email protected]>
  • Loading branch information
dvaldivia authored Nov 22, 2024
1 parent 496d732 commit a261062
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# dependencies
node_modules/
.yarn/

# misc
.DS_Store
Expand Down
20 changes: 13 additions & 7 deletions dist/esm/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -76011,11 +76011,17 @@ const w6 = ({
"banner" === h
? St(C, {
children: [
Vt("div", {
className: "content",
children: t,
}),
n && Vt("div", { children: n }),
t &&
Vt("div", {
className: "content",
children: t,
}),
Vt(gT, { sx: { flexGrow: 1 } }),
n &&
Vt("div", {
className: "notifAction actionBannerMode",
children: n,
}),
],
})
: Vt("div", { className: "cardTitle", children: e }),
Expand All @@ -76025,10 +76031,10 @@ const w6 = ({
St("div", {
className: "cardContent",
children: [
Vt("div", { className: "content", children: t }),
t && Vt("div", { className: "content", children: t }),
n &&
Vt("div", {
className: "actionCardMode",
className: "notifAction actionCardMode",
children: n,
}),
],
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export type NotificationVariant =
| "danger";
export interface NotificationAlertBase {
title?: string;
children: ReactNode;
children?: ReactNode;
action?: ReactNode;
isLoading?: boolean;
onClose?: () => void;
Expand Down
2 changes: 1 addition & 1 deletion dist/mds.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6282,7 +6282,7 @@ type NotificationVariant =
| "danger";
interface NotificationAlertBase {
title?: string;
children: ReactNode;
children?: ReactNode;
action?: ReactNode;
isLoading?: boolean;
onClose?: () => void;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mds",
"version": "3.1.5",
"version": "3.1.6",
"description": "A MinIO Components Library",
"homepage": ".",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit a261062

Please sign in to comment.