Skip to content

Commit

Permalink
Release v3.1.5
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <[email protected]>
  • Loading branch information
Benjamin Perez committed Nov 21, 2024
1 parent 8118c07 commit 9456d39
Show file tree
Hide file tree
Showing 11 changed files with 7,994 additions and 7,863 deletions.
15,805 changes: 7,949 additions & 7,856 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.

6 changes: 6 additions & 0 deletions dist/esm/src/components/ExpandMenu/ExpandMenu.styles.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,9 @@ export declare const expandMenuOptionStyles: (theme: Theme) => {
marginLeft: number;
};
};
export declare const dividerStyles: (
theme: Theme,
) => import("@emotion/react").SerializedStyles;
export declare const expandMenuDescriptionStyles: (
theme: Theme,
) => import("@emotion/react").SerializedStyles;
7 changes: 5 additions & 2 deletions dist/esm/src/components/ExpandMenu/ExpandMenu.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ export interface DropdownMainProps {
forInputOptions?: boolean;
sx?: OverrideTheme;
}
export interface ExpandMenuConstructProps {
parentChildren: ReactNode;
export interface ExpandMenuDescriptionProps {
icon?: ReactNode;
title?: string;
subTitle?: string;
extras?: ReactNode;
}
export type ExpandDropdownProps = DropdownMainProps & ExpandDropBaseProps;
4 changes: 4 additions & 0 deletions dist/esm/src/components/ExpandMenu/ExpandMenuDescription.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FC } from "react";
import { ExpandMenuDescriptionProps } from "./ExpandMenu.types";
declare const ExpandMenuDescription: FC<ExpandMenuDescriptionProps>;
export default ExpandMenuDescription;
3 changes: 3 additions & 0 deletions dist/esm/src/components/ExpandMenu/ExpandMenuDivider.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { FC } from "react";
declare const ExpandMenuDivider: FC;
export default ExpandMenuDivider;
5 changes: 5 additions & 0 deletions dist/esm/src/icons/WarpIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import { SVGProps } from "react";
declare const WarpIcon: (
props: SVGProps<SVGSVGElement>,
) => import("@emotion/react/jsx-runtime").JSX.Element;
export default WarpIcon;
1 change: 1 addition & 0 deletions dist/esm/src/icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1457,6 +1457,7 @@ export { default as WallpaperIcon } from "./WallpaperIcon";
export { default as WandIcon } from "./WandIcon";
export { default as WandSparklesIcon } from "./WandSparklesIcon";
export { default as WarehouseIcon } from "./WarehouseIcon";
export { default as WarpIcon } from "./WarpIcon";
export { default as WashingMachineIcon } from "./WashingMachineIcon";
export { default as WatchIcon } from "./WatchIcon";
export { default as WavesIcon } from "./WavesIcon";
Expand Down
2 changes: 2 additions & 0 deletions dist/esm/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ export { default as DateTimeInput } from "./components/DateTimeInput/DateTimeInp
export { default as DateTimeSelector } from "./components/DateTimeInput/DateTimeSelector";
export { default as DropdownSelector } from "./components/DropdownSelector";
export { default as ExpandMenu } from "./components/ExpandMenu";
export { default as ExpandMenuDescription } from "./components/ExpandMenu/ExpandMenuDescription";
export { default as ExpandMenuDivider } from "./components/ExpandMenu/ExpandMenuDivider";
export { default as ExpandMenuOption } from "./components/ExpandMenu/ExpandMenuOption";
export { default as ExpandOptionsButton } from "./components/ExpandOptionsButton";
export { default as FileSelector } from "./components/FileSelector";
Expand Down
20 changes: 17 additions & 3 deletions dist/mds.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6164,6 +6164,10 @@ declare const WarehouseIcon: (
props: SVGProps<SVGSVGElement>,
) => _emotion_react_jsx_runtime.JSX.Element;

declare const WarpIcon: (
props: SVGProps<SVGSVGElement>,
) => _emotion_react_jsx_runtime.JSX.Element;

declare const WashingMachineIcon: (
props: SVGProps<SVGSVGElement>,
) => _emotion_react_jsx_runtime.JSX.Element;
Expand Down Expand Up @@ -6879,15 +6883,22 @@ interface DropdownMainProps {
forInputOptions?: boolean;
sx?: OverrideTheme;
}
interface ExpandMenuConstructProps {
parentChildren: ReactNode;
interface ExpandMenuDescriptionProps {
icon?: ReactNode;
title?: string;
subTitle?: string;
extras?: ReactNode;
}
type ExpandDropdownProps = DropdownMainProps & ExpandDropBaseProps;

declare const ExpandMenu: FC<
ExpandMenuProps & React__default.ButtonHTMLAttributes<HTMLButtonElement>
>;

declare const ExpandMenuDescription: FC<ExpandMenuDescriptionProps>;

declare const ExpandMenuDivider: FC;

declare const ExpandMenuOption: FC<
ExpandMenuOptionProps & React__default.ButtonHTMLAttributes<HTMLButtonElement>
>;
Expand Down Expand Up @@ -8608,7 +8619,9 @@ export {
type ExpandDropdownProps,
ExpandIcon,
ExpandMenu,
type ExpandMenuConstructProps,
ExpandMenuDescription,
type ExpandMenuDescriptionProps,
ExpandMenuDivider,
ExpandMenuOption,
type ExpandMenuOptionProps,
type ExpandMenuProps,
Expand Down Expand Up @@ -9684,6 +9697,7 @@ export {
WandIcon,
WandSparklesIcon,
WarehouseIcon,
WarpIcon,
WashingMachineIcon,
WatchIcon,
WavesIcon,
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.4",
"version": "3.1.5",
"description": "A MinIO Components Library",
"homepage": ".",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit 9456d39

Please sign in to comment.