@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
50 lines (49 loc) • 2.54 kB
JavaScript
/**-----------------------------------------------------------------------------------------
* 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 day view component.
*
* @example
* ```html
* <kendo-gantt-timeline-day-view></kendo-gantt-timeline-day-view>
* ```
*/
export class TimelineDayViewComponent extends ViewBase {
/**
* Specifies the type for this view (`day`).
*/
type = 'day';
constructor(optionChangesService, dependencyDomService) {
super(optionChangesService, dependencyDomService);
}
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineDayViewComponent, deps: [{ token: i1.OptionChangesService }, { token: i2.DependencyDomService }], target: i0.ɵɵFactoryTarget.Component });
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.14", type: TimelineDayViewComponent, isStandalone: true, selector: "kendo-gantt-timeline-day-view", providers: [
{
provide: ViewBase,
useExisting: forwardRef(() => TimelineDayViewComponent)
}
], usesInheritance: true, ngImport: i0, template: '', isInline: true });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: TimelineDayViewComponent, decorators: [{
type: Component,
args: [{
selector: 'kendo-gantt-timeline-day-view',
template: '',
providers: [
{
provide: ViewBase,
useExisting: forwardRef(() => TimelineDayViewComponent)
}
],
standalone: true
}]
}], ctorParameters: () => [{ type: i1.OptionChangesService }, { type: i2.DependencyDomService }] });