Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v3.1.9 #1138

Merged
merged 1 commit into from
Dec 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15,897 changes: 7,953 additions & 7,944 deletions dist/esm/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/index.js.map

Large diffs are not rendered by default.

77 changes: 66 additions & 11 deletions dist/esm/src/components/Loader/Loader.styles.d.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,70 @@
import { Theme } from "@emotion/react";
export declare const animation1: import("@emotion/react").Keyframes;
export declare const animation2: import("@emotion/react").Keyframes;
export declare const animation3: import("@emotion/react").Keyframes;
export declare const animation4: import("@emotion/react").Keyframes;
export declare const animation5: import("@emotion/react").Keyframes;
export declare const animation6: import("@emotion/react").Keyframes;
export declare const animation7: import("@emotion/react").Keyframes;
export declare const animation8: import("@emotion/react").Keyframes;
export declare const animation9: import("@emotion/react").Keyframes;
export declare const animation10: import("@emotion/react").Keyframes;
export declare const animation11: import("@emotion/react").Keyframes;
export declare const animation1: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation2: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation3: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation4: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation5: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation6: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation7: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation8: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation9: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation10: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animation11: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const animationFrameStyles: (theme: Theme) => {
width: number;
height: number;
Expand Down
1 change: 1 addition & 0 deletions dist/esm/src/components/ModalBox/ModalBox.styles.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { CssProperties } from "../../../styled-system/types";
export declare const modalContainer: (
theme: Theme,
width: CssProperties["width"],
padding: CssProperties["padding"],
) => import("@emotion/react").SerializedStyles;
export declare const modalTitleBar: (
theme: Theme,
Expand Down
3 changes: 2 additions & 1 deletion dist/esm/src/components/ModalBox/ModalBox.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import React from "react";
import React, { CSSProperties } from "react";
import { OverrideTheme } from "../../global/global.types";
export interface ModalBoxProps {
onClose: () => void;
Expand All @@ -9,5 +9,6 @@ export interface ModalBoxProps {
titleIcon?: React.ReactNode;
backgroundOverlay?: boolean;
customMaxWidth?: number | string;
customContentPadding?: CSSProperties["padding"];
sx?: OverrideTheme;
}
7 changes: 6 additions & 1 deletion dist/esm/src/components/Tooltip/Tooltip.styles.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
import { Theme } from "@emotion/react";
import { TooltipPlacement } from "./Tooltip.types";
export declare const opacityAnimation: import("@emotion/react").Keyframes;
export declare const opacityAnimation: {
name: string;
styles: string;
anim: 1;
toString: () => string;
} & string;
export declare const mainTooltipStyle: (
theme: Theme,
) => import("@emotion/react").SerializedStyles;
Expand Down
1 change: 1 addition & 0 deletions dist/mds.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7140,6 +7140,7 @@ interface ModalBoxProps {
titleIcon?: React__default.ReactNode;
backgroundOverlay?: boolean;
customMaxWidth?: number | string;
customContentPadding?: CSSProperties["padding"];
sx?: OverrideTheme;
}

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.8",
"version": "3.1.9",
"description": "A MinIO Components Library",
"homepage": ".",
"license": "AGPL-3.0-or-later",
Expand Down
Loading