dt-shared-front 1.1.182 → 1.1.184
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/date-picker/date-picker.d.ts +8 -8
- package/dist/components/icon/icon.d.ts +2 -1
- package/dist/components/link/link.d.ts +7 -1
- package/dist/components/range-picker/range-picker.d.ts +8 -8
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/main.css +28 -28
- package/dist/main.css.map +1 -1
- package/package.json +1 -1
@@ -1,21 +1,21 @@
|
|
1
1
|
import { ComponentProps } from 'react';
|
2
2
|
declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
3
|
-
status?: "" | "
|
3
|
+
status?: "" | "warning" | "error";
|
4
4
|
dropdownClassName?: string;
|
5
5
|
popupClassName?: string;
|
6
6
|
}, unknown> & {
|
7
7
|
WeekPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
8
|
-
status?: "" | "
|
8
|
+
status?: "" | "warning" | "error";
|
9
9
|
dropdownClassName?: string;
|
10
10
|
popupClassName?: string;
|
11
11
|
}, "picker">, unknown>;
|
12
12
|
MonthPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
13
|
-
status?: "" | "
|
13
|
+
status?: "" | "warning" | "error";
|
14
14
|
dropdownClassName?: string;
|
15
15
|
popupClassName?: string;
|
16
16
|
}, "picker">, unknown>;
|
17
17
|
YearPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
18
|
-
status?: "" | "
|
18
|
+
status?: "" | "warning" | "error";
|
19
19
|
dropdownClassName?: string;
|
20
20
|
popupClassName?: string;
|
21
21
|
}, "picker">, unknown>;
|
@@ -28,9 +28,9 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
|
|
28
28
|
size?: import("antd/lib/button").ButtonSize;
|
29
29
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
30
30
|
bordered?: boolean;
|
31
|
-
status?: "" | "
|
31
|
+
status?: "" | "warning" | "error";
|
32
32
|
} & {
|
33
|
-
status?: "" | "
|
33
|
+
status?: "" | "warning" | "error";
|
34
34
|
dropdownClassName?: string;
|
35
35
|
popupClassName?: string;
|
36
36
|
}, "picker">, unknown>;
|
@@ -39,9 +39,9 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
|
|
39
39
|
size?: import("antd/lib/button").ButtonSize;
|
40
40
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
41
41
|
bordered?: boolean;
|
42
|
-
status?: "" | "
|
42
|
+
status?: "" | "warning" | "error";
|
43
43
|
} & {
|
44
|
-
status?: "" | "
|
44
|
+
status?: "" | "warning" | "error";
|
45
45
|
dropdownClassName?: string;
|
46
46
|
popupClassName?: string;
|
47
47
|
}, "picker">, unknown>;
|
@@ -21,6 +21,11 @@ export declare enum ELinkWeight {
|
|
21
21
|
semibold = "semibold",
|
22
22
|
normal = "normal"
|
23
23
|
}
|
24
|
+
export declare enum ELinkDecoration {
|
25
|
+
none = "none",
|
26
|
+
underline = "underline",
|
27
|
+
dashed = "dashed"
|
28
|
+
}
|
24
29
|
interface ILinkProps {
|
25
30
|
size?: keyof typeof ELinkSize;
|
26
31
|
icon?: any;
|
@@ -30,6 +35,7 @@ interface ILinkProps {
|
|
30
35
|
bold?: boolean;
|
31
36
|
weight?: keyof typeof ELinkWeight;
|
32
37
|
type?: keyof typeof ELinkType;
|
38
|
+
decoration?: keyof typeof ELinkDecoration;
|
33
39
|
dashed?: boolean;
|
34
40
|
className?: string;
|
35
41
|
target?: '_blank';
|
@@ -38,5 +44,5 @@ interface ILinkProps {
|
|
38
44
|
style?: any;
|
39
45
|
tag?: string;
|
40
46
|
}
|
41
|
-
export declare const Link: ({ children, target, icon: Icon, variant, size, weight, href, bold, className, type, dashed, onClick, rel, style, tag, }: ILinkProps) => JSX.Element;
|
47
|
+
export declare const Link: ({ children, target, icon: Icon, variant, size, weight, decoration, href, bold, className, type, dashed, onClick, rel, style, tag, }: ILinkProps) => JSX.Element;
|
42
48
|
export {};
|
@@ -1,21 +1,21 @@
|
|
1
1
|
import React, { ComponentProps } from 'react';
|
2
2
|
declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
3
|
-
status?: "" | "
|
3
|
+
status?: "" | "warning" | "error";
|
4
4
|
dropdownClassName?: string;
|
5
5
|
popupClassName?: string;
|
6
6
|
}, unknown> & {
|
7
7
|
WeekPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
8
|
-
status?: "" | "
|
8
|
+
status?: "" | "warning" | "error";
|
9
9
|
dropdownClassName?: string;
|
10
10
|
popupClassName?: string;
|
11
11
|
}, "picker">, unknown>;
|
12
12
|
MonthPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
13
|
-
status?: "" | "
|
13
|
+
status?: "" | "warning" | "error";
|
14
14
|
dropdownClassName?: string;
|
15
15
|
popupClassName?: string;
|
16
16
|
}, "picker">, unknown>;
|
17
17
|
YearPicker: import("antd/lib/date-picker/generatePicker/interface").PickerComponentClass<Omit<import("antd/lib/date-picker/generatePicker").PickerProps<Date> & {
|
18
|
-
status?: "" | "
|
18
|
+
status?: "" | "warning" | "error";
|
19
19
|
dropdownClassName?: string;
|
20
20
|
popupClassName?: string;
|
21
21
|
}, "picker">, unknown>;
|
@@ -28,9 +28,9 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
|
|
28
28
|
size?: import("antd/lib/button").ButtonSize;
|
29
29
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
30
30
|
bordered?: boolean;
|
31
|
-
status?: "" | "
|
31
|
+
status?: "" | "warning" | "error";
|
32
32
|
} & {
|
33
|
-
status?: "" | "
|
33
|
+
status?: "" | "warning" | "error";
|
34
34
|
dropdownClassName?: string;
|
35
35
|
popupClassName?: string;
|
36
36
|
}, "picker">, unknown>;
|
@@ -39,9 +39,9 @@ declare const AntDatePicker: import("antd/lib/date-picker/generatePicker/interfa
|
|
39
39
|
size?: import("antd/lib/button").ButtonSize;
|
40
40
|
placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
|
41
41
|
bordered?: boolean;
|
42
|
-
status?: "" | "
|
42
|
+
status?: "" | "warning" | "error";
|
43
43
|
} & {
|
44
|
-
status?: "" | "
|
44
|
+
status?: "" | "warning" | "error";
|
45
45
|
dropdownClassName?: string;
|
46
46
|
popupClassName?: string;
|
47
47
|
}, "picker">, unknown>;
|