UNPKG

@progress/kendo-angular-navigation

Version:

Kendo UI Navigation for Angular

41 lines (40 loc) 1.93 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { Component, HostBinding } from '@angular/core'; import * as i0 from "@angular/core"; /** * Represents the [Kendo UI AppBarSection component for Angular]({% slug contentarrangement_appbar %}#toc-sections). * * Use the AppBarSection component to group content, actions, or navigation items within the AppBar. * * @example * ```html * <kendo-appbar> * <kendo-appbar-section> * <h2>Page Title</h2> * </kendo-appbar-section> * </kendo-appbar> * ``` */ export class AppBarSectionComponent { hostClass = true; static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AppBarSectionComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: AppBarSectionComponent, isStandalone: true, selector: "kendo-appbar-section", host: { properties: { "class.k-appbar-section": "this.hostClass" } }, ngImport: i0, template: ` <ng-content></ng-content> `, isInline: true }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: AppBarSectionComponent, decorators: [{ type: Component, args: [{ selector: 'kendo-appbar-section', template: ` <ng-content></ng-content> `, standalone: true }] }], propDecorators: { hostClass: [{ type: HostBinding, args: ['class.k-appbar-section'] }] } });