@progress/kendo-vue-dateinputs
Version:
36 lines (35 loc) • 1.37 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { PropType } from 'vue';
/**
* The props which will be received by the custom week cell of the [Calendar]({% slug api_dateinputs_calendarprops %}#toc-weekcell).
*/
export interface CalendarWeekCellProps {
id?: string;
value?: number | null;
className?: string;
}
/**
* @hidden
*/
declare const CalendarWeekCell: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
id: PropType<string>;
value: PropType<number>;
className: PropType<string>;
}>, {}, {}, {}, {
handleClick(event: any): void;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
click: (event: MouseEvent) => true;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
id: PropType<string>;
value: PropType<number>;
className: PropType<string>;
}>> & Readonly<{
onClick?: (event: MouseEvent) => any;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { CalendarWeekCell };