-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Benjamin Perez <[email protected]>
- Loading branch information
Showing
40 changed files
with
9,245 additions
and
7,522 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from "react"; | ||
import { ColumnSelectorProps } from "./DataTable.types"; | ||
declare const ColumnsSelector: FC<ColumnSelectorProps>; | ||
export default ColumnsSelector; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
dist/cjs/types/components/ExpandOptionsButton/ExpandOptionsButton.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import React, { FC } from "react"; | ||
import { ExpandOptionsButtonProps } from "./ExpandOptionsButton.types"; | ||
declare const ExpandOptionsButton: FC< | ||
ExpandOptionsButtonProps & React.ButtonHTMLAttributes<HTMLButtonElement> | ||
>; | ||
export default ExpandOptionsButton; |
9 changes: 9 additions & 0 deletions
9
dist/cjs/types/components/ExpandOptionsButton/ExpandOptionsButton.types.d.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import { CSSObject } from "styled-components"; | ||
export interface ExpandOptionsButtonProps { | ||
label: string; | ||
open: boolean; | ||
sx?: CSSObject; | ||
} | ||
export interface ConstructExpandOptionsProps { | ||
sx?: CSSObject; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import * as React from "react"; | ||
import { SVGProps } from "react"; | ||
declare const AudioIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element; | ||
export default AudioIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import React, { SVGProps } from "react"; | ||
declare const AudioIconMute: ( | ||
props: SVGProps<SVGSVGElement> | ||
) => React.JSX.Element; | ||
export default AudioIconMute; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import React, { SVGProps } from "react"; | ||
declare const CancelledAudioIcon: ( | ||
props: SVGProps<SVGSVGElement> | ||
) => React.JSX.Element; | ||
export default CancelledAudioIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import * as React from "react"; | ||
import { SVGProps } from "react"; | ||
declare const ChatIcon: (props: SVGProps<SVGSVGElement>) => React.JSX.Element; | ||
export default ChatIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import * as React from "react"; | ||
import { SVGProps } from "react"; | ||
declare const SendMessageIcon: ( | ||
props: SVGProps<SVGSVGElement> | ||
) => React.JSX.Element; | ||
export default SendMessageIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from "react"; | ||
import { TabButtonProps } from "./Tabs.types"; | ||
declare const TabButton: FC<TabButtonProps>; | ||
export default TabButton; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from "react"; | ||
import { TabPanelProps } from "./Tabs.types"; | ||
declare const TabPanel: FC<TabPanelProps>; | ||
export default TabPanel; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import { FC } from "react"; | ||
import { TabsProps } from "./Tabs.types"; | ||
declare const Tabs: FC<TabsProps>; | ||
export default Tabs; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
import React from "react"; | ||
import { CSSObject } from "styled-components"; | ||
export interface TabProps { | ||
label: string; | ||
icon?: React.ReactNode; | ||
disabled?: boolean; | ||
to?: string; | ||
id: string; | ||
} | ||
export interface TabItemProps { | ||
tabConfig: TabProps; | ||
content?: React.ReactNode; | ||
} | ||
export interface TabsProps { | ||
horizontal?: boolean; | ||
options: TabItemProps[]; | ||
currentTabOrPath: string; | ||
useRouteTabs?: boolean; | ||
routes?: React.ReactElement | null; | ||
onTabClick: (selectedItem: string) => void; | ||
sx?: CSSObject; | ||
} | ||
export interface TabsContainerProps { | ||
horizontal: boolean; | ||
sx?: CSSObject; | ||
} | ||
export interface TabButtonProps { | ||
id: string; | ||
horizontal?: boolean; | ||
label: string; | ||
onClick: () => void; | ||
disabled: boolean; | ||
icon?: React.ReactNode; | ||
selected?: boolean; | ||
} | ||
export interface TabButtonConstructProps { | ||
horizontal: boolean; | ||
} | ||
export interface TabPanelProps { | ||
id: string; | ||
selectedTab?: string; | ||
useRouteTabs: boolean; | ||
children: React.ReactNode; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.