import { ChildProperty, Event, EmitType, Property, Complex } from '@syncfusion/ej2-base'; import { BeforeClickGroupButtonEventArgs, ClickGroupButtonEventArgs } from '../base/interface'; import { RibbonTooltipModel } from './ribbon-tooltip-model'; import { RibbonTooltip } from './ribbon-tooltip'; /** * Interface for a class RibbonGroupButtonItem */ export interface RibbonGroupButtonItemModel { /** * Defines the content for the button. * * @default '' */ content?: string; /** * Defines the CSS class for the icons to be shown in button. * * @default '' */ iconCss?: string; /** * Specifies the keytip content. * * @default '' */ keyTip?: string; /** * Specifies the tooltip settings for the group button items. * * @default {} */ ribbonTooltipSettings?: RibbonTooltipModel; /** * Defines whether the button is selected or not. * * @default false */ selected?: boolean; /** * Specifies additional HTML attributes to be applied to the group button item. * * @default {} */ htmlAttributes?: { [key: string]: string }; /** * Triggers before clicking the button from group button. * * @event beforeClick */ beforeClick?: EmitType; /** * Triggers after clicking the button from group button. * * @event click */ click?: EmitType; }