@progress/kendo-react-scheduler
Version:
React Scheduler brings the functionality of Outlook's Calendar to a single UI component. KendoReact Scheduler package
34 lines (33 loc) • 1.05 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 { Slot } from '../models/index.js';
import * as React from 'react';
/**
* @hidden
*/
export interface ShowMoreItemsButtonMouseEvent {
syntheticEvent: React.MouseEvent;
target: ShowMoreItemsButtonHandle;
}
/**
* @hidden
*/
export interface ShowMoreItemsButtonProps {
slot?: Slot;
onClick?: (event: ShowMoreItemsButtonMouseEvent) => void;
}
/**
* @hidden
*/
export interface ShowMoreItemsButtonHandle extends ShowMoreItemsButtonProps {
element: HTMLButtonElement | null;
}
/**
* @hidden
*/
export declare const ShowMoreItemsButton: React.ForwardRefExoticComponent<ShowMoreItemsButtonProps & React.RefAttributes<ShowMoreItemsButtonHandle>>;