@progress/kendo-vue-layout
Version:
53 lines (52 loc) • 1.82 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 properties of the Kendo UI for Vue MenuItemArrow component.
*/
export interface MenuItemArrowProps {
/**
* Sets the item id of the MenuItemArrow component.
*/
itemId: string;
/**
* Sets the direction of the MenuItemArrow component.
*/
dir: 'ltr' | 'rtl' | string;
/**
* Specifies whether the Menu which holds the MenuItemArrow component is vertical.
*/
verticalMenu?: boolean;
}
/**
* @hidden
*/
export declare const downArrowIcon: import('@progress/kendo-svg-icons').SVGIcon;
/**
* @hidden
*/
export declare const rightArrowIcon: import('@progress/kendo-svg-icons').SVGIcon;
/**
* @hidden
*/
export declare const leftArrowIcon: import('@progress/kendo-svg-icons').SVGIcon;
/**
* @hidden
*/
declare const MenuItemArrow: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
itemId: PropType<string>;
dir: PropType<string>;
verticalMenu: PropType<boolean>;
}>, {}, {}, {}, {
getArrowName(): "" | import('@progress/kendo-svg-icons').SVGIcon;
}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
itemId: PropType<string>;
dir: PropType<string>;
verticalMenu: PropType<boolean>;
}>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export { MenuItemArrow };