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