UNPKG

@progress/kendo-angular-gantt

Version:
50 lines (49 loc) 2.57 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, forwardRef } from '@angular/core'; import { DependencyDomService } from '../dependencies/dependency-dom.service'; import { ViewBase } from './view-base'; import { OptionChangesService } from '../common/option-changes.service'; import * as i0 from "@angular/core"; import * as i1 from "../common/option-changes.service"; import * as i2 from "../dependencies/dependency-dom.service"; /** * Represents the Gantt timeline month view component. * * @example * ```html * <kendo-gantt-timeline-month-view></kendo-gantt-timeline-month-view> * ``` */ export class TimelineMonthViewComponent extends ViewBase { /** * Specifies the type for this view (`month`). */ type = 'month'; constructor(optionChangesService, dependencyDomService) { super(optionChangesService, dependencyDomService); } static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineMonthViewComponent, deps: [{ token: i1.OptionChangesService }, { token: i2.DependencyDomService }], target: i0.ɵɵFactoryTarget.Component }); static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: TimelineMonthViewComponent, isStandalone: true, selector: "kendo-gantt-timeline-month-view", providers: [ { provide: ViewBase, useExisting: forwardRef(() => TimelineMonthViewComponent) } ], usesInheritance: true, ngImport: i0, template: '', isInline: true }); } i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineMonthViewComponent, decorators: [{ type: Component, args: [{ selector: 'kendo-gantt-timeline-month-view', template: '', providers: [ { provide: ViewBase, useExisting: forwardRef(() => TimelineMonthViewComponent) } ], standalone: true }] }], ctorParameters: () => [{ type: i1.OptionChangesService }, { type: i2.DependencyDomService }] });