ato-water-lib 0.0.16 → 0.0.18
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 +6 -3
- package/esm2020/lib/components/flow-diagram-lib/flow-diagram-lib.component.mjs +5 -4
- package/esm2020/lib/constants/icon-base64.const.mjs +4 -0
- package/esm2020/lib/directive/ato-loading.directive.mjs +3 -3
- package/esm2020/lib/models/default-gojs-editor.model.mjs +6 -4
- package/esm2020/lib/models/gojs-data.model.mjs +3 -0
- package/fesm2015/ato-water-lib.mjs +17 -9
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +17 -9
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/components/asset-flow/asset-flow.component.d.ts +3 -1
- package/lib/constants/icon-base64.const.d.ts +3 -0
- package/lib/models/gojs-data.model.d.ts +6 -0
- package/package.json +1 -1
@@ -1,5 +1,6 @@
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
2
2
|
import * as go from 'gojs';
|
3
|
+
import { AtoGoJSData } from '../../models/gojs-data.model';
|
3
4
|
import { AtoGojsEditorModel } from '../../models/gojs-editor.model';
|
4
5
|
import { AtoFlowDiagramLibComponent } from '../flow-diagram-lib/flow-diagram-lib.component';
|
5
6
|
import * as i0 from "@angular/core";
|
@@ -13,10 +14,11 @@ export declare class AssetFlowComponent implements OnInit {
|
|
13
14
|
options: {
|
14
15
|
layout: go.LayeredDigraphLayout;
|
15
16
|
};
|
16
|
-
flowData:
|
17
|
+
flowData: AtoGoJSData;
|
17
18
|
ngOnInit(): void;
|
18
19
|
onClickParamOfTable($event: any): void;
|
19
20
|
getDefaultFlowData(): any;
|
21
|
+
setFlowData(data: AtoGoJSData): void;
|
20
22
|
static ɵfac: i0.ɵɵFactoryDeclaration<AssetFlowComponent, never>;
|
21
23
|
static ɵcmp: i0.ɵɵComponentDeclaration<AssetFlowComponent, "ato-asset-flow", never, { "selectedComponent": "selectedComponent"; "systemType": "systemType"; "isUseBase64": "isUseBase64"; "flowData": "flowData"; }, { "onClickParamOfTableEvent": "onClickParamOfTableEvent"; }, never, never, false, never>;
|
22
24
|
}
|