ato-water-lib 0.0.119 → 0.0.122

Sign up to get free protection for your applications and to get access to all the features.
@@ -655,6 +655,10 @@ export declare enum ATO_ASSET_LAYERS {
655
655
  ANALYTICS = "Analytics",
656
656
  PERFORMANCE = "Performance"
657
657
  }
658
+ export declare enum ATO_SPOT_LOCATION_TYPE {
659
+ SPOT_INFLOW = "spotInflow",
660
+ SPOT_OUTFLOW = "spotOutflow"
661
+ }
658
662
  export declare const ATO_COMPONENTS_GROUP_DATA: {
659
663
  WaterStorageTanks: {
660
664
  nodeDataArray: ({
@@ -1694,6 +1698,36 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
1694
1698
  selectable?: undefined;
1695
1699
  extendedDataChemistry?: undefined;
1696
1700
  isGroup?: undefined;
1701
+ } | {
1702
+ minSizeValue: go.Size;
1703
+ selectable: boolean;
1704
+ dataTable: any;
1705
+ assetLayers: ATO_ASSET_LAYERS;
1706
+ isFrom: ATO_MAPPER_FROM;
1707
+ extendedData: {
1708
+ visible: boolean;
1709
+ loc?: undefined;
1710
+ margin?: undefined;
1711
+ };
1712
+ extendedDataResponsive: {
1713
+ visible: boolean;
1714
+ loc?: undefined;
1715
+ margin?: undefined;
1716
+ };
1717
+ color: AtoGojsEditorModel.ENUM_COLORS;
1718
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
1719
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
1720
+ title: WATER_SYSTEMS_NAME;
1721
+ key: number;
1722
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1723
+ group: number;
1724
+ loc: string;
1725
+ padding: go.Margin;
1726
+ data?: undefined;
1727
+ name?: undefined;
1728
+ source?: undefined;
1729
+ extendedDataChemistry?: undefined;
1730
+ isGroup?: undefined;
1697
1731
  } | {
1698
1732
  minSizeValue: go.Size;
1699
1733
  selectable: boolean;
@@ -149,6 +149,10 @@ export declare class AtoDefaultGojsEditor implements OnDestroy {
149
149
  w: number;
150
150
  h: number;
151
151
  }): void;
152
+ makeGroupImmersedUFTemplate(icon: any, title: any, size?: {
153
+ w: number;
154
+ h: number;
155
+ }): void;
152
156
  groupPlantCellTemplate(icon: any, title: any, size?: {
153
157
  w: number;
154
158
  h: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ato-water-lib",
3
- "version": "0.0.119",
3
+ "version": "0.0.122",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0 || ^16.2.0",
6
6
  "@angular/core": "^15.1.0 || ^16.2.0",
package/public-api.d.ts CHANGED
@@ -8,3 +8,4 @@ export * from './lib/directive/ato-loading.directive';
8
8
  export * from './lib/directive/ng-var.directive';
9
9
  export * from './lib/constants/components-group-const';
10
10
  export * from './lib/models/gojs-editor.model';
11
+ export * from './lib/constants/value.const';