@noah-libjs/components 0.0.7 → 0.0.9

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 (56) hide show
  1. package/dist/ArrayInput/components.d.ts +165 -5
  2. package/dist/ArrayInput/types.d.ts +2 -1
  3. package/dist/ArraySingle/DispalyInner.d.ts +4 -0
  4. package/dist/ArraySingle/Inner.d.ts +4 -0
  5. package/dist/ArraySingle/index.d.ts +4 -0
  6. package/dist/ArraySingle/types.d.ts +16 -0
  7. package/dist/LazyAntd/ColorPicker/index.d.ts +1 -1
  8. package/dist/LazyAntd/DatePicker/Base/DatePicker.d.ts +3 -1
  9. package/dist/LazyAntd/DatePicker/Base/index.d.ts +6 -2
  10. package/dist/LazyAntd/DatePicker/RangePicker.d.ts +3 -1
  11. package/dist/LazyAntd/Tree/Inner.d.ts +2 -1
  12. package/dist/LazyAntd/Tree/index.d.ts +3 -2
  13. package/dist/MyAutoComplete/types.d.ts +4 -1
  14. package/dist/MyButton/index.d.ts +10 -0
  15. package/dist/MyCheckbox/components.d.ts +184 -24
  16. package/dist/MyCheckbox/types.d.ts +6 -3
  17. package/dist/MyDatePicker/Display.d.ts +1 -1
  18. package/dist/MyIconSelect/MyIcon.d.ts +2 -0
  19. package/dist/MyIconSelect/MyIconSelect.d.ts +5 -0
  20. package/dist/MyIconSelect/index.d.ts +6 -0
  21. package/dist/MyIconSelect/types.d.ts +16 -0
  22. package/dist/MyIconSelect/utils.d.ts +7 -0
  23. package/dist/MyInput/index.d.ts +3 -3
  24. package/dist/MyRangeDate/Inner.d.ts +4 -5
  25. package/dist/MyRangeDate/index.d.ts +6 -7
  26. package/dist/MyRangeDate/utils.d.ts +18 -381
  27. package/dist/MySelect/components.d.ts +165 -5
  28. package/dist/MySelect/types.d.ts +3 -1
  29. package/dist/MySwitch/types.d.ts +5 -2
  30. package/dist/a_chunks/index.js +509 -116
  31. package/dist/a_chunks/index.module.js +1 -24
  32. package/dist/a_chunks/root.17.js +12 -6
  33. package/dist/a_chunks/root.18.js +5 -6
  34. package/dist/a_chunks/root.19.js +2 -2
  35. package/dist/a_chunks/root.20.js +2 -2
  36. package/dist/a_chunks/root.21.js +2 -2
  37. package/dist/a_chunks/root.22.js +141 -183
  38. package/dist/a_chunks/root.23.js +15 -109
  39. package/dist/a_chunks/root.24.js +66 -5
  40. package/dist/a_chunks/root.25.js +8 -4
  41. package/dist/a_chunks/root.26.js +68 -0
  42. package/dist/a_chunks/root.27.js +212 -0
  43. package/dist/a_chunks/root.28.js +117 -0
  44. package/dist/a_chunks/root.29.js +5 -0
  45. package/dist/a_chunks/root.30.js +4 -0
  46. package/dist/a_chunks/root.8.js +7 -5
  47. package/dist/a_chunks/utils.js +59 -0
  48. package/dist/index.js +2 -2
  49. package/dist/packs.d.ts +168 -1
  50. package/dist/util-types/fd/InputType.d.ts +1 -1
  51. package/dist/util-types/fd/index.d.ts +41 -11
  52. package/dist/utils/getInputStyle.d.ts +3 -2
  53. package/dist/utils/msmc.d.ts +13 -4
  54. package/dist/utils/new.d.ts +12 -0
  55. package/dist/utils/use_array_marshal.d.ts +5 -0
  56. package/package.json +4 -4
@@ -5,11 +5,12 @@ import { IArrayInputProps } from "../ArrayInput";
5
5
  import { IMyDatePickerProps } from "../MyDatePicker/utils";
6
6
  import { IMyInputProps } from "../MyInput";
7
7
  import { TMarshal, TMode } from "../utils";
8
- import { TOptions } from "../util-types";
8
+ import { IMchc_FormDescriptions_InputProps, TOptions } from "../util-types";
9
9
  export interface ICompatibleProps {
10
- marshal?: any;
10
+ marshal?: IMchc_FormDescriptions_InputProps['marshal'];
11
11
  optionKey?: string;
12
12
  useString?: boolean;
13
+ useDefault?: boolean;
13
14
  options?: any;
14
15
  sp?: any[];
15
16
  config?: any;
@@ -17,9 +18,10 @@ export interface ICompatibleProps {
17
18
  startIndex?: any;
18
19
  value?: any;
19
20
  uniqueKey?: string;
21
+ display_linker?: string;
20
22
  }
21
23
  export interface IMyCheckboxProps {
22
- value?: string | number | ICommonOption[];
24
+ value?: boolean | null | string | number | ICommonOption[];
23
25
  options?: TOptions | (() => TOptions);
24
26
  onChange?(v?: any): void;
25
27
  type?: TMode;
@@ -36,6 +38,7 @@ export interface IMyCheckboxProps {
36
38
  startIndex?: number;
37
39
  onBlur?(e: any): void;
38
40
  style?: React.CSSProperties;
41
+ display_linker?: string;
39
42
  }
40
43
  type INil = Exclude<ICommonOption, 'props' | 'inputType'>;
41
44
  interface IMyInput extends ICommonOption {
@@ -1,3 +1,3 @@
1
1
  import React from 'react';
2
2
  import { IMyDatePickerProps } from './utils';
3
- export declare const DisplayFC: (_props: IMyDatePickerProps) => React.JSX.Element;
3
+ export declare const DisplayFC: (_props: IMyDatePickerProps) => React.JSX.Element | null;
@@ -0,0 +1,2 @@
1
+ import { IMyIconSelectProps } from './types';
2
+ export default function MyIcon(props: IMyIconSelectProps): import("react").JSX.Element | null;
@@ -0,0 +1,5 @@
1
+ import { InputRef } from 'antd';
2
+ import React from 'react';
3
+ import { IMyIconSelectProps } from './types';
4
+ declare const _default: React.ForwardRefExoticComponent<IMyIconSelectProps & React.RefAttributes<InputRef>>;
5
+ export default _default;
@@ -0,0 +1,6 @@
1
+ import { TCommonComponent } from '../util-types';
2
+ import { IMyIconSelectProps } from './types';
3
+ export * from './types';
4
+ declare const MyIcon: import("react").LazyExoticComponent<typeof import("./MyIcon").default>;
5
+ declare const MyIconSelect: TCommonComponent<IMyIconSelectProps, string>;
6
+ export { MyIcon, MyIconSelect };
@@ -0,0 +1,16 @@
1
+ import { FormInstance } from 'antd';
2
+ import { AntdIconProps } from '@ant-design/icons/lib/components/AntdIcon';
3
+ import { FC } from 'react';
4
+ export type IIconMap = {
5
+ [x: string]: {
6
+ render: FC<AntdIconProps>;
7
+ };
8
+ };
9
+ export interface IMyIconSelectProps extends Omit<AntdIconProps, 'value' | 'onChange' | 'form' | 'ref'> {
10
+ value?: T_Icon_Key;
11
+ onChange?(v: string | null): void;
12
+ form?: FormInstance;
13
+ icon_type?: 'Outlined';
14
+ }
15
+ type T_Icon_Key = "StepBackwardOutlined" | "StepForwardOutlined" | "FastBackwardOutlined" | "FastForwardOutlined" | "ShrinkOutlined" | "ArrowsAltOutlined" | "DownOutlined" | "UpOutlined" | "LeftOutlined" | "RightOutlined" | "CaretUpOutlined" | "CaretDownOutlined" | "CaretLeftOutlined" | "CaretRightOutlined" | "UpCircleOutlined" | "DownCircleOutlined" | "LeftCircleOutlined" | "RightCircleOutlined" | "DoubleRightOutlined" | "DoubleLeftOutlined" | "VerticalLeftOutlined" | "VerticalRightOutlined" | "VerticalAlignTopOutlined" | "VerticalAlignMiddleOutlined" | "VerticalAlignBottomOutlined" | "ForwardOutlined" | "BackwardOutlined" | "RollbackOutlined" | "EnterOutlined" | "RetweetOutlined" | "SwapOutlined" | "SwapLeftOutlined" | "SwapRightOutlined" | "ArrowUpOutlined" | "ArrowDownOutlined" | "ArrowLeftOutlined" | "ArrowRightOutlined" | "PlayCircleOutlined" | "UpSquareOutlined" | "DownSquareOutlined" | "LeftSquareOutlined" | "RightSquareOutlined" | "LoginOutlined" | "LogoutOutlined" | "MenuFoldOutlined" | "MenuUnfoldOutlined" | "BorderBottomOutlined" | "BorderHorizontalOutlined" | "BorderInnerOutlined" | "BorderOuterOutlined" | "BorderLeftOutlined" | "BorderRightOutlined" | "BorderTopOutlined" | "BorderVerticleOutlined" | "PicCenterOutlined" | "PicLeftOutlined" | "PicRightOutlined" | "RadiusBottomleftOutlined" | "RadiusBottomrightOutlined" | "RadiusUpleftOutlined" | "RadiusUprightOutlined" | "FullscreenOutlined" | "FullscreenExitOutlined" | "QuestionOutlined" | "QuestionCircleOutlined" | "PlusOutlined" | "PlusCircleOutlined" | "PauseOutlined" | "PauseCircleOutlined" | "MinusOutlined" | "MinusCircleOutlined" | "PlusSquareOutlined" | "MinusSquareOutlined" | "InfoOutlined" | "InfoCircleOutlined" | "ExclamationOutlined" | "ExclamationCircleOutlined" | "CloseOutlined" | "CloseCircleOutlined" | "CloseSquareOutlined" | "CheckOutlined" | "CheckCircleOutlined" | "CheckSquareOutlined" | "ClockCircleOutlined" | "WarningOutlined" | "IssuesCloseOutlined" | "StopOutlined" | "EditOutlined" | "FormOutlined" | "CopyOutlined" | "ScissorOutlined" | "DeleteOutlined" | "SnippetsOutlined" | "DiffOutlined" | "HighlightOutlined" | "AlignCenterOutlined" | "AlignLeftOutlined" | "AlignRightOutlined" | "BgColorsOutlined" | "BoldOutlined" | "ItalicOutlined" | "UnderlineOutlined" | "StrikethroughOutlined" | "RedoOutlined" | "UndoOutlined" | "ZoomInOutlined" | "ZoomOutOutlined" | "FontColorsOutlined" | "FontSizeOutlined" | "LineHeightOutlined" | "DashOutlined" | "SmallDashOutlined" | "SortAscendingOutlined" | "SortDescendingOutlined" | "DragOutlined" | "OrderedListOutlined" | "UnorderedListOutlined" | "RadiusSettingOutlined" | "ColumnWidthOutlined" | "ColumnHeightOutlined" | "AreaChartOutlined" | "PieChartOutlined" | "BarChartOutlined" | "DotChartOutlined" | "LineChartOutlined" | "RadarChartOutlined" | "HeatMapOutlined" | "FallOutlined" | "RiseOutlined" | "StockOutlined" | "BoxPlotOutlined" | "FundOutlined" | "SlidersOutlined" | "AndroidOutlined" | "AppleOutlined" | "WindowsOutlined" | "IeOutlined" | "ChromeOutlined" | "GithubOutlined" | "AliwangwangOutlined" | "DingdingOutlined" | "WeiboSquareOutlined" | "WeiboCircleOutlined" | "TaobaoCircleOutlined" | "Html5Outlined" | "WeiboOutlined" | "TwitterOutlined" | "WechatOutlined" | "WhatsAppOutlined" | "YoutubeOutlined" | "AlipayCircleOutlined" | "TaobaoOutlined" | "DingtalkOutlined" | "SkypeOutlined" | "QqOutlined" | "MediumWorkmarkOutlined" | "GitlabOutlined" | "MediumOutlined" | "LinkedinOutlined" | "GooglePlusOutlined" | "DropboxOutlined" | "FacebookOutlined" | "CodepenOutlined" | "CodeSandboxOutlined" | "AmazonOutlined" | "GoogleOutlined" | "CodepenCircleOutlined" | "AlipayOutlined" | "AntDesignOutlined" | "AntCloudOutlined" | "AliyunOutlined" | "ZhihuOutlined" | "SlackOutlined" | "SlackSquareOutlined" | "BehanceOutlined" | "BehanceSquareOutlined" | "DribbbleOutlined" | "DribbbleSquareOutlined" | "InstagramOutlined" | "YuqueOutlined" | "AlibabaOutlined" | "YahooOutlined" | "RedditOutlined" | "SketchOutlined" | "WechatWorkOutlined" | "OpenAIOutlined" | "DiscordOutlined" | "XOutlined" | "BilibiliOutlined" | "PinterestOutlined" | "TikTokOutlined" | "SpotifyOutlined" | "TwitchOutlined" | "LinuxOutlined" | "JavaOutlined" | "JavaScriptOutlined" | "PythonOutlined" | "RubyOutlined" | "DotNetOutlined" | "KubernetesOutlined" | "DockerOutlined" | "BaiduOutlined" | "HarmonyOSOutlined" | "AccountBookOutlined" | "AimOutlined" | "AlertOutlined" | "ApartmentOutlined" | "ApiOutlined" | "AppstoreAddOutlined" | "AppstoreOutlined" | "AudioOutlined" | "AudioMutedOutlined" | "AuditOutlined" | "BankOutlined" | "BarcodeOutlined" | "BarsOutlined" | "BellOutlined" | "BlockOutlined" | "BookOutlined" | "BorderOutlined" | "BorderlessTableOutlined" | "BranchesOutlined" | "BugOutlined" | "BuildOutlined" | "BulbOutlined" | "CalculatorOutlined" | "CalendarOutlined" | "CameraOutlined" | "CarOutlined" | "CarryOutOutlined" | "CiCircleOutlined" | "CiOutlined" | "ClearOutlined" | "CloudDownloadOutlined" | "CloudOutlined" | "CloudServerOutlined" | "CloudSyncOutlined" | "CloudUploadOutlined" | "ClusterOutlined" | "CodeOutlined" | "CoffeeOutlined" | "CommentOutlined" | "CompassOutlined" | "CompressOutlined" | "ConsoleSqlOutlined" | "ContactsOutlined" | "ContainerOutlined" | "ControlOutlined" | "CopyrightOutlined" | "CreditCardOutlined" | "CrownOutlined" | "CustomerServiceOutlined" | "DashboardOutlined" | "DatabaseOutlined" | "DeleteColumnOutlined" | "DeleteRowOutlined" | "DeliveredProcedureOutlined" | "DeploymentUnitOutlined" | "DesktopOutlined" | "DisconnectOutlined" | "DislikeOutlined" | "DollarOutlined" | "DownloadOutlined" | "EllipsisOutlined" | "EnvironmentOutlined" | "EuroCircleOutlined" | "EuroOutlined" | "ExceptionOutlined" | "ExpandAltOutlined" | "ExpandOutlined" | "ExperimentOutlined" | "ExportOutlined" | "EyeOutlined" | "EyeInvisibleOutlined" | "FieldBinaryOutlined" | "FieldNumberOutlined" | "FieldStringOutlined" | "FieldTimeOutlined" | "FileAddOutlined" | "FileDoneOutlined" | "FileExcelOutlined" | "FileExclamationOutlined" | "FileOutlined" | "FileGifOutlined" | "FileImageOutlined" | "FileJpgOutlined" | "FileMarkdownOutlined" | "FilePdfOutlined" | "FilePptOutlined" | "FileProtectOutlined" | "FileSearchOutlined" | "FileSyncOutlined" | "FileTextOutlined" | "FileUnknownOutlined" | "FileWordOutlined" | "FileZipOutlined" | "FilterOutlined" | "FireOutlined" | "FlagOutlined" | "FolderAddOutlined" | "FolderOutlined" | "FolderOpenOutlined" | "FolderViewOutlined" | "ForkOutlined" | "FormatPainterOutlined" | "FrownOutlined" | "FunctionOutlined" | "FundProjectionScreenOutlined" | "FundViewOutlined" | "FunnelPlotOutlined" | "GatewayOutlined" | "GifOutlined" | "GiftOutlined" | "GlobalOutlined" | "GoldOutlined" | "GroupOutlined" | "HddOutlined" | "HeartOutlined" | "HistoryOutlined" | "HolderOutlined" | "HomeOutlined" | "HourglassOutlined" | "IdcardOutlined" | "ImportOutlined" | "InboxOutlined" | "InsertRowAboveOutlined" | "InsertRowBelowOutlined" | "InsertRowLeftOutlined" | "InsertRowRightOutlined" | "InsuranceOutlined" | "InteractionOutlined" | "KeyOutlined" | "LaptopOutlined" | "LayoutOutlined" | "LikeOutlined" | "LineOutlined" | "LinkOutlined" | "Loading3QuartersOutlined" | "LoadingOutlined" | "LockOutlined" | "MacCommandOutlined" | "MailOutlined" | "ManOutlined" | "MedicineBoxOutlined" | "MehOutlined" | "MenuOutlined" | "MergeCellsOutlined" | "MergeOutlined" | "MessageOutlined" | "MobileOutlined" | "MoneyCollectOutlined" | "MonitorOutlined" | "MoonOutlined" | "MoreOutlined" | "MutedOutlined" | "NodeCollapseOutlined" | "NodeExpandOutlined" | "NodeIndexOutlined" | "NotificationOutlined" | "NumberOutlined" | "OneToOneOutlined" | "PaperClipOutlined" | "PartitionOutlined" | "PayCircleOutlined" | "PercentageOutlined" | "PhoneOutlined" | "PictureOutlined" | "PlaySquareOutlined" | "PoundCircleOutlined" | "PoundOutlined" | "PoweroffOutlined" | "PrinterOutlined" | "ProductOutlined" | "ProfileOutlined" | "ProjectOutlined" | "PropertySafetyOutlined" | "PullRequestOutlined" | "PushpinOutlined" | "QrcodeOutlined" | "ReadOutlined" | "ReconciliationOutlined" | "RedEnvelopeOutlined" | "ReloadOutlined" | "RestOutlined" | "RobotOutlined" | "RocketOutlined" | "RotateLeftOutlined" | "RotateRightOutlined" | "SafetyCertificateOutlined" | "SafetyOutlined" | "SaveOutlined" | "ScanOutlined" | "ScheduleOutlined" | "SearchOutlined" | "SecurityScanOutlined" | "SelectOutlined" | "SendOutlined" | "SettingOutlined" | "ShakeOutlined" | "ShareAltOutlined" | "ShopOutlined" | "ShoppingCartOutlined" | "ShoppingOutlined" | "SignatureOutlined" | "SisternodeOutlined" | "SkinOutlined" | "SmileOutlined" | "SolutionOutlined" | "SoundOutlined" | "SplitCellsOutlined" | "StarOutlined" | "SubnodeOutlined" | "SunOutlined" | "SwitcherOutlined" | "SyncOutlined" | "TableOutlined" | "TabletOutlined" | "TagOutlined" | "TagsOutlined" | "TeamOutlined" | "ThunderboltOutlined" | "ToTopOutlined" | "ToolOutlined" | "TrademarkCircleOutlined" | "TrademarkOutlined" | "TransactionOutlined" | "TranslationOutlined" | "TrophyOutlined" | "TruckOutlined" | "UngroupOutlined" | "UnlockOutlined" | "UploadOutlined" | "UsbOutlined" | "UserAddOutlined" | "UserDeleteOutlined" | "UserOutlined" | "UserSwitchOutlined" | "UsergroupAddOutlined" | "UsergroupDeleteOutlined" | "VerifiedOutlined" | "VideoCameraAddOutlined" | "VideoCameraOutlined" | "WalletOutlined" | "WifiOutlined" | "WomanOutlined";
16
+ export {};
@@ -0,0 +1,7 @@
1
+ import { IconComponentProps } from '@ant-design/icons/lib/components/Icon';
2
+ import React from 'react';
3
+ import { IMyIconSelectProps } from './types';
4
+ export declare function use_icon(props: IMyIconSelectProps): {
5
+ all_keys: string[];
6
+ render_Icon: (t?: string, p?: IconComponentProps) => React.JSX.Element | null;
7
+ };
@@ -1,5 +1,5 @@
1
- import { IMyInputProps } from './types';
2
- import { TCommonComponent } from '../util-types';
3
- export * from './types';
1
+ import { TCommonComponent } from "../util-types";
2
+ import { IMyInputProps } from "./types";
3
+ export * from "./types";
4
4
  declare const MyInput: TCommonComponent<IMyInputProps, string>;
5
5
  export { MyInput };
@@ -1,7 +1,6 @@
1
1
  import React from 'react';
2
- import { TCommonComponent } from '../util-types';
3
2
  import { IMyRangePickerProps } from './utils';
4
- export { IMyRangePickerProps, } from './utils';
5
- export declare function MyRangeDate(props: IMyRangePickerProps): React.JSX.Element;
6
- export declare function MyRangeDateTime(props: IMyRangePickerProps): React.JSX.Element;
7
- export declare const MyRangePicker: TCommonComponent<IMyRangePickerProps, string>;
3
+ export { IMyRangePickerProps } from './utils';
4
+ declare function MyRangePickerInner(_props: IMyRangePickerProps): React.JSX.Element;
5
+ declare const RangePicker_: typeof MyRangePickerInner;
6
+ export default RangePicker_;
@@ -1,8 +1,7 @@
1
1
  import { TCommonComponent } from '../util-types';
2
- import { IMyDatePickerProps } from './utils';
3
- export { formatDatePickerProps } from './utils';
4
- export { IMyDatePickerProps as ICusDatePickerProps, UNKNOWN_TIME_SYMBOL } from './utils';
5
- export { TMyDatePicker };
6
- type TMyDatePicker = TCommonComponent<IMyDatePickerProps, string>;
7
- declare const MyDatePicker: TMyDatePicker;
8
- export default MyDatePicker;
2
+ import { IMyRangePickerProps, MyValue } from './utils';
3
+ export { IMyRangePickerProps };
4
+ type TMyDatePicker = TCommonComponent<IMyRangePickerProps, MyValue>;
5
+ export declare const MyRangePicker: TMyDatePicker;
6
+ export declare const MyRangeDate: TMyDatePicker;
7
+ export declare const MyRangeDateTime: TMyDatePicker;
@@ -1,403 +1,40 @@
1
+ import { AnyObject } from '@noah-libjs/utils';
1
2
  import { Dayjs } from 'dayjs';
2
- import { RangePickerProps } from 'src/LazyAntd';
3
+ import React from 'react';
3
4
  export declare const defaultGetPopupContainer: () => HTMLElement;
4
- export declare function areEqual(prevProps: RangePickerProps, nextProps: RangePickerProps): boolean;
5
- type RangeValue<T> = [T, T];
6
- type MyValue = RangeValue<string | null | undefined> | string | null;
5
+ export declare function areEqual(prevProps: IMyRangePickerProps, nextProps: IMyRangePickerProps): boolean;
6
+ type RangeValue<T> = any[];
7
+ export type MyValue = RangeValue<Dayjs | string | null | undefined> | string | null | undefined;
7
8
  export type IMyRangePickerProps = {
8
9
  marshal?: number;
9
10
  value?: MyValue;
10
11
  onChange?: (value: MyValue) => void;
12
+ linker?: string;
11
13
  minDate?: any;
12
14
  maxDate?: any;
13
15
  validDate?: any;
14
16
  getPopupContainer?: any;
15
17
  format?: any;
16
18
  showUnknown?: boolean;
17
- } & Omit<RangePickerProps, 'value' | 'disabled'>;
18
- export declare function formatProps(props: IMyRangePickerProps): {
19
+ placeholder?: any;
20
+ style?: React.CSSProperties;
21
+ showTime?: AnyObject<Dayjs[]>;
22
+ };
23
+ export declare function process_value_remote(value: MyValue, marshal: number, linker: string): any[];
24
+ export declare function format_range_props(props: IMyRangePickerProps): {
19
25
  marshal?: number;
20
26
  value?: MyValue;
21
- onChange?: (((value: MyValue) => void) & ((dates: import("rc-picker/lib/PickerInput/RangePicker").NoUndefinedRangeValueType<Dayjs> | null, dateStrings: [string, string]) => void)) | undefined;
27
+ onChange?: (value: MyValue) => void;
28
+ linker?: string;
22
29
  minDate?: any;
23
30
  maxDate?: any;
24
31
  validDate?: any;
25
32
  getPopupContainer?: any;
26
33
  format?: any;
27
34
  showUnknown?: boolean;
28
- title?: string | undefined | undefined;
29
- id?: import("rc-picker/lib/PickerInput/Selector/RangeSelector").SelectorIdType | undefined;
30
- picker?: import("rc-picker/lib/interface").PickerMode | undefined;
31
- multiple?: boolean | undefined | undefined;
32
- mode?: [startMode: import("rc-picker/lib/interface").PanelMode, endMode: import("rc-picker/lib/interface").PanelMode] | undefined;
33
- prefixCls?: string | undefined;
34
- className?: string | undefined;
35
- style?: React.CSSProperties | undefined;
36
- direction?: "ltr" | "rtl" | undefined;
37
- maxLength?: number | undefined | undefined;
38
- tabIndex?: number | undefined | undefined;
39
- autoFocus?: boolean | undefined | undefined;
40
- placeholder?: [string, string] | undefined;
41
- open?: boolean | undefined;
42
- defaultOpen?: boolean | undefined;
43
- allowClear?: boolean | {
44
- clearIcon?: React.ReactNode;
45
- } | undefined;
46
- prefix?: import("react").ReactNode;
47
- suffixIcon?: import("react").ReactNode;
48
- clearIcon?: import("react").ReactNode;
49
- transitionName?: string | undefined;
50
- dropdownClassName?: string | undefined;
51
- placement?: "bottomLeft" | "bottomRight" | "topLeft" | "topRight" | undefined;
52
- builtinPlacements?: import("@rc-component/trigger").BuildInPlacements | undefined;
53
- onBlur?: import("rc-picker/lib/interface").PickerFocusEventHandler | undefined;
54
- onFocus?: import("rc-picker/lib/interface").PickerFocusEventHandler | undefined;
55
- onKeyUp?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
56
- onKeyDown?: import("rc-picker/lib/interface").LegacyOnKeyDown | undefined;
57
- onMouseDown?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
58
- onMouseEnter?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
59
- onMouseLeave?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
60
- onClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
61
- "aria-activedescendant"?: string | undefined | undefined;
62
- "aria-atomic"?: (boolean | "false" | "true") | undefined;
63
- "aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
64
- "aria-braillelabel"?: string | undefined | undefined;
65
- "aria-brailleroledescription"?: string | undefined | undefined;
66
- "aria-busy"?: (boolean | "false" | "true") | undefined;
67
- "aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
68
- "aria-colcount"?: number | undefined | undefined;
69
- "aria-colindex"?: number | undefined | undefined;
70
- "aria-colindextext"?: string | undefined | undefined;
71
- "aria-colspan"?: number | undefined | undefined;
72
- "aria-controls"?: string | undefined | undefined;
73
- "aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
74
- "aria-describedby"?: string | undefined | undefined;
75
- "aria-description"?: string | undefined | undefined;
76
- "aria-details"?: string | undefined | undefined;
77
- "aria-disabled"?: (boolean | "false" | "true") | undefined;
78
- "aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
79
- "aria-errormessage"?: string | undefined | undefined;
80
- "aria-expanded"?: (boolean | "false" | "true") | undefined;
81
- "aria-flowto"?: string | undefined | undefined;
82
- "aria-grabbed"?: (boolean | "false" | "true") | undefined;
83
- "aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
84
- "aria-hidden"?: (boolean | "false" | "true") | undefined;
85
- "aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
86
- "aria-keyshortcuts"?: string | undefined | undefined;
87
- "aria-label"?: string | undefined | undefined;
88
- "aria-labelledby"?: string | undefined | undefined;
89
- "aria-level"?: number | undefined | undefined;
90
- "aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
91
- "aria-modal"?: (boolean | "false" | "true") | undefined;
92
- "aria-multiline"?: (boolean | "false" | "true") | undefined;
93
- "aria-multiselectable"?: (boolean | "false" | "true") | undefined;
94
- "aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
95
- "aria-owns"?: string | undefined | undefined;
96
- "aria-placeholder"?: string | undefined | undefined;
97
- "aria-posinset"?: number | undefined | undefined;
98
- "aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
99
- "aria-readonly"?: (boolean | "false" | "true") | undefined;
100
- "aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
101
- "aria-required"?: (boolean | "false" | "true") | undefined;
102
- "aria-roledescription"?: string | undefined | undefined;
103
- "aria-rowcount"?: number | undefined | undefined;
104
- "aria-rowindex"?: number | undefined | undefined;
105
- "aria-rowindextext"?: string | undefined | undefined;
106
- "aria-rowspan"?: number | undefined | undefined;
107
- "aria-selected"?: (boolean | "false" | "true") | undefined;
108
- "aria-setsize"?: number | undefined | undefined;
109
- "aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
110
- "aria-valuemax"?: number | undefined | undefined;
111
- "aria-valuemin"?: number | undefined | undefined;
112
- "aria-valuenow"?: number | undefined | undefined;
113
- "aria-valuetext"?: string | undefined | undefined;
114
- children?: import("react").ReactNode;
115
- defaultValue?: import("rc-picker/lib/PickerInput/RangePicker").RangeValueType<Dayjs> | undefined;
116
- rootClassName?: string | undefined;
117
- size?: import("antd/es/button").ButtonSize;
118
- bordered?: boolean | undefined;
119
- variant?: import("antd/es/config-provider").Variant | undefined;
120
- status?: import("antd/es/_util/statusUtils").InputStatus | undefined;
121
- popupClassName?: string | undefined;
122
- hidden?: boolean | undefined | undefined;
123
- color?: string | undefined | undefined;
124
- content?: string | undefined | undefined;
125
- separator?: import("react").ReactNode;
126
- width?: number | string | undefined | undefined;
127
- name?: string | undefined | undefined;
128
- key?: import("react").Key | null | undefined;
129
- type?: import("react").HTMLInputTypeAttribute | undefined;
130
- 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;
131
- list?: string | undefined | undefined;
132
- step?: number | string | undefined | undefined;
133
- form?: string | undefined | undefined;
134
- slot?: string | undefined | undefined;
135
- pattern?: string | undefined | undefined;
136
- defaultChecked?: boolean | undefined | undefined;
137
- suppressContentEditableWarning?: boolean | undefined | undefined;
138
- suppressHydrationWarning?: boolean | undefined | undefined;
139
- accessKey?: string | undefined | undefined;
140
- contentEditable?: "inherit" | (boolean | "false" | "true") | "plaintext-only" | undefined;
141
- contextMenu?: string | undefined | undefined;
142
- dir?: string | undefined | undefined;
143
- draggable?: (boolean | "false" | "true") | undefined;
144
- lang?: string | undefined | undefined;
145
- nonce?: string | undefined | undefined;
146
- spellCheck?: (boolean | "false" | "true") | undefined;
147
- translate?: "yes" | "no" | undefined | undefined;
148
- radioGroup?: string | undefined | undefined;
149
- role?: import("react").AriaRole | undefined;
150
- about?: string | undefined | undefined;
151
- datatype?: string | undefined | undefined;
152
- inlist?: any;
153
- property?: string | undefined | undefined;
154
- rel?: string | undefined | undefined;
155
- resource?: string | undefined | undefined;
156
- rev?: string | undefined | undefined;
157
- typeof?: string | undefined | undefined;
158
- vocab?: string | undefined | undefined;
159
- autoCapitalize?: string | undefined | undefined;
160
- autoCorrect?: string | undefined | undefined;
161
- autoSave?: string | undefined | undefined;
162
- itemProp?: string | undefined | undefined;
163
- itemScope?: boolean | undefined | undefined;
164
- itemType?: string | undefined | undefined;
165
- itemID?: string | undefined | undefined;
166
- itemRef?: string | undefined | undefined;
167
- results?: number | undefined | undefined;
168
- security?: string | undefined | undefined;
169
- unselectable?: "on" | "off" | undefined | undefined;
170
- inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
171
- is?: string | undefined | undefined;
172
- dangerouslySetInnerHTML?: {
173
- __html: string | TrustedHTML;
174
- } | undefined | undefined;
175
- onCopy?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
176
- onCopyCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
177
- onCut?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
178
- onCutCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
179
- onPaste?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
180
- onPasteCapture?: import("react").ClipboardEventHandler<HTMLDivElement> | undefined;
181
- onCompositionEnd?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
182
- onCompositionEndCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
183
- onCompositionStart?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
184
- onCompositionStartCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
185
- onCompositionUpdate?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
186
- onCompositionUpdateCapture?: import("react").CompositionEventHandler<HTMLDivElement> | undefined;
187
- onFocusCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
188
- onBlurCapture?: import("react").FocusEventHandler<HTMLDivElement> | undefined;
189
- onChangeCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
190
- onBeforeInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
191
- onBeforeInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
192
- onInput?: import("react").FormEventHandler<HTMLDivElement> | undefined;
193
- onInputCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
194
- onReset?: import("react").FormEventHandler<HTMLDivElement> | undefined;
195
- onResetCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
196
- onSubmit?: import("react").FormEventHandler<HTMLDivElement> | undefined;
197
- onSubmitCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
198
- onInvalidCapture?: import("react").FormEventHandler<HTMLDivElement> | undefined;
199
- onLoad?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
200
- onLoadCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
201
- onError?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
202
- onErrorCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
203
- onKeyDownCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
204
- onKeyPress?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
205
- onKeyPressCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
206
- onKeyUpCapture?: import("react").KeyboardEventHandler<HTMLDivElement> | undefined;
207
- onAbort?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
208
- onAbortCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
209
- onCanPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
210
- onCanPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
211
- onCanPlayThrough?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
212
- onCanPlayThroughCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
213
- onDurationChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
214
- onDurationChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
215
- onEmptied?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
216
- onEmptiedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
217
- onEncrypted?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
218
- onEncryptedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
219
- onEnded?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
220
- onEndedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
221
- onLoadedData?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
222
- onLoadedDataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
223
- onLoadedMetadata?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
224
- onLoadedMetadataCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
225
- onLoadStart?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
226
- onLoadStartCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
227
- onPause?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
228
- onPauseCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
229
- onPlay?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
230
- onPlayCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
231
- onPlaying?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
232
- onPlayingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
233
- onProgress?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
234
- onProgressCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
235
- onRateChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
236
- onRateChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
237
- onResize?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
238
- onResizeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
239
- onSeeked?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
240
- onSeekedCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
241
- onSeeking?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
242
- onSeekingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
243
- onStalled?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
244
- onStalledCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
245
- onSuspend?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
246
- onSuspendCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
247
- onTimeUpdate?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
248
- onTimeUpdateCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
249
- onVolumeChange?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
250
- onVolumeChangeCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
251
- onWaiting?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
252
- onWaitingCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
253
- onAuxClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
254
- onAuxClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
255
- onClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
256
- onContextMenu?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
257
- onContextMenuCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
258
- onDoubleClick?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
259
- onDoubleClickCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
260
- onDrag?: import("react").DragEventHandler<HTMLDivElement> | undefined;
261
- onDragCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
262
- onDragEnd?: import("react").DragEventHandler<HTMLDivElement> | undefined;
263
- onDragEndCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
264
- onDragEnter?: import("react").DragEventHandler<HTMLDivElement> | undefined;
265
- onDragEnterCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
266
- onDragExit?: import("react").DragEventHandler<HTMLDivElement> | undefined;
267
- onDragExitCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
268
- onDragLeave?: import("react").DragEventHandler<HTMLDivElement> | undefined;
269
- onDragLeaveCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
270
- onDragOver?: import("react").DragEventHandler<HTMLDivElement> | undefined;
271
- onDragOverCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
272
- onDragStart?: import("react").DragEventHandler<HTMLDivElement> | undefined;
273
- onDragStartCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
274
- onDrop?: import("react").DragEventHandler<HTMLDivElement> | undefined;
275
- onDropCapture?: import("react").DragEventHandler<HTMLDivElement> | undefined;
276
- onMouseDownCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
277
- onMouseMove?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
278
- onMouseMoveCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
279
- onMouseOut?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
280
- onMouseOutCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
281
- onMouseOver?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
282
- onMouseOverCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
283
- onMouseUp?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
284
- onMouseUpCapture?: import("react").MouseEventHandler<HTMLDivElement> | undefined;
285
- onSelectCapture?: import("react").ReactEventHandler<HTMLDivElement> | undefined;
286
- onTouchCancel?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
287
- onTouchCancelCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
288
- onTouchEnd?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
289
- onTouchEndCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
290
- onTouchMove?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
291
- onTouchMoveCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
292
- onTouchStart?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
293
- onTouchStartCapture?: import("react").TouchEventHandler<HTMLDivElement> | undefined;
294
- onPointerDown?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
295
- onPointerDownCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
296
- onPointerMove?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
297
- onPointerMoveCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
298
- onPointerUp?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
299
- onPointerUpCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
300
- onPointerCancel?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
301
- onPointerCancelCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
302
- onPointerEnter?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
303
- onPointerLeave?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
304
- onPointerOver?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
305
- onPointerOverCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
306
- onPointerOut?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
307
- onPointerOutCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
308
- onGotPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
309
- onGotPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
310
- onLostPointerCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
311
- onLostPointerCaptureCapture?: import("react").PointerEventHandler<HTMLDivElement> | undefined;
312
- onScroll?: import("react").UIEventHandler<HTMLDivElement> | undefined;
313
- onScrollCapture?: import("react").UIEventHandler<HTMLDivElement> | undefined;
314
- onWheel?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
315
- onWheelCapture?: import("react").WheelEventHandler<HTMLDivElement> | undefined;
316
- onAnimationStart?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
317
- onAnimationStartCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
318
- onAnimationEnd?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
319
- onAnimationEndCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
320
- onAnimationIteration?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
321
- onAnimationIterationCapture?: import("react").AnimationEventHandler<HTMLDivElement> | undefined;
322
- onTransitionEnd?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
323
- onTransitionEndCapture?: import("react").TransitionEventHandler<HTMLDivElement> | undefined;
324
- formAction?: string | undefined;
325
- formEncType?: string | undefined | undefined;
326
- formMethod?: string | undefined | undefined;
327
- formNoValidate?: boolean | undefined | undefined;
328
- formTarget?: string | undefined | undefined;
329
- accept?: string | undefined | undefined;
330
- alt?: string | undefined | undefined;
331
- autoComplete?: import("react").HTMLInputAutoCompleteAttribute | undefined;
332
- capture?: boolean | "user" | "environment" | undefined | undefined;
333
- checked?: boolean | undefined | undefined;
334
- height?: number | string | undefined | undefined;
335
- minLength?: number | undefined | undefined;
336
- readOnly?: boolean | undefined | undefined;
337
- required?: boolean | undefined | undefined;
338
- src?: string | undefined | undefined;
339
- onOk?: ((values: import("rc-picker/lib/PickerInput/RangePicker").NoUndefinedRangeValueType<Dayjs>) => void) | undefined;
340
- locale?: import("antd/es/date-picker/generatePicker").PickerLocale | undefined;
341
- enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
342
- prevIcon?: import("react").ReactNode;
343
- nextIcon?: import("react").ReactNode;
344
- superPrevIcon?: import("react").ReactNode;
345
- superNextIcon?: import("react").ReactNode;
346
- showNow?: boolean | undefined;
347
- showHour?: boolean | undefined;
348
- showMinute?: boolean | undefined;
349
- showSecond?: boolean | undefined;
350
- showMillisecond?: boolean | undefined;
351
- use12Hours?: boolean | undefined;
352
- hourStep?: import("rc-picker/lib/interface").IntRange<1, 23> | undefined;
353
- minuteStep?: import("rc-picker/lib/interface").IntRange<1, 59> | undefined;
354
- secondStep?: import("rc-picker/lib/interface").IntRange<1, 59> | undefined;
355
- millisecondStep?: import("rc-picker/lib/interface").IntRange<1, 999> | undefined;
356
- hideDisabledOptions?: boolean | undefined;
357
- defaultOpenValue?: Dayjs | undefined;
358
- disabledHours?: (() => number[]) | undefined;
359
- disabledMinutes?: ((hour: number) => number[]) | undefined;
360
- disabledSeconds?: ((hour: number, minute: number) => number[]) | undefined;
361
- disabledTime?: ((date: Dayjs, range: "start" | "end", info: {
362
- from?: Dayjs | undefined;
363
- }) => import("rc-picker/lib/interface").DisabledTimes) | undefined;
364
- changeOnScroll?: boolean | undefined;
365
- onCalendarChange?: ((dates: import("rc-picker/lib/PickerInput/RangePicker").NoUndefinedRangeValueType<Dayjs>, dateStrings: [string, string], info: import("rc-picker/lib/interface").BaseInfo) => void) | undefined;
366
- defaultPickerValue?: Dayjs | [Dayjs, Dayjs] | null | undefined;
367
- pickerValue?: Dayjs | [Dayjs, Dayjs] | null | undefined;
368
- onPickerValueChange?: ((date: [Dayjs, Dayjs], info: import("rc-picker/lib/interface").BaseInfo & {
369
- source: "reset" | "panel";
370
- mode: [import("rc-picker/lib/interface").PanelMode, import("rc-picker/lib/interface").PanelMode];
371
- }) => void) | undefined;
372
- presets?: import("rc-picker/lib/interface").ValueDate<import("rc-picker/lib/PickerInput/RangePicker").RangeValueType<Dayjs>>[] | undefined;
373
- onPanelChange?: ((values: import("rc-picker/lib/PickerInput/RangePicker").NoUndefinedRangeValueType<Dayjs>, modes: [startMode: import("rc-picker/lib/interface").PanelMode, endMode: import("rc-picker/lib/interface").PanelMode]) => void) | undefined;
374
- styles?: Partial<Record<import("rc-picker/lib/interface").SemanticStructure, React.CSSProperties>> | undefined;
375
- classNames?: Partial<Record<import("rc-picker/lib/interface").SemanticStructure, string>> | undefined;
376
- showTime?: boolean | import("rc-picker/lib/interface").RangeTimeProps<Dayjs> | undefined;
377
- showWeek?: boolean | undefined;
378
- inputReadOnly?: boolean | undefined;
379
- order?: boolean | undefined;
380
- disabledDate?: import("rc-picker/lib/interface").DisabledDate<Dayjs> | undefined;
381
- onOpenChange?: ((open: boolean) => void) | undefined;
382
- popupAlign?: import("@rc-component/trigger").AlignType | undefined;
383
- needConfirm?: boolean | undefined;
384
- changeOnBlur?: boolean | undefined;
385
- preserveInvalidOnBlur?: boolean | undefined;
386
- components?: Partial<Record<import("rc-picker/lib/interface").InternalMode, import("react").ComponentType<import("rc-picker/lib/interface").SharedPanelProps<Dayjs>>> & {
387
- button?: React.ComponentType<any> | string;
388
- input?: React.ComponentType<any> | string;
389
- }> | undefined;
390
- inputRender?: ((props: React.InputHTMLAttributes<HTMLInputElement>) => React.ReactNode) | undefined;
391
- cellRender?: import("rc-picker/lib/interface").CellRender<Dayjs, string | number | Dayjs> | undefined;
392
- dateRender?: ((currentDate: Dayjs, today: Dayjs) => React.ReactNode) | undefined;
393
- monthCellRender?: ((currentDate: Dayjs, locale: import("rc-picker/lib/interface").Locale) => React.ReactNode) | undefined;
394
- showToday?: boolean | undefined;
395
- panelRender?: ((originPanel: React.ReactNode) => React.ReactNode) | undefined;
396
- renderExtraFooter?: ((mode: import("rc-picker/lib/interface").PanelMode) => React.ReactNode) | undefined;
397
- popupStyle?: React.CSSProperties | undefined;
398
- ranges?: Record<string, import("rc-picker/lib/PickerInput/RangePicker").RangeValueType<Dayjs> | (() => import("rc-picker/lib/PickerInput/RangePicker").RangeValueType<Dayjs>)> | undefined;
399
- allowEmpty?: boolean | [boolean, boolean] | undefined;
35
+ placeholder?: any;
36
+ style?: React.CSSProperties;
37
+ showTime?: AnyObject<Dayjs[]>;
400
38
  };
401
- export declare function getIsUnknown(props: IMyRangePickerProps): boolean;
402
- export declare const handleChangeValue: ({ format }: IMyRangePickerProps, date?: (Dayjs | null)[]) => (Dayjs | null)[] | (string | null)[];
39
+ export declare const handleChangeValue: ({ format, marshal, linker }: IMyRangePickerProps, date?: (Dayjs | null)[]) => string | (string | null)[] | null;
403
40
  export {};