UNPKG

@progress/kendo-vue-buttons

Version:
59 lines (58 loc) 2.07 kB
/** * @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'; /** * @hidden */ export interface ToolbarScrollableProps { scrollButtons: string; scrollButtonsPosition: string; isOverflowing: boolean; buttonScrollSpeed: number; dir?: string; isScrollStartPosition: boolean; isScrollEndPosition: boolean; prevButton?: any; nextButton?: any; toolbarItems?: object; } /** * @hidden */ declare const ToolbarScrollable: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ scrollButtons: PropType<string>; scrollButtonsPosition: PropType<string>; isOverflowing: PropType<boolean>; buttonScrollSpeed: PropType<number>; dir: PropType<string>; isScrollStartPosition: PropType<boolean>; isScrollEndPosition: PropType<boolean>; prevButton: PropType<any>; nextButton: PropType<any>; toolbarItems: PropType<object>; }>, {}, { scrollContentRef: any; }, {}, { onContentScroll(ev: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { contentscroll: (event: any) => true; }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ scrollButtons: PropType<string>; scrollButtonsPosition: PropType<string>; isOverflowing: PropType<boolean>; buttonScrollSpeed: PropType<number>; dir: PropType<string>; isScrollStartPosition: PropType<boolean>; isScrollEndPosition: PropType<boolean>; prevButton: PropType<any>; nextButton: PropType<any>; toolbarItems: PropType<object>; }>> & Readonly<{ onContentscroll?: (event: any) => any; }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { ToolbarScrollable };