Skip to content

Commit

Permalink
Release v0.3.0 (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
bexsoft authored Mar 8, 2023
1 parent 89cfb4b commit 272a896
Show file tree
Hide file tree
Showing 31 changed files with 5,514 additions and 4,823 deletions.
4,830 changes: 2,547 additions & 2,283 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.

1 change: 0 additions & 1 deletion dist/cjs/types/components/Checkbox/Checkbox.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ export interface CheckboxProps extends HTMLAttributes<HTMLInputElement> {
tooltip?: string;
overrideLabelClasses?: string;
overrideCheckboxStyles?: CSSObject;
noTopMargin?: boolean;
}
4 changes: 2 additions & 2 deletions dist/cjs/types/components/FormLayout/FormLayout.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CSSObject } from "styled-components";
export interface FormLayoutProps {
sx?: CSSObject;
children?: React.ReactNode;
title: string;
icon: React.ReactNode;
title?: string;
icon?: React.ReactNode;
helpBox?: React.ReactNode;
}
3 changes: 3 additions & 0 deletions dist/cjs/types/components/Icons/ReportIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { SVGProps } from "react";
declare const ReportIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
export default ReportIcon;
3 changes: 3 additions & 0 deletions dist/cjs/types/components/Icons/VisibilityOffIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { SVGProps } from "react";
declare const ViewColumnIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
export default ViewColumnIcon;
3 changes: 3 additions & 0 deletions dist/cjs/types/components/Icons/VisibilityOnIcon.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { SVGProps } from "react";
declare const ViewColumnIcon: (props: SVGProps<SVGSVGElement>) => JSX.Element;
export default ViewColumnIcon;
3 changes: 3 additions & 0 deletions dist/cjs/types/components/Icons/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,3 +183,6 @@ export { default as ArrowDropDown } from "./ArrowDropDown";
export { default as CloudIcon } from "./CloudIcon";
export { default as DisableIcon } from "./DisableIcon";
export { default as FormatDriveIcon } from "./FormatDriveIcon";
export { default as ReportIcon } from "./ReportIcon";
export { default as VisibilityOnIcon } from "./VisibilityOnIcon";
export { default as VisibilityOffIcon } from "./VisibilityOffIcon";
4 changes: 4 additions & 0 deletions dist/cjs/types/components/InputBox/InputBox.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FC } from "react";
import { InputBoxProps } from "./InputBox.types";
declare const InputBox: FC<InputBoxProps>;
export default InputBox;
25 changes: 25 additions & 0 deletions dist/cjs/types/components/InputBox/InputBox.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import React, { ReactNode } from "react";
import { CSSObject } from "styled-components";
export interface InputBoxProps
extends React.InputHTMLAttributes<HTMLInputElement> {
id: string;
fullWidth?: boolean;
label?: string;
tooltip?: string;
sx?: CSSObject;
index?: number;
overlayId?: "index";
overlayIcon?: React.ReactNode;
overlayAction?: () => void;
overlayObject?: React.ReactNode;
noLabelMinWidth?: boolean;
required?: boolean;
className?: string;
error?: string;
}
export interface InputContainerProps {
children?: ReactNode;
sx?: CSSObject;
error?: boolean;
className?: string;
}
4 changes: 4 additions & 0 deletions dist/cjs/types/components/MainContainer/MainContainer.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { FC } from "react";
import { MainContainerProps } from "./MainContainer.types";
declare const MainContainer: FC<MainContainerProps>;
export default MainContainer;
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import React from "react";
export interface MainContainerProps {
menu?: React.ReactNode;
children: React.ReactNode;
}
2 changes: 2 additions & 0 deletions dist/cjs/types/components/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ export { default as SectionTitle } from "./SectionTitle/SectionTitle";
export { default as Box } from "./Box/Box";
export { default as FormLayout } from "./FormLayout/FormLayout";
export { default as PageLayout } from "./PageLayout/PageLayout";
export { default as MainContainer } from "./MainContainer/MainContainer";
export { default as InputBox } from "./InputBox/InputBox";
export * from "./Icons";
export * from "./Icons/SidebarMenus";
export * from "./Icons/FileIcons";
14 changes: 14 additions & 0 deletions dist/cjs/types/global/themes.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,13 @@ export declare const lightTheme: {
arrow: string;
hover: string;
};
inputBox: {
border: string;
hoverBorder: string;
color: string;
backgroundColor: string;
error: string;
};
};
export declare const darkTheme: {
bgColor: string;
Expand Down Expand Up @@ -405,4 +412,11 @@ export declare const darkTheme: {
arrow: string;
hover: string;
};
inputBox: {
border: string;
hoverBorder: string;
color: string;
backgroundColor: string;
error: string;
};
};
Loading

0 comments on commit 272a896

Please sign in to comment.