UNPKG

devextreme-angular

Version:

Angular UI and visualization components based on DevExtreme widgets

59 lines (58 loc) 3.04 kB
/*! * devextreme-angular * Version: 24.2.6 * Build date: Mon Mar 17 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 } from '@angular/core'; import { ShapeCategory, ToolboxDisplayMode, ShapeType, PanelVisibility } from 'devextreme/ui/diagram'; import { NestedOptionHost } from 'devextreme-angular/core'; import { NestedOption } from 'devextreme-angular/core'; import { DxiDiagramGroupComponent } from './group-dxi'; import { DxiDiagramToolboxGroupComponent } from './toolbox-group-dxi'; import * as i0 from "@angular/core"; export declare class DxoDiagramToolboxComponent extends NestedOption implements OnDestroy, OnInit { get groups(): { category?: ShapeCategory | string; displayMode?: ToolboxDisplayMode; expanded?: boolean; shapes?: Array<ShapeType>; title?: string; }[]; set groups(value: { category?: ShapeCategory | string; displayMode?: ToolboxDisplayMode; expanded?: boolean; shapes?: Array<ShapeType>; title?: string; }[]); get shapeIconsPerRow(): number; set shapeIconsPerRow(value: number); get showSearch(): boolean; set showSearch(value: boolean); get visibility(): PanelVisibility; set visibility(value: PanelVisibility); get width(): number | undefined; set width(value: number | undefined); protected get _optionPath(): string; get groupsChildren(): QueryList<DxiDiagramGroupComponent>; set groupsChildren(value: QueryList<DxiDiagramGroupComponent>); get toolboxGroupsChildren(): QueryList<DxiDiagramToolboxGroupComponent>; set toolboxGroupsChildren(value: QueryList<DxiDiagramToolboxGroupComponent>); constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost); ngOnInit(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration<DxoDiagramToolboxComponent, [{ host: true; skipSelf: true; }, { host: true; }]>; static ɵcmp: i0.ɵɵComponentDeclaration<DxoDiagramToolboxComponent, "dxo-diagram-toolbox", never, { "groups": { "alias": "groups"; "required": false; }; "shapeIconsPerRow": { "alias": "shapeIconsPerRow"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "visibility": { "alias": "visibility"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, ["groupsChildren", "toolboxGroupsChildren"], never, false, never>; } export declare class DxoDiagramToolboxModule { static ɵfac: i0.ɵɵFactoryDeclaration<DxoDiagramToolboxModule, never>; static ɵmod: i0.ɵɵNgModuleDeclaration<DxoDiagramToolboxModule, [typeof DxoDiagramToolboxComponent], never, [typeof DxoDiagramToolboxComponent]>; static ɵinj: i0.ɵɵInjectorDeclaration<DxoDiagramToolboxModule>; }