ant-design-vue/types/date-picker/month-picker.d.ts

57 lines
1.5 KiB
TypeScript
Raw Normal View History

// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
2020-08-20 13:23:43 +00:00
import { DatepickerMethod, DatepickerProps } from './common';
2019-01-12 03:33:27 +00:00
import { Moment } from 'moment';
2020-08-20 13:23:43 +00:00
import { VNodeChild } from 'vue';
2020-08-20 13:23:43 +00:00
declare class MonthPickerProps extends DatepickerProps {
/**
* to set default date
* @type Moment
*/
2020-08-20 13:23:43 +00:00
defaultValue?: Moment | string;
/**
* to set default picker date
* @type Moment
*/
2020-08-20 13:23:43 +00:00
defaultPickerValue?: Moment | string;
/**
2019-01-02 12:22:45 +00:00
* to set the date format, When an array is provided, all values are used for parsing and first value for display. refer to moment.js
* @default 'YYYY-MM'
2019-01-02 12:22:45 +00:00
* @type string | string[]
* @see http://momentjs.com
*/
2020-08-20 13:23:43 +00:00
format?: string | string[];
/**
* Custom month cell content render method by setting a scoped slot
* @type Function (slot="monthCellContentRender", slot-scope="date, locale")
*/
2020-08-20 13:23:43 +00:00
monthCellContentRender?: Function | VNodeChild | JSX.Element;
/**
* render extra footer in panel by setting a scoped slot
* @type any (slot="renderExtraFooter")
*/
2020-08-20 13:23:43 +00:00
renderExtraFooter?: Function | VNodeChild | JSX.Element;
/**
* to set date
* @type Moment
*/
2020-08-20 13:23:43 +00:00
value?: Moment | string;
/**
* a callback function, can be executed when the selected time is changing
*/
onChange?: (date?: Moment | string, dateString?: string) => void;
}
export declare class MonthPicker extends DatepickerMethod {
$props: MonthPickerProps;
}