@fattureincloud/fic-design-system 0.5.3 → 0.5.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/common/cssFixes/inputTextFixes.d.ts +1 -1
- package/dist/components/card/Card.d.ts +7 -0
- package/dist/components/card/card.stories.d.ts +5 -0
- package/dist/components/card/cardPalette.d.ts +3 -0
- package/dist/components/card/index.d.ts +3 -0
- package/dist/components/card/styled.d.ts +2 -0
- package/dist/components/card/types.d.ts +40 -0
- package/dist/components/form/common/types.d.ts +2 -2
- package/dist/components/form/inputText/InputText.d.ts +2 -4
- package/dist/components/form/inputText/components/InputElement.d.ts +25 -2
- package/dist/components/form/inputText/components/codeInput/CodeInput.d.ts +4 -0
- package/dist/components/form/inputText/components/codeInput/styled.d.ts +29 -0
- package/dist/components/form/inputText/components/codeInput/useCodeInputHooks.d.ts +11 -0
- package/dist/components/form/inputText/components/styled.d.ts +3 -0
- package/dist/components/form/inputText/components/telephoneInput/TelephoneInput.d.ts +4 -0
- package/dist/components/form/inputText/components/telephoneInput/countriesTelephonePrefixes.d.ts +7 -0
- package/dist/components/form/inputText/components/telephoneInput/styled.d.ts +2 -0
- package/dist/components/form/inputText/components/utils.d.ts +1 -0
- package/dist/components/form/inputText/index.d.ts +2 -1
- package/dist/components/form/inputText/inputText.stories.d.ts +5 -3
- package/dist/components/form/inputText/types.d.ts +31 -10
- package/dist/components/modals/index.d.ts +1 -0
- package/dist/components/modals/modalStyled.d.ts +3 -1
- package/dist/components/modals/modals.stories.d.ts +1 -0
- package/dist/components/modals/stepModal/StepModal.d.ts +4 -0
- package/dist/components/modals/stepModal/components/StepModalBody.d.ts +4 -0
- package/dist/components/modals/stepModal/components/StepModalFooter.d.ts +4 -0
- package/dist/components/modals/stepModal/components/StepModalHeader.d.ts +4 -0
- package/dist/components/modals/stepModal/components/styled.d.ts +4 -0
- package/dist/components/modals/stepModal/index.d.ts +5 -0
- package/dist/components/modals/stepModal/styled.d.ts +4 -0
- package/dist/components/modals/stepModal/types.d.ts +46 -0
- package/dist/index.d.ts +3 -2
- package/dist/index.esm.js +5 -5
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/styles/theme.d.ts +2 -0
- package/package.json +3 -2
@@ -1,3 +1,3 @@
|
|
1
1
|
export declare const inputTextHTMLInputBootstrapFixes: import("styled-components").FlattenInterpolation<import("styled-components").ThemedStyledProps<{
|
2
|
-
inputSize?:
|
2
|
+
inputSize?: "medium" | "large" | undefined;
|
3
3
|
}, import("styled-components").DefaultTheme>>;
|
@@ -0,0 +1,7 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
declare const _default: React.ForwardRefExoticComponent<import("./types").StyledCardProps & {
|
3
|
+
children: React.ReactNode | React.ReactNode[];
|
4
|
+
className?: string | undefined;
|
5
|
+
style?: React.CSSProperties | undefined;
|
6
|
+
} & React.RefAttributes<HTMLDivElement>>;
|
7
|
+
export default _default;
|
@@ -0,0 +1,40 @@
|
|
1
|
+
import { CSSProperties } from 'react';
|
2
|
+
import { paletteColor } from '../../styles/types';
|
3
|
+
export declare enum CardType {
|
4
|
+
PRIMARY = "primary",
|
5
|
+
SECONDARY = "secondary"
|
6
|
+
}
|
7
|
+
export declare enum CardColor {
|
8
|
+
BLUE = "blue",
|
9
|
+
GREEN = "green",
|
10
|
+
GREY = "grey",
|
11
|
+
RED = "red",
|
12
|
+
TRANSPARENT = "transparent",
|
13
|
+
YELLOW = "yellow"
|
14
|
+
}
|
15
|
+
export declare enum CardElevation {
|
16
|
+
FLAT = 0,
|
17
|
+
LOW = 1,
|
18
|
+
HIGH = 2
|
19
|
+
}
|
20
|
+
export declare type StyledCardProps = {
|
21
|
+
color?: CardColor;
|
22
|
+
elevation?: CardElevation;
|
23
|
+
type?: CardType;
|
24
|
+
};
|
25
|
+
export declare type CardProps = StyledCardProps & {
|
26
|
+
children: React.ReactNode | React.ReactNode[];
|
27
|
+
className?: string;
|
28
|
+
style?: CSSProperties;
|
29
|
+
};
|
30
|
+
declare type CardPaletteAttributes = {
|
31
|
+
background: paletteColor;
|
32
|
+
border: paletteColor;
|
33
|
+
};
|
34
|
+
declare type CardPaletteTypes = {
|
35
|
+
[k in CardType]: CardPaletteAttributes;
|
36
|
+
};
|
37
|
+
export declare type CardPalette = {
|
38
|
+
[k in CardColor]: CardPaletteTypes;
|
39
|
+
};
|
40
|
+
export {};
|
@@ -1,9 +1,9 @@
|
|
1
1
|
import { colorsPalette } from '../../../common/types/colorsPalette';
|
2
2
|
import { paletteColor } from '../../../styles/types';
|
3
3
|
import { InputHelperProps } from '../inputHelper';
|
4
|
-
export declare const inputSizeArray:
|
4
|
+
export declare const inputSizeArray: readonly ["large", "medium"];
|
5
5
|
export declare type inputSizeType = typeof inputSizeArray[number];
|
6
|
-
export declare const statusesArray:
|
6
|
+
export declare const statusesArray: readonly ["normal", "success", "warning", "error"];
|
7
7
|
export declare type statusType = typeof statusesArray[number];
|
8
8
|
export interface CommonFormTypes {
|
9
9
|
inputSize?: inputSizeType;
|
@@ -1,6 +1,4 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import {
|
3
|
-
|
4
|
-
export declare type InputTextProps = LabelProps & InputElementProps;
|
5
|
-
declare const _default: React.ForwardRefExoticComponent<LabelProps & InputElementProps & React.RefAttributes<HTMLInputElement>>;
|
2
|
+
import { InputTextProps } from './types';
|
3
|
+
declare const _default: React.ForwardRefExoticComponent<InputTextProps & React.RefAttributes<HTMLInputElement>>;
|
6
4
|
export default _default;
|
@@ -2,7 +2,30 @@ import React from 'react';
|
|
2
2
|
import { BoxedInputWrapperProps } from '../../common/styles';
|
3
3
|
import { InputElementProps } from '../types';
|
4
4
|
declare type inputRef = HTMLInputElement | null;
|
5
|
-
declare const InputElement: React.ForwardRefExoticComponent<InputElementProps & React.RefAttributes<inputRef>>;
|
6
5
|
export declare type InputTextWrapperProps = Pick<InputElementProps, 'disabled' | 'status' | 'isPrefilled' | 'isTransparent'>;
|
7
6
|
export declare type InputTextStyles = Omit<BoxedInputWrapperProps, 'status'>;
|
8
|
-
|
7
|
+
declare const _default: React.ForwardRefExoticComponent<import("../../common/types").CommonFormTypes & {
|
8
|
+
className?: string | undefined;
|
9
|
+
name?: string | undefined;
|
10
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
11
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
12
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
13
|
+
onKeyDown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
14
|
+
onKeyPress?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
15
|
+
onKeyUp?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
16
|
+
autoFocus?: boolean | undefined;
|
17
|
+
required?: boolean | undefined;
|
18
|
+
} & {
|
19
|
+
actionIcon?: import("../../../icon").IconProps | undefined;
|
20
|
+
inputType?: "number" | "text" | "password" | undefined;
|
21
|
+
isPrefilled?: boolean | undefined;
|
22
|
+
isTransparent?: boolean | undefined;
|
23
|
+
leadingIcon?: import("../../../icon").IconProps | undefined;
|
24
|
+
placeholder?: React.ReactText | undefined;
|
25
|
+
setValue?: React.Dispatch<React.SetStateAction<string>> | undefined;
|
26
|
+
strict?: boolean | undefined;
|
27
|
+
tooltip?: import("../../../tooltip").TooltipProps | undefined;
|
28
|
+
unitDropdownProps?: import("./UnitDropdown").UnitDropdownProps | undefined;
|
29
|
+
value?: string | number | null | undefined;
|
30
|
+
} & React.RefAttributes<inputRef>>;
|
31
|
+
export default _default;
|
@@ -0,0 +1,29 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
export declare const CodeInputWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
3
|
+
gap: number | undefined;
|
4
|
+
}, never>;
|
5
|
+
export declare const InputWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
6
|
+
export declare const SingleNumberInput: import("styled-components").StyledComponent<import("react").ForwardRefExoticComponent<import("../../../common/types").CommonFormTypes & {
|
7
|
+
className?: string | undefined;
|
8
|
+
name?: string | undefined;
|
9
|
+
onFocus?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
10
|
+
onBlur?: import("react").FocusEventHandler<HTMLInputElement> | undefined;
|
11
|
+
onChange?: import("react").ChangeEventHandler<HTMLInputElement> | undefined;
|
12
|
+
onKeyDown?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
13
|
+
onKeyPress?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
14
|
+
onKeyUp?: import("react").KeyboardEventHandler<HTMLInputElement> | undefined;
|
15
|
+
autoFocus?: boolean | undefined;
|
16
|
+
required?: boolean | undefined;
|
17
|
+
} & {
|
18
|
+
actionIcon?: import("../../../../icon").IconProps | undefined;
|
19
|
+
inputType?: "number" | "text" | "password" | undefined;
|
20
|
+
isPrefilled?: boolean | undefined;
|
21
|
+
isTransparent?: boolean | undefined;
|
22
|
+
leadingIcon?: import("../../../../icon").IconProps | undefined;
|
23
|
+
placeholder?: import("react").ReactText | undefined;
|
24
|
+
setValue?: import("react").Dispatch<import("react").SetStateAction<string>> | undefined;
|
25
|
+
strict?: boolean | undefined;
|
26
|
+
tooltip?: import("../../../../tooltip").TooltipProps | undefined;
|
27
|
+
unitDropdownProps?: import("../UnitDropdown").UnitDropdownProps | undefined;
|
28
|
+
value?: string | number | null | undefined;
|
29
|
+
} & import("react").RefAttributes<HTMLInputElement | null>>, import("styled-components").DefaultTheme, {}, never>;
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { Dispatch, SetStateAction } from 'react';
|
2
|
+
import { CodeInputProps } from '../../types';
|
3
|
+
declare type CodInputHooks = {
|
4
|
+
handleInput: (v: string) => void;
|
5
|
+
handlePaste: (e: React.ClipboardEvent) => void;
|
6
|
+
refs: React.MutableRefObject<(HTMLInputElement | null)[]>;
|
7
|
+
setCurrentIndex: Dispatch<SetStateAction<number>>;
|
8
|
+
values: (string | null)[];
|
9
|
+
};
|
10
|
+
declare const useCodeInputHooks: ({ fieldsCount, onChange, status, }: Omit<CodeInputProps, 'helper' | 'className'>) => CodInputHooks;
|
11
|
+
export default useCodeInputHooks;
|
@@ -3,4 +3,7 @@ interface Props {
|
|
3
3
|
inputSize: InputElementProps['inputSize'];
|
4
4
|
}
|
5
5
|
export declare const StyledInput: import("styled-components").StyledComponent<"input", import("styled-components").DefaultTheme, Props, never>;
|
6
|
+
export declare const FlexRow: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
7
|
+
gap: number | undefined;
|
8
|
+
}, never>;
|
6
9
|
export {};
|
@@ -0,0 +1,2 @@
|
|
1
|
+
export declare const SelectWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
2
|
+
export declare const InputWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { UnitDropdownProps } from './components/UnitDropdown';
|
2
|
-
import InputText
|
2
|
+
import InputText from './InputText';
|
3
3
|
import inputTextPalette, { InputTextPalette } from './inputTextPalette';
|
4
|
+
import { InputTextProps } from './types';
|
4
5
|
export { InputText, InputTextProps, InputTextPalette, inputTextPalette, UnitDropdownProps };
|
@@ -1,6 +1,8 @@
|
|
1
1
|
import { Meta, Story } from '@storybook/react';
|
2
|
-
import { InputTextProps } from './
|
3
|
-
export declare const WithKnobs: Story<
|
4
|
-
export declare const WithUnitDropdown: Story<
|
2
|
+
import { CodeInputProps, InputTextProps, StandardInputProps, TelephoneInputProps } from './types';
|
3
|
+
export declare const WithKnobs: Story<StandardInputProps>;
|
4
|
+
export declare const WithUnitDropdown: Story<StandardInputProps>;
|
5
|
+
export declare const CodeInputExample: Story<CodeInputProps>;
|
6
|
+
export declare const TelephoneInputExample: Story<TelephoneInputProps>;
|
5
7
|
declare const InputTextStories: Meta<InputTextProps>;
|
6
8
|
export default InputTextStories;
|
@@ -1,19 +1,40 @@
|
|
1
|
-
import { Dispatch, InputHTMLAttributes, ReactText, SetStateAction } from 'react';
|
1
|
+
import { CSSProperties, Dispatch, InputHTMLAttributes, ReactText, SetStateAction } from 'react';
|
2
2
|
import { IconProps } from '../../icon';
|
3
3
|
import { TooltipProps } from '../../tooltip';
|
4
4
|
import { CommonFormTypes } from '../common/types';
|
5
|
+
import { LabelProps } from '../label';
|
5
6
|
import { UnitDropdownProps } from './components/UnitDropdown';
|
6
|
-
export declare const inputTypesArray: readonly ["password", "text", "number"];
|
7
|
+
export declare const inputTypesArray: readonly ["password", "text", "number", "code", "telephone"];
|
7
8
|
export declare type inputTypes = typeof inputTypesArray[number];
|
8
|
-
|
9
|
-
|
9
|
+
declare type HTMLInputProps = Pick<InputHTMLAttributes<HTMLInputElement>, 'autoFocus' | 'className' | 'name' | 'onBlur' | 'onChange' | 'onFocus' | 'onKeyDown' | 'onKeyPress' | 'onKeyUp' | 'required'>;
|
10
|
+
export declare type InputElementProps = CommonFormTypes & HTMLInputProps & {
|
10
11
|
actionIcon?: IconProps;
|
11
|
-
inputType?:
|
12
|
-
placeholder?: ReactText;
|
13
|
-
value?: number | string | null;
|
14
|
-
setValue?: Dispatch<SetStateAction<string>>;
|
12
|
+
inputType?: 'password' | 'text' | 'number';
|
15
13
|
isPrefilled?: boolean;
|
16
14
|
isTransparent?: boolean;
|
17
|
-
|
15
|
+
leadingIcon?: IconProps;
|
16
|
+
placeholder?: ReactText;
|
17
|
+
setValue?: Dispatch<SetStateAction<string>>;
|
18
|
+
strict?: boolean;
|
18
19
|
tooltip?: TooltipProps;
|
19
|
-
|
20
|
+
unitDropdownProps?: UnitDropdownProps;
|
21
|
+
value?: number | string | null;
|
22
|
+
};
|
23
|
+
export declare type CodeInputProps = LabelProps & CommonFormTypes & Omit<HTMLInputProps, 'onChange'> & {
|
24
|
+
fieldsCount: number;
|
25
|
+
fieldsGap?: number;
|
26
|
+
inputType: 'code';
|
27
|
+
onChange?: (code: (string | null)[]) => void;
|
28
|
+
style?: CSSProperties;
|
29
|
+
};
|
30
|
+
export declare type TelephoneInputProps = LabelProps & CommonFormTypes & {
|
31
|
+
className?: string;
|
32
|
+
inputType: 'telephone';
|
33
|
+
placeholder?: ReactText;
|
34
|
+
required?: boolean;
|
35
|
+
setValue: Dispatch<SetStateAction<string>>;
|
36
|
+
value?: string | null;
|
37
|
+
};
|
38
|
+
export declare type StandardInputProps = LabelProps & InputElementProps;
|
39
|
+
export declare type InputTextProps = StandardInputProps | CodeInputProps | TelephoneInputProps;
|
40
|
+
export {};
|
@@ -1,17 +1,19 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
import ReactModal from 'react-modal';
|
3
3
|
import { ModalPropsInterface, StyledModalBoxProps } from './types';
|
4
|
+
export declare const headerFooterHeight = "80px";
|
5
|
+
export declare const animationDuration = 200;
|
4
6
|
export declare const StyledReactModalContainer: import("styled-components").StyledComponent<typeof ReactModal, import("styled-components").DefaultTheme, ModalPropsInterface & {
|
5
7
|
children: React.ReactChild;
|
6
8
|
}, never>;
|
7
9
|
export declare const StyledModalBox: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, StyledModalBoxProps, never>;
|
8
10
|
export declare const ModalBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ModalPropsInterface, never>;
|
11
|
+
export declare const ModalIcon: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
9
12
|
export declare const ModalHeaderClose: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
10
13
|
export declare const ModalHeader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
11
14
|
export declare const ModalSimpleHeader: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
12
15
|
export declare const ModalSimpleFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
13
16
|
export declare const ModalFooter: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
14
|
-
export declare const Wrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
15
17
|
export declare const TopAttachment: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
|
16
18
|
height: number | null;
|
17
19
|
}, never>;
|
@@ -9,5 +9,6 @@ export declare const WithSearch: () => JSX.Element;
|
|
9
9
|
export declare const FirstTime: () => JSX.Element;
|
10
10
|
export declare const WithTips: () => JSX.Element;
|
11
11
|
export declare const _ConfirmationModal: () => JSX.Element;
|
12
|
+
export declare const StepModalExample: () => JSX.Element;
|
12
13
|
declare const ModalStories: Meta<ModalPropsInterface>;
|
13
14
|
export default ModalStories;
|
@@ -0,0 +1,4 @@
|
|
1
|
+
export declare const StepModalHeaderWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
2
|
+
export declare const StepModalHeaderTitle: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
3
|
+
export declare const FooterButtonsWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {}, never>;
|
4
|
+
export declare const StyledBody: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, import("../../types").ModalPropsInterface, never>;
|
@@ -0,0 +1,5 @@
|
|
1
|
+
export { default as StepModal } from './StepModal';
|
2
|
+
export { default as StepModalBody } from './components/StepModalBody';
|
3
|
+
export { default as StepModalFooter } from './components/StepModalFooter';
|
4
|
+
export { default as StepModalHeader } from './components/StepModalHeader';
|
5
|
+
export { StepModalProps, StepModalCommonProps, StepModalFooterProps, StepModalHeaderProps } from './types';
|
@@ -0,0 +1,4 @@
|
|
1
|
+
import { Modal } from '../modals';
|
2
|
+
import { ContentWrapperProps } from './types';
|
3
|
+
export declare const ModalBodyWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, ContentWrapperProps, never>;
|
4
|
+
export declare const StyledModal: import("styled-components").StyledComponent<typeof Modal, import("styled-components").DefaultTheme, {}, never>;
|
@@ -0,0 +1,46 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import { ButtonProps } from '../../buttons';
|
3
|
+
export declare type UknObj = Record<string, unknown>;
|
4
|
+
export declare type StepModalCommonProps = {
|
5
|
+
currentStep: number;
|
6
|
+
height?: number;
|
7
|
+
isOpen: boolean;
|
8
|
+
minHeight?: number;
|
9
|
+
setIsOpen: (o: boolean) => void;
|
10
|
+
setStep: (s: number) => void;
|
11
|
+
};
|
12
|
+
declare type StepModalComponent<T extends UknObj> = React.FunctionComponent<StepModalCommonProps & T>;
|
13
|
+
declare type HasChildren = {
|
14
|
+
children?: React.ReactNode;
|
15
|
+
};
|
16
|
+
export declare type StepModalProps<T extends UknObj> = StepModalCommonProps & {
|
17
|
+
allowBackdropClose?: boolean;
|
18
|
+
className?: string;
|
19
|
+
customProps: T;
|
20
|
+
isFullscreen?: boolean;
|
21
|
+
isSmall?: boolean;
|
22
|
+
steps: StepModalComponent<T>[];
|
23
|
+
};
|
24
|
+
export declare type StepModalContentProps<T extends UknObj> = StepModalCommonProps & {
|
25
|
+
customProps: T;
|
26
|
+
direction: 'next' | 'prev';
|
27
|
+
isFullscreen?: boolean;
|
28
|
+
isSmall?: boolean;
|
29
|
+
thisStep: number;
|
30
|
+
Component: StepModalComponent<T>;
|
31
|
+
};
|
32
|
+
export declare type ContentWrapperProps = {
|
33
|
+
isFullscreen?: boolean;
|
34
|
+
isSmall?: boolean;
|
35
|
+
};
|
36
|
+
export declare type StepModalFooterProps = HasChildren & {
|
37
|
+
buttons?: ButtonProps[];
|
38
|
+
};
|
39
|
+
export declare type StepModalHeaderProps = Partial<StepModalCommonProps> & HasChildren & {
|
40
|
+
subtitle?: string;
|
41
|
+
title?: string;
|
42
|
+
};
|
43
|
+
export declare type StepModalBodyProps = Partial<StepModalCommonProps> & HasChildren & {
|
44
|
+
isFullscreen?: boolean;
|
45
|
+
};
|
46
|
+
export {};
|
package/dist/index.d.ts
CHANGED
@@ -19,7 +19,7 @@ import { Icon, iconColors, IconPalette, IconProps } from './components/icon';
|
|
19
19
|
import { IconBackground, IconBackgroundPalette } from './components/icon/components/iconBackground';
|
20
20
|
import { InlineMessage, InlineMessagePalette, InlineMessageProps, InlineMessageType } from './components/inlineMessage';
|
21
21
|
import { MicroTag, MicroTagPalette, MicroTagProps } from './components/microTag';
|
22
|
-
import { Modal, ModalSearchable } from './components/modals';
|
22
|
+
import { Modal, ModalSearchable, StepModal, StepModalBody, StepModalCommonProps, StepModalFooter, StepModalFooterProps, StepModalHeader, StepModalHeaderProps, StepModalProps } from './components/modals';
|
23
23
|
import { ConfirmationModal } from './components/modals/confirmationModal';
|
24
24
|
import { ModalBody } from './components/modals/modalStyled';
|
25
25
|
import { PageEmptySet } from './components/pageEmptySet';
|
@@ -44,4 +44,5 @@ export { ProgressBar, ProgressBarPalette, ProgressBarProps, ProgressBarType } fr
|
|
44
44
|
export { Segment, SegmentButton, SegmentButtonPalette, SegmentButtonProps } from './components/segmentButton';
|
45
45
|
export { ShortcutTip, ShortcutTipProps, Tip, TipPalette, TipProps, TipType } from './components/tip';
|
46
46
|
export { bwColor } from './styles/types';
|
47
|
-
export {
|
47
|
+
export { Card, CardColor, CardPalette, CardProps, CardElevation, CardType } from './components/card';
|
48
|
+
export { autocompleteYellow, paletteColor, Avatar, Button, ButtonProps, ButtonPalette, IconButton, IconButtonProps, IconButtonPalette, Icon, IconProps, IconPalette, iconColors, IconBackground, IconBackgroundPalette, Table, TableProps, TableData, useTableValues, Row, Column, TablePalette, RowActions, ManualPagination, OnSelectionChange, OnSort, Checkbox, useCheckboxValue, CheckboxProps, CheckboxPalette, CheckboxStatus, Select, CreatableSelect, AsyncSelect, AsyncCreatableSelect, SelectProps, AsyncSelectProps, AsyncCreatableSelectProps, useSelectSimpleValue, isSimpleValue, simpleValue, CreatableSelectProps, useSelectValue, useSelectMultiValues, SelectPalette, SelectComponentsType, OptionType, PageEmptySet, Modal, ModalBody, ModalSearchable, StepModal, StepModalBody, StepModalCommonProps, StepModalFooter, StepModalFooterProps, StepModalHeader, StepModalHeaderProps, StepModalProps, Tooltip, TooltipProps, TooltipPalette, Accordion, Drawer, Radio, useRadioValue, RadioProps, RadioPalette, RadioStatus, RadioGroup, RadioGroupProps, RadioGroupOptions, InlineMessage, InlineMessageProps, InlineMessagePalette, InlineMessageType, Dropdown, DropdownItemProps, DropdownPalette, DropdownItemType, closeDropdownType, renderContentType, DropdownTabs, ScrollableTabs, TabsItem, Stepper, StepperProps, StepperPalette, ThemeProvider, Theme, Palette, GroupedList, ItemType, GroupType, Toast, ToastProps, toastPalette, ToastPalette, ToastType, ConfirmationModal, MicroTag, MicroTagProps, MicroTagPalette, Tag, TagProps, TagPalette, tagTypes, InputText, InputTextProps, InputTextPalette, UnitDropdownProps, DatePickerProps, DatePickerPalette, DatePicker, useFormattedDate, timeConversionOptions, InputHelper, InputHelperProps, InputHelperPalette, TextArea, TextAreaProps, TextAreaPalette, FileUploader, FileUploaderProps, FileUploaderPalette, FileRejection, fileUploaderOnDrop, Spinner, };
|