Skip to content

Commit

Permalink
Release v3.1.1 (#1074)
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Valdivia <[email protected]>
  • Loading branch information
dvaldivia authored Oct 30, 2024
1 parent 6fd15e9 commit 1a8eb0f
Show file tree
Hide file tree
Showing 11 changed files with 1,354 additions and 1,294 deletions.
2,602 changes: 1,313 additions & 1,289 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.

3 changes: 0 additions & 3 deletions dist/esm/src/components/ModalBox/ModalBox.styles.d.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
import { Theme } from "@emotion/react";
import { CssProperties } from "../../../styled-system/types";
export declare const modalOverlay: (
theme: Theme,
) => import("@emotion/react").SerializedStyles;
export declare const modalContainer: (
theme: Theme,
width: CssProperties["width"],
Expand Down
4 changes: 4 additions & 0 deletions dist/esm/src/components/Overlay/Overlay.styles.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { Theme } from "@emotion/react";
export declare const modalOverlay: (
theme: Theme,
) => import("@emotion/react").SerializedStyles;
9 changes: 9 additions & 0 deletions dist/esm/src/components/Overlay/Overlay.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import React from "react";
import { OverrideTheme } from "../../global/global.types";
export interface OverlayProps {
onClose: () => void;
open: boolean;
children: React.ReactNode;
backgroundOverlay?: boolean;
sx?: OverrideTheme;
}
4 changes: 4 additions & 0 deletions dist/esm/src/components/Overlay/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FC } from "react";
import { OverlayProps } from "./Overlay.types";
declare const Overlay: FC<OverlayProps>;
export default Overlay;
2 changes: 2 additions & 0 deletions dist/esm/src/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ export interface ShadowsThemeProps {
"focusStyle-Light": string;
"focusStyle-Dark": string;
"contentShadow-Light": string;
toggleShadow: string;
"toggleShadow-Disabled": string;
}
export interface ColorThemeProps {
"Color/Base/Royal/0": string;
Expand Down
2 changes: 2 additions & 0 deletions dist/esm/src/global/themeColors.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -458,4 +458,6 @@ export declare const themeShadows: {
"focusStyle-Light": string;
"focusStyle-Dark": string;
"contentShadow-Light": string;
toggleShadow: string;
"toggleShadow-Disabled": string;
};
2 changes: 2 additions & 0 deletions dist/esm/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ export { default as Loader } from "./components/Loader";
export { default as LoginWrapper } from "./components/LoginWrapper";
export { default as MDSCacheProvider } from "./components/MDSCacheProvider";
export { default as ModalBox } from "./components/ModalBox";
export { default as Overlay } from "./components/Overlay";
export { default as NotificationAlert } from "./components/NotificationAlert";
export { default as NotificationCount } from "./components/NotificationCount";
export { default as Notifications } from "./components/Notifications";
Expand Down Expand Up @@ -100,6 +101,7 @@ export * from "./components/InputLabel/InputLabel.types";
export * from "./components/Link/Link.types";
export * from "./components/LinkButton/LinkButton.types";
export * from "./components/ModalBox/ModalBox.types";
export * from "./components/Overlay/Overlay.types";
export * from "./components/NotificationAlert/NotificationAlert.types";
export * from "./components/Notifications/Notifications.types";
export * from "./components/PageHeader/PageHeader.types";
Expand Down
16 changes: 16 additions & 0 deletions dist/mds.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ interface ShadowsThemeProps {
"focusStyle-Light": string;
"focusStyle-Dark": string;
"contentShadow-Light": string;
toggleShadow: string;
"toggleShadow-Disabled": string;
}
interface ColorThemeProps {
"Color/Base/Royal/0": string;
Expand Down Expand Up @@ -7120,6 +7122,16 @@ interface ModalBoxProps {

declare const ModalBox: FC<ModalBoxProps>;

interface OverlayProps {
onClose: () => void;
open: boolean;
children: React__default.ReactNode;
backgroundOverlay?: boolean;
sx?: OverrideTheme;
}

declare const Overlay: FC<OverlayProps>;

declare const Index: FC<NotificationAlertPrp & HTMLAttributes<HTMLDivElement>>;

type NotificationBadgeTypes =
Expand Down Expand Up @@ -8006,6 +8018,8 @@ declare const themeShadows: {
"focusStyle-Light": string;
"focusStyle-Dark": string;
"contentShadow-Light": string;
toggleShadow: string;
"toggleShadow-Disabled": string;
};

declare const lightTheme: ThemeDefinition;
Expand Down Expand Up @@ -9101,6 +9115,8 @@ export {
OidcIcon,
OptionIcon,
OrbitIcon,
Overlay,
type OverlayProps,
type OverrideTheme,
Package2Icon,
PackageCheckIcon,
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.0",
"version": "3.1.1",
"description": "A MinIO Components Library",
"homepage": ".",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit 1a8eb0f

Please sign in to comment.