ato-water-lib 0.0.9 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,11 @@
1
1
  import * as i0 from "@angular/core";
2
2
  import * as i1 from "./ato-water-lib.component";
3
3
  import * as i2 from "./components/flow-diagram-lib/flow-diagram-lib.component";
4
+ import * as i3 from "./components/asset-flow/asset-flow.component";
5
+ import * as i4 from "./directive/ato-loading.directive";
6
+ import * as i5 from "@angular/common";
4
7
  export declare class AtoWaterLibModule {
5
8
  static ɵfac: i0.ɵɵFactoryDeclaration<AtoWaterLibModule, never>;
6
- static ɵmod: i0.ɵɵNgModuleDeclaration<AtoWaterLibModule, [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent], never, [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<AtoWaterLibModule, [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent, typeof i3.AssetFlowComponent, typeof i4.AtoLoadingDirective], [typeof i5.CommonModule], [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent, typeof i3.AssetFlowComponent, typeof i4.AtoLoadingDirective]>;
7
10
  static ɵinj: i0.ɵɵInjectorDeclaration<AtoWaterLibModule>;
8
11
  }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import * as go from 'gojs';
3
+ import { AtoGojsEditorModel } from '../../models/gojs-editor.model';
4
+ import { AtoFlowDiagramLibComponent } from '../flow-diagram-lib/flow-diagram-lib.component';
5
+ import * as i0 from "@angular/core";
6
+ export declare class AssetFlowComponent implements OnInit {
7
+ gjFlowDiagramTemp: AtoFlowDiagramLibComponent;
8
+ selectedComponent: any;
9
+ systemType: AtoGojsEditorModel.ENUM_TYPES;
10
+ onClickParamOfTableEvent: EventEmitter<any>;
11
+ $: typeof go.GraphObject.make;
12
+ options: {
13
+ layout: go.LayeredDigraphLayout;
14
+ };
15
+ flowData: any;
16
+ ngOnInit(): void;
17
+ onClickParamOfTable($event: any): void;
18
+ getDefaultFlowData(): any;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<AssetFlowComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<AssetFlowComponent, "ato-asset-flow", never, { "selectedComponent": "selectedComponent"; "systemType": "systemType"; "flowData": "flowData"; }, { "onClickParamOfTableEvent": "onClickParamOfTableEvent"; }, never, never, false, never>;
21
+ }