@progress/kendo-angular-dateinputs
Version:
Kendo UI for Angular Date Inputs Package - Everything you need to add date selection functionality to apps (DatePicker, TimePicker, DateInput, DateRangePicker, DateTimePicker, Calendar, and MultiViewCalendar).
42 lines (41 loc) • 1.13 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ElementRef } from '@angular/core';
import { Observable } from 'rxjs';
/**
* @hidden
*/
export interface Scrollable {
/**
* @hidden
*
* The scrollable element.
*/
container: ElementRef;
/**
* @hidden
*
* The method that scrolls the container to a specific `scrollTop` value.
*/
scrollTo: (scrollTop: number) => void;
/**
* @hidden
*
* The method that scrolls the container to a specific element index.
*/
scrollToIndex: (index: number) => void;
/**
* @hidden
*
* The method that scrolls the container to the bottom.
*/
scrollToBottom: () => void;
/**
* @hidden
*
* The returning method.
*/
scroll$: () => Observable<any>;
}