-
Notifications
You must be signed in to change notification settings - Fork 27
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
22 changed files
with
11,879 additions
and
11,147 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 { AutocompleteProps } from "./Autocomplete.types"; | ||
declare const Autocomplete: FC<AutocompleteProps>; | ||
export default Autocomplete; |
22 changes: 22 additions & 0 deletions
22
dist/cjs/types/components/Autocomplete/Autocomplete.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,22 @@ | ||
/// <reference types="react" /> | ||
import { CSSObject } from "styled-components"; | ||
import { SelectorType } from "../../global/global.types"; | ||
import { CommonHelpTipPlacement } from "../HelpTip/HelpTip.types"; | ||
export interface AutocompleteProps { | ||
options: SelectorType[]; | ||
value?: string; | ||
id: string; | ||
name?: string; | ||
required?: boolean; | ||
className?: string; | ||
disabled?: boolean; | ||
displayDropArrow?: boolean; | ||
label?: string; | ||
tooltip?: string; | ||
noLabelMinWidth?: boolean; | ||
placeholder?: string; | ||
onChange: (newValue: string, extraValue?: any) => void; | ||
sx?: CSSObject; | ||
helpTip?: React.ReactNode; | ||
helpTipPlacement?: CommonHelpTipPlacement; | ||
} |
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
4 changes: 4 additions & 0 deletions
4
dist/cjs/types/components/InformativeMessage/InformativeMessage.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,4 @@ | ||
import { FC } from "react"; | ||
import { InformativeMessageProps } from "./InformativeMessage.types"; | ||
declare const InformativeMessage: FC<InformativeMessageProps>; | ||
export default InformativeMessage; |
11 changes: 11 additions & 0 deletions
11
dist/cjs/types/components/InformativeMessage/InformativeMessage.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,11 @@ | ||
import React from "react"; | ||
import { CSSObject } from "styled-components"; | ||
export interface InformativeMessageMain { | ||
title: React.ReactNode; | ||
message: React.ReactNode; | ||
} | ||
export interface ConstructProps { | ||
variant?: "default" | "success" | "warning" | "error"; | ||
sx?: CSSObject; | ||
} | ||
export type InformativeMessageProps = InformativeMessageMain & ConstructProps; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
export declare const useEscapeKey: (handleAction: () => void) => void; | ||
export declare const useEnterKey: (handleAction: () => void) => void; | ||
export declare const useArrowKeys: ( | ||
handleAction: (arrowDirection: string) => void, | ||
) => void; |
Oops, something went wrong.