@noah-libjs/components 0.0.6 → 0.0.8

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.
Files changed (42) hide show
  1. package/dist/ArrayInput/components.d.ts +787 -4
  2. package/dist/LazyAntd/ColorPicker/index.d.ts +1 -1
  3. package/dist/LazyAntd/DatePicker/Base/DatePicker.d.ts +3 -1
  4. package/dist/LazyAntd/DatePicker/Base/index.d.ts +6 -2
  5. package/dist/LazyAntd/DatePicker/RangePicker.d.ts +3 -1
  6. package/dist/LazyAntd/Tree/Inner.d.ts +2 -1
  7. package/dist/LazyAntd/Tree/index.d.ts +3 -2
  8. package/dist/MyAutoComplete/types.d.ts +4 -1
  9. package/dist/MyButton/index.d.ts +10 -0
  10. package/dist/MyCheckbox/components.d.ts +807 -24
  11. package/dist/MyCheckbox/types.d.ts +3 -1
  12. package/dist/MyDatePicker/Display.d.ts +1 -1
  13. package/dist/MyIconSelect/index.d.ts +7 -0
  14. package/dist/MyIconSelect/types.d.ts +16 -0
  15. package/dist/MyInput/index.d.ts +1 -1
  16. package/dist/MyRangeDate/Inner.d.ts +3 -5
  17. package/dist/MyRangeDate/index.d.ts +6 -7
  18. package/dist/MyRangeDate/utils.d.ts +32 -30
  19. package/dist/MySelect/components.d.ts +787 -4
  20. package/dist/MySelect/types.d.ts +1 -1
  21. package/dist/MySwitch/types.d.ts +5 -2
  22. package/dist/a_chunks/index.js +561 -91
  23. package/dist/a_chunks/index.module.js +1 -24
  24. package/dist/a_chunks/root.17.js +2 -2
  25. package/dist/a_chunks/root.18.js +5 -5
  26. package/dist/a_chunks/root.19.js +2 -1
  27. package/dist/a_chunks/root.20.js +2 -1
  28. package/dist/a_chunks/root.21.js +2 -1
  29. package/dist/a_chunks/root.22.js +54 -196
  30. package/dist/a_chunks/root.23.js +198 -95
  31. package/dist/a_chunks/root.24.js +118 -5
  32. package/dist/a_chunks/root.25.js +4 -3
  33. package/dist/a_chunks/root.26.js +4 -0
  34. package/dist/a_chunks/root.8.js +7 -5
  35. package/dist/index.js +2 -1
  36. package/dist/packs.d.ts +788 -0
  37. package/dist/util-types/fd/InputType.d.ts +1 -1
  38. package/dist/util-types/fd/index.d.ts +33 -10
  39. package/dist/utils/getInputStyle.d.ts +3 -2
  40. package/dist/utils/msmc.d.ts +8 -2
  41. package/dist/utils/new.d.ts +12 -0
  42. package/package.json +4 -4
@@ -1,4 +1,5 @@
1
1
  export declare const componentMap: {
2
+ MyIconSelect: import("..").TCommonComponent<import("src/packs").IMyIconSelectProps, string>;
2
3
  MI: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
3
4
  input: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
4
5
  Input: import("..").TCommonComponent<import("src/packs").IMyInputProps, string>;
@@ -12,10 +13,791 @@ export declare const componentMap: {
12
13
  single_date_picker: import("src/packs").TMyDatePicker;
13
14
  CusDatePicker: import("src/packs").TMyDatePicker;
14
15
  date: import("src/packs").TMyDatePicker;
16
+ MyRangePicker: import("react").FunctionComponent<{
17
+ disabled?: boolean;
18
+ value?: import("../MyRangeDate/utils").MyValue;
19
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
20
+ isDisplay?: boolean;
21
+ } & {
22
+ marshal?: number;
23
+ value?: import("../MyRangeDate/utils").MyValue;
24
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
25
+ linker?: string;
26
+ minDate?: any;
27
+ maxDate?: any;
28
+ validDate?: any;
29
+ getPopupContainer?: any;
30
+ format?: any;
31
+ showUnknown?: boolean;
32
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
33
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
34
+ size?: import("antd/es/button").ButtonSize;
35
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
36
+ bordered?: boolean;
37
+ status?: import("antd/es/_util/statusUtils").InputStatus;
38
+ variant?: import("antd/es/config-provider").Variant;
39
+ dropdownClassName?: string;
40
+ popupClassName?: string;
41
+ rootClassName?: string;
42
+ popupStyle?: React.CSSProperties;
43
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
44
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
45
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
46
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
47
+ }, "disabled" | "value">> & {
48
+ DisplayFC?: import("react").FunctionComponent<{
49
+ disabled?: boolean;
50
+ value?: import("../MyRangeDate/utils").MyValue;
51
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
52
+ isDisplay?: boolean;
53
+ } & {
54
+ marshal?: number;
55
+ value?: import("../MyRangeDate/utils").MyValue;
56
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
57
+ linker?: string;
58
+ minDate?: any;
59
+ maxDate?: any;
60
+ validDate?: any;
61
+ getPopupContainer?: any;
62
+ format?: any;
63
+ showUnknown?: boolean;
64
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
65
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
66
+ size?: import("antd/es/button").ButtonSize;
67
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
68
+ bordered?: boolean;
69
+ status?: import("antd/es/_util/statusUtils").InputStatus;
70
+ variant?: import("antd/es/config-provider").Variant;
71
+ dropdownClassName?: string;
72
+ popupClassName?: string;
73
+ rootClassName?: string;
74
+ popupStyle?: React.CSSProperties;
75
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
76
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
77
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
78
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
79
+ }, "disabled" | "value">> | undefined;
80
+ };
81
+ RangePicker: import("react").FunctionComponent<{
82
+ disabled?: boolean;
83
+ value?: import("../MyRangeDate/utils").MyValue;
84
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
85
+ isDisplay?: boolean;
86
+ } & {
87
+ marshal?: number;
88
+ value?: import("../MyRangeDate/utils").MyValue;
89
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
90
+ linker?: string;
91
+ minDate?: any;
92
+ maxDate?: any;
93
+ validDate?: any;
94
+ getPopupContainer?: any;
95
+ format?: any;
96
+ showUnknown?: boolean;
97
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
98
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
99
+ size?: import("antd/es/button").ButtonSize;
100
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
101
+ bordered?: boolean;
102
+ status?: import("antd/es/_util/statusUtils").InputStatus;
103
+ variant?: import("antd/es/config-provider").Variant;
104
+ dropdownClassName?: string;
105
+ popupClassName?: string;
106
+ rootClassName?: string;
107
+ popupStyle?: React.CSSProperties;
108
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
109
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
110
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
111
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
112
+ }, "disabled" | "value">> & {
113
+ DisplayFC?: import("react").FunctionComponent<{
114
+ disabled?: boolean;
115
+ value?: import("../MyRangeDate/utils").MyValue;
116
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
117
+ isDisplay?: boolean;
118
+ } & {
119
+ marshal?: number;
120
+ value?: import("../MyRangeDate/utils").MyValue;
121
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
122
+ linker?: string;
123
+ minDate?: any;
124
+ maxDate?: any;
125
+ validDate?: any;
126
+ getPopupContainer?: any;
127
+ format?: any;
128
+ showUnknown?: boolean;
129
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
130
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
131
+ size?: import("antd/es/button").ButtonSize;
132
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
133
+ bordered?: boolean;
134
+ status?: import("antd/es/_util/statusUtils").InputStatus;
135
+ variant?: import("antd/es/config-provider").Variant;
136
+ dropdownClassName?: string;
137
+ popupClassName?: string;
138
+ rootClassName?: string;
139
+ popupStyle?: React.CSSProperties;
140
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
141
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
142
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
143
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
144
+ }, "disabled" | "value">> | undefined;
145
+ };
146
+ rangePicker: import("react").FunctionComponent<{
147
+ disabled?: boolean;
148
+ value?: import("../MyRangeDate/utils").MyValue;
149
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
150
+ isDisplay?: boolean;
151
+ } & {
152
+ marshal?: number;
153
+ value?: import("../MyRangeDate/utils").MyValue;
154
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
155
+ linker?: string;
156
+ minDate?: any;
157
+ maxDate?: any;
158
+ validDate?: any;
159
+ getPopupContainer?: any;
160
+ format?: any;
161
+ showUnknown?: boolean;
162
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
163
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
164
+ size?: import("antd/es/button").ButtonSize;
165
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
166
+ bordered?: boolean;
167
+ status?: import("antd/es/_util/statusUtils").InputStatus;
168
+ variant?: import("antd/es/config-provider").Variant;
169
+ dropdownClassName?: string;
170
+ popupClassName?: string;
171
+ rootClassName?: string;
172
+ popupStyle?: React.CSSProperties;
173
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
174
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
175
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
176
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
177
+ }, "disabled" | "value">> & {
178
+ DisplayFC?: import("react").FunctionComponent<{
179
+ disabled?: boolean;
180
+ value?: import("../MyRangeDate/utils").MyValue;
181
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
182
+ isDisplay?: boolean;
183
+ } & {
184
+ marshal?: number;
185
+ value?: import("../MyRangeDate/utils").MyValue;
186
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
187
+ linker?: string;
188
+ minDate?: any;
189
+ maxDate?: any;
190
+ validDate?: any;
191
+ getPopupContainer?: any;
192
+ format?: any;
193
+ showUnknown?: boolean;
194
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
195
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
196
+ size?: import("antd/es/button").ButtonSize;
197
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
198
+ bordered?: boolean;
199
+ status?: import("antd/es/_util/statusUtils").InputStatus;
200
+ variant?: import("antd/es/config-provider").Variant;
201
+ dropdownClassName?: string;
202
+ popupClassName?: string;
203
+ rootClassName?: string;
204
+ popupStyle?: React.CSSProperties;
205
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
206
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
207
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
208
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
209
+ }, "disabled" | "value">> | undefined;
210
+ };
211
+ range_picker: import("react").FunctionComponent<{
212
+ disabled?: boolean;
213
+ value?: import("../MyRangeDate/utils").MyValue;
214
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
215
+ isDisplay?: boolean;
216
+ } & {
217
+ marshal?: number;
218
+ value?: import("../MyRangeDate/utils").MyValue;
219
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
220
+ linker?: string;
221
+ minDate?: any;
222
+ maxDate?: any;
223
+ validDate?: any;
224
+ getPopupContainer?: any;
225
+ format?: any;
226
+ showUnknown?: boolean;
227
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
228
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
229
+ size?: import("antd/es/button").ButtonSize;
230
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
231
+ bordered?: boolean;
232
+ status?: import("antd/es/_util/statusUtils").InputStatus;
233
+ variant?: import("antd/es/config-provider").Variant;
234
+ dropdownClassName?: string;
235
+ popupClassName?: string;
236
+ rootClassName?: string;
237
+ popupStyle?: React.CSSProperties;
238
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
239
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
240
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
241
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
242
+ }, "disabled" | "value">> & {
243
+ DisplayFC?: import("react").FunctionComponent<{
244
+ disabled?: boolean;
245
+ value?: import("../MyRangeDate/utils").MyValue;
246
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
247
+ isDisplay?: boolean;
248
+ } & {
249
+ marshal?: number;
250
+ value?: import("../MyRangeDate/utils").MyValue;
251
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
252
+ linker?: string;
253
+ minDate?: any;
254
+ maxDate?: any;
255
+ validDate?: any;
256
+ getPopupContainer?: any;
257
+ format?: any;
258
+ showUnknown?: boolean;
259
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
260
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
261
+ size?: import("antd/es/button").ButtonSize;
262
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
263
+ bordered?: boolean;
264
+ status?: import("antd/es/_util/statusUtils").InputStatus;
265
+ variant?: import("antd/es/config-provider").Variant;
266
+ dropdownClassName?: string;
267
+ popupClassName?: string;
268
+ rootClassName?: string;
269
+ popupStyle?: React.CSSProperties;
270
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
271
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
272
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
273
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
274
+ }, "disabled" | "value">> | undefined;
275
+ };
276
+ MyRangeDate: import("react").FunctionComponent<{
277
+ disabled?: boolean;
278
+ value?: import("../MyRangeDate/utils").MyValue;
279
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
280
+ isDisplay?: boolean;
281
+ } & {
282
+ marshal?: number;
283
+ value?: import("../MyRangeDate/utils").MyValue;
284
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
285
+ linker?: string;
286
+ minDate?: any;
287
+ maxDate?: any;
288
+ validDate?: any;
289
+ getPopupContainer?: any;
290
+ format?: any;
291
+ showUnknown?: boolean;
292
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
293
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
294
+ size?: import("antd/es/button").ButtonSize;
295
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
296
+ bordered?: boolean;
297
+ status?: import("antd/es/_util/statusUtils").InputStatus;
298
+ variant?: import("antd/es/config-provider").Variant;
299
+ dropdownClassName?: string;
300
+ popupClassName?: string;
301
+ rootClassName?: string;
302
+ popupStyle?: React.CSSProperties;
303
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
304
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
305
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
306
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
307
+ }, "disabled" | "value">> & {
308
+ DisplayFC?: import("react").FunctionComponent<{
309
+ disabled?: boolean;
310
+ value?: import("../MyRangeDate/utils").MyValue;
311
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
312
+ isDisplay?: boolean;
313
+ } & {
314
+ marshal?: number;
315
+ value?: import("../MyRangeDate/utils").MyValue;
316
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
317
+ linker?: string;
318
+ minDate?: any;
319
+ maxDate?: any;
320
+ validDate?: any;
321
+ getPopupContainer?: any;
322
+ format?: any;
323
+ showUnknown?: boolean;
324
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
325
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
326
+ size?: import("antd/es/button").ButtonSize;
327
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
328
+ bordered?: boolean;
329
+ status?: import("antd/es/_util/statusUtils").InputStatus;
330
+ variant?: import("antd/es/config-provider").Variant;
331
+ dropdownClassName?: string;
332
+ popupClassName?: string;
333
+ rootClassName?: string;
334
+ popupStyle?: React.CSSProperties;
335
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
336
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
337
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
338
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
339
+ }, "disabled" | "value">> | undefined;
340
+ };
341
+ RangeDate: import("react").FunctionComponent<{
342
+ disabled?: boolean;
343
+ value?: import("../MyRangeDate/utils").MyValue;
344
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
345
+ isDisplay?: boolean;
346
+ } & {
347
+ marshal?: number;
348
+ value?: import("../MyRangeDate/utils").MyValue;
349
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
350
+ linker?: string;
351
+ minDate?: any;
352
+ maxDate?: any;
353
+ validDate?: any;
354
+ getPopupContainer?: any;
355
+ format?: any;
356
+ showUnknown?: boolean;
357
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
358
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
359
+ size?: import("antd/es/button").ButtonSize;
360
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
361
+ bordered?: boolean;
362
+ status?: import("antd/es/_util/statusUtils").InputStatus;
363
+ variant?: import("antd/es/config-provider").Variant;
364
+ dropdownClassName?: string;
365
+ popupClassName?: string;
366
+ rootClassName?: string;
367
+ popupStyle?: React.CSSProperties;
368
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
369
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
370
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
371
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
372
+ }, "disabled" | "value">> & {
373
+ DisplayFC?: import("react").FunctionComponent<{
374
+ disabled?: boolean;
375
+ value?: import("../MyRangeDate/utils").MyValue;
376
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
377
+ isDisplay?: boolean;
378
+ } & {
379
+ marshal?: number;
380
+ value?: import("../MyRangeDate/utils").MyValue;
381
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
382
+ linker?: string;
383
+ minDate?: any;
384
+ maxDate?: any;
385
+ validDate?: any;
386
+ getPopupContainer?: any;
387
+ format?: any;
388
+ showUnknown?: boolean;
389
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
390
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
391
+ size?: import("antd/es/button").ButtonSize;
392
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
393
+ bordered?: boolean;
394
+ status?: import("antd/es/_util/statusUtils").InputStatus;
395
+ variant?: import("antd/es/config-provider").Variant;
396
+ dropdownClassName?: string;
397
+ popupClassName?: string;
398
+ rootClassName?: string;
399
+ popupStyle?: React.CSSProperties;
400
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
401
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
402
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
403
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
404
+ }, "disabled" | "value">> | undefined;
405
+ };
406
+ rangeDate: import("react").FunctionComponent<{
407
+ disabled?: boolean;
408
+ value?: import("../MyRangeDate/utils").MyValue;
409
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
410
+ isDisplay?: boolean;
411
+ } & {
412
+ marshal?: number;
413
+ value?: import("../MyRangeDate/utils").MyValue;
414
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
415
+ linker?: string;
416
+ minDate?: any;
417
+ maxDate?: any;
418
+ validDate?: any;
419
+ getPopupContainer?: any;
420
+ format?: any;
421
+ showUnknown?: boolean;
422
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
423
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
424
+ size?: import("antd/es/button").ButtonSize;
425
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
426
+ bordered?: boolean;
427
+ status?: import("antd/es/_util/statusUtils").InputStatus;
428
+ variant?: import("antd/es/config-provider").Variant;
429
+ dropdownClassName?: string;
430
+ popupClassName?: string;
431
+ rootClassName?: string;
432
+ popupStyle?: React.CSSProperties;
433
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
434
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
435
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
436
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
437
+ }, "disabled" | "value">> & {
438
+ DisplayFC?: import("react").FunctionComponent<{
439
+ disabled?: boolean;
440
+ value?: import("../MyRangeDate/utils").MyValue;
441
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
442
+ isDisplay?: boolean;
443
+ } & {
444
+ marshal?: number;
445
+ value?: import("../MyRangeDate/utils").MyValue;
446
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
447
+ linker?: string;
448
+ minDate?: any;
449
+ maxDate?: any;
450
+ validDate?: any;
451
+ getPopupContainer?: any;
452
+ format?: any;
453
+ showUnknown?: boolean;
454
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
455
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
456
+ size?: import("antd/es/button").ButtonSize;
457
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
458
+ bordered?: boolean;
459
+ status?: import("antd/es/_util/statusUtils").InputStatus;
460
+ variant?: import("antd/es/config-provider").Variant;
461
+ dropdownClassName?: string;
462
+ popupClassName?: string;
463
+ rootClassName?: string;
464
+ popupStyle?: React.CSSProperties;
465
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
466
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
467
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
468
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
469
+ }, "disabled" | "value">> | undefined;
470
+ };
471
+ range_date: import("react").FunctionComponent<{
472
+ disabled?: boolean;
473
+ value?: import("../MyRangeDate/utils").MyValue;
474
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
475
+ isDisplay?: boolean;
476
+ } & {
477
+ marshal?: number;
478
+ value?: import("../MyRangeDate/utils").MyValue;
479
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
480
+ linker?: string;
481
+ minDate?: any;
482
+ maxDate?: any;
483
+ validDate?: any;
484
+ getPopupContainer?: any;
485
+ format?: any;
486
+ showUnknown?: boolean;
487
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
488
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
489
+ size?: import("antd/es/button").ButtonSize;
490
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
491
+ bordered?: boolean;
492
+ status?: import("antd/es/_util/statusUtils").InputStatus;
493
+ variant?: import("antd/es/config-provider").Variant;
494
+ dropdownClassName?: string;
495
+ popupClassName?: string;
496
+ rootClassName?: string;
497
+ popupStyle?: React.CSSProperties;
498
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
499
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
500
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
501
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
502
+ }, "disabled" | "value">> & {
503
+ DisplayFC?: import("react").FunctionComponent<{
504
+ disabled?: boolean;
505
+ value?: import("../MyRangeDate/utils").MyValue;
506
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
507
+ isDisplay?: boolean;
508
+ } & {
509
+ marshal?: number;
510
+ value?: import("../MyRangeDate/utils").MyValue;
511
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
512
+ linker?: string;
513
+ minDate?: any;
514
+ maxDate?: any;
515
+ validDate?: any;
516
+ getPopupContainer?: any;
517
+ format?: any;
518
+ showUnknown?: boolean;
519
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
520
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
521
+ size?: import("antd/es/button").ButtonSize;
522
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
523
+ bordered?: boolean;
524
+ status?: import("antd/es/_util/statusUtils").InputStatus;
525
+ variant?: import("antd/es/config-provider").Variant;
526
+ dropdownClassName?: string;
527
+ popupClassName?: string;
528
+ rootClassName?: string;
529
+ popupStyle?: React.CSSProperties;
530
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
531
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
532
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
533
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
534
+ }, "disabled" | "value">> | undefined;
535
+ };
536
+ MyRangeDateTime: import("react").FunctionComponent<{
537
+ disabled?: boolean;
538
+ value?: import("../MyRangeDate/utils").MyValue;
539
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
540
+ isDisplay?: boolean;
541
+ } & {
542
+ marshal?: number;
543
+ value?: import("../MyRangeDate/utils").MyValue;
544
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
545
+ linker?: string;
546
+ minDate?: any;
547
+ maxDate?: any;
548
+ validDate?: any;
549
+ getPopupContainer?: any;
550
+ format?: any;
551
+ showUnknown?: boolean;
552
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
553
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
554
+ size?: import("antd/es/button").ButtonSize;
555
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
556
+ bordered?: boolean;
557
+ status?: import("antd/es/_util/statusUtils").InputStatus;
558
+ variant?: import("antd/es/config-provider").Variant;
559
+ dropdownClassName?: string;
560
+ popupClassName?: string;
561
+ rootClassName?: string;
562
+ popupStyle?: React.CSSProperties;
563
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
564
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
565
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
566
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
567
+ }, "disabled" | "value">> & {
568
+ DisplayFC?: import("react").FunctionComponent<{
569
+ disabled?: boolean;
570
+ value?: import("../MyRangeDate/utils").MyValue;
571
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
572
+ isDisplay?: boolean;
573
+ } & {
574
+ marshal?: number;
575
+ value?: import("../MyRangeDate/utils").MyValue;
576
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
577
+ linker?: string;
578
+ minDate?: any;
579
+ maxDate?: any;
580
+ validDate?: any;
581
+ getPopupContainer?: any;
582
+ format?: any;
583
+ showUnknown?: boolean;
584
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
585
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
586
+ size?: import("antd/es/button").ButtonSize;
587
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
588
+ bordered?: boolean;
589
+ status?: import("antd/es/_util/statusUtils").InputStatus;
590
+ variant?: import("antd/es/config-provider").Variant;
591
+ dropdownClassName?: string;
592
+ popupClassName?: string;
593
+ rootClassName?: string;
594
+ popupStyle?: React.CSSProperties;
595
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
596
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
597
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
598
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
599
+ }, "disabled" | "value">> | undefined;
600
+ };
601
+ RangeDateTime: import("react").FunctionComponent<{
602
+ disabled?: boolean;
603
+ value?: import("../MyRangeDate/utils").MyValue;
604
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
605
+ isDisplay?: boolean;
606
+ } & {
607
+ marshal?: number;
608
+ value?: import("../MyRangeDate/utils").MyValue;
609
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
610
+ linker?: string;
611
+ minDate?: any;
612
+ maxDate?: any;
613
+ validDate?: any;
614
+ getPopupContainer?: any;
615
+ format?: any;
616
+ showUnknown?: boolean;
617
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
618
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
619
+ size?: import("antd/es/button").ButtonSize;
620
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
621
+ bordered?: boolean;
622
+ status?: import("antd/es/_util/statusUtils").InputStatus;
623
+ variant?: import("antd/es/config-provider").Variant;
624
+ dropdownClassName?: string;
625
+ popupClassName?: string;
626
+ rootClassName?: string;
627
+ popupStyle?: React.CSSProperties;
628
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
629
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
630
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
631
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
632
+ }, "disabled" | "value">> & {
633
+ DisplayFC?: import("react").FunctionComponent<{
634
+ disabled?: boolean;
635
+ value?: import("../MyRangeDate/utils").MyValue;
636
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
637
+ isDisplay?: boolean;
638
+ } & {
639
+ marshal?: number;
640
+ value?: import("../MyRangeDate/utils").MyValue;
641
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
642
+ linker?: string;
643
+ minDate?: any;
644
+ maxDate?: any;
645
+ validDate?: any;
646
+ getPopupContainer?: any;
647
+ format?: any;
648
+ showUnknown?: boolean;
649
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
650
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
651
+ size?: import("antd/es/button").ButtonSize;
652
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
653
+ bordered?: boolean;
654
+ status?: import("antd/es/_util/statusUtils").InputStatus;
655
+ variant?: import("antd/es/config-provider").Variant;
656
+ dropdownClassName?: string;
657
+ popupClassName?: string;
658
+ rootClassName?: string;
659
+ popupStyle?: React.CSSProperties;
660
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
661
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
662
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
663
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
664
+ }, "disabled" | "value">> | undefined;
665
+ };
666
+ rangeDateTime: import("react").FunctionComponent<{
667
+ disabled?: boolean;
668
+ value?: import("../MyRangeDate/utils").MyValue;
669
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
670
+ isDisplay?: boolean;
671
+ } & {
672
+ marshal?: number;
673
+ value?: import("../MyRangeDate/utils").MyValue;
674
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
675
+ linker?: string;
676
+ minDate?: any;
677
+ maxDate?: any;
678
+ validDate?: any;
679
+ getPopupContainer?: any;
680
+ format?: any;
681
+ showUnknown?: boolean;
682
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
683
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
684
+ size?: import("antd/es/button").ButtonSize;
685
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
686
+ bordered?: boolean;
687
+ status?: import("antd/es/_util/statusUtils").InputStatus;
688
+ variant?: import("antd/es/config-provider").Variant;
689
+ dropdownClassName?: string;
690
+ popupClassName?: string;
691
+ rootClassName?: string;
692
+ popupStyle?: React.CSSProperties;
693
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
694
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
695
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
696
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
697
+ }, "disabled" | "value">> & {
698
+ DisplayFC?: import("react").FunctionComponent<{
699
+ disabled?: boolean;
700
+ value?: import("../MyRangeDate/utils").MyValue;
701
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
702
+ isDisplay?: boolean;
703
+ } & {
704
+ marshal?: number;
705
+ value?: import("../MyRangeDate/utils").MyValue;
706
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
707
+ linker?: string;
708
+ minDate?: any;
709
+ maxDate?: any;
710
+ validDate?: any;
711
+ getPopupContainer?: any;
712
+ format?: any;
713
+ showUnknown?: boolean;
714
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
715
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
716
+ size?: import("antd/es/button").ButtonSize;
717
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
718
+ bordered?: boolean;
719
+ status?: import("antd/es/_util/statusUtils").InputStatus;
720
+ variant?: import("antd/es/config-provider").Variant;
721
+ dropdownClassName?: string;
722
+ popupClassName?: string;
723
+ rootClassName?: string;
724
+ popupStyle?: React.CSSProperties;
725
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
726
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
727
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
728
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
729
+ }, "disabled" | "value">> | undefined;
730
+ };
731
+ range_date_time: import("react").FunctionComponent<{
732
+ disabled?: boolean;
733
+ value?: import("../MyRangeDate/utils").MyValue;
734
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
735
+ isDisplay?: boolean;
736
+ } & {
737
+ marshal?: number;
738
+ value?: import("../MyRangeDate/utils").MyValue;
739
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
740
+ linker?: string;
741
+ minDate?: any;
742
+ maxDate?: any;
743
+ validDate?: any;
744
+ getPopupContainer?: any;
745
+ format?: any;
746
+ showUnknown?: boolean;
747
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
748
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
749
+ size?: import("antd/es/button").ButtonSize;
750
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
751
+ bordered?: boolean;
752
+ status?: import("antd/es/_util/statusUtils").InputStatus;
753
+ variant?: import("antd/es/config-provider").Variant;
754
+ dropdownClassName?: string;
755
+ popupClassName?: string;
756
+ rootClassName?: string;
757
+ popupStyle?: React.CSSProperties;
758
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
759
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
760
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
761
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
762
+ }, "disabled" | "value">> & {
763
+ DisplayFC?: import("react").FunctionComponent<{
764
+ disabled?: boolean;
765
+ value?: import("../MyRangeDate/utils").MyValue;
766
+ onChange?(v: import("../MyRangeDate/utils").MyValue, v2?: any): void;
767
+ isDisplay?: boolean;
768
+ } & {
769
+ marshal?: number;
770
+ value?: import("../MyRangeDate/utils").MyValue;
771
+ onChange?: (value: import("../MyRangeDate/utils").MyValue) => void;
772
+ linker?: string;
773
+ minDate?: any;
774
+ maxDate?: any;
775
+ validDate?: any;
776
+ getPopupContainer?: any;
777
+ format?: any;
778
+ showUnknown?: boolean;
779
+ } & Omit<Omit<Omit<import("rc-picker").RangePickerProps<import("dayjs").Dayjs>, "styles" | "classNames" | "locale" | "generateConfig" | "hideHeader"> & {
780
+ locale?: import("antd/es/date-picker/generatePicker").PickerLocale;
781
+ size?: import("antd/es/button").ButtonSize;
782
+ placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight";
783
+ bordered?: boolean;
784
+ status?: import("antd/es/_util/statusUtils").InputStatus;
785
+ variant?: import("antd/es/config-provider").Variant;
786
+ dropdownClassName?: string;
787
+ popupClassName?: string;
788
+ rootClassName?: string;
789
+ popupStyle?: React.CSSProperties;
790
+ styles?: import("antd/es/date-picker/generatePicker/interface").PickerStyles;
791
+ classNames?: import("antd/es/date-picker/generatePicker/interface").PickerClassNames;
792
+ } & import("react").RefAttributes<import("rc-picker").PickerRef>, "ref"> & {
793
+ ref?: ((instance: import("rc-picker").PickerRef | null) => void | import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof import("react").DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | import("react").RefObject<import("rc-picker").PickerRef> | null | undefined;
794
+ }, "disabled" | "value">> | undefined;
795
+ };
15
796
  MyColor: import("..").TCommonComponent<import("../MyColor/types").IMyColorProps>;
16
797
  MySwitch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
17
798
  switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
18
799
  Switch: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
800
+ MSW: import("..").TCommonComponent<import("../MySwitch/types").IMySwitchProps, boolean>;
19
801
  ArrayInput: import("..").TCommonComponent<import("src/packs").IArrayInputProps, string>;
20
802
  MArr: import("..").TCommonComponent<import("src/packs").IArrayInputProps, string>;
21
803
  MySelect: import("react").LazyExoticComponent<import("..").TCommonComponent<import("src/packs").IMySelectProps, string | number>> & {
@@ -34,8 +816,9 @@ export declare const componentMap: {
34
816
  Checkbox: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
35
817
  MC: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
36
818
  checkbox: import("..").TCommonComponent<import("src/packs").IMyCheckboxProps>;
37
- MyAutoComplete: import("..").TCommonComponent<import("../MyAutoComplete").MyAutoCompleteProps>;
38
- MA: import("..").TCommonComponent<import("../MyAutoComplete").MyAutoCompleteProps>;
39
- AutoComplete: import("..").TCommonComponent<import("../MyAutoComplete").MyAutoCompleteProps>;
40
- autocomplete: import("..").TCommonComponent<import("../MyAutoComplete").MyAutoCompleteProps>;
819
+ MyButton: typeof import("src/packs").MyButton;
820
+ MyAutoComplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
821
+ MA: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
822
+ AutoComplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
823
+ autocomplete: import("..").TCommonComponent<import("src/packs").MyAutoCompleteProps>;
41
824
  };