ato-water-lib 0.0.27 → 0.0.29
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/components/asset-flow/asset-flow.component.mjs +12 -4
- package/esm2020/lib/components/asset-params-view/asset-params-view.component.mjs +3 -4
- package/esm2020/lib/models/gojs-data.model.mjs +4 -1
- package/fesm2015/ato-water-lib.mjs +44 -35
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +41 -34
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/components/asset-flow/asset-flow.component.d.ts +2 -0
- package/lib/models/gojs-data.model.d.ts +1 -0
- package/package.json +1 -1
@@ -2,10 +2,12 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import * as go from 'gojs';
|
3
3
|
import { AtoGoJSData } from '../../models/gojs-data.model';
|
4
4
|
import { AtoGojsEditorModel } from '../../models/gojs-editor.model';
|
5
|
+
import { AtoAssetParamsViewComponent } from '../asset-params-view/asset-params-view.component';
|
5
6
|
import { AtoFlowDiagramLibComponent } from '../flow-diagram-lib/flow-diagram-lib.component';
|
6
7
|
import * as i0 from "@angular/core";
|
7
8
|
export declare class AssetFlowComponent implements OnInit {
|
8
9
|
gjFlowDiagramTemp: AtoFlowDiagramLibComponent;
|
10
|
+
assetParamsViewTemp: AtoAssetParamsViewComponent;
|
9
11
|
selectedComponent: any;
|
10
12
|
systemType: AtoGojsEditorModel.ENUM_TYPES;
|
11
13
|
onClickParamOfTableEvent: EventEmitter<any>;
|