Latest updates from IceHrmPro
This commit is contained in:
21
web/node_modules/rc-picker/es/panels/DatePanel/DateBody.d.ts
generated
vendored
Normal file
21
web/node_modules/rc-picker/es/panels/DatePanel/DateBody.d.ts
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
import * as React from 'react';
|
||||
import { GenerateConfig } from '../../generate';
|
||||
import { Locale } from '../../interface';
|
||||
export declare type DateRender<DateType> = (currentDate: DateType, today: DateType) => React.ReactNode;
|
||||
export interface DateBodyPassProps<DateType> {
|
||||
dateRender?: DateRender<DateType>;
|
||||
disabledDate?: (date: DateType) => boolean;
|
||||
prefixColumn?: (date: DateType) => React.ReactNode;
|
||||
rowClassName?: (date: DateType) => string;
|
||||
}
|
||||
export interface DateBodyProps<DateType> extends DateBodyPassProps<DateType> {
|
||||
prefixCls: string;
|
||||
generateConfig: GenerateConfig<DateType>;
|
||||
value?: DateType | null;
|
||||
viewDate: DateType;
|
||||
locale: Locale;
|
||||
rowCount: number;
|
||||
onSelect: (value: DateType) => void;
|
||||
}
|
||||
declare function DateBody<DateType>(props: DateBodyProps<DateType>): JSX.Element;
|
||||
export default DateBody;
|
||||
Reference in New Issue
Block a user