Skip to content

Commit

Permalink
Release v0.6.0 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvaldivia authored Jun 12, 2023
1 parent dd3fb38 commit f66cf71
Show file tree
Hide file tree
Showing 19 changed files with 1,114 additions and 921 deletions.
416 changes: 245 additions & 171 deletions dist/cjs/index.js

Large diffs are not rendered by default.

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

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export interface ApplicationLogoProps {
| "cloud"
| "releases"
| "vmbroker"
| "midas";
| "eureka";
subVariant?: "simple" | "AGPL" | "standard" | "enterprise";
inverse?: boolean;
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { FC, SVGProps } from "react";
import { LogoBaseProps } from "../LogoBase/LogoBase.types";
declare const Midas: FC<SVGProps<any> & LogoBaseProps>;
export default Midas;
declare const Eureka: FC<SVGProps<any> & LogoBaseProps>;
export default Eureka;
2 changes: 1 addition & 1 deletion dist/cjs/types/components/HelpBox/HelpBox.types.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React from "react";
export interface HelpBoxProps {
iconComponent: any;
iconComponent?: any;
title: string | React.ReactNode;
help: any;
}
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import React from "react";
export interface MainContainerProps {
menu?: React.ReactNode;
children: React.ReactNode;
menu?: React.ReactElement;
children: React.ReactElement;
horizontal?: boolean;
mobileModeAuto?: boolean;
}
export interface ParentBoxProps {
horizontal?: boolean;
mobileModeAuto: boolean;
}
4 changes: 3 additions & 1 deletion dist/cjs/types/components/Menu/Menu.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,10 @@ export interface MenuProps {
signOutAction?: () => void;
currentPath?: string;
middleComponent?: React.ReactNode;
mobileModeAuto?: boolean;
}
export interface MenuItemProps {
groupName: string;
group?: string;
path?: string;
name: string;
id?: string;
Expand All @@ -25,6 +26,7 @@ export interface MenuItemProps {
badge?: boolean;
currentPath?: string;
visibleTooltip?: boolean;
isVisible?: boolean;
}
export interface SectionHeaderProps extends HTMLAttributes<HTMLDivElement> {
label: string;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ReactNode } from "react";
import { ThemeDefinitionProps } from "../../global/global.types";
export interface ThemeHandlerProps {
darkMode?: boolean;
customTheme?: ThemeDefinitionProps;
children: ReactNode;
children: any;
}
Loading

0 comments on commit f66cf71

Please sign in to comment.