ato-water-lib 0.0.37 → 0.0.38
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 +7 -3
- package/esm2020/lib/models/gojs-data.model.mjs +1 -1
- package/esm2020/public-api.mjs +3 -2
- package/fesm2015/ato-water-lib.mjs +5 -5
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +7 -4
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/models/gojs-data.model.d.ts +2 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
@@ -1,7 +1,9 @@
|
|
1
|
+
import { ATO_ASSET_LAYERS } from "../constants/components-group-const";
|
1
2
|
export declare class AtoGoJSData {
|
2
3
|
linkFromPortIdProperty: string;
|
3
4
|
linkToPortIdProperty: string;
|
4
5
|
linkDataArray: any[];
|
5
6
|
nodeDataArray: any[];
|
6
7
|
isRefresh?: boolean;
|
8
|
+
assetLayer: ATO_ASSET_LAYERS;
|
7
9
|
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
@@ -6,3 +6,4 @@ export * from './lib/components/asset-flow/asset-flow.component';
|
|
6
6
|
export * from './lib/components/asset-params-view/asset-params-view.component';
|
7
7
|
export * from './lib/directive/ato-loading.directive';
|
8
8
|
export * from './lib/directive/ng-var.directive';
|
9
|
+
export * from './lib/constants/components-group-const';
|