Skip to content

Commit

Permalink
Release v2.3.8 (#895)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <[email protected]>
  • Loading branch information
bexsoft authored Jul 31, 2024
1 parent de63a2a commit 8138be7
Show file tree
Hide file tree
Showing 6 changed files with 7,189 additions and 6,994 deletions.
14,118 changes: 7,126 additions & 6,992 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.

28 changes: 28 additions & 0 deletions dist/esm/types/src/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,31 @@ export interface CheckBoxThemeProps {
disabledBackground: string;
disabledColor: string;
}
export interface RadioThemeProps {
radioBorder: string;
radioBackground: string;
radioHoverBorder: string;
radioActiveBorder: string;
radioActiveBackground: string;
radioActiveCheck: string;
radioHoverBackground: string;
radioHoverActiveBorder: string;
radioHoverActiveBackground: string;
radioHoverActiveCheck: string;
radioFocusBorder: string;
radioFocusBackground: string;
radioFocusCheck: string;
radioFocusActiveBorder: string;
radioFocusActiveBackground: string;
radioFocusActiveCheck: string;
radioFocusShadow: string;
radioDisabledBorder: string;
radioDisabledBackground: string;
radioDisabledCheck: string;
labelColor: string;
subLabelColor: string;
descriptionColor: string;
}
export interface IconButtonThemeProps {
buttonBG: string;
activeBG: string;
Expand Down Expand Up @@ -419,6 +444,7 @@ export interface ThemeDefinitionProps {
tooltip?: TooltipThemeProps;
commonInput?: CommonInputThemeProps;
checkbox?: CheckBoxThemeProps;
radioGroup?: RadioThemeProps;
iconButton?: IconButtonThemeProps;
dataTable?: DataTableThemeProps;
backLink?: BackLinkThemeProps;
Expand Down Expand Up @@ -453,6 +479,8 @@ export interface SelectOption {
indicator?: React.ReactNode;
extraValue?: any;
disabled?: boolean;
subLabel?: string;
description?: string;
}
export interface IBytesCalc {
total: number;
Expand Down
2 changes: 2 additions & 0 deletions dist/esm/types/src/global/themeColors.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ export declare const themeShadows: {
"boxShadow-02": string;
"boxShadow-03": string;
"boxShadow-04": string;
"focusStyle-Light": string;
"focusStyle-Dark": string;
};
31 changes: 31 additions & 0 deletions dist/mds.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,31 @@ interface CheckBoxThemeProps {
disabledBackground: string;
disabledColor: string;
}
interface RadioThemeProps {
radioBorder: string;
radioBackground: string;
radioHoverBorder: string;
radioActiveBorder: string;
radioActiveBackground: string;
radioActiveCheck: string;
radioHoverBackground: string;
radioHoverActiveBorder: string;
radioHoverActiveBackground: string;
radioHoverActiveCheck: string;
radioFocusBorder: string;
radioFocusBackground: string;
radioFocusCheck: string;
radioFocusActiveBorder: string;
radioFocusActiveBackground: string;
radioFocusActiveCheck: string;
radioFocusShadow: string;
radioDisabledBorder: string;
radioDisabledBackground: string;
radioDisabledCheck: string;
labelColor: string;
subLabelColor: string;
descriptionColor: string;
}
interface IconButtonThemeProps {
buttonBG: string;
activeBG: string;
Expand Down Expand Up @@ -430,6 +455,7 @@ interface ThemeDefinitionProps {
tooltip?: TooltipThemeProps;
commonInput?: CommonInputThemeProps;
checkbox?: CheckBoxThemeProps;
radioGroup?: RadioThemeProps;
iconButton?: IconButtonThemeProps;
dataTable?: DataTableThemeProps;
backLink?: BackLinkThemeProps;
Expand Down Expand Up @@ -464,6 +490,8 @@ interface SelectOption {
indicator?: React__default.ReactNode;
extraValue?: any;
disabled?: boolean;
subLabel?: string;
description?: string;
}
interface IBytesCalc {
total: number;
Expand Down Expand Up @@ -7681,6 +7709,8 @@ declare const themeShadows: {
"boxShadow-02": string;
"boxShadow-03": string;
"boxShadow-04": string;
"focusStyle-Light": string;
"focusStyle-Dark": string;
};

export {
Expand Down Expand Up @@ -8910,6 +8940,7 @@ export {
type RadioGroupProps,
RadioIcon,
RadioReceiverIcon,
type RadioThemeProps,
RadioTowerIcon,
RadiusIcon,
RailSymbolIcon,
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": "2.3.7",
"version": "2.3.8",
"description": "A MinIO Components Library",
"homepage": ".",
"license": "AGPL-3.0-or-later",
Expand Down

0 comments on commit 8138be7

Please sign in to comment.