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 v2.3.8 #895

Merged
merged 1 commit into from
Jul 31, 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
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
Loading