@gridsuite/commons-ui 0.202.0 → 0.204.0

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.
Files changed (125) hide show
  1. package/dist/components/addButton/AddButton.d.ts +10 -0
  2. package/dist/components/addButton/AddButton.js +16 -0
  3. package/dist/components/addButton/index.d.ts +1 -0
  4. package/dist/components/addButton/index.js +5 -0
  5. package/dist/components/cardErrorBoundary/CardErrorBoundary.d.ts +1 -1
  6. package/dist/components/filter/expert/expertFilterConstants.js +2 -2
  7. package/dist/components/filter/utils/filterFormUtils.d.ts +1 -1
  8. package/dist/components/filter/utils/filterFormUtils.js +3 -3
  9. package/dist/components/index.d.ts +1 -0
  10. package/dist/components/index.js +36 -1
  11. package/dist/components/inputs/index.js +0 -2
  12. package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +3 -28
  13. package/dist/components/inputs/reactHookForm/text/DescriptionField.js +4 -4
  14. package/dist/components/inputs/reactQueryBuilder/index.d.ts +0 -1
  15. package/dist/components/inputs/reactQueryBuilder/index.js +0 -2
  16. package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +1 -1
  17. package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +6 -0
  18. package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +97 -0
  19. package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +10 -0
  20. package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.type.js +1 -0
  21. package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +8 -0
  22. package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +26 -0
  23. package/dist/components/network-modifications/common/activePowerControl/index.d.ts +9 -0
  24. package/dist/components/network-modifications/common/activePowerControl/index.js +7 -0
  25. package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -2
  26. package/dist/components/network-modifications/common/connectivity/ConnectivityForm.d.ts +9 -17
  27. package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +56 -219
  28. package/dist/components/network-modifications/common/connectivity/PositionForm.d.ts +11 -0
  29. package/dist/components/network-modifications/common/connectivity/PositionForm.js +111 -0
  30. package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +13 -0
  31. package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +164 -0
  32. package/dist/components/network-modifications/common/connectivity/connectivityForm.utils.js +3 -3
  33. package/dist/components/network-modifications/common/connectivity/index.d.ts +1 -0
  34. package/dist/components/network-modifications/common/connectivity/index.js +2 -0
  35. package/dist/components/network-modifications/common/index.d.ts +3 -0
  36. package/dist/components/network-modifications/common/index.js +35 -1
  37. package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +8 -0
  38. package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +102 -0
  39. package/dist/components/network-modifications/common/reactiveLimits/index.d.ts +10 -0
  40. package/dist/components/network-modifications/common/reactiveLimits/index.js +23 -0
  41. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +12 -0
  42. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +101 -0
  43. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +10 -0
  44. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +118 -0
  45. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +9 -0
  46. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +15 -0
  47. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +20 -0
  48. package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +152 -0
  49. package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +21 -0
  50. package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.type.js +1 -0
  51. package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +55 -0
  52. package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +66 -0
  53. package/dist/components/network-modifications/common/setpoints/setPoints.utils.js +3 -3
  54. package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +5 -0
  55. package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +68 -0
  56. package/dist/components/network-modifications/common/shortCircuit/index.d.ts +9 -0
  57. package/dist/components/network-modifications/common/shortCircuit/index.js +8 -0
  58. package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +10 -0
  59. package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.type.js +1 -0
  60. package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +15 -0
  61. package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +37 -0
  62. package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +1 -1
  63. package/dist/components/network-modifications/generator/creation/generatorCreation.types.d.ts +40 -0
  64. package/dist/components/network-modifications/generator/creation/generatorCreation.types.js +1 -0
  65. package/dist/components/network-modifications/generator/creation/index.d.ts +7 -0
  66. package/dist/components/network-modifications/generator/creation/index.js +1 -0
  67. package/dist/components/network-modifications/generator/generatorDialog.type.d.ts +102 -0
  68. package/dist/components/network-modifications/generator/generatorDialog.type.js +1 -0
  69. package/dist/components/network-modifications/generator/index.d.ts +9 -0
  70. package/dist/components/network-modifications/generator/index.js +1 -0
  71. package/dist/components/network-modifications/generator/modification/generatorModification.types.d.ts +41 -0
  72. package/dist/components/network-modifications/generator/modification/generatorModification.types.js +1 -0
  73. package/dist/components/network-modifications/generator/modification/index.d.ts +7 -0
  74. package/dist/components/network-modifications/generator/modification/index.js +1 -0
  75. package/dist/components/network-modifications/index.d.ts +1 -0
  76. package/dist/components/network-modifications/index.js +34 -0
  77. package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -1
  78. package/dist/components/network-modifications/load/creation/loadCreation.utils.js +1 -1
  79. package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +4 -3
  80. package/dist/components/parameters/common/hook/use-parameters-form.js +1 -1
  81. package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +1 -1
  82. package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +1 -1
  83. package/dist/components/parameters/dynamic-simulation/network/network-parameters-constants.js +1 -1
  84. package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +3 -3
  85. package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.js +2 -2
  86. package/dist/components/parameters/dynamic-simulation/network/network-parameters.js +2 -2
  87. package/dist/index.js +38 -3
  88. package/dist/translations/en/equipmentShortEn.d.ts +1 -1
  89. package/dist/translations/en/equipmentShortEn.js +1 -1
  90. package/dist/translations/en/equipmentTagEn.d.ts +1 -1
  91. package/dist/translations/en/equipmentTagEn.js +1 -1
  92. package/dist/translations/en/equipmentTypesEn.d.ts +1 -1
  93. package/dist/translations/en/equipmentTypesEn.js +1 -1
  94. package/dist/translations/en/external/exportParamsEn.d.ts +1 -1
  95. package/dist/translations/en/external/exportParamsEn.js +1 -1
  96. package/dist/translations/en/external/importParamsEn.d.ts +1 -1
  97. package/dist/translations/en/external/importParamsEn.js +1 -1
  98. package/dist/translations/en/networkModificationsEn.d.ts +26 -0
  99. package/dist/translations/en/networkModificationsEn.js +26 -0
  100. package/dist/translations/en/parameters.d.ts +1 -1
  101. package/dist/translations/en/parameters.js +1 -1
  102. package/dist/translations/fr/equipmentShortFr.d.ts +1 -1
  103. package/dist/translations/fr/equipmentShortFr.js +1 -1
  104. package/dist/translations/fr/equipmentTagFr.d.ts +1 -1
  105. package/dist/translations/fr/equipmentTagFr.js +1 -1
  106. package/dist/translations/fr/equipmentTypesFr.d.ts +1 -1
  107. package/dist/translations/fr/equipmentTypesFr.js +1 -1
  108. package/dist/translations/fr/external/exportParamsFr.d.ts +1 -1
  109. package/dist/translations/fr/external/exportParamsFr.js +1 -1
  110. package/dist/translations/fr/external/importParamsFr.d.ts +1 -1
  111. package/dist/translations/fr/external/importParamsFr.js +1 -1
  112. package/dist/translations/fr/networkModificationsFr.d.ts +26 -0
  113. package/dist/translations/fr/networkModificationsFr.js +26 -0
  114. package/dist/translations/fr/parameters.d.ts +1 -1
  115. package/dist/translations/fr/parameters.js +1 -1
  116. package/dist/utils/constants/fieldConstants.d.ts +22 -1
  117. package/dist/utils/constants/fieldConstants.js +22 -1
  118. package/dist/utils/index.js +2 -2
  119. package/dist/utils/mapper/equipmentTypesForPredefinedPropertiesMapper.js +1 -1
  120. package/dist/utils/types/equipmentType.d.ts +1 -1
  121. package/dist/utils/types/equipmentType.js +12 -12
  122. package/dist/utils/types/equipmentTypes.d.ts +1 -1
  123. package/dist/utils/types/equipmentTypes.js +2 -2
  124. package/dist/utils/types/index.js +2 -2
  125. package/package.json +1 -1
@@ -200,6 +200,32 @@ const networkModificationsEn = {
200
200
  addNewAssignment: "Modify another field",
201
201
  changeTypeConfirmation: "The type will be changed. All fields values will be erased.",
202
202
  Or: "or",
203
+ NormalizedPercentage: "This percentage must be between 0 and 100",
204
+ On: "On",
205
+ Off: "Off",
206
+ FrequencyRegulation: "Active power regulation",
207
+ Droop: "Droop",
208
+ activePowerControlTooltip: "Slack bus active power repartition key: maxP/droop, default droop = 4 (used if balanceType is PROPORTIONAL_TO_GENERATION_P_MAX)",
209
+ NoModification: "No modification",
210
+ ReactiveLimitsKindMinMax: "By range",
211
+ ReactiveLimitsKindCurve: "By diagram",
212
+ MinimumReactivePower: "Minimum reactive power",
213
+ MaximumReactivePower: "Maximum reactive power",
214
+ ReactiveCapabilityCurveCreationErrorMissingPoints: "The table of reactive capability curve must have at least four points.",
215
+ ReactiveCapabilityCurveCreationErrorPInvalid: "Each active power value must be a valid unique number.",
216
+ ReactiveCapabilityCurveCreationErrorPOutOfRange: "Each active power value must be within the min P and max P values.",
217
+ ReactiveCapabilityCurveCreationErrorQminPQmaxPIncoherence: "Each minimum reactive power value must be less than or equal to the corresponding maximum reactive power value.",
218
+ ReactiveCapabilityCurveCreationErrorMissingNegativeP: "The reactive capability curve table must have at least one row with negative active power",
219
+ ReactiveCapabilityCurveCreationErrorMissingPositiveP: "The reactive capability curve table must have at least one row with positive active power",
220
+ P: "P{labelSuffix}",
221
+ QminP: "QminP{labelSuffix}",
222
+ QmaxP: "QmaxP{labelSuffix}",
223
+ QminPmax: "QminPmax",
224
+ QmaxPmax: "QmaxPmax",
225
+ Pmin: "Pmin",
226
+ QminPmin: "QminPmin",
227
+ QmaxPmin: "QmaxPmin",
228
+ Pmax: "Pmax",
203
229
  // Tabs
204
230
  SubstationTab: "Substation",
205
231
  ConnectivityTab: "Connectivity",
@@ -319,7 +319,7 @@ export declare const parametersEn: {
319
319
  DynamicSimulationSolverMinimalAcceptableStep: string;
320
320
  DynamicSimulationNetworkCapacitorNoReclosingDelay: string;
321
321
  DynamicSimulationNetworkReactanceNoReclosingDelay: string;
322
- DynamicSimulationNetworkDanglingLineCurrentLimitMaxTimeOperation: string;
322
+ DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: string;
323
323
  DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: string;
324
324
  DynamicSimulationNetworkLoadTp: string;
325
325
  DynamicSimulationNetworkLoadTq: string;
@@ -324,7 +324,7 @@ const parametersEn = {
324
324
  // Network tab
325
325
  DynamicSimulationNetworkCapacitorNoReclosingDelay: "Time lag before reclosing in s (capacitor)",
326
326
  DynamicSimulationNetworkReactanceNoReclosingDelay: "Time lag before reclosing in s (reactance)",
327
- DynamicSimulationNetworkDanglingLineCurrentLimitMaxTimeOperation: "Time threshold over which current limiter should not operate in s",
327
+ DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: "Time threshold over which current limiter should not operate in s",
328
328
  DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: "Line current limit Max Time Operation",
329
329
  DynamicSimulationNetworkLoadTp: "Time constant for integration of active power setpoint change, in s",
330
330
  DynamicSimulationNetworkLoadTq: "Time constant for integration of reactive power setpoint change, in s",
@@ -22,7 +22,7 @@ export declare const equipmentShortFr: {
22
22
  'equipment_short/busbarSection': string;
23
23
  'equipment_short/bus': string;
24
24
  'equipment_short/switch': string;
25
- 'equipment_short/danglingLine': string;
25
+ 'equipment_short/boundaryLine': string;
26
26
  'equipment_short/hvdcLineLcc': string;
27
27
  'equipment_short/hvdcLineVsc': string;
28
28
  };
@@ -16,7 +16,7 @@ const equipmentShortFr = {
16
16
  "equipment_short/busbarSection": "SJB",
17
17
  "equipment_short/bus": "Noeud",
18
18
  "equipment_short/switch": "OC",
19
- "equipment_short/danglingLine": "Frontières",
19
+ "equipment_short/boundaryLine": "Frontières",
20
20
  "equipment_short/hvdcLineLcc": "HVDC LCC",
21
21
  "equipment_short/hvdcLineVsc": "HVDC VSC"
22
22
  };
@@ -24,5 +24,5 @@ export declare const equipmentTagFr: {
24
24
  'equipment_tag/busbarSection': string;
25
25
  'equipment_tag/bus': string;
26
26
  'equipment_tag/switch': string;
27
- 'equipment_tag/danglingLine': string;
27
+ 'equipment_tag/boundaryLine': string;
28
28
  };
@@ -18,7 +18,7 @@ const equipmentTagFr = {
18
18
  "equipment_tag/busbarSection": "SJB",
19
19
  "equipment_tag/bus": "NOEUD",
20
20
  "equipment_tag/switch": "SWITCH",
21
- "equipment_tag/danglingLine": "FRONTIERE"
21
+ "equipment_tag/boundaryLine": "FRONTIERE"
22
22
  };
23
23
  export {
24
24
  equipmentTagFr
@@ -23,7 +23,7 @@ export declare const equipmentTypesFr: {
23
23
  HVDC_CONVERTER_STATION: string;
24
24
  VSC_CONVERTER_STATION: string;
25
25
  LCC_CONVERTER_STATION: string;
26
- DANGLING_LINE: string;
26
+ BOUNDARY_LINE: string;
27
27
  TIE_LINE: string;
28
28
  DISCONNECTOR: string;
29
29
  BREAKER: string;
@@ -17,7 +17,7 @@ const equipmentTypesFr = {
17
17
  HVDC_CONVERTER_STATION: "Station de conversion HVDC",
18
18
  VSC_CONVERTER_STATION: "Station de conversion VSC",
19
19
  LCC_CONVERTER_STATION: "Station de conversion LCC",
20
- DANGLING_LINE: "Ligne frontière",
20
+ BOUNDARY_LINE: "Ligne frontière",
21
21
  TIE_LINE: "Ligne d'interconnexion",
22
22
  DISCONNECTOR: "Sectionneur",
23
23
  BREAKER: "Disjoncteur"
@@ -65,7 +65,7 @@ export declare const exportParamsFr: {
65
65
  'iidm.export.xml.extensions.busbarSectionPosition': string;
66
66
  'iidm.export.xml.extensions.branchStatus': string;
67
67
  'iidm.export.xml.extensions.cgmesControlAreas': string;
68
- 'iidm.export.xml.extensions.cgmesDanglingLineBoundaryNode': string;
68
+ 'iidm.export.xml.extensions.cgmesBoundaryLineBoundaryNode': string;
69
69
  'iidm.export.xml.extensions.cgmesLineBoundaryNode': string;
70
70
  'iidm.export.xml.extensions.cgmesMetadataModels': string;
71
71
  'iidm.export.xml.extensions.cgmesSshMetadata': string;
@@ -59,7 +59,7 @@ const exportParamsFr = {
59
59
  "iidm.export.xml.extensions.busbarSectionPosition": "Position des SJBs",
60
60
  "iidm.export.xml.extensions.branchStatus": "Statut de consignation et de déclenchement (Version IIDM < 1.12)",
61
61
  "iidm.export.xml.extensions.cgmesControlAreas": "Cgmes - zone géographique",
62
- "iidm.export.xml.extensions.cgmesDanglingLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
62
+ "iidm.export.xml.extensions.cgmesBoundaryLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
63
63
  "iidm.export.xml.extensions.cgmesLineBoundaryNode": "Code EIC des lignes frontières (ligne complète)",
64
64
  "iidm.export.xml.extensions.cgmesMetadataModels": "Cgmes - Métadonnées des modèles",
65
65
  "iidm.export.xml.extensions.cgmesSshMetadata": "Cgmes - ssh métadonnées",
@@ -62,7 +62,7 @@ export declare const importParamsFr: {
62
62
  'iidm.import.xml.extensions.busbarSectionPosition': string;
63
63
  'iidm.import.xml.extensions.branchStatus': string;
64
64
  'iidm.import.xml.extensions.cgmesControlAreas': string;
65
- 'iidm.import.xml.extensions.cgmesDanglingLineBoundaryNode': string;
65
+ 'iidm.import.xml.extensions.cgmesBoundaryLineBoundaryNode': string;
66
66
  'iidm.import.xml.extensions.cgmesLineBoundaryNode': string;
67
67
  'iidm.import.xml.extensions.cgmesMetadataModels': string;
68
68
  'iidm.import.xml.extensions.cgmesSshMetadata': string;
@@ -57,7 +57,7 @@ const importParamsFr = {
57
57
  "iidm.import.xml.extensions.busbarSectionPosition": "Position des SJBs",
58
58
  "iidm.import.xml.extensions.branchStatus": "Statut de consignation et de déclenchement (Version IIDM < 1.12)",
59
59
  "iidm.import.xml.extensions.cgmesControlAreas": "Cgmes - zone géographique",
60
- "iidm.import.xml.extensions.cgmesDanglingLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
60
+ "iidm.import.xml.extensions.cgmesBoundaryLineBoundaryNode": "Code EIC des lignes frontières (ligne non mergée)",
61
61
  "iidm.import.xml.extensions.cgmesLineBoundaryNode": "Code EIC des lignes frontières (ligne complète)",
62
62
  "iidm.import.xml.extensions.cgmesMetadataModels": "Cgmes - Métadonnées des modèles",
63
63
  "iidm.import.xml.extensions.cgmesSshMetadata": "Cgmes - ssh métadonnées",
@@ -194,6 +194,32 @@ export declare const networkModificationsFr: {
194
194
  addNewAssignment: string;
195
195
  changeTypeConfirmation: string;
196
196
  Or: string;
197
+ NormalizedPercentage: string;
198
+ On: string;
199
+ Off: string;
200
+ FrequencyRegulation: string;
201
+ Droop: string;
202
+ activePowerControlTooltip: string;
203
+ NoModification: string;
204
+ ReactiveLimitsKindMinMax: string;
205
+ ReactiveLimitsKindCurve: string;
206
+ MinimumReactivePower: string;
207
+ MaximumReactivePower: string;
208
+ ReactiveCapabilityCurveCreationErrorMissingPoints: string;
209
+ ReactiveCapabilityCurveCreationErrorPInvalid: string;
210
+ ReactiveCapabilityCurveCreationErrorPOutOfRange: string;
211
+ ReactiveCapabilityCurveCreationErrorQminPQmaxPIncoherence: string;
212
+ ReactiveCapabilityCurveCreationErrorMissingNegativeP: string;
213
+ ReactiveCapabilityCurveCreationErrorMissingPositiveP: string;
214
+ P: string;
215
+ QminP: string;
216
+ QmaxP: string;
217
+ QminPmax: string;
218
+ QmaxPmax: string;
219
+ Pmin: string;
220
+ QminPmin: string;
221
+ QmaxPmin: string;
222
+ Pmax: string;
197
223
  SubstationTab: string;
198
224
  ConnectivityTab: string;
199
225
  CharacteristicsTab: string;
@@ -200,6 +200,32 @@ const networkModificationsFr = {
200
200
  addNewAssignment: "Modifier un autre champ",
201
201
  changeTypeConfirmation: "Le type va être modifié. Toutes les valeurs des champs seront effacées.",
202
202
  Or: "ou",
203
+ NormalizedPercentage: "Ce pourcentage doit être compris entre 0 et 100",
204
+ On: "Activé",
205
+ Off: "Désactivé",
206
+ FrequencyRegulation: "Compensation",
207
+ Droop: "Statisme",
208
+ activePowerControlTooltip: "Clé de distribution de la puissance au nœud bilan : maxP/Statisme, statisme par défaut = 4 (valable pour le mode compensation proportionnel à la puissance maximale des groupes)",
209
+ NoModification: "Pas de modification",
210
+ ReactiveLimitsKindMinMax: "Par plage",
211
+ ReactiveLimitsKindCurve: "Par diagramme",
212
+ MinimumReactivePower: "Puissance réactive minimale",
213
+ MaximumReactivePower: "Puissance réactive maximale",
214
+ ReactiveCapabilityCurveCreationErrorMissingPoints: "Le tableau des limites de réactifs par diagramme doit comporter au moins quatre points.",
215
+ ReactiveCapabilityCurveCreationErrorPInvalid: "Chaque valeur de puissance active doit être un nombre unique et valide.",
216
+ ReactiveCapabilityCurveCreationErrorPOutOfRange: "Chaque valeur de puissance active doit être comprise entre les valeurs P min et P max.",
217
+ ReactiveCapabilityCurveCreationErrorQminPQmaxPIncoherence: "Chaque valeur de puissance réactive minimale doit être inférieure ou égale à la puissance réactive maximale correspondante.",
218
+ ReactiveCapabilityCurveCreationErrorMissingNegativeP: "Le tableau des limites de réactifs par diagramme doit comporter au moins une ligne avec une puissance active négative",
219
+ ReactiveCapabilityCurveCreationErrorMissingPositiveP: "Le tableau des limites de réactifs par diagramme doit comporter au moins une ligne avec une puissance active positive",
220
+ P: "P{labelSuffix}",
221
+ QminP: "QminP{labelSuffix}",
222
+ QmaxP: "QmaxP{labelSuffix}",
223
+ QminPmax: "QminPmax",
224
+ QmaxPmax: "QmaxPmax",
225
+ Pmin: "Pmin",
226
+ QminPmin: "QminPmin",
227
+ QmaxPmin: "QmaxPmin",
228
+ Pmax: "Pmax",
203
229
  // Tabs
204
230
  SubstationTab: "Site",
205
231
  ConnectivityTab: "Connectivité",
@@ -319,7 +319,7 @@ export declare const parametersFr: {
319
319
  DynamicSimulationSolverMinimalAcceptableStep: string;
320
320
  DynamicSimulationNetworkCapacitorNoReclosingDelay: string;
321
321
  DynamicSimulationNetworkReactanceNoReclosingDelay: string;
322
- DynamicSimulationNetworkDanglingLineCurrentLimitMaxTimeOperation: string;
322
+ DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: string;
323
323
  DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: string;
324
324
  DynamicSimulationNetworkLoadTp: string;
325
325
  DynamicSimulationNetworkLoadTq: string;
@@ -323,7 +323,7 @@ const parametersFr = {
323
323
  // Network tab
324
324
  DynamicSimulationNetworkCapacitorNoReclosingDelay: "Temporisation avant la possibilité de réenclencher le MCS en s (capacité)",
325
325
  DynamicSimulationNetworkReactanceNoReclosingDelay: "Temporisation avant la possibilité de réenclencher le MCS en s (réactance)",
326
- DynamicSimulationNetworkDanglingLineCurrentLimitMaxTimeOperation: "Seuil de temps au delà duquel les limiteurs de courant ne doivent pas agir en s",
326
+ DynamicSimulationNetworkBoundaryLineCurrentLimitMaxTimeOperation: "Seuil de temps au delà duquel les limiteurs de courant ne doivent pas agir en s",
327
327
  DynamicSimulationNetworkLineCurrentLimitMaxTimeOperation: "Seuil de temps au-delà duquel les limiteurs de courant ne doivent pas agir en s",
328
328
  DynamicSimulationNetworkLoadTp: "Constante de temps pour intégration du changement de consigne active, en s",
329
329
  DynamicSimulationNetworkLoadTq: "Constante de temps pour intégration du changement de consigne réactive, en s",
@@ -35,8 +35,10 @@ export declare enum FieldConstants {
35
35
  DELETION_SPECIFIC_TYPE = "specificType",
36
36
  DESCRIPTION = "description",
37
37
  DIRECTORY = "directory",
38
+ DROOP = "droop",
38
39
  EDITED_FIELD = "editedField",
39
40
  ENERGY_SOURCE = "energySource",
41
+ EQUIPMENT = "equipment",
40
42
  EQUIPMENT_ID = "equipmentID",
41
43
  EQUIPMENT_NAME = "equipmentName",
42
44
  EQUIPMENT_IDS = "equipmentIDs",
@@ -46,10 +48,13 @@ export declare enum FieldConstants {
46
48
  FILTERS = "filters",
47
49
  FOLDER_ID = "folderId",
48
50
  FOLDER_NAME = "folderName",
51
+ FORCED_OUTAGE_RATE = "forcedOutageRate",
49
52
  FORMATTED_CASE_PARAMETERS = "formattedCaseParameters",
53
+ FREQUENCY_REGULATION = "frequencyRegulation",
50
54
  HVDC_LINE_LCC_DELETION_SPECIFIC_TYPE = "HVDC_LINE_WITH_LCC",
51
55
  ID = "id",
52
56
  LOAD_TYPE = "loadType",
57
+ MARGINAL_COST = "marginalCost",
53
58
  MAXIMUM_ACTIVE_POWER = "maximumActivePower",
54
59
  MEASUREMENT_P = "measurementP",
55
60
  MEASUREMENT_P1 = "measurementP1",
@@ -64,11 +69,14 @@ export declare enum FieldConstants {
64
69
  NOMINAL_VOLTAGE_3 = "nominalVoltage3",
65
70
  NOMINAL_VOLTAGE = "nominalVoltage",
66
71
  OPERATION_TYPE = "type",
72
+ PLANNED_ACTIVE_POWER_SET_POINT = "plannedActivePowerSetPoint",
73
+ PLANNED_OUTAGE_RATE = "plannedOutageRate",
67
74
  PREVIOUS_VALUE = "previousValue",
68
75
  PROPERTY_NAME = "propertyName",
69
76
  PROPERTY_OPERATOR = "propertyOperator",
70
77
  PROPERTY = "PROPERTY",
71
78
  PROPERTY_VALUES = "propertyValues",
79
+ RATED_NOMINAL_POWER = "ratedNominalPower",
72
80
  REACTIVE_POWER_SET_POINT = "reactivePowerSetpoint",
73
81
  SCRIPT = "script",
74
82
  SHUNT_COMPENSATOR_SIDE_1 = "mcsOnSide1",
@@ -97,12 +105,25 @@ export declare enum FieldConstants {
97
105
  HIGH_VOLTAGE_LIMIT = "highVoltageLimit",
98
106
  LOW_SHORT_CIRCUIT_CURRENT_LIMIT = "lowShortCircuitCurrentLimit",
99
107
  LOW_VOLTAGE_LIMIT = "lowVoltageLimit",
108
+ MINIMUM_REACTIVE_POWER = "minimumReactivePower",
109
+ MAXIMUM_REACTIVE_POWER = "maximumReactivePower",
110
+ MIN_Q = "minQ",
111
+ MAX_Q = "maxQ",
100
112
  NOMINAL_V = "nominalV",
113
+ P = "p",
114
+ Q_PERCENT = "qPercent",
115
+ REACTIVE_CAPABILITY_CURVE_CHOICE = "reactiveCapabilityCurveChoice",
116
+ REACTIVE_CAPABILITY_CURVE_TABLE = "reactiveCapabilityCurveTable",
117
+ REACTIVE_LIMITS = "reactiveLimits",
118
+ SECTION_COUNT = "sectionCount",
101
119
  SUBSTATION_CREATION = "substationCreation",
102
120
  SUBSTATION_CREATION_ID = "substationCreationId",
103
121
  SUBSTATION_ID = "substationId",
104
122
  SUBSTATION_NAME = "substationName",
105
123
  SWITCHES_BETWEEN_SECTIONS = "switchesBetweenSections",
106
124
  TOPOLOGY_KIND = "topologyKind",
107
- SECTION_COUNT = "sectionCount"
125
+ TRANSFORMER_REACTANCE = "transformerReactance",
126
+ TRANSIENT_REACTANCE = "directTransX",
127
+ VOLTAGE_REGULATION_TYPE = "voltageRegulationType",
128
+ VOLTAGE_SET_POINT = "voltageSetpoint"
108
129
  }
@@ -29,8 +29,10 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
29
29
  FieldConstants2["DELETION_SPECIFIC_TYPE"] = "specificType";
30
30
  FieldConstants2["DESCRIPTION"] = "description";
31
31
  FieldConstants2["DIRECTORY"] = "directory";
32
+ FieldConstants2["DROOP"] = "droop";
32
33
  FieldConstants2["EDITED_FIELD"] = "editedField";
33
34
  FieldConstants2["ENERGY_SOURCE"] = "energySource";
35
+ FieldConstants2["EQUIPMENT"] = "equipment";
34
36
  FieldConstants2["EQUIPMENT_ID"] = "equipmentID";
35
37
  FieldConstants2["EQUIPMENT_NAME"] = "equipmentName";
36
38
  FieldConstants2["EQUIPMENT_IDS"] = "equipmentIDs";
@@ -40,10 +42,13 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
40
42
  FieldConstants2["FILTERS"] = "filters";
41
43
  FieldConstants2["FOLDER_ID"] = "folderId";
42
44
  FieldConstants2["FOLDER_NAME"] = "folderName";
45
+ FieldConstants2["FORCED_OUTAGE_RATE"] = "forcedOutageRate";
43
46
  FieldConstants2["FORMATTED_CASE_PARAMETERS"] = "formattedCaseParameters";
47
+ FieldConstants2["FREQUENCY_REGULATION"] = "frequencyRegulation";
44
48
  FieldConstants2["HVDC_LINE_LCC_DELETION_SPECIFIC_TYPE"] = "HVDC_LINE_WITH_LCC";
45
49
  FieldConstants2["ID"] = "id";
46
50
  FieldConstants2["LOAD_TYPE"] = "loadType";
51
+ FieldConstants2["MARGINAL_COST"] = "marginalCost";
47
52
  FieldConstants2["MAXIMUM_ACTIVE_POWER"] = "maximumActivePower";
48
53
  FieldConstants2["MEASUREMENT_P"] = "measurementP";
49
54
  FieldConstants2["MEASUREMENT_P1"] = "measurementP1";
@@ -58,11 +63,14 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
58
63
  FieldConstants2["NOMINAL_VOLTAGE_3"] = "nominalVoltage3";
59
64
  FieldConstants2["NOMINAL_VOLTAGE"] = "nominalVoltage";
60
65
  FieldConstants2["OPERATION_TYPE"] = "type";
66
+ FieldConstants2["PLANNED_ACTIVE_POWER_SET_POINT"] = "plannedActivePowerSetPoint";
67
+ FieldConstants2["PLANNED_OUTAGE_RATE"] = "plannedOutageRate";
61
68
  FieldConstants2["PREVIOUS_VALUE"] = "previousValue";
62
69
  FieldConstants2["PROPERTY_NAME"] = "propertyName";
63
70
  FieldConstants2["PROPERTY_OPERATOR"] = "propertyOperator";
64
71
  FieldConstants2["PROPERTY"] = "PROPERTY";
65
72
  FieldConstants2["PROPERTY_VALUES"] = "propertyValues";
73
+ FieldConstants2["RATED_NOMINAL_POWER"] = "ratedNominalPower";
66
74
  FieldConstants2["REACTIVE_POWER_SET_POINT"] = "reactivePowerSetpoint";
67
75
  FieldConstants2["SCRIPT"] = "script";
68
76
  FieldConstants2["SHUNT_COMPENSATOR_SIDE_1"] = "mcsOnSide1";
@@ -91,14 +99,27 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
91
99
  FieldConstants2["HIGH_VOLTAGE_LIMIT"] = "highVoltageLimit";
92
100
  FieldConstants2["LOW_SHORT_CIRCUIT_CURRENT_LIMIT"] = "lowShortCircuitCurrentLimit";
93
101
  FieldConstants2["LOW_VOLTAGE_LIMIT"] = "lowVoltageLimit";
102
+ FieldConstants2["MINIMUM_REACTIVE_POWER"] = "minimumReactivePower";
103
+ FieldConstants2["MAXIMUM_REACTIVE_POWER"] = "maximumReactivePower";
104
+ FieldConstants2["MIN_Q"] = "minQ";
105
+ FieldConstants2["MAX_Q"] = "maxQ";
94
106
  FieldConstants2["NOMINAL_V"] = "nominalV";
107
+ FieldConstants2["P"] = "p";
108
+ FieldConstants2["Q_PERCENT"] = "qPercent";
109
+ FieldConstants2["REACTIVE_CAPABILITY_CURVE_CHOICE"] = "reactiveCapabilityCurveChoice";
110
+ FieldConstants2["REACTIVE_CAPABILITY_CURVE_TABLE"] = "reactiveCapabilityCurveTable";
111
+ FieldConstants2["REACTIVE_LIMITS"] = "reactiveLimits";
112
+ FieldConstants2["SECTION_COUNT"] = "sectionCount";
95
113
  FieldConstants2["SUBSTATION_CREATION"] = "substationCreation";
96
114
  FieldConstants2["SUBSTATION_CREATION_ID"] = "substationCreationId";
97
115
  FieldConstants2["SUBSTATION_ID"] = "substationId";
98
116
  FieldConstants2["SUBSTATION_NAME"] = "substationName";
99
117
  FieldConstants2["SWITCHES_BETWEEN_SECTIONS"] = "switchesBetweenSections";
100
118
  FieldConstants2["TOPOLOGY_KIND"] = "topologyKind";
101
- FieldConstants2["SECTION_COUNT"] = "sectionCount";
119
+ FieldConstants2["TRANSFORMER_REACTANCE"] = "transformerReactance";
120
+ FieldConstants2["TRANSIENT_REACTANCE"] = "directTransX";
121
+ FieldConstants2["VOLTAGE_REGULATION_TYPE"] = "voltageRegulationType";
122
+ FieldConstants2["VOLTAGE_SET_POINT"] = "voltageSetpoint";
102
123
  return FieldConstants2;
103
124
  })(FieldConstants || {});
104
125
  export {
@@ -22,7 +22,7 @@ import { ProblemDetailError } from "./types/ProblemDetailError.js";
22
22
  import { NetworkTimeoutError } from "./types/NetworkTimeoutError.js";
23
23
  import { ElementType } from "./types/elementType.js";
24
24
  import { ALL_EQUIPMENTS, BASE_EQUIPMENTS, CONNECTION_DIRECTIONS, EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE, EQUIPMENTS_WITH_ONE_SUBSTATION, EQUIPMENTS_WITH_THREE_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_SUBSTATIONS, EquipmentType, ExtendedEquipmentType, HvdcType, LOAD_TYPES, OperatingStatus, SEARCH_EQUIPMENTS, TYPE_TAG_MAX_SIZE, UNDEFINED_CONNECTION_DIRECTION, UNDEFINED_LOAD_TYPE, VL_TAG_MAX_SIZE, equipmentStyles, getConnectionDirectionLabel, getEquipmentsInfosForSearchBar, getLoadTypeLabel } from "./types/equipmentType.js";
25
- import { Battery, BusBar, DanglingLine, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./types/equipmentTypes.js";
25
+ import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./types/equipmentTypes.js";
26
26
  import { AnnouncementSeverity, ArrayAction } from "./types/types.js";
27
27
  import { MODIFICATION_TYPES, ModificationType } from "./types/modificationType.js";
28
28
  import { FieldType } from "./types/fieldType.js";
@@ -45,6 +45,7 @@ export {
45
45
  ArrayAction,
46
46
  BASE_EQUIPMENTS,
47
47
  Battery,
48
+ BoundaryLine,
48
49
  BusBar,
49
50
  COMMON_APP_NAME,
50
51
  COMMON_CONFIG_PARAMS_NAMES,
@@ -54,7 +55,6 @@ export {
54
55
  DARK_THEME,
55
56
  DEGREE,
56
57
  DUPLICATED_PROPS_ERROR,
57
- DanglingLine,
58
58
  DistributionType,
59
59
  EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE,
60
60
  EQUIPMENTS_WITH_ONE_SUBSTATION,
@@ -17,7 +17,7 @@ const equipmentTypesForPredefinedPropertiesMapper = (type) => {
17
17
  case "VOLTAGE_LEVEL":
18
18
  return "voltageLevel";
19
19
  case "BUSBAR_SECTION":
20
- case "DANGLING_LINE":
20
+ case "BOUNDARY_LINE":
21
21
  case "HVDC_LINE":
22
22
  case "LCC_CONVERTER_STATION":
23
23
  case "THREE_WINDINGS_TRANSFORMER":
@@ -58,7 +58,7 @@ export declare enum EquipmentType {
58
58
  HVDC_CONVERTER_STATION = "HVDC_CONVERTER_STATION",
59
59
  VSC_CONVERTER_STATION = "VSC_CONVERTER_STATION",
60
60
  LCC_CONVERTER_STATION = "LCC_CONVERTER_STATION",
61
- DANGLING_LINE = "DANGLING_LINE",
61
+ BOUNDARY_LINE = "BOUNDARY_LINE",
62
62
  TIE_LINE = "TIE_LINE",
63
63
  DISCONNECTOR = "DISCONNECTOR",
64
64
  BREAKER = "BREAKER"
@@ -52,7 +52,7 @@ var EquipmentType = /* @__PURE__ */ ((EquipmentType2) => {
52
52
  EquipmentType2["HVDC_CONVERTER_STATION"] = "HVDC_CONVERTER_STATION";
53
53
  EquipmentType2["VSC_CONVERTER_STATION"] = "VSC_CONVERTER_STATION";
54
54
  EquipmentType2["LCC_CONVERTER_STATION"] = "LCC_CONVERTER_STATION";
55
- EquipmentType2["DANGLING_LINE"] = "DANGLING_LINE";
55
+ EquipmentType2["BOUNDARY_LINE"] = "BOUNDARY_LINE";
56
56
  EquipmentType2["TIE_LINE"] = "TIE_LINE";
57
57
  EquipmentType2["DISCONNECTOR"] = "DISCONNECTOR";
58
58
  EquipmentType2["BREAKER"] = "BREAKER";
@@ -75,7 +75,7 @@ const EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE = [
75
75
  const EQUIPMENTS_WITH_TWO_NOMINAL_VOLTAGES = [
76
76
  "LINE",
77
77
  "TIE_LINE",
78
- "DANGLING_LINE",
78
+ "BOUNDARY_LINE",
79
79
  "HVDC_LINE",
80
80
  "TWO_WINDINGS_TRANSFORMER"
81
81
  /* TWO_WINDINGS_TRANSFORMER */
@@ -227,13 +227,13 @@ const ALL_EQUIPMENTS = {
227
227
  shortLabel: "equipment_short/svc"
228
228
  },
229
229
  [
230
- "DANGLING_LINE"
231
- /* DANGLING_LINE */
230
+ "BOUNDARY_LINE"
231
+ /* BOUNDARY_LINE */
232
232
  ]: {
233
- id: "DANGLING_LINE",
234
- label: "DanglingLines",
235
- tagLabel: "equipment_tag/danglingLine",
236
- shortLabel: "equipment_short/danglingLine"
233
+ id: "BOUNDARY_LINE",
234
+ label: "BoundaryLines",
235
+ tagLabel: "equipment_tag/boundaryLine",
236
+ shortLabel: "equipment_short/boundaryLine"
237
237
  },
238
238
  [
239
239
  "BUSBAR_SECTION"
@@ -389,11 +389,11 @@ const BASE_EQUIPMENTS = {
389
389
  /* STATIC_VAR_COMPENSATOR */
390
390
  ],
391
391
  [
392
- "DANGLING_LINE"
393
- /* DANGLING_LINE */
392
+ "BOUNDARY_LINE"
393
+ /* BOUNDARY_LINE */
394
394
  ]: ALL_EQUIPMENTS[
395
- "DANGLING_LINE"
396
- /* DANGLING_LINE */
395
+ "BOUNDARY_LINE"
396
+ /* BOUNDARY_LINE */
397
397
  ]
398
398
  };
399
399
  const SEARCH_EQUIPMENTS = {
@@ -24,7 +24,7 @@ export declare const SVC: {
24
24
  label: string;
25
25
  type: string;
26
26
  };
27
- export declare const DanglingLine: {
27
+ export declare const BoundaryLine: {
28
28
  label: string;
29
29
  type: string;
30
30
  };
@@ -6,7 +6,7 @@ const SVC = {
6
6
  label: "StaticVarCompensators",
7
7
  type: "STATIC_VAR_COMPENSATOR"
8
8
  };
9
- const DanglingLine = { label: "DanglingLines", type: "DANGLING_LINE" };
9
+ const BoundaryLine = { label: "BoundaryLines", type: "BOUNDARY_LINE" };
10
10
  const LCC = {
11
11
  label: "LccConverterStations",
12
12
  type: "LCC_CONVERTER_STATION"
@@ -39,8 +39,8 @@ const Substation = {
39
39
  };
40
40
  export {
41
41
  Battery,
42
+ BoundaryLine,
42
43
  BusBar,
43
- DanglingLine,
44
44
  Generator,
45
45
  Hvdc,
46
46
  LCC,
@@ -3,7 +3,7 @@ import { ProblemDetailError } from "./ProblemDetailError.js";
3
3
  import { NetworkTimeoutError } from "./NetworkTimeoutError.js";
4
4
  import { ElementType } from "./elementType.js";
5
5
  import { ALL_EQUIPMENTS, BASE_EQUIPMENTS, CONNECTION_DIRECTIONS, EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE, EQUIPMENTS_WITH_ONE_SUBSTATION, EQUIPMENTS_WITH_THREE_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_NOMINAL_VOLTAGES, EQUIPMENTS_WITH_TWO_SUBSTATIONS, EquipmentType, ExtendedEquipmentType, HvdcType, LOAD_TYPES, OperatingStatus, SEARCH_EQUIPMENTS, TYPE_TAG_MAX_SIZE, UNDEFINED_CONNECTION_DIRECTION, UNDEFINED_LOAD_TYPE, VL_TAG_MAX_SIZE, equipmentStyles, getConnectionDirectionLabel, getEquipmentsInfosForSearchBar, getLoadTypeLabel } from "./equipmentType.js";
6
- import { Battery, BusBar, DanglingLine, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./equipmentTypes.js";
6
+ import { Battery, BoundaryLine, BusBar, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel } from "./equipmentTypes.js";
7
7
  import { AnnouncementSeverity, ArrayAction } from "./types.js";
8
8
  import { MODIFICATION_TYPES, ModificationType } from "./modificationType.js";
9
9
  import { FieldType } from "./fieldType.js";
@@ -18,11 +18,11 @@ export {
18
18
  ArrayAction,
19
19
  BASE_EQUIPMENTS,
20
20
  Battery,
21
+ BoundaryLine,
21
22
  BusBar,
22
23
  CONNECTION_DIRECTIONS,
23
24
  CalculationType,
24
25
  CustomError,
25
- DanglingLine,
26
26
  DistributionType,
27
27
  EQUIPMENTS_WITH_ONE_NOMINAL_VOLTAGE,
28
28
  EQUIPMENTS_WITH_ONE_SUBSTATION,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.202.0",
3
+ "version": "0.204.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",