ods-component-lib 1.18.51 → 1.18.52
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/dist/components/antd/datepicker/OdsDateRangepicker.d.ts +1 -1
- package/dist/components/antd/image/OdsImage.d.ts +1 -4
- package/dist/components/antd/image/OdsImagePreviewGroup.d.ts +5 -1
- package/dist/components/antd/modal/OdsAdvanceModal.d.ts +7 -0
- package/dist/components/antd/typography/OdsTitle.d.ts +5 -1
- package/dist/index.js +7 -40
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -40
- package/dist/index.modern.js.map +1 -1
- package/dist/stories/OdsAlert/OdsAlert.stories.d.ts +54 -0
- package/dist/stories/OdsAlert/Samples/BasicAlert.Sample.d.ts +1 -0
- package/dist/stories/OdsAlert/Samples/IconAlert.Sample.d.ts +1 -0
- package/dist/stories/OdsBannerAlert/OdsBannerAlert.stories.d.ts +53 -0
- package/dist/stories/OdsBannerAlert/Samples/BasicBannerAlert.Sample.d.ts +1 -0
- package/dist/stories/OdsDateRangePicker/OdsDateRangePicker.stories.d.ts +2 -13
- package/dist/stories/OdsImage/OdsImage.stories.d.ts +14 -0
- package/dist/stories/OdsImage/Samples/Basic.Sample.d.ts +1 -0
- package/dist/stories/OdsImagePreviewGroup/OdsImagePreviewGroup.stories.d.ts +9 -0
- package/dist/stories/OdsImagePreviewGroup/Samples/OdsImagePreviewGroup.Sample.d.ts +1 -0
- package/dist/stories/OdsTitle/OdsTitle.stories.d.ts +64 -0
- package/dist/stories/OdsTitle/Samples/BasicTitle.Sample.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import OdsAlert from "../../components/antd/alert/OdsAlert";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof OdsAlert;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
action: {
|
|
8
|
+
description: string;
|
|
9
|
+
};
|
|
10
|
+
afterClose: {
|
|
11
|
+
action: string;
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
banner: {
|
|
15
|
+
options: string[];
|
|
16
|
+
description: string;
|
|
17
|
+
};
|
|
18
|
+
closable: {
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
description: {
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
icon: {
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
message: {
|
|
28
|
+
description: string;
|
|
29
|
+
};
|
|
30
|
+
showIcon: {
|
|
31
|
+
options: string[];
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
type: {
|
|
35
|
+
options: string[];
|
|
36
|
+
control: {
|
|
37
|
+
type: string;
|
|
38
|
+
};
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
onClose: {
|
|
42
|
+
action: string;
|
|
43
|
+
description: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
parameters: {
|
|
47
|
+
controls: {
|
|
48
|
+
exclude: string[];
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export default _default;
|
|
53
|
+
export declare const BasicAlert: any;
|
|
54
|
+
export declare const IconAlert: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const IconTemplate: any;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
import OdsBannerAlert from "../../components/antd/alert/OdsBannerAlert";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof OdsBannerAlert;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
action: {
|
|
8
|
+
description: string;
|
|
9
|
+
};
|
|
10
|
+
afterClose: {
|
|
11
|
+
action: string;
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
banner: {
|
|
15
|
+
options: string[];
|
|
16
|
+
description: string;
|
|
17
|
+
};
|
|
18
|
+
closable: {
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
description: {
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
icon: {
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
message: {
|
|
28
|
+
description: string;
|
|
29
|
+
};
|
|
30
|
+
showIcon: {
|
|
31
|
+
options: string[];
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
type: {
|
|
35
|
+
options: string[];
|
|
36
|
+
control: {
|
|
37
|
+
type: string;
|
|
38
|
+
};
|
|
39
|
+
description: string;
|
|
40
|
+
};
|
|
41
|
+
onClose: {
|
|
42
|
+
action: string;
|
|
43
|
+
description: string;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
parameters: {
|
|
47
|
+
controls: {
|
|
48
|
+
exclude: string[];
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
};
|
|
52
|
+
export default _default;
|
|
53
|
+
export declare const BasicBannerAlert: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|
|
@@ -1,18 +1,7 @@
|
|
|
1
|
-
|
|
1
|
+
import OdsDateRangePicker from '../../components/antd/datepicker/OdsDateRangepicker';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
title: string;
|
|
4
|
-
component:
|
|
5
|
-
locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
|
|
6
|
-
size?: import("antd/es/button").ButtonSize;
|
|
7
|
-
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
|
8
|
-
bordered?: boolean;
|
|
9
|
-
status?: "" | "warning" | "error";
|
|
10
|
-
variant?: "outlined" | "borderless" | "filled";
|
|
11
|
-
dropdownClassName?: string;
|
|
12
|
-
popupClassName?: string;
|
|
13
|
-
rootClassName?: string;
|
|
14
|
-
popupStyle?: import("react").CSSProperties;
|
|
15
|
-
}) => import("react").JSX.Element;
|
|
4
|
+
component: typeof OdsDateRangePicker;
|
|
16
5
|
tags: string[];
|
|
17
6
|
argTypes: any;
|
|
18
7
|
parameters: {
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import OdsImage from '../../components/antd/image/OdsImage';
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof OdsImage;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: any;
|
|
7
|
+
parameters: {
|
|
8
|
+
controls: {
|
|
9
|
+
exclude: any;
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
};
|
|
13
|
+
export default _default;
|
|
14
|
+
export declare const Basic: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const OdsImagePreviewGroupTemplate: any;
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import OdsTitle from "../../components/antd/typography/OdsTitle";
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: typeof OdsTitle;
|
|
5
|
+
tags: string[];
|
|
6
|
+
argTypes: {
|
|
7
|
+
code: {
|
|
8
|
+
options: string[];
|
|
9
|
+
description: string;
|
|
10
|
+
};
|
|
11
|
+
copyable: {
|
|
12
|
+
description: string;
|
|
13
|
+
};
|
|
14
|
+
delete: {
|
|
15
|
+
description: string;
|
|
16
|
+
};
|
|
17
|
+
disabled: {
|
|
18
|
+
options: string[];
|
|
19
|
+
description: string;
|
|
20
|
+
};
|
|
21
|
+
editable: {
|
|
22
|
+
description: string;
|
|
23
|
+
};
|
|
24
|
+
ellipsis: {
|
|
25
|
+
description: string;
|
|
26
|
+
};
|
|
27
|
+
level: {
|
|
28
|
+
options: string[];
|
|
29
|
+
control: {
|
|
30
|
+
type: string;
|
|
31
|
+
};
|
|
32
|
+
description: string;
|
|
33
|
+
};
|
|
34
|
+
mark: {
|
|
35
|
+
options: string[];
|
|
36
|
+
description: string;
|
|
37
|
+
};
|
|
38
|
+
onClick: {
|
|
39
|
+
action: string;
|
|
40
|
+
description: string;
|
|
41
|
+
};
|
|
42
|
+
italic: {
|
|
43
|
+
options: string[];
|
|
44
|
+
description: string;
|
|
45
|
+
};
|
|
46
|
+
type: {
|
|
47
|
+
options: string[];
|
|
48
|
+
control: {
|
|
49
|
+
type: string;
|
|
50
|
+
};
|
|
51
|
+
description: string;
|
|
52
|
+
};
|
|
53
|
+
underline: {
|
|
54
|
+
description: string;
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
parameters: {
|
|
58
|
+
controls: {
|
|
59
|
+
exclude: string[];
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
export default _default;
|
|
64
|
+
export declare const BasicCard: any;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const BasicTemplate: any;
|