UNPKG

@progress/kendo-angular-navigation

Version:

Kendo UI Navigation for Angular

27 lines (26 loc) 1.35 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * Represents a template for customizing the header content of the ActionSheet. If you implement this template, it will override the `title` and `subtitle` of the ActionSheet. * To define the template, nest an `<ng-template>` tag * with the `kendoActionSheetHeaderTemplate` directive inside the `<kendo-actionsheet>` tag. * * @example * ```html * <kendo-actionsheet> * <ng-template kendoActionSheetHeaderTemplate> * <h3>Custom Header</h3> * </ng-template> * </kendo-actionsheet> * ``` */ export declare class ActionSheetHeaderTemplateDirective { templateRef: TemplateRef<any>; constructor(templateRef: TemplateRef<any>); static ɵfac: i0.ɵɵFactoryDeclaration<ActionSheetHeaderTemplateDirective, [{ optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration<ActionSheetHeaderTemplateDirective, "[kendoActionSheetHeaderTemplate]", never, {}, {}, never, never, true, never>; }