-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
release-bot
committed
Jul 1, 2021
1 parent
c4bc1f7
commit e618707
Showing
35 changed files
with
3,475 additions
and
2,200 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.
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
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
32 changes: 16 additions & 16 deletions
32
dist/core/components/atoms/popperWrapper/PopperWrapper.d.ts
Large diffs are not rendered by default.
Oops, something went wrong.
17 changes: 17 additions & 0 deletions
17
dist/core/components/molecules/editableChipInput/EditableChipInput.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,17 @@ | ||
import { BaseProps } from "../../../utils/types"; | ||
import { ChipInputProps } from "../../../index.type"; | ||
export interface EditableChipInputProps extends BaseProps { | ||
placeholder: string; | ||
value?: string[]; | ||
onChange?: (chips: string[]) => void; | ||
disableSaveAction?: boolean; | ||
chipInputOptions: Omit<ChipInputProps, 'placeholder' | 'value' | 'defaultValue'>; | ||
} | ||
export declare const EditableChipInput: { | ||
(props: EditableChipInputProps): JSX.Element; | ||
defaultProps: { | ||
placeholder: string; | ||
chipInputOptions: {}; | ||
}; | ||
}; | ||
export default EditableChipInput; |
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,2 @@ | ||
export { default } from "./EditableChipInput"; | ||
export * from "./EditableChipInput"; |
1 change: 1 addition & 0 deletions
1
dist/core/components/molecules/emptyState/_tests_/EmptyState.test.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 @@ | ||
export {}; |
34 changes: 34 additions & 0 deletions
34
dist/core/components/molecules/fullscreenModal/FullscreenModal.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,34 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
import { OverlayFooterProps } from "../overlayFooter"; | ||
import { OverlayHeaderProps } from "../overlayHeader"; | ||
export declare type Dimension = 'medium' | 'large'; | ||
declare type FooterOptions = { | ||
actions: OverlayFooterProps['actions']; | ||
}; | ||
export interface FullscreenModalProps extends BaseProps { | ||
dimension: Dimension; | ||
open: boolean; | ||
onClose?: (event?: Event | React.MouseEvent<HTMLElement, MouseEvent>, reason?: string) => void; | ||
headerOptions?: OverlayHeaderProps; | ||
header?: React.ReactNode; | ||
footerOptions?: FooterOptions; | ||
footer?: React.ReactNode; | ||
children?: React.ReactNode; | ||
} | ||
interface ModalState { | ||
open: boolean; | ||
animate: boolean; | ||
zIndex?: number; | ||
} | ||
declare class FullscreenModal extends React.Component<FullscreenModalProps, ModalState> { | ||
modalRef: React.RefObject<HTMLDivElement>; | ||
element: Element; | ||
static defaultProps: { | ||
dimension: string; | ||
}; | ||
constructor(props: FullscreenModalProps); | ||
componentDidUpdate(prevProps: FullscreenModalProps): void; | ||
render(): JSX.Element; | ||
} | ||
export default FullscreenModal; |
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,2 +1,2 @@ | ||
export { default, default as FullscreenModal } from "./Modal"; | ||
export * from "./Modal"; | ||
export { default, default as FullscreenModal } from "./FullscreenModal"; | ||
export * from "./FullscreenModal"; |
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,16 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface ModalBodyProps extends BaseProps { | ||
children: React.ReactNode; | ||
stickFooter: boolean; | ||
withFooter: boolean; | ||
} | ||
export declare const ModalBody: { | ||
(props: ModalBodyProps): JSX.Element; | ||
defaultProps: { | ||
stickFooter: boolean; | ||
withFooter: boolean; | ||
}; | ||
displayName: string; | ||
}; | ||
export default ModalBody; |
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,14 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface ModalFooterProps extends BaseProps { | ||
open?: boolean; | ||
children: React.ReactNode; | ||
stickToBottom?: boolean; | ||
seperator?: boolean; | ||
inSidesheet?: boolean; | ||
} | ||
export declare const ModalFooter: { | ||
(props: ModalFooterProps): JSX.Element; | ||
displayName: string; | ||
}; | ||
export default ModalFooter; |
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,15 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface ModalHeaderProps extends BaseProps { | ||
heading?: string; | ||
onClose?: (event: React.MouseEvent<HTMLElement, MouseEvent>, reason?: string) => void; | ||
subHeading?: string; | ||
seperator?: boolean; | ||
backIcon?: boolean; | ||
backIconCallback?: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void; | ||
} | ||
export declare const ModalHeader: { | ||
(props: ModalHeaderProps): JSX.Element; | ||
displayName: string; | ||
}; | ||
export default ModalHeader; |
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,2 +1,5 @@ | ||
export { default, default as Modal } from "./Modal"; | ||
export * from "./Modal"; | ||
export * from "./ModalHeader"; | ||
export * from "./ModalBody"; | ||
export * from "./ModalFooter"; |
14 changes: 14 additions & 0 deletions
14
dist/core/components/molecules/overlayBody/OverlayBody.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,14 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface OverlayBodyProps extends BaseProps { | ||
children: React.ReactNode; | ||
} | ||
export declare const OverlayBody: { | ||
(props: OverlayBodyProps): JSX.Element; | ||
defaultProps: { | ||
stickFooter: boolean; | ||
withFooter: boolean; | ||
}; | ||
displayName: string; | ||
}; | ||
export default OverlayBody; |
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,2 @@ | ||
export { default } from "./OverlayBody"; | ||
export * from "./OverlayBody"; |
13 changes: 13 additions & 0 deletions
13
dist/core/components/molecules/overlayFooter/OverlayFooter.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,13 @@ | ||
import * as React from 'react'; | ||
import { ButtonProps } from "../../../index.type"; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface OverlayFooterProps extends BaseProps { | ||
open?: boolean; | ||
children?: React.ReactNode; | ||
actions?: ButtonProps[]; | ||
} | ||
export declare const OverlayFooter: { | ||
(props: OverlayFooterProps): JSX.Element; | ||
displayName: string; | ||
}; | ||
export default OverlayFooter; |
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,2 @@ | ||
export { default } from "./OverlayFooter"; | ||
export * from "./OverlayFooter"; |
16 changes: 16 additions & 0 deletions
16
dist/core/components/molecules/overlayHeader/OverlayHeader.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,16 @@ | ||
import * as React from 'react'; | ||
import { BaseProps } from "../../../utils/types"; | ||
export interface OverlayHeaderProps extends BaseProps { | ||
heading?: string; | ||
onClose?: (event: React.MouseEvent<HTMLElement, MouseEvent>, reason?: string) => void; | ||
subHeading?: string; | ||
backButton?: boolean; | ||
backButtonCallback?: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void; | ||
backIcon?: boolean; | ||
backIconCallback?: (e: React.MouseEvent<HTMLElement, MouseEvent>) => void; | ||
} | ||
export declare const OverlayHeader: { | ||
(props: OverlayHeaderProps): JSX.Element; | ||
displayName: string; | ||
}; | ||
export default OverlayHeader; |
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,2 @@ | ||
export { default } from "./OverlayHeader"; | ||
export * from "./OverlayHeader"; |
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
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
17 changes: 17 additions & 0 deletions
17
dist/core/components/patterns/forms/VerificationCodeInput.story.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,17 @@ | ||
export declare const verificationCodeInput: () => JSX.Element; | ||
declare const _default: { | ||
title: string; | ||
component: { | ||
(props: import("../../molecules/verificationCodeInput").VerificationCodeInputProps): JSX.Element; | ||
displayName: string; | ||
}; | ||
parameters: { | ||
docs: { | ||
docPage: { | ||
customCode: string; | ||
title: string; | ||
}; | ||
}; | ||
}; | ||
}; | ||
export default _default; |
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.