@gridsuite/commons-ui 0.72.2 → 0.72.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/translations/en/networkModificationsEn.d.ts +1 -0
- package/dist/translations/en/networkModificationsEn.js +2 -1
- package/dist/translations/fr/networkModificationsFr.d.ts +1 -0
- package/dist/translations/fr/networkModificationsFr.js +2 -1
- package/dist/utils/types/modificationType.d.ts +9 -1
- package/dist/utils/types/modificationType.js +10 -0
- package/package.json +1 -1
|
@@ -57,4 +57,5 @@ export declare const networkModificationsEn: {
|
|
|
57
57
|
'network_modifications.tabular.SUBSTATION_MODIFICATION': string;
|
|
58
58
|
'network_modifications.TABULAR_CREATION': string;
|
|
59
59
|
'network_modifications.tabular.GENERATOR_CREATION': string;
|
|
60
|
+
'network_modifications.LCC_CREATION': string;
|
|
60
61
|
};
|
|
@@ -50,7 +50,8 @@ const networkModificationsEn = {
|
|
|
50
50
|
"network_modifications.tabular.SHUNT_COMPENSATOR_MODIFICATION": "linear shunt compensator modifications",
|
|
51
51
|
"network_modifications.tabular.SUBSTATION_MODIFICATION": "substation modifications",
|
|
52
52
|
"network_modifications.TABULAR_CREATION": "Tabular creation - {computedLabel}",
|
|
53
|
-
"network_modifications.tabular.GENERATOR_CREATION": "generator creations"
|
|
53
|
+
"network_modifications.tabular.GENERATOR_CREATION": "generator creations",
|
|
54
|
+
"network_modifications.LCC_CREATION": "Creating HVDC (LCC) {computedLabel}"
|
|
54
55
|
};
|
|
55
56
|
export {
|
|
56
57
|
networkModificationsEn
|
|
@@ -57,4 +57,5 @@ export declare const networkModificationsFr: {
|
|
|
57
57
|
'network_modifications.tabular.SUBSTATION_MODIFICATION': string;
|
|
58
58
|
'network_modifications.TABULAR_CREATION': string;
|
|
59
59
|
'network_modifications.tabular.GENERATOR_CREATION': string;
|
|
60
|
+
'network_modifications.LCC_CREATION': string;
|
|
60
61
|
};
|
|
@@ -50,7 +50,8 @@ const networkModificationsFr = {
|
|
|
50
50
|
"network_modifications.tabular.SHUNT_COMPENSATOR_MODIFICATION": "modifications de MCS linéaires",
|
|
51
51
|
"network_modifications.tabular.SUBSTATION_MODIFICATION": "modifications de sites",
|
|
52
52
|
"network_modifications.TABULAR_CREATION": "Création tabulaire - {computedLabel}",
|
|
53
|
-
"network_modifications.tabular.GENERATOR_CREATION": "créations de générateurs"
|
|
53
|
+
"network_modifications.tabular.GENERATOR_CREATION": "créations de générateurs",
|
|
54
|
+
"network_modifications.LCC_CREATION": "Création de la HVDC (LCC) {computedLabel}"
|
|
54
55
|
};
|
|
55
56
|
export {
|
|
56
57
|
networkModificationsFr
|
|
@@ -44,7 +44,9 @@ export declare enum ModificationType {
|
|
|
44
44
|
TABULAR_CREATION = "TABULAR_CREATION",
|
|
45
45
|
VSC_MODIFICATION = "VSC_MODIFICATION",
|
|
46
46
|
CONVERTER_STATION_MODIFICATION = "CONVERTER_STATION_MODIFICATION",
|
|
47
|
-
COMPOSITE_MODIFICATION = "COMPOSITE_MODIFICATION"
|
|
47
|
+
COMPOSITE_MODIFICATION = "COMPOSITE_MODIFICATION",
|
|
48
|
+
LCC_CONVERTER_STATION_CREATION = "LCC_CONVERTER_STATION_CREATION",
|
|
49
|
+
LCC_CREATION = "LCC_CREATION"
|
|
48
50
|
}
|
|
49
51
|
export declare const MODIFICATION_TYPES: {
|
|
50
52
|
GROOVY_SCRIPT: {
|
|
@@ -167,4 +169,10 @@ export declare const MODIFICATION_TYPES: {
|
|
|
167
169
|
COMPOSITE_MODIFICATION: {
|
|
168
170
|
type: ModificationType;
|
|
169
171
|
};
|
|
172
|
+
LCC_CONVERTER_STATION_CREATION: {
|
|
173
|
+
type: ModificationType;
|
|
174
|
+
};
|
|
175
|
+
LCC_CREATION: {
|
|
176
|
+
type: ModificationType;
|
|
177
|
+
};
|
|
170
178
|
};
|
|
@@ -39,6 +39,8 @@ var ModificationType = /* @__PURE__ */ ((ModificationType2) => {
|
|
|
39
39
|
ModificationType2["VSC_MODIFICATION"] = "VSC_MODIFICATION";
|
|
40
40
|
ModificationType2["CONVERTER_STATION_MODIFICATION"] = "CONVERTER_STATION_MODIFICATION";
|
|
41
41
|
ModificationType2["COMPOSITE_MODIFICATION"] = "COMPOSITE_MODIFICATION";
|
|
42
|
+
ModificationType2["LCC_CONVERTER_STATION_CREATION"] = "LCC_CONVERTER_STATION_CREATION";
|
|
43
|
+
ModificationType2["LCC_CREATION"] = "LCC_CREATION";
|
|
42
44
|
return ModificationType2;
|
|
43
45
|
})(ModificationType || {});
|
|
44
46
|
const MODIFICATION_TYPES = {
|
|
@@ -200,6 +202,14 @@ const MODIFICATION_TYPES = {
|
|
|
200
202
|
COMPOSITE_MODIFICATION: {
|
|
201
203
|
type: "COMPOSITE_MODIFICATION"
|
|
202
204
|
/* COMPOSITE_MODIFICATION */
|
|
205
|
+
},
|
|
206
|
+
LCC_CONVERTER_STATION_CREATION: {
|
|
207
|
+
type: "LCC_CONVERTER_STATION_CREATION"
|
|
208
|
+
/* LCC_CONVERTER_STATION_CREATION */
|
|
209
|
+
},
|
|
210
|
+
LCC_CREATION: {
|
|
211
|
+
type: "LCC_CREATION"
|
|
212
|
+
/* LCC_CREATION */
|
|
203
213
|
}
|
|
204
214
|
};
|
|
205
215
|
export {
|