ato-water-lib 0.0.9 → 0.0.10
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/ato-water-lib.module.mjs +15 -7
- package/esm2020/lib/components/asset-flow/asset-flow.component.mjs +56 -0
- package/esm2020/lib/components/flow-diagram-lib/flow-diagram-lib.component.mjs +5 -5
- package/esm2020/lib/constants/components-group-const.mjs +1289 -0
- package/esm2020/lib/models/default-gojs-editor.model.mjs +225 -223
- package/esm2020/lib/models/gojs-editor.model.mjs +302 -295
- package/esm2020/public-api.mjs +2 -1
- package/fesm2015/ato-water-lib.mjs +1748 -526
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +1879 -526
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/ato-water-lib.module.d.ts +3 -1
- package/lib/components/asset-flow/asset-flow.component.d.ts +21 -0
- package/lib/constants/components-group-const.d.ts +1132 -0
- package/lib/models/default-gojs-editor.model.d.ts +3 -3
- package/lib/models/gojs-editor.model.d.ts +10 -7
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
@@ -1,8 +1,10 @@
|
|
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 "@angular/common";
|
4
6
|
export declare class AtoWaterLibModule {
|
5
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<AtoWaterLibModule, never>;
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AtoWaterLibModule, [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent],
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AtoWaterLibModule, [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent, typeof i3.AssetFlowComponent], [typeof i4.CommonModule], [typeof i1.AtoWaterLibComponent, typeof i2.AtoFlowDiagramLibComponent, typeof i3.AssetFlowComponent]>;
|
7
9
|
static ɵinj: i0.ɵɵInjectorDeclaration<AtoWaterLibModule>;
|
8
10
|
}
|
@@ -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
|
+
}
|