import React from 'react'; import type { ActionObject } from 'jamis-core'; import type { Moment } from 'moment'; import type { DatePickerProps, DateProps, ShortcutValue } from '../types'; interface DateControlState { minDate?: Moment; maxDate?: Moment; /** 快捷键的参考日期 */ shortcutsRefDate?: Moment; schedules?: Array<{ startTime: Date; endTime: Date; content: any; className?: string; }>; } export default class DateControl extends React.PureComponent { static defaultProps: Partial; dateRef?: any; constructor(props: DateProps); componentDidUpdate(prevProps: DateProps): void; onScheduleClick(scheduleData: any): void; getRef: (ref: any) => void; dispatchEvent: (e: React.SyntheticEvent) => void; doAction(action: ActionObject, data: object, throwErrors: boolean): void; handleChange: (nextValue: any) => Promise; calcInputFormat: () => string | undefined; formatShortcuts: (shortcuts: DateProps["shortcuts"]) => DatePickerProps["shortcuts"]; updateRules: () => void; render(): JSX.Element; } export declare class DateControlRenderer extends DateControl { static defaultProps: { placeholder: string; dateFormat: string; timeFormat: string; strictMode: boolean; viewMode?: import("./components/Calendar.types").CalendarViewMode | undefined; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; inputFormat?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; closeOnSelect?: boolean; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export declare class DatetimeControlRenderer extends DateControl { static defaultProps: { placeholder: string; inputFormat: string; dateFormat: string; timeFormat: string; closeOnSelect: boolean; strictMode: boolean; viewMode?: import("./components/Calendar.types").CalendarViewMode | undefined; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export declare class TimeControlRenderer extends DateControl { static defaultProps: { placeholder: string; inputFormat: string; dateFormat: string; timeFormat: string; viewMode: "time"; closeOnSelect: boolean; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export declare class MonthControlRenderer extends DateControl { static defaultProps: { placeholder: string; inputFormat: string; dateFormat: string; timeFormat: string; viewMode: "months"; closeOnSelect: boolean; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export declare class QuarterControlRenderer extends DateControl { static defaultProps: { placeholder: string; inputFormat: string; dateFormat: string; timeFormat: string; viewMode: "quarters"; closeOnSelect: boolean; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export declare class YearControlRenderer extends DateControl { static defaultProps: { placeholder: string; inputFormat: string; dateFormat: string; timeFormat: string; viewMode: "years"; closeOnSelect: boolean; valueFormat?: string; timeConstraints?: import("./components/Calendar.types").TimeConstraints; disabled?: boolean | undefined; iconClassName?: string; id?: string; name?: string; env?: import("jamis-core").RendererEnv | undefined; $path?: string | undefined; $schema?: (import("jamis-core").Schema & { [key: string]: any; type: string; }) | undefined; $spec?: { $path?: string; id?: string; name?: string; debug?: boolean; } | undefined; store?: import("jamis-core").IIRendererStore; syncSuperStore?: boolean; data?: (import("jamis-core").RendererPropsData & { [key: string]: any; }) | undefined; defaultData?: Record; className?: import("jamis-core").SchemaClassName; rootStore?: import("jamis-core").IRendererStoreCopy | undefined; topStore?: import("jamis-core").IRootStoreCopy | undefined; appStore?: import("jamis-core").IAppStoreCopy; $$editor?: import("jamis-core").SimpleRendererInfo; onEvent?: import("jamis-core").OnEventProps; debug?: boolean; render?: import("jamis-core").SchemaRenderFn | undefined; scopeRef?: (scoped: import("jamis-core").IScopedContext) => void; dispatchEvent?: import("jamis-core").DispatchEventFn> | undefined; onAction?: import("jamis-core").OnActionFn; style?: React.CSSProperties; elementDataAttrs?: Record<`data-${string}`, any>; pickClassStyle?: import("jamis-core").PickClassStyleFn; onOpenDialog?: (((schema: import("jamis-core").Schema, data: any) => Promise) & ((schema: import("jamis-core").Schema, data: any) => Promise)) | undefined; formStore?: import("../types").IFormStore; formItem?: import("../types").IFormItemStore; formInited?: boolean | undefined; formMode?: "horizontal" | "inline" | "default" | "normal" | "row" | undefined; formHorizontal?: import("../types").FormHorizontal | undefined; horizontal?: import("../types").FormHorizontal; formLabelAlign?: import("../types").LabelAlign | undefined; formLabelWidth?: number | string; defaultSize?: import("../types").SizeUnit; size?: import("../types").SizeUnit; labelAlign?: import("../types").LabelAlign; labelWidth?: number | string; labelClassName?: string; btnDisabled?: boolean | undefined; defaultValue?: any; value?: any; prinstine?: any; formItemValue?: any; inputClassName?: import("jamis-core").SchemaClassName; inputStyle?: React.CSSProperties; inputOnly?: boolean; renderLabel?: boolean; renderDescription?: boolean; sizeMutable?: boolean; wrap?: boolean; hint?: string; description?: string; descriptionClassName?: import("jamis-core").SchemaClassName; errors?: { [propName: string]: string; }; error?: string; showErrorMsg?: boolean; requiredClassName?: import("jamis-core").SchemaClassName; valueClassName?: import("jamis-core").SchemaClassName; static?: boolean; setPrinstineValue?: ((value: any) => void) | undefined; onChange?: ((value: any, submitOnChange?: boolean, changeImmediately?: boolean) => void) | undefined; formItemDispatchEvent?: (type: string, data: any) => void; onBulkChange?: (values: { [propName: string]: any; }, submitOnChange?: boolean) => void; addHook?: ((fn: Function, mode: "validate" | "init" | "flush") => () => void) | undefined; removeHook?: ((fn: Function, mode?: "validate" | "init" | "flush") => void) | undefined; renderFormItems?: ((schema: Partial, region: string, props: any) => JSX.Element) | undefined; onFocus?: ((e: any) => void) | undefined; onBlur?: ((e: any) => void) | undefined; getValue?: (() => any) | undefined; setValue?: ((value: any, key: string) => void) | undefined; renderControl?: (props: import("../types").FormControlProps) => JSX.Element; mode?: "normal" | "inline" | "horizontal"; slots?: Record | undefined>; key?: any; $ref?: string; shared?: Record>; definitions?: Record>; disabledOn?: import("jamis-core").SchemaBoolean; hidden?: boolean; hiddenOn?: import("jamis-core").SchemaBoolean; visible?: boolean; visibleOn?: import("jamis-core").SchemaBoolean; editorSetting?: { behavior?: string; displayName?: string; mock?: any; [propName: string]: any; }; pipeOut?: ((value: any, originValue: any, data: Record) => any) | import("jamis-core").SchemaExpression; remark?: import("../types").SchemaRemark; labelRemark?: import("../types").SchemaRemark; clearable?: boolean; sizeExpr?: import("jamis-core").SchemaExpression; submitOnChange?: boolean; readOnly?: boolean; readOnlyOn?: string; validateOnChange?: boolean; validatable?: boolean; validatableOn?: import("jamis-core").SchemaExpression; desc?: string; modeExpr?: import("jamis-core").SchemaExpression; inline?: boolean; controlBodyClassName?: import("jamis-core").SchemaClassName; placeholderExpr?: import("jamis-core").SchemaExpression; required?: boolean; requiredOn?: import("jamis-core").SchemaExpression; changeImmediately?: boolean; validationErrors?: { [k in keyof import("../types").FormValidation]: string; }; validations?: string | import("../types").FormValidation; valueExpr?: import("jamis-core").SchemaExpression; clearValueOnHidden?: boolean; validateApi?: import("jamis-core").Api; columnRatio?: import("jamis-core").GridSizeUnit; columnRatioExpr?: import("jamis-core").GridSizeUnit | import("jamis-core").SchemaExpression | Record; staticOn?: import("jamis-core").SchemaExpression; staticPlaceholder?: string; validate?: (values: any, value: any) => string | boolean; pipeIn?: ((value: any, data: Record) => any) | import("jamis-core").SchemaExpression; borderMode?: "full" | "half" | "none"; embed?: boolean; format?: string; utc?: boolean; disableMonthSwitch?: boolean; maxDate?: import("jamis-core").SchemaExpression; minDate?: import("jamis-core").SchemaExpression; pickerInputClassName?: import("jamis-core").SchemaClassName; shortcuts?: string | Array; shortcutsClassName?: import("jamis-core").SchemaClassName; shortcutsRefDate?: import("jamis-core").SchemaExpression; shortcutsPosition?: "picker" | "input"; }; } export {};