@akad/design-system 0.1.0-beta.9 → 0.2.0-beta.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/css/aon-theme.css +1 -1
- package/css/bees-theme.css +1 -1
- package/css/bmc-theme.css +1 -1
- package/css/default-theme.css +1 -1
- package/css/linker-theme.css +1 -1
- package/css/oggi-theme.css +1 -1
- package/css/streetgo-theme.css +1 -1
- package/package.json +10 -10
- package/react/components/atoms/Checkbox/Checkbox.config.d.ts +14 -0
- package/react/components/atoms/Checkbox/Checkbox.d.ts +2 -13
- package/react/components/atoms/Checkbox/index.d.ts +2 -1
- package/react/components/atoms/Select/Select.stories.d.ts +8 -0
- package/react/components/atoms/TextArea/TextArea.d.ts +5 -2
- package/react/components/bosons/Container/Container.config.d.ts +5 -0
- package/react/components/bosons/Container/Container.d.ts +3 -1
- package/react/components/bosons/GridLayout/GridElement.d.ts +1 -4
- package/react/components/bosons/GridLayout/GridElement.test.d.ts +1 -0
- package/react/components/bosons/GridLayout/GridLayout.config.d.ts +11 -0
- package/react/components/bosons/GridLayout/GridLayout.d.ts +8 -18
- package/react/components/bosons/Wrapper/Wrapper.d.ts +0 -8
- package/react/components/index.d.ts +3 -1
- package/react/components/molecules/Accordion/Accordion.d.ts +1 -1
- package/react/components/molecules/Accordion/AccordionItem.d.ts +1 -2
- package/react/components/molecules/ActiveTags/ActiveTags.d.ts +2 -2
- package/react/components/molecules/Carousel/Carousel.config.d.ts +7 -0
- package/react/components/molecules/Carousel/Carousel.d.ts +31 -0
- package/react/components/molecules/Carousel/Carousel.test.d.ts +1 -0
- package/react/components/molecules/Carousel/index.d.ts +4 -0
- package/react/components/molecules/EditableSelect/EditableSelect.config.d.ts +5 -0
- package/react/components/molecules/EditableSelect/EditableSelect.d.ts +2 -1
- package/react/components/molecules/Notification/Notification.config.d.ts +22 -0
- package/react/components/molecules/Notification/Notification.d.ts +2 -29
- package/react/components/molecules/Notification/Notification.stories.d.ts +10 -5
- package/react/components/molecules/Notification/index.d.ts +2 -1
- package/react/components/molecules/PasswordConfirmation/PasswordConfirmartion.test.d.ts +1 -0
- package/react/components/molecules/PasswordConfirmation/PasswordConfirmation.config.d.ts +5 -0
- package/react/components/molecules/PasswordConfirmation/PasswordConfirmation.d.ts +5 -3
- package/react/components/molecules/Tabs/Tab.test.d.ts +1 -0
- package/react/components/molecules/Tabs/Tabs.test.d.ts +1 -0
- package/react/components/molecules/ThemeProvider/ThemeProvider.test.d.ts +1 -0
- package/react/components/organisms/NotificationList/NotificationList.d.ts +2 -2
- package/react/components/organisms/NotificationList/NotificationList.test.d.ts +1 -0
- package/react/components/templates/SplitLayout/SplitLayout.config.d.ts +7 -0
- package/react/components/templates/SplitLayout/SplitLayout.d.ts +9 -0
- package/react/components/templates/SplitLayout/SplitLayout.test.d.ts +1 -0
- package/react/components/templates/SplitLayout/index.d.ts +5 -0
- package/react/components/templates/TwoColumns/TwoColumns.test.d.ts +1 -0
- package/react/decorators/storybook.test.d.ts +1 -0
- package/react/main.d.ts +0 -2
- package/react/react-lib.js +3155 -8462
- package/react/react-lib.umd.cjs +5 -12
- package/react/types/hooks/types.d.ts +99 -0
- package/react/helpers/messageParser.d.ts +0 -11
- package/react/helpers/utils.d.ts +0 -80
- package/react/helpers/validator.d.ts +0 -5
- package/react/hooks/index.d.ts +0 -6
- package/react/hooks/useForm.d.ts +0 -36
- package/react/hooks/useMediaQuery.d.ts +0 -1
- package/react/hooks/useNotification.d.ts +0 -8
- package/react/hooks/useStepper.d.ts +0 -31
- /package/react/{helpers/utils.test.d.ts → components/bosons/GridLayout/GridLayout.test.d.ts} +0 -0
- /package/react/{helpers/validator.test.d.ts → components/molecules/Notification/Notification.test.d.ts} +0 -0
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
2
|
+
"name": "@akad/design-system",
|
|
3
|
+
"version": "0.2.0-beta.10",
|
|
4
|
+
"main": "react/react.js",
|
|
5
|
+
"types": "react/main.d.ts",
|
|
6
|
+
"author": "Gabriel Mule <gabemule@gmail.com>",
|
|
7
|
+
"license": "MIT",
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"concurrently": "^8.2.2"
|
|
10
|
+
}
|
|
11
|
+
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
1
3
|
export interface NameProps {
|
|
2
4
|
type: StringConstructor;
|
|
3
5
|
required: false;
|
|
@@ -30,6 +32,18 @@ export interface OnChangeHandlerProps {
|
|
|
30
32
|
type: FunctionConstructor;
|
|
31
33
|
default: () => void;
|
|
32
34
|
}
|
|
35
|
+
export interface DsCheckboxProps {
|
|
36
|
+
id?: string;
|
|
37
|
+
className?: string;
|
|
38
|
+
name?: string;
|
|
39
|
+
testId?: string;
|
|
40
|
+
label?: string | ReactNode;
|
|
41
|
+
description?: string | ReactNode;
|
|
42
|
+
checked?: boolean;
|
|
43
|
+
disabled?: boolean;
|
|
44
|
+
changeByChecked?: boolean;
|
|
45
|
+
onChangeHandler?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
46
|
+
}
|
|
33
47
|
export interface CheckboxConfig {
|
|
34
48
|
name: string;
|
|
35
49
|
class: string;
|
|
@@ -1,16 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DsCheckboxProps } from './Checkbox.config';
|
|
2
|
+
import { default as React } from 'react';
|
|
2
3
|
|
|
3
|
-
export interface DsCheckboxProps {
|
|
4
|
-
id?: string;
|
|
5
|
-
className?: string;
|
|
6
|
-
name?: string;
|
|
7
|
-
testId?: string;
|
|
8
|
-
label?: string | ReactNode;
|
|
9
|
-
description?: string | ReactNode;
|
|
10
|
-
checked?: boolean;
|
|
11
|
-
disabled?: boolean;
|
|
12
|
-
changeByChecked?: boolean;
|
|
13
|
-
onChangeHandler?: (event: React.ChangeEvent<HTMLInputElement>) => void;
|
|
14
|
-
}
|
|
15
4
|
declare const DsCheckbox: React.ForwardRefExoticComponent<DsCheckboxProps & React.RefAttributes<HTMLInputElement>>;
|
|
16
5
|
export default DsCheckbox;
|
|
@@ -15,5 +15,13 @@ export declare const Default: {
|
|
|
15
15
|
value: string;
|
|
16
16
|
label: string;
|
|
17
17
|
}[];
|
|
18
|
+
className: string;
|
|
19
|
+
animated: boolean;
|
|
20
|
+
name: string;
|
|
21
|
+
testId: string;
|
|
22
|
+
placeholder: string;
|
|
23
|
+
tooltip: string;
|
|
24
|
+
tooltipPlacement: import('./Select.config').TooltipPlacement;
|
|
25
|
+
tooltipPosition: import('./Select.config').TooltipPosition;
|
|
18
26
|
};
|
|
19
27
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
2
|
|
|
3
|
-
export interface DsTextAreaProps extends React.HTMLAttributes<
|
|
3
|
+
export interface DsTextAreaProps extends React.HTMLAttributes<HTMLTextAreaElement> {
|
|
4
4
|
name?: string;
|
|
5
5
|
testId?: string;
|
|
6
6
|
type?: string;
|
|
@@ -12,17 +12,20 @@ export interface DsTextAreaProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
|
12
12
|
minLength?: number;
|
|
13
13
|
maxLength?: number;
|
|
14
14
|
rows?: number;
|
|
15
|
+
cols?: number;
|
|
15
16
|
tooltip?: string;
|
|
16
17
|
icon?: string;
|
|
17
18
|
status?: string;
|
|
18
19
|
feedback?: string;
|
|
19
20
|
disabled?: boolean;
|
|
20
|
-
|
|
21
|
+
required?: boolean;
|
|
22
|
+
onChangeHandler?: (event: React.ChangeEvent<HTMLTextAreaElement>) => void;
|
|
21
23
|
onBlurHandler?: (event: React.FocusEvent<HTMLTextAreaElement>) => void;
|
|
22
24
|
onKeyDownHandler?: (event: React.KeyboardEvent<HTMLTextAreaElement>) => void;
|
|
23
25
|
onFocusHandler?: (event: React.FocusEvent<HTMLTextAreaElement>) => void;
|
|
24
26
|
resize: string;
|
|
25
27
|
description?: string;
|
|
28
|
+
style?: React.CSSProperties;
|
|
26
29
|
}
|
|
27
30
|
declare const DsTextArea: React.ForwardRefExoticComponent<DsTextAreaProps & React.RefAttributes<HTMLTextAreaElement>>;
|
|
28
31
|
export default DsTextArea;
|
|
@@ -2,11 +2,16 @@ export interface FluidProps {
|
|
|
2
2
|
type: BooleanConstructor;
|
|
3
3
|
default: boolean;
|
|
4
4
|
}
|
|
5
|
+
export interface TestIdProps {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
default: string;
|
|
8
|
+
}
|
|
5
9
|
export interface ContainerConfig {
|
|
6
10
|
name: string;
|
|
7
11
|
class: string;
|
|
8
12
|
props: {
|
|
9
13
|
fluid: FluidProps;
|
|
14
|
+
testId: TestIdProps;
|
|
10
15
|
};
|
|
11
16
|
}
|
|
12
17
|
declare const ContainerConfig: ContainerConfig;
|
|
@@ -6,14 +6,16 @@ export interface DsContainerProps {
|
|
|
6
6
|
fluid?: boolean;
|
|
7
7
|
className?: string;
|
|
8
8
|
style?: object;
|
|
9
|
+
testId?: string;
|
|
9
10
|
}
|
|
10
11
|
declare const DsContainer: {
|
|
11
|
-
({ children, fluid, className, style, }: DsContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
({ children, fluid, className, style, testId, }: DsContainerProps): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
propTypes: {
|
|
13
14
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
14
15
|
fluid: PropTypes.Requireable<boolean>;
|
|
15
16
|
className: PropTypes.Requireable<string>;
|
|
16
17
|
style: PropTypes.Requireable<object>;
|
|
18
|
+
testId: PropTypes.Requireable<string>;
|
|
17
19
|
};
|
|
18
20
|
displayName: string;
|
|
19
21
|
};
|
|
@@ -5,8 +5,5 @@ type DsGridElementType = {
|
|
|
5
5
|
children: string | React.ReactElement;
|
|
6
6
|
grid: DsGridElementProps;
|
|
7
7
|
};
|
|
8
|
-
declare const DsGridElement:
|
|
9
|
-
({ children, grid }: DsGridElementType): import("react/jsx-runtime").JSX.Element;
|
|
10
|
-
displayName: string;
|
|
11
|
-
};
|
|
8
|
+
declare const DsGridElement: React.FC<DsGridElementType>;
|
|
12
9
|
export default DsGridElement;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -53,6 +53,17 @@ export interface VerticalAlignProps {
|
|
|
53
53
|
default: Align;
|
|
54
54
|
options: Align[];
|
|
55
55
|
}
|
|
56
|
+
export interface GridLayoutProps {
|
|
57
|
+
rows?: string;
|
|
58
|
+
gap?: Gap;
|
|
59
|
+
vGap?: boolean;
|
|
60
|
+
hGap?: boolean;
|
|
61
|
+
width?: string;
|
|
62
|
+
height?: string;
|
|
63
|
+
horizontalAlign?: Align;
|
|
64
|
+
verticalAlign?: Align;
|
|
65
|
+
children: React.ReactNode;
|
|
66
|
+
}
|
|
56
67
|
export interface GridLayoutConfig {
|
|
57
68
|
name: string;
|
|
58
69
|
class: string;
|
|
@@ -2,14 +2,14 @@ import { default as PropTypes } from 'prop-types';
|
|
|
2
2
|
|
|
3
3
|
export interface DsGridLayoutProps {
|
|
4
4
|
children: JSX.Element | JSX.Element[];
|
|
5
|
-
rows
|
|
6
|
-
gap
|
|
7
|
-
vGap
|
|
8
|
-
hGap
|
|
9
|
-
horizontalAlign
|
|
10
|
-
verticalAlign
|
|
11
|
-
width
|
|
12
|
-
height
|
|
5
|
+
rows?: string;
|
|
6
|
+
gap?: string;
|
|
7
|
+
vGap?: boolean;
|
|
8
|
+
hGap?: boolean;
|
|
9
|
+
horizontalAlign?: string;
|
|
10
|
+
verticalAlign?: string;
|
|
11
|
+
width?: string;
|
|
12
|
+
height?: string;
|
|
13
13
|
}
|
|
14
14
|
declare const DsGridLayout: {
|
|
15
15
|
({ children, rows, gap, vGap, hGap, horizontalAlign, verticalAlign, width, height, }: DsGridLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -24,16 +24,6 @@ declare const DsGridLayout: {
|
|
|
24
24
|
horizontalAlign: PropTypes.Requireable<import('./GridLayout.config').Align>;
|
|
25
25
|
verticalAlign: PropTypes.Requireable<import('./GridLayout.config').Align>;
|
|
26
26
|
};
|
|
27
|
-
defaultProps: {
|
|
28
|
-
rows: string;
|
|
29
|
-
gap: import('./GridLayout.config').Gap;
|
|
30
|
-
vGap: boolean;
|
|
31
|
-
hGap: boolean;
|
|
32
|
-
width: string;
|
|
33
|
-
height: string;
|
|
34
|
-
horizontalAlign: import('./GridLayout.config').Align;
|
|
35
|
-
verticalAlign: import('./GridLayout.config').Align;
|
|
36
|
-
};
|
|
37
27
|
displayName: string;
|
|
38
28
|
};
|
|
39
29
|
export default DsGridLayout;
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import { default as PropTypes } from 'prop-types';
|
|
3
2
|
|
|
4
3
|
export interface DsWrapperProps {
|
|
5
4
|
children?: React.ReactNode;
|
|
@@ -11,13 +10,6 @@ export interface DsWrapperProps {
|
|
|
11
10
|
}
|
|
12
11
|
declare const DsWrapper: {
|
|
13
12
|
({ children, space, top, right, bottom, left, }: DsWrapperProps): import("react/jsx-runtime").JSX.Element;
|
|
14
|
-
propTypes: {
|
|
15
|
-
space: PropTypes.Requireable<import('./Wrapper.config').Space>;
|
|
16
|
-
top: PropTypes.Requireable<import('./Wrapper.config').Space>;
|
|
17
|
-
right: PropTypes.Requireable<import('./Wrapper.config').Space>;
|
|
18
|
-
bottom: PropTypes.Requireable<import('./Wrapper.config').Space>;
|
|
19
|
-
left: PropTypes.Requireable<import('./Wrapper.config').Space>;
|
|
20
|
-
};
|
|
21
13
|
displayName: string;
|
|
22
14
|
};
|
|
23
15
|
export default DsWrapper;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { DsTwoColumns } from './templates/TwoColumns';
|
|
2
|
+
import { DsSplitLayout } from './templates/SplitLayout';
|
|
2
3
|
import { DsNotificationList } from './organisms/NotificationList';
|
|
3
4
|
import { ThemeProvider } from './molecules/ThemeProvider';
|
|
4
5
|
import { DsTabs } from './molecules/Tabs';
|
|
@@ -10,6 +11,7 @@ import { DsModal } from './molecules/Modal';
|
|
|
10
11
|
import { DsInlineEditable } from './molecules/InlineEditable';
|
|
11
12
|
import { DsIndicator } from './molecules/Indicator';
|
|
12
13
|
import { DsEditableSelect } from './molecules/EditableSelect';
|
|
14
|
+
import { DsCarousel } from './molecules/Carousel';
|
|
13
15
|
import { DsActiveTags } from './molecules/ActiveTags';
|
|
14
16
|
import { DsAccordion } from './molecules/Accordion';
|
|
15
17
|
import { DsWrapper } from './bosons/Wrapper';
|
|
@@ -34,4 +36,4 @@ import { DsCard } from './atoms/Card';
|
|
|
34
36
|
import { DsCaption } from './atoms/Caption';
|
|
35
37
|
import { DsButton } from './atoms/Button';
|
|
36
38
|
|
|
37
|
-
export { DsAccordion, DsButton, DsCaption, DsCard, DsCheckbox, DsContainer, DsFlexElement, DsFlexLayout, DsGridElement, DsGridLayout, DsHeading, DsHR, DsIcon, DsIndicator, DsInlineEditable, DsInput, DsLoading, DsModal, DsNotification, DsNotificationList, DsOption, DsParagraph, DsSelect, DsSpacer, DsStepper, DsSubtitle, DsTable, DsTabs, DsTextArea, DsTooltip, DsTwoColumns, DsWrapper, DsProgress, DsPasswordConfirmation, DsEditableSelect, DsActiveTags, ThemeProvider, };
|
|
39
|
+
export { DsAccordion, DsButton, DsCaption, DsCard, DsCheckbox, DsContainer, DsFlexElement, DsFlexLayout, DsGridElement, DsGridLayout, DsHeading, DsHR, DsIcon, DsIndicator, DsInlineEditable, DsInput, DsLoading, DsModal, DsNotification, DsNotificationList, DsOption, DsParagraph, DsSelect, DsSpacer, DsStepper, DsSubtitle, DsTable, DsTabs, DsTextArea, DsTooltip, DsTwoColumns, DsSplitLayout, DsWrapper, DsProgress, DsPasswordConfirmation, DsEditableSelect, DsActiveTags, ThemeProvider, DsCarousel, };
|
|
@@ -2,12 +2,11 @@ import { DsAccordionItemProps } from '../../../types/types';
|
|
|
2
2
|
import { default as PropTypes } from 'prop-types';
|
|
3
3
|
|
|
4
4
|
declare const DsAccordionItem: {
|
|
5
|
-
({ title, content,
|
|
5
|
+
({ title, content, onToggle, active, disabled, }: DsAccordionItemProps): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
propTypes: {
|
|
7
7
|
active: PropTypes.Requireable<boolean>;
|
|
8
8
|
title: PropTypes.Requireable<NonNullable<string | PropTypes.ReactElementLike | null | undefined>>;
|
|
9
9
|
content: PropTypes.Requireable<NonNullable<string | PropTypes.ReactElementLike | null | undefined>>;
|
|
10
|
-
className: PropTypes.Requireable<string>;
|
|
11
10
|
disabled: PropTypes.Requireable<boolean>;
|
|
12
11
|
};
|
|
13
12
|
displayName: string;
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
interface Tag {
|
|
2
|
+
id: string;
|
|
2
3
|
text: string;
|
|
3
4
|
icon: string;
|
|
4
|
-
title: string;
|
|
5
5
|
hiddenClose?: boolean;
|
|
6
6
|
}
|
|
7
7
|
export interface DsActiveTagsProps {
|
|
8
8
|
title: string;
|
|
9
9
|
activeTags: Tag[];
|
|
10
|
-
handleTagClose: (
|
|
10
|
+
handleTagClose: (_indexToRemove: number) => void;
|
|
11
11
|
}
|
|
12
12
|
declare const DsActiveTags: {
|
|
13
13
|
({ title, activeTags, handleTagClose, }: DsActiveTagsProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { default as PropTypes } from 'prop-types';
|
|
2
|
+
|
|
3
|
+
type Slide = {
|
|
4
|
+
title: string;
|
|
5
|
+
image: string;
|
|
6
|
+
description: string;
|
|
7
|
+
};
|
|
8
|
+
export interface DsCarouselProps {
|
|
9
|
+
slides: Slide[];
|
|
10
|
+
interval?: number;
|
|
11
|
+
imageHeight?: number | string;
|
|
12
|
+
imageWidth?: number | string;
|
|
13
|
+
imageMaxHeight?: number | string;
|
|
14
|
+
imageMaxWidth?: number | string;
|
|
15
|
+
}
|
|
16
|
+
declare const DsCarousel: {
|
|
17
|
+
({ slides, interval, imageHeight, imageWidth, imageMaxHeight, imageMaxWidth, }: DsCarouselProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
propTypes: {
|
|
19
|
+
slides: PropTypes.Validator<(PropTypes.InferProps<{
|
|
20
|
+
title: PropTypes.Validator<string>;
|
|
21
|
+
image: PropTypes.Validator<string>;
|
|
22
|
+
description: PropTypes.Validator<string>;
|
|
23
|
+
}> | null | undefined)[]>;
|
|
24
|
+
interval: PropTypes.Requireable<number>;
|
|
25
|
+
imageHeight: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
26
|
+
imageWidth: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
27
|
+
imageMaxHeight: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
28
|
+
imageMaxWidth: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
export default DsCarousel;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -10,6 +10,10 @@ export interface Option {
|
|
|
10
10
|
name?: string;
|
|
11
11
|
id?: string | number;
|
|
12
12
|
}
|
|
13
|
+
export interface TestIdProps {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
default: string;
|
|
16
|
+
}
|
|
13
17
|
export interface LabelProps {
|
|
14
18
|
type: StringConstructor;
|
|
15
19
|
default: string;
|
|
@@ -79,6 +83,7 @@ export interface EditableSelectConfig {
|
|
|
79
83
|
class: string;
|
|
80
84
|
props: {
|
|
81
85
|
label: LabelProps;
|
|
86
|
+
testId: TestIdProps;
|
|
82
87
|
animated: AnimatedProps;
|
|
83
88
|
loading: LoadingProps;
|
|
84
89
|
disabled: DisabledProps;
|
|
@@ -3,6 +3,7 @@ import { Option } from './EditableSelect.config';
|
|
|
3
3
|
export interface DsEditableSelectProps {
|
|
4
4
|
label?: string;
|
|
5
5
|
name?: string;
|
|
6
|
+
testId?: string;
|
|
6
7
|
value?: string;
|
|
7
8
|
size?: string;
|
|
8
9
|
options?: Option[];
|
|
@@ -19,7 +20,7 @@ export interface DsEditableSelectProps {
|
|
|
19
20
|
onFocusHandler?: () => void;
|
|
20
21
|
}
|
|
21
22
|
declare const DsEditableSelect: {
|
|
22
|
-
({ label, name, value, options, size, onChangeHandler, onSelectHandler, icon, noOptionsMessage, disabled, status, onBlurHandler, onFocusHandler, animated, placeholder, loading, }: DsEditableSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
({ label, name, testId, value, options, size, onChangeHandler, onSelectHandler, icon, noOptionsMessage, disabled, status, onBlurHandler, onFocusHandler, animated, placeholder, loading, }: DsEditableSelectProps): import("react/jsx-runtime").JSX.Element;
|
|
23
24
|
displayName: string;
|
|
24
25
|
};
|
|
25
26
|
export default DsEditableSelect;
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
import { ReactNode } from 'react';
|
|
2
|
+
|
|
1
3
|
export declare const NotificationType: {
|
|
2
4
|
readonly Success: "success";
|
|
3
5
|
readonly Danger: "danger";
|
|
@@ -43,6 +45,25 @@ export interface ProgressBarProps {
|
|
|
43
45
|
type: BooleanConstructor;
|
|
44
46
|
default: boolean;
|
|
45
47
|
}
|
|
48
|
+
export interface TestIdProps {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
default: string;
|
|
51
|
+
}
|
|
52
|
+
export interface DsNotificationProps {
|
|
53
|
+
className?: string;
|
|
54
|
+
type?: string;
|
|
55
|
+
variant?: string;
|
|
56
|
+
id: string;
|
|
57
|
+
children?: ReactNode;
|
|
58
|
+
message?: ReactNode;
|
|
59
|
+
autoClose?: boolean;
|
|
60
|
+
autoCloseTimer?: number;
|
|
61
|
+
dismissible?: boolean;
|
|
62
|
+
elevation?: number;
|
|
63
|
+
progressBar?: boolean;
|
|
64
|
+
testId?: string;
|
|
65
|
+
handleClose?: (event: React.MouseEvent) => void;
|
|
66
|
+
}
|
|
46
67
|
export interface DsNotificationConfig {
|
|
47
68
|
name: string;
|
|
48
69
|
class: string;
|
|
@@ -55,6 +76,7 @@ export interface DsNotificationConfig {
|
|
|
55
76
|
elevation: ElevationProps;
|
|
56
77
|
variant: NotificationVariantProps;
|
|
57
78
|
progressBar: ProgressBarProps;
|
|
79
|
+
testId: TestIdProps;
|
|
58
80
|
};
|
|
59
81
|
}
|
|
60
82
|
declare const DsNotificationConfig: DsNotificationConfig;
|
|
@@ -1,34 +1,7 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { default as PropTypes } from 'prop-types';
|
|
1
|
+
import { DsNotificationProps } from './Notification.config';
|
|
3
2
|
|
|
4
|
-
export interface DsNotificationProps {
|
|
5
|
-
className?: string;
|
|
6
|
-
type?: string;
|
|
7
|
-
variant?: string;
|
|
8
|
-
id: string;
|
|
9
|
-
children?: ReactNode;
|
|
10
|
-
message?: ReactNode;
|
|
11
|
-
autoClose?: boolean;
|
|
12
|
-
autoCloseTimer?: number;
|
|
13
|
-
dismissible?: boolean;
|
|
14
|
-
elevation?: number;
|
|
15
|
-
progressBar: boolean;
|
|
16
|
-
handleClose?: (event: React.MouseEvent) => void;
|
|
17
|
-
}
|
|
18
3
|
declare const DsNotification: {
|
|
19
|
-
({ className, type, variant, id, children, message, autoClose, autoCloseTimer, dismissible, elevation, progressBar, handleClose, }: DsNotificationProps): import("react/jsx-runtime").JSX.Element | null;
|
|
20
|
-
propTypes: {
|
|
21
|
-
type: PropTypes.Requireable<import('./Notification.config').NotificationType>;
|
|
22
|
-
id: PropTypes.Requireable<string>;
|
|
23
|
-
variant: PropTypes.Requireable<import('./Notification.config').NotificationVariant>;
|
|
24
|
-
message: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
25
|
-
autoClose: PropTypes.Requireable<boolean>;
|
|
26
|
-
autoCloseTimer: PropTypes.Requireable<number>;
|
|
27
|
-
dismissible: PropTypes.Requireable<boolean>;
|
|
28
|
-
elevation: PropTypes.Requireable<number>;
|
|
29
|
-
progressBar: PropTypes.Requireable<boolean>;
|
|
30
|
-
handleClose: PropTypes.Requireable<(...args: any[]) => any>;
|
|
31
|
-
};
|
|
4
|
+
({ className, type, variant, id, children, message, autoClose, autoCloseTimer, dismissible, elevation, progressBar, handleClose, testId, }: DsNotificationProps): import("react/jsx-runtime").JSX.Element | null;
|
|
32
5
|
displayName: string;
|
|
33
6
|
};
|
|
34
7
|
export default DsNotification;
|
|
@@ -16,7 +16,8 @@ export declare const Default: {
|
|
|
16
16
|
autoCloseTimer?: number | undefined;
|
|
17
17
|
dismissible?: boolean | undefined;
|
|
18
18
|
elevation?: number | undefined;
|
|
19
|
-
progressBar
|
|
19
|
+
progressBar?: boolean | undefined;
|
|
20
|
+
testId?: string | undefined;
|
|
20
21
|
handleClose?: ((event: import('react').MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
21
22
|
};
|
|
22
23
|
};
|
|
@@ -33,7 +34,8 @@ export declare const NotificationSuccess: {
|
|
|
33
34
|
autoCloseTimer?: number | undefined;
|
|
34
35
|
dismissible?: boolean | undefined;
|
|
35
36
|
elevation?: number | undefined;
|
|
36
|
-
progressBar
|
|
37
|
+
progressBar?: boolean | undefined;
|
|
38
|
+
testId?: string | undefined;
|
|
37
39
|
handleClose?: ((event: import('react').MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
38
40
|
};
|
|
39
41
|
};
|
|
@@ -50,7 +52,8 @@ export declare const NotificationDanger: {
|
|
|
50
52
|
autoCloseTimer?: number | undefined;
|
|
51
53
|
dismissible?: boolean | undefined;
|
|
52
54
|
elevation?: number | undefined;
|
|
53
|
-
progressBar
|
|
55
|
+
progressBar?: boolean | undefined;
|
|
56
|
+
testId?: string | undefined;
|
|
54
57
|
handleClose?: ((event: import('react').MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
55
58
|
};
|
|
56
59
|
};
|
|
@@ -67,7 +70,8 @@ export declare const NotificationWarning: {
|
|
|
67
70
|
autoCloseTimer?: number | undefined;
|
|
68
71
|
dismissible?: boolean | undefined;
|
|
69
72
|
elevation?: number | undefined;
|
|
70
|
-
progressBar
|
|
73
|
+
progressBar?: boolean | undefined;
|
|
74
|
+
testId?: string | undefined;
|
|
71
75
|
handleClose?: ((event: import('react').MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
72
76
|
};
|
|
73
77
|
};
|
|
@@ -84,7 +88,8 @@ export declare const NotificationInfo: {
|
|
|
84
88
|
autoCloseTimer?: number | undefined;
|
|
85
89
|
dismissible?: boolean | undefined;
|
|
86
90
|
elevation?: number | undefined;
|
|
87
|
-
progressBar
|
|
91
|
+
progressBar?: boolean | undefined;
|
|
92
|
+
testId?: string | undefined;
|
|
88
93
|
handleClose?: ((event: import('react').MouseEvent<Element, MouseEvent>) => void) | undefined;
|
|
89
94
|
};
|
|
90
95
|
};
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DsNotificationProps } from './Notification.config';
|
|
2
|
+
import { default as DsNotification } from './Notification';
|
|
2
3
|
|
|
3
4
|
export { DsNotification };
|
|
4
5
|
export type { DsNotificationProps };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -14,6 +14,10 @@ export interface InstructionLabelProps {
|
|
|
14
14
|
type: StringConstructor;
|
|
15
15
|
default: string;
|
|
16
16
|
}
|
|
17
|
+
export interface TestIdProps {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
}
|
|
17
21
|
export interface PasswordConfirmationConfig {
|
|
18
22
|
name: string;
|
|
19
23
|
class: string;
|
|
@@ -21,6 +25,7 @@ export interface PasswordConfirmationConfig {
|
|
|
21
25
|
onChange: OnChangeProps;
|
|
22
26
|
validationList: ValidationListProps;
|
|
23
27
|
instructionLabel: InstructionLabelProps;
|
|
28
|
+
testId: TestIdProps;
|
|
24
29
|
};
|
|
25
30
|
}
|
|
26
31
|
declare const DsPasswordConfirmationConfig: PasswordConfirmationConfig;
|
|
@@ -10,7 +10,7 @@ interface FeedbackObject {
|
|
|
10
10
|
color: string;
|
|
11
11
|
}
|
|
12
12
|
export interface DsPasswordConfirmationProps {
|
|
13
|
-
onChange
|
|
13
|
+
onChange: (data: {
|
|
14
14
|
password: string;
|
|
15
15
|
confirmationPassword: string;
|
|
16
16
|
isEqual: boolean;
|
|
@@ -18,13 +18,15 @@ export interface DsPasswordConfirmationProps {
|
|
|
18
18
|
}) => void;
|
|
19
19
|
validationList: Array<ValidationRule>;
|
|
20
20
|
instructionLabel: string;
|
|
21
|
+
testId?: string;
|
|
21
22
|
}
|
|
22
23
|
declare const DsPasswordConfirmation: {
|
|
23
|
-
({ onChange, validationList, instructionLabel, }: DsPasswordConfirmationProps): import("react/jsx-runtime").JSX.Element;
|
|
24
|
+
({ onChange, validationList, instructionLabel, testId, }: DsPasswordConfirmationProps): import("react/jsx-runtime").JSX.Element;
|
|
24
25
|
propTypes: {
|
|
25
26
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
26
|
-
validationList: PropTypes.
|
|
27
|
+
validationList: PropTypes.Requireable<any[]>;
|
|
27
28
|
instructionLabel: PropTypes.Requireable<string>;
|
|
29
|
+
testId: PropTypes.Requireable<string>;
|
|
28
30
|
};
|
|
29
31
|
displayName: string;
|
|
30
32
|
};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -3,8 +3,8 @@ import { default as PropTypes } from 'prop-types';
|
|
|
3
3
|
|
|
4
4
|
export interface DsNotificationListProps {
|
|
5
5
|
className?: string;
|
|
6
|
-
position
|
|
7
|
-
fluid
|
|
6
|
+
position?: string;
|
|
7
|
+
fluid?: boolean;
|
|
8
8
|
notifications: DsNotificationProps[];
|
|
9
9
|
removeNotification: (notificationid: string) => void;
|
|
10
10
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export interface DsSplitLayoutProps {
|
|
2
|
+
leftContent: React.ReactNode;
|
|
3
|
+
rightContent: React.ReactNode;
|
|
4
|
+
leftBackgroundColor?: string;
|
|
5
|
+
rightBackgroundColor?: string;
|
|
6
|
+
reverseOnMobile?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const DsSplitLayout: React.FC<DsSplitLayoutProps>;
|
|
9
|
+
export default DsSplitLayout;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|