cygx-ui 1.0.11 → 1.0.12
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/DatePicker/datePicker.d.ts +62 -2
- package/dist/index.es.js +8422 -6496
- package/dist/index.umd.js +55 -55
- package/package.json +3 -3
|
@@ -24,8 +24,68 @@ declare const DatePicker: (<ValueType = Dayjs, IsMultiple extends boolean = fals
|
|
|
24
24
|
popupClassName?: string | undefined;
|
|
25
25
|
rootClassName?: string | undefined;
|
|
26
26
|
popupStyle?: import("react").CSSProperties | undefined;
|
|
27
|
-
classNames?: import("antd/es/
|
|
28
|
-
|
|
27
|
+
classNames?: import("antd/es/_util/hooks/useMergeSemantic/semanticType").DeepClassNameType<{
|
|
28
|
+
root?: string | undefined;
|
|
29
|
+
prefix?: string | undefined;
|
|
30
|
+
input?: string | undefined;
|
|
31
|
+
suffix?: string | undefined;
|
|
32
|
+
popup?: string | {
|
|
33
|
+
root?: string | undefined;
|
|
34
|
+
header?: string | undefined;
|
|
35
|
+
body?: string | undefined;
|
|
36
|
+
content?: string | undefined;
|
|
37
|
+
item?: string | undefined;
|
|
38
|
+
footer?: string | undefined;
|
|
39
|
+
container?: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
} | undefined> | ((info: {
|
|
42
|
+
props: import("antd/es/date-picker/generatePicker/interface").InjectDefaultProps<import("@rc-component/picker").RangePickerProps<Dayjs>>;
|
|
43
|
+
}) => import("antd/es/_util/hooks/useMergeSemantic/semanticType").DeepClassNameType<{
|
|
44
|
+
root?: string | undefined;
|
|
45
|
+
prefix?: string | undefined;
|
|
46
|
+
input?: string | undefined;
|
|
47
|
+
suffix?: string | undefined;
|
|
48
|
+
popup?: string | {
|
|
49
|
+
root?: string | undefined;
|
|
50
|
+
header?: string | undefined;
|
|
51
|
+
body?: string | undefined;
|
|
52
|
+
content?: string | undefined;
|
|
53
|
+
item?: string | undefined;
|
|
54
|
+
footer?: string | undefined;
|
|
55
|
+
container?: string | undefined;
|
|
56
|
+
} | undefined;
|
|
57
|
+
} | undefined>);
|
|
58
|
+
styles?: import("antd/es/_util/hooks/useMergeSemantic/semanticType").DeepStylesType<{
|
|
59
|
+
root?: import("react").CSSProperties | undefined;
|
|
60
|
+
prefix?: import("react").CSSProperties | undefined;
|
|
61
|
+
input?: import("react").CSSProperties | undefined;
|
|
62
|
+
suffix?: import("react").CSSProperties | undefined;
|
|
63
|
+
popup?: {
|
|
64
|
+
root?: import("react").CSSProperties | undefined;
|
|
65
|
+
header?: import("react").CSSProperties | undefined;
|
|
66
|
+
body?: import("react").CSSProperties | undefined;
|
|
67
|
+
content?: import("react").CSSProperties | undefined;
|
|
68
|
+
item?: import("react").CSSProperties | undefined;
|
|
69
|
+
footer?: import("react").CSSProperties | undefined;
|
|
70
|
+
container?: import("react").CSSProperties | undefined;
|
|
71
|
+
} | undefined;
|
|
72
|
+
} | undefined> | ((info: {
|
|
73
|
+
props: import("antd/es/date-picker/generatePicker/interface").InjectDefaultProps<import("@rc-component/picker").RangePickerProps<Dayjs>>;
|
|
74
|
+
}) => import("antd/es/_util/hooks/useMergeSemantic/semanticType").DeepStylesType<{
|
|
75
|
+
root?: import("react").CSSProperties | undefined;
|
|
76
|
+
prefix?: import("react").CSSProperties | undefined;
|
|
77
|
+
input?: import("react").CSSProperties | undefined;
|
|
78
|
+
suffix?: import("react").CSSProperties | undefined;
|
|
79
|
+
popup?: {
|
|
80
|
+
root?: import("react").CSSProperties | undefined;
|
|
81
|
+
header?: import("react").CSSProperties | undefined;
|
|
82
|
+
body?: import("react").CSSProperties | undefined;
|
|
83
|
+
content?: import("react").CSSProperties | undefined;
|
|
84
|
+
item?: import("react").CSSProperties | undefined;
|
|
85
|
+
footer?: import("react").CSSProperties | undefined;
|
|
86
|
+
container?: import("react").CSSProperties | undefined;
|
|
87
|
+
} | undefined;
|
|
88
|
+
} | undefined>);
|
|
29
89
|
} & import("react").RefAttributes<import("@rc-component/picker").PickerRef>>;
|
|
30
90
|
TimePicker: (<ValueType_4 = Dayjs, IsMultiple_4 extends boolean = false>(props: import("antd/es/date-picker/generatePicker/interface").PickerPropsWithMultiple<Dayjs, Omit<import("antd/es/date-picker/generatePicker/interface").GenericTimePickerProps<Dayjs>, "picker">, ValueType_4, IsMultiple_4>) => import("react").ReactElement<any, string | import("react").JSXElementConstructor<any>>) & {
|
|
31
91
|
displayName?: string | undefined;
|