@progress/kendo-angular-gantt
Version:
Kendo UI Angular Gantt
29 lines (28 loc) • 1.33 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 { Injectable, EventEmitter } from '@angular/core';
import * as i0 from "@angular/core";
/**
* @hidden
*/
export class OptionChangesService {
viewChanges = new EventEmitter();
columnChanges = new EventEmitter();
dateFormatChanges = new EventEmitter();
notifyColumnChanges() {
this.columnChanges.emit();
}
notifyViewChanges() {
this.viewChanges.emit();
}
notifyDateFormatChanges() {
this.dateFormatChanges.emit();
}
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: OptionChangesService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: OptionChangesService });
}
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.14", ngImport: i0, type: OptionChangesService, decorators: [{
type: Injectable
}] });