UNPKG

@progress/kendo-vue-grid

Version:
61 lines (60 loc) 1.96 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 { SVGIcon } from '@progress/kendo-svg-icons'; import { PropType } from 'vue'; /** * The props of the GridColumnMenuItem component. */ export interface GridColumnMenuItemProps { /** * Triggered on each click on the title. */ onClick?: Function; /** * The title of the GridColumnMenuItem component. */ title: string; /** * The class of the icon rendered next to the title. */ iconClass: string; /** * Defines the name for the icon. */ icon?: string; /** * Defines the svg icon in a Kendo UI for Vue theme. */ svgIcon?: SVGIcon; /** * The selected state of the component. */ selected?: boolean; } /** * @hidden */ declare const GridColumnMenuItem: import('vue').DefineComponent<import('vue').ExtractPropTypes<{ title: PropType<string>; iconClass: PropType<string>; icon: PropType<string>; svgIcon: PropType<SVGIcon>; selected: PropType<boolean>; onMenuitemclick: PropType<Function>; }>, {}, {}, {}, { onClick(e: any): void; onKeyDown(event: any): void; }, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{ title: PropType<string>; iconClass: PropType<string>; icon: PropType<string>; svgIcon: PropType<SVGIcon>; selected: PropType<boolean>; onMenuitemclick: PropType<Function>; }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>; export { GridColumnMenuItem };