ato-water-lib 0.0.92 → 0.0.94
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 +5 -6
- package/esm2020/lib/constants/base64.const.mjs +3 -1
- package/esm2020/lib/constants/components-group-const.mjs +283 -136
- package/esm2020/lib/models/default-gojs-editor.model.mjs +5 -4
- package/esm2020/lib/models/gojs-editor.model.mjs +8 -1
- package/fesm2015/ato-water-lib.mjs +221 -82
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +299 -143
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/constants/base64.const.d.ts +2 -0
- package/lib/constants/components-group-const.d.ts +82 -9
- package/lib/models/gojs-editor.model.d.ts +8 -1
- package/package.json +1 -1
@@ -70,8 +70,8 @@ export declare enum ENUM_ASSET_PARAMETERS {
|
|
70
70
|
CHEMISTRY_PERMEATE_TURBIDITY = "Chemistry_Permeate_Turbidity",
|
71
71
|
CHEMISTRY_PERMEATE_TEMPERATURE = "Chemistry_Permeate_Temperature",
|
72
72
|
CHEMISTRY_FEED_TURBIDITY = "Chemistry_Feed_Turbidity",
|
73
|
-
|
74
|
-
|
73
|
+
NORMALIZED_PRESSURE_DROP = "Normalized Pressure Drop",
|
74
|
+
NORMALIZED_PERMEATE_FLOW_RATE = "Normalized Permeate Flow Rate",
|
75
75
|
CONDENSATE_PRESSURE = "Condensate Pressure",
|
76
76
|
PRESSURE = "Pressure",
|
77
77
|
DIFFERENTIAL_PRESSURE = "Differential Pressure",
|
@@ -107,9 +107,9 @@ export declare enum WATER_SYSTEMS_NAME {
|
|
107
107
|
BOILER_WATER__CHEMISTRY = "Boiler Water Chemistry",
|
108
108
|
STEAM_LOSS = "Steam Loss",
|
109
109
|
BLOWDOWN = "Blowdown",
|
110
|
-
IMMERSED_UF_SYSTEM_KPIS = "System
|
111
|
-
IMMERSED_UF_SYSTEM_KPIS__FLOW = "System
|
112
|
-
IMMERSED_UF_SYSTEM_KPIS__CHEMISTRY = "System
|
110
|
+
IMMERSED_UF_SYSTEM_KPIS = "System KPI's",
|
111
|
+
IMMERSED_UF_SYSTEM_KPIS__FLOW = "System KPI's Flow",
|
112
|
+
IMMERSED_UF_SYSTEM_KPIS__CHEMISTRY = "System KPI's Chemistry",
|
113
113
|
IMMERSED_UF_UF = "UF",
|
114
114
|
IMMERSED_UF_UF__FLOW = "UF Flow",
|
115
115
|
IMMERSED_UF_UF__CHEMISTRY = "UF Chemistry",
|
@@ -387,6 +387,7 @@ export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
|
387
387
|
Flow_UF_TMP_Before_Back_Pulse: {
|
388
388
|
name: string;
|
389
389
|
key: ENUM_ASSET_PARAMETERS;
|
390
|
+
waterSystem: WATER_SYSTEMS_NAME;
|
390
391
|
};
|
391
392
|
Flow_UF_TMP_After_Back_Pulse: {
|
392
393
|
name: string;
|
@@ -440,11 +441,11 @@ export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
|
440
441
|
name: string;
|
441
442
|
key: ENUM_ASSET_PARAMETERS;
|
442
443
|
};
|
443
|
-
"
|
444
|
+
"Normalized Pressure Drop": {
|
444
445
|
name: ENUM_ASSET_PARAMETERS;
|
445
446
|
key: ENUM_ASSET_PARAMETERS;
|
446
447
|
};
|
447
|
-
"
|
448
|
+
"Normalized Permeate Flow Rate": {
|
448
449
|
name: ENUM_ASSET_PARAMETERS;
|
449
450
|
key: ENUM_ASSET_PARAMETERS;
|
450
451
|
};
|
@@ -503,16 +504,32 @@ export declare const STYLE_TABLE_PARAM: {
|
|
503
504
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
504
505
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
505
506
|
};
|
507
|
+
MATTE_BLUE: {
|
508
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
509
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
510
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
511
|
+
};
|
506
512
|
MEDIUM_RED_VIOLET: {
|
507
513
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
508
514
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
509
515
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
510
516
|
};
|
517
|
+
LONDON_HUE: {
|
518
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
519
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
520
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
521
|
+
};
|
511
522
|
ICE_COLD: {
|
512
523
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
513
524
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
514
525
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
515
526
|
};
|
527
|
+
LIGHT_GREEN: {
|
528
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
529
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
530
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
531
|
+
titleTextColor: AtoGojsEditorModel.ENUM_COLORS;
|
532
|
+
};
|
516
533
|
};
|
517
534
|
export declare const DATA_WATER_SYSTEMS: {
|
518
535
|
"Evaporation Loss": {
|
@@ -605,13 +622,13 @@ export declare const DATA_WATER_SYSTEMS: {
|
|
605
622
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
606
623
|
title: WATER_SYSTEMS_NAME;
|
607
624
|
};
|
608
|
-
"System
|
625
|
+
"System KPI's Flow": {
|
609
626
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
610
627
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
611
628
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
612
629
|
title: WATER_SYSTEMS_NAME;
|
613
630
|
};
|
614
|
-
"System
|
631
|
+
"System KPI's Chemistry": {
|
615
632
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
616
633
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
617
634
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
@@ -633,12 +650,14 @@ export declare const DATA_WATER_SYSTEMS: {
|
|
633
650
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
634
651
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
635
652
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
653
|
+
titleTextColor: AtoGojsEditorModel.ENUM_COLORS;
|
636
654
|
title: WATER_SYSTEMS_NAME;
|
637
655
|
};
|
638
656
|
"Backpulse Chemistry": {
|
639
657
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
640
658
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
641
659
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
660
|
+
titleTextColor: AtoGojsEditorModel.ENUM_COLORS;
|
642
661
|
title: WATER_SYSTEMS_NAME;
|
643
662
|
};
|
644
663
|
"Permeate Flow": {
|
@@ -946,6 +965,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
946
965
|
margin?: undefined;
|
947
966
|
selectable?: undefined;
|
948
967
|
isGroup?: undefined;
|
968
|
+
assetLayers?: undefined;
|
949
969
|
} | {
|
950
970
|
key: number;
|
951
971
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
@@ -969,6 +989,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
969
989
|
margin?: undefined;
|
970
990
|
selectable?: undefined;
|
971
991
|
isGroup?: undefined;
|
992
|
+
assetLayers?: undefined;
|
972
993
|
} | {
|
973
994
|
minSizeValue: go.Size;
|
974
995
|
selectable: boolean;
|
@@ -1010,6 +1031,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1010
1031
|
extendedData?: undefined;
|
1011
1032
|
extendedDataResponsive?: undefined;
|
1012
1033
|
isGroup?: undefined;
|
1034
|
+
assetLayers?: undefined;
|
1013
1035
|
} | {
|
1014
1036
|
key: number;
|
1015
1037
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
@@ -1024,6 +1046,28 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1024
1046
|
extendedDataResponsive?: undefined;
|
1025
1047
|
source?: undefined;
|
1026
1048
|
margin?: undefined;
|
1049
|
+
assetLayers?: undefined;
|
1050
|
+
} | {
|
1051
|
+
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1052
|
+
group: number;
|
1053
|
+
loc: string;
|
1054
|
+
name: WATER_SYSTEMS_NAME;
|
1055
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
1056
|
+
assetLayers: ATO_ASSET_LAYERS;
|
1057
|
+
extendedData: {
|
1058
|
+
visible: boolean;
|
1059
|
+
loc?: undefined;
|
1060
|
+
};
|
1061
|
+
extendedDataResponsive: {
|
1062
|
+
visible: boolean;
|
1063
|
+
loc?: undefined;
|
1064
|
+
};
|
1065
|
+
key?: undefined;
|
1066
|
+
data?: undefined;
|
1067
|
+
source?: undefined;
|
1068
|
+
margin?: undefined;
|
1069
|
+
selectable?: undefined;
|
1070
|
+
isGroup?: undefined;
|
1027
1071
|
})[];
|
1028
1072
|
linkDataArray: never[];
|
1029
1073
|
};
|
@@ -1689,6 +1733,35 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1689
1733
|
source?: undefined;
|
1690
1734
|
selectable?: undefined;
|
1691
1735
|
isGroup?: undefined;
|
1736
|
+
} | {
|
1737
|
+
minSizeValue: go.Size;
|
1738
|
+
selectable: boolean;
|
1739
|
+
dataTable: any;
|
1740
|
+
assetLayers: ATO_ASSET_LAYERS;
|
1741
|
+
extendedData: {
|
1742
|
+
visible: boolean;
|
1743
|
+
loc?: undefined;
|
1744
|
+
margin?: undefined;
|
1745
|
+
};
|
1746
|
+
extendedDataResponsive: {
|
1747
|
+
visible: boolean;
|
1748
|
+
loc?: undefined;
|
1749
|
+
margin?: undefined;
|
1750
|
+
};
|
1751
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
1752
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
1753
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
1754
|
+
titleTextColor: AtoGojsEditorModel.ENUM_COLORS;
|
1755
|
+
title: WATER_SYSTEMS_NAME;
|
1756
|
+
key: number;
|
1757
|
+
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1758
|
+
group: number;
|
1759
|
+
loc: string;
|
1760
|
+
padding: go.Margin;
|
1761
|
+
data?: undefined;
|
1762
|
+
name?: undefined;
|
1763
|
+
source?: undefined;
|
1764
|
+
isGroup?: undefined;
|
1692
1765
|
} | {
|
1693
1766
|
key: number;
|
1694
1767
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
@@ -35,8 +35,11 @@ export declare namespace AtoGojsEditorModel {
|
|
35
35
|
CASHMERE = "#D6AB95",
|
36
36
|
GALLIANO = "#E09F25",
|
37
37
|
FOUNTAIN_BLUE = "#54BBBA",
|
38
|
+
LIGHT_GREEN = "#b6dfd9",
|
38
39
|
ELF_GREEN = "#199C69",
|
39
40
|
MEDIUM_RED_VIOLET = "#A8438D",
|
41
|
+
LONDON_HUE = "#A788A4",
|
42
|
+
WHITE_LILAC = "#F5F3F6",
|
40
43
|
GRANDIS = "#FBC96C",
|
41
44
|
SALMON = "#F47769",
|
42
45
|
NIGHT_RIDER = "#2C2C2C",
|
@@ -55,7 +58,9 @@ export declare namespace AtoGojsEditorModel {
|
|
55
58
|
REGENT_ST_BLUE = "#87cee7",
|
56
59
|
SELAGO = "#F6F3F6",
|
57
60
|
ICE_COLD = "#ABE0D9",
|
58
|
-
MINT_CREAM = "#F8FCFB"
|
61
|
+
MINT_CREAM = "#F8FCFB",
|
62
|
+
MATTE_BLUE = "#7197ca",
|
63
|
+
BLACK = "#000000"
|
59
64
|
}
|
60
65
|
enum ENUM_LINK_TYPES {
|
61
66
|
SIMPLE = "simple",
|
@@ -361,6 +366,8 @@ export declare namespace AtoGojsEditorModel {
|
|
361
366
|
const IMAGE_RO_WATER_TREATMENT_PATH = "/assets/images/ro-water-treatment/RO_WATER_TREATMENT_BG.png";
|
362
367
|
const IMAGE_BOILER_PATH = "assets/images/boiler/cms_boiler.png";
|
363
368
|
const IMAGE_COOLING_TOWER_PATH = "assets/images/process-water/cooling-tower-4.png";
|
369
|
+
const IMAGE_IMMERSED_UF_PATH = "assets/images/immersed-uf/immersed_uf.png";
|
370
|
+
const IMAGE_PRESSURIZED_UF_PATH = "assets/images/pressurized-uf/pressurized_uf.png";
|
364
371
|
const SPECIAL_ICON_ASSET_PATH: string;
|
365
372
|
const ENERGY_ICON_ASSET_PATH = "assets/images/editor/energy";
|
366
373
|
const GAS_ICON_ASSET_PATH = "assets/images/editor/gas";
|