Skip to content

Commit

Permalink
Release v0.11.0 (#559)
Browse files Browse the repository at this point in the history
Signed-off-by: Benjamin Perez <[email protected]>
  • Loading branch information
bexsoft committed Oct 30, 2023
1 parent 7c6eb4d commit f8f53f2
Show file tree
Hide file tree
Showing 33 changed files with 918 additions and 373 deletions.
789 changes: 487 additions & 302 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 @@ -8,7 +8,10 @@ export interface DropdownSelectorProps {
hideTriggerAction: () => void;
open: boolean;
anchorEl?: (EventTarget & HTMLElement) | null;
anchorOrigin?: "start" | "end";
useAnchorWidth?: boolean;
}
export interface DropDownBlockProps {
useAnchorWidth: boolean;
sx: CSSObject;
}
2 changes: 2 additions & 0 deletions dist/cjs/types/components/ProgressBar/ProgressBar.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,7 @@ export interface MainProgressProps {
export interface CommonProgressBar {
sx?: CSSObject;
color?: "blue" | "red" | "green" | "orange" | "grey";
barHeight?: number;
transparentBG?: boolean;
}
export type ProgressBarProps = MainProgressProps & CommonProgressBar;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Table/Table.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const Table: FC<
TableComponentsExtraProps & React.TableHTMLAttributes<HTMLTableElement>
>;
export default Table;
4 changes: 4 additions & 0 deletions dist/cjs/types/components/Table/Table.types.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
import { CSSProperties } from "styled-components";
export interface TableComponentsExtraProps {
sx?: CSSProperties;
}
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Table/TableBody.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const TableBody: FC<
TableComponentsExtraProps & React.TableHTMLAttributes<HTMLTableSectionElement>
>;
export default TableBody;
7 changes: 7 additions & 0 deletions dist/cjs/types/components/Table/TableCell.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const TableCell: FC<
TableComponentsExtraProps &
React.TableHTMLAttributes<HTMLTableDataCellElement>
>;
export default TableCell;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Table/TableHead.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const TableHead: FC<
TableComponentsExtraProps & React.TableHTMLAttributes<HTMLTableSectionElement>
>;
export default TableHead;
7 changes: 7 additions & 0 deletions dist/cjs/types/components/Table/TableHeadCell.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const TableHeadCell: FC<
TableComponentsExtraProps &
React.TableHTMLAttributes<HTMLTableHeaderCellElement>
>;
export default TableHeadCell;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Table/TableRow.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import React, { FC } from "react";
import { TableComponentsExtraProps } from "./Table.types";
declare const TableRow: FC<
TableComponentsExtraProps & React.TableHTMLAttributes<HTMLTableRowElement>
>;
export default TableRow;
6 changes: 6 additions & 0 deletions dist/cjs/types/components/Table/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
export { default as Table } from "./Table";
export { default as TableBody } from "./TableBody";
export { default as TableCell } from "./TableCell";
export { default as TableHead } from "./TableHead";
export { default as TableHeadCell } from "./TableHeadCell";
export { default as TableRow } from "./TableRow";
4 changes: 4 additions & 0 deletions dist/cjs/types/components/Tabs/Tabs.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ export interface TabsProps {
useRouteTabs?: boolean;
routes?: React.ReactElement | null;
onTabClick: (selectedItem: string) => void;
optionsInitialComponent?: React.ReactNode;
optionsEndComponent?: React.ReactNode;
horizontalBarBackground?: boolean;
sx?: CSSObject;
}
export interface TabsContainerProps {
horizontal: boolean;
horizontalBarBackground: boolean;
sx?: CSSObject;
}
export interface TabButtonProps {
Expand Down
1 change: 1 addition & 0 deletions dist/cjs/types/components/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ export { default as InformativeMessage } from "./InformativeMessage/InformativeM
export * from "./Icons";
export * from "./Icons/SidebarMenus";
export * from "./Icons/FileIcons";
export * from "./Table";
export { SelectorType } from "../global/global.types";
export * from "./ActionsList/ActionsList.types";
export * from "./ApplicationLogo/ApplicationLogo.types";
Expand Down
1 change: 1 addition & 0 deletions dist/cjs/types/global/global.types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,7 @@ export interface ThemeDefinitionProps {
linkColor?: string;
boxBackground: string;
mutedText: string;
secondaryText: string;
signalColors?: SignalColorsThemeProps;
buttons?: {
regular?: ButtonThemeStatesProps;
Expand Down
Loading

0 comments on commit f8f53f2

Please sign in to comment.