devextreme-angular
Version:
Angular UI and visualization components based on DevExtreme widgets
39 lines (38 loc) • 2.1 kB
TypeScript
/*!
* devextreme-angular
* Version: 25.1.4
* Build date: Tue Aug 05 2025
*
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file in the root of the project for details.
*
* https://github.com/DevExpress/devextreme-angular
*/
import { OnInit, OnDestroy, QueryList, AfterContentInit } from '@angular/core';
import { dxGanttToolbarItem, GanttPredefinedToolbarItem } from 'devextreme/ui/gantt';
import { NestedOptionHost } from 'devextreme-angular/core';
import { NestedOption } from 'devextreme-angular/core';
import { DxiGanttItemComponent } from './item-dxi';
import { DxiGanttToolbarItemComponent } from './toolbar-item-dxi';
import * as i0 from "@angular/core";
export declare class DxoGanttToolbarComponent extends NestedOption implements OnDestroy, OnInit, AfterContentInit {
get items(): Array<dxGanttToolbarItem | GanttPredefinedToolbarItem>;
set items(value: Array<dxGanttToolbarItem | GanttPredefinedToolbarItem>);
protected get _optionPath(): string;
itemsChildren: QueryList<DxiGanttItemComponent>;
toolbarItemsChildren: QueryList<DxiGanttToolbarItemComponent>;
setItems(): void;
constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
ngOnInit(): void;
ngOnDestroy(): void;
ngAfterContentInit(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<DxoGanttToolbarComponent, [{ host: true; skipSelf: true; }, { host: true; }]>;
static ɵcmp: i0.ɵɵComponentDeclaration<DxoGanttToolbarComponent, "dxo-gantt-toolbar", never, { "items": { "alias": "items"; "required": false; }; }, {}, ["itemsChildren", "toolbarItemsChildren"], never, true, never>;
}
export declare class DxoGanttToolbarModule {
static ɵfac: i0.ɵɵFactoryDeclaration<DxoGanttToolbarModule, never>;
static ɵmod: i0.ɵɵNgModuleDeclaration<DxoGanttToolbarModule, never, [typeof DxoGanttToolbarComponent], [typeof DxoGanttToolbarComponent]>;
static ɵinj: i0.ɵɵInjectorDeclaration<DxoGanttToolbarModule>;
}