/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { EventEmitter, ElementRef } from '@angular/core'; import { SVGIcon } from '@progress/kendo-svg-icons'; import { ContextService } from '../common/provider.service'; import { ColumnMenuItemBase } from './column-menu-item-base'; import * as i0 from "@angular/core"; /** * Represents the column-menu item that combines lock and sticky column functionalities. * * Place this component inside a [`ColumnMenuTemplate`]({% slug api_grid_columnmenutemplatedirective %}) directive. * To register the component as a known column menu item, set the [`ColumnMenuService`]({% slug api_grid_columnmenuservice %}) that the template passes to the `service` input of the `kendo-grid-columnmenu-position` component. [See example](slug:columnmenu_grid#toc-set-column-position-item). * * @example * ```html * * * * * * * ``` * @example * ```html * * * * * * * ``` */ export declare class ColumnMenuPositionComponent extends ColumnMenuItemBase { ctx: ContextService; private hostElement; /** * Emits when the content expands. */ expand: EventEmitter; /** * Emits when the content collapses. */ collapse: EventEmitter; /** * Specifies if the content is expanded. * @default false */ expanded: boolean; /** * Specifies if the lock column item is shown. */ showLock: boolean; /** * Specifies if the stick column item is shown. */ showStick: boolean; /** * @hidden */ actionsClass: string; /** * @hidden */ set isLast(value: boolean); /** * @hidden */ get isLast(): boolean; setColumnPositionIcon: SVGIcon; private _isLast; constructor(ctx: ContextService, hostElement: ElementRef); /** * @hidden */ onTab(e: Event, isLastItem: boolean): void; /** * @hidden */ onCollapse(): void; /** * @hidden */ onExpand(): void; private getLastFocusableItem; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }