@gridsuite/commons-ui 0.241.0 → 0.242.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 (147) hide show
  1. package/README.md +4 -0
  2. package/dist/components/composite/grid/grid-item.d.ts +2 -1
  3. package/dist/components/composite/grid/grid-item.js +9 -2
  4. package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-autocomplete.d.ts +1 -2
  5. package/dist/features/index.js +87 -3
  6. package/dist/features/network-modification-table/index.js +2 -1
  7. package/dist/features/network-modification-table/use-modifications-drag-and-drop.js +2 -1
  8. package/dist/features/network-modification-table/utils.d.ts +1 -0
  9. package/dist/features/network-modification-table/utils.js +5 -1
  10. package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +3 -0
  11. package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +3 -0
  12. package/dist/features/network-modifications/battery/modification/BatteryDialogHeader.js +3 -0
  13. package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.js +3 -0
  14. package/dist/features/network-modifications/battery/modification/batteryModification.utils.js +3 -0
  15. package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.d.ts +71 -2
  16. package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.js +26 -8
  17. package/dist/features/network-modifications/common/connectivity/index.js +3 -1
  18. package/dist/features/network-modifications/common/currentLimits/LimitsPane.d.ts +7 -0
  19. package/dist/features/network-modifications/common/currentLimits/LimitsPane.js +243 -0
  20. package/dist/features/network-modifications/common/currentLimits/LimitsTagChip.d.ts +9 -0
  21. package/dist/features/network-modifications/common/currentLimits/LimitsTagChip.js +29 -0
  22. package/dist/features/network-modifications/common/currentLimits/SelectedOperationalLimitGroup.d.ts +9 -0
  23. package/dist/features/network-modifications/common/currentLimits/SelectedOperationalLimitGroup.js +100 -0
  24. package/dist/features/network-modifications/common/currentLimits/index.d.ts +12 -0
  25. package/dist/features/network-modifications/common/currentLimits/index.js +47 -0
  26. package/dist/features/network-modifications/common/currentLimits/limits.types.d.ts +52 -0
  27. package/dist/features/network-modifications/common/currentLimits/limits.types.js +17 -0
  28. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsEditor.d.ts +10 -0
  29. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsEditor.js +285 -0
  30. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsPropertiesSideStack.d.ts +5 -0
  31. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsPropertiesSideStack.js +184 -0
  32. package/dist/features/network-modifications/common/currentLimits/limitsEditor/TemporaryLimitsTable.d.ts +14 -0
  33. package/dist/features/network-modifications/common/currentLimits/limitsEditor/TemporaryLimitsTable.js +166 -0
  34. package/dist/features/network-modifications/common/currentLimits/limitsEditor/index.d.ts +10 -0
  35. package/dist/features/network-modifications/common/currentLimits/limitsEditor/index.js +10 -0
  36. package/dist/features/network-modifications/common/currentLimits/limitsEditor/limitsChart.d.ts +11 -0
  37. package/dist/features/network-modifications/common/currentLimits/limitsEditor/limitsChart.js +177 -0
  38. package/dist/features/network-modifications/common/currentLimits/limitsPane.utils.d.ts +213 -0
  39. package/dist/features/network-modifications/common/currentLimits/limitsPane.utils.js +337 -0
  40. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsGroupsContextualMenu.d.ts +25 -0
  41. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsGroupsContextualMenu.js +92 -0
  42. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsPropertiesStack.d.ts +10 -0
  43. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsPropertiesStack.js +25 -0
  44. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroupTabLabel.d.ts +10 -0
  45. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroupTabLabel.js +73 -0
  46. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroups.d.ts +16 -0
  47. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroups.js +121 -0
  48. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/index.d.ts +11 -0
  49. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/index.js +12 -0
  50. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroups.types.d.ts +71 -0
  51. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroups.types.js +15 -0
  52. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroupsStyles.d.ts +46 -0
  53. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroupsStyles.js +45 -0
  54. package/dist/features/network-modifications/common/index.d.ts +1 -0
  55. package/dist/features/network-modifications/common/index.js +50 -2
  56. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +11 -0
  57. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +6 -4
  58. package/dist/features/network-modifications/common/measurements/index.js +2 -1
  59. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +1 -1
  60. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +3 -7
  61. package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +3 -0
  62. package/dist/features/network-modifications/generator/creation/GeneratorCreationForm.js +9 -6
  63. package/dist/features/network-modifications/generator/creation/generatorCreation.utils.js +3 -0
  64. package/dist/features/network-modifications/generator/modification/GeneratorDialogHeader.js +3 -0
  65. package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.js +9 -6
  66. package/dist/features/network-modifications/generator/modification/generatorModification.utils.js +3 -0
  67. package/dist/features/network-modifications/index.d.ts +1 -0
  68. package/dist/features/network-modifications/index.js +85 -2
  69. package/dist/features/{parameters/dynamic-simulation/curve/curve-parameters.type.d.ts → network-modifications/line/catalog/index.d.ts} +3 -1
  70. package/dist/features/network-modifications/line/catalog/index.js +14 -0
  71. package/dist/features/network-modifications/line/catalog/lineCatalog.type.d.ts +66 -0
  72. package/dist/features/network-modifications/line/catalog/lineCatalog.type.js +7 -0
  73. package/dist/features/network-modifications/line/catalog/segment.utils.d.ts +90 -0
  74. package/dist/features/network-modifications/line/catalog/segment.utils.js +100 -0
  75. package/dist/features/network-modifications/line/characteristics/LineCharacteristicsPane.d.ts +8 -0
  76. package/dist/features/network-modifications/line/characteristics/LineCharacteristicsPane.js +152 -0
  77. package/dist/features/network-modifications/line/characteristics/index.d.ts +9 -0
  78. package/dist/features/network-modifications/line/characteristics/index.js +9 -0
  79. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.types.d.ts +14 -0
  80. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.utils.d.ts +52 -0
  81. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.utils.js +53 -0
  82. package/dist/features/network-modifications/line/common/LineDialogHeader.d.ts +6 -0
  83. package/dist/features/network-modifications/line/common/LineDialogHeader.js +103 -0
  84. package/dist/features/network-modifications/line/common/LineDialogTabs.d.ts +9 -0
  85. package/dist/features/network-modifications/line/common/LineDialogTabs.js +61 -0
  86. package/dist/features/network-modifications/line/common/LineDialogTabsContent.d.ts +8 -0
  87. package/dist/features/network-modifications/line/common/LineDialogTabsContent.js +96 -0
  88. package/dist/features/network-modifications/line/common/LineForm.d.ts +6 -0
  89. package/dist/features/network-modifications/line/common/LineForm.js +50 -0
  90. package/dist/features/network-modifications/line/common/index.d.ts +12 -0
  91. package/dist/features/network-modifications/line/common/index.js +13 -0
  92. package/dist/features/network-modifications/line/common/line.types.d.ts +47 -0
  93. package/dist/features/network-modifications/line/common/line.types.js +1 -0
  94. package/dist/features/network-modifications/line/common/line.utils.d.ts +13 -0
  95. package/dist/features/network-modifications/line/common/line.utils.js +34 -0
  96. package/dist/features/network-modifications/line/creation/index.d.ts +8 -0
  97. package/dist/features/network-modifications/line/creation/index.js +7 -0
  98. package/dist/features/network-modifications/line/creation/lineCreation.types.d.ts +39 -0
  99. package/dist/features/network-modifications/line/creation/lineCreation.types.js +1 -0
  100. package/dist/features/network-modifications/line/creation/lineCreation.utils.d.ts +151 -0
  101. package/dist/features/network-modifications/line/creation/lineCreation.utils.js +172 -0
  102. package/dist/features/network-modifications/line/index.d.ts +10 -0
  103. package/dist/features/network-modifications/line/index.js +37 -0
  104. package/dist/features/network-modifications/load/common/LoadDialogHeader.js +3 -0
  105. package/dist/features/network-modifications/load/modification/loadModification.utils.js +3 -0
  106. package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +7 -6
  107. package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +3 -0
  108. package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +3 -0
  109. package/dist/features/network-modifications/shunt-compensator/modification/ShuntCompensatorModificationForm.js +3 -0
  110. package/dist/features/network-modifications/shunt-compensator/modification/shuntCompensatorModification.utils.js +3 -0
  111. package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +3 -0
  112. package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +3 -0
  113. package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +3 -0
  114. package/dist/features/network-modifications/voltageLevel/creation/index.js +3 -0
  115. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +3 -0
  116. package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +3 -0
  117. package/dist/features/network-modifications/voltageLevel/index.js +3 -0
  118. package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +4 -1
  119. package/dist/features/parameters/common/contingency-table/contingency-table.js +22 -10
  120. package/dist/features/parameters/common/contingency-table/types.d.ts +7 -8
  121. package/dist/features/parameters/common/contingency-table/utils.d.ts +13 -0
  122. package/dist/features/parameters/common/contingency-table/utils.js +31 -0
  123. package/dist/features/parameters/loadflow/load-flow-general-parameters.js +5 -1
  124. package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +2 -2
  125. package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +2 -2
  126. package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +2 -2
  127. package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +3 -3
  128. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +19 -31
  129. package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +3 -3
  130. package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +2 -2
  131. package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +2 -2
  132. package/dist/hooks/useModificationLabelComputer.js +1 -0
  133. package/dist/index.js +87 -3
  134. package/dist/translations/en/networkModificationsEn.d.ts +28 -0
  135. package/dist/translations/en/networkModificationsEn.js +28 -0
  136. package/dist/translations/en/parameters.d.ts +3 -1
  137. package/dist/translations/en/parameters.js +3 -1
  138. package/dist/translations/fr/networkModificationsFr.d.ts +28 -0
  139. package/dist/translations/fr/networkModificationsFr.js +28 -0
  140. package/dist/translations/fr/parameters.d.ts +3 -1
  141. package/dist/translations/fr/parameters.js +3 -1
  142. package/dist/utils/constants/fieldConstants.d.ts +47 -1
  143. package/dist/utils/constants/fieldConstants.js +46 -0
  144. package/dist/utils/types/modificationType.d.ts +4 -0
  145. package/dist/utils/types/modificationType.js +5 -0
  146. package/package.json +11 -4
  147. /package/dist/features/{parameters/dynamic-simulation/curve/curve-parameters.type.js → network-modifications/line/characteristics/lineCharacteristicsPane.types.js} +0 -0
package/dist/index.js CHANGED
@@ -228,14 +228,14 @@ import { PropertyForm } from "./features/network-modifications/common/properties
228
228
  import { copyEquipmentPropertiesForCreation, createPropertyModification, creationPropertiesSchema, emptyProperties, fetchPredefinedProperties, getConcatenatedProperties, getFilledPropertiesFromModification, getPropertiesFromModification, getPropertyValue, initializedProperty, mergeModificationAndEquipmentProperties, modificationPropertiesSchema, toModificationProperties } from "./features/network-modifications/common/properties/propertyUtils.js";
229
229
  import { getPowerWithValidityEditData, getPowerWithValidityEmptyFormData, getPowerWithValidityValidationSchema } from "./features/network-modifications/common/measurements/powerWithValidity.utils.js";
230
230
  import { getInjectionActiveReactivePowerEditData, getInjectionActiveReactivePowerEditDataProperties, getInjectionActiveReactivePowerEmptyFormData, getInjectionActiveReactivePowerEmptyFormDataProperties, getInjectionActiveReactivePowerValidationSchema, getInjectionActiveReactivePowerValidationSchemaProperties } from "./features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js";
231
- import { getBranchActiveReactivePowerEditData, getBranchActiveReactivePowerEditDataProperties, getBranchActiveReactivePowerEmptyFormData, getBranchActiveReactivePowerEmptyFormDataProperties, getBranchActiveReactivePowerValidationSchema, getBranchActiveReactivePowerValidationSchemaProperties } from "./features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js";
231
+ import { getBranchActiveReactivePowerEditData, getBranchActiveReactivePowerEditDataProperties, getBranchActiveReactivePowerEmptyFormData, getBranchActiveReactivePowerEmptyFormDataProperties, getBranchActiveReactivePowerValidationSchema, getBranchActiveReactivePowerValidationSchemaObject, getBranchActiveReactivePowerValidationSchemaProperties } from "./features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js";
232
232
  import { PowerWithValidityForm } from "./features/network-modifications/common/measurements/PowerWithValidityForm.js";
233
233
  import { PowerMeasurementsForm } from "./features/network-modifications/common/measurements/PowerMeasurementsForm.js";
234
234
  import { BranchActiveReactivePowerMeasurementsForm } from "./features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js";
235
235
  import { BusbarSectionVoltageMeasurementsForm } from "./features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js";
236
236
  import { getActivePowerSetPointSchema, getReactivePowerSetPointSchema, getSetPointsEmptyFormData, getSetPointsSchema, testValueWithinPowerInterval } from "./features/network-modifications/common/setpoints/setPoints.utils.js";
237
237
  import { SetPointsForm } from "./features/network-modifications/common/setpoints/SetPointsForm.js";
238
- import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./features/network-modifications/common/connectivity/connectivityForm.utils.js";
238
+ import { createConnectivityData, getBranchConnectivityWithPositionEmptyFormDataProps, getBranchConnectivityWithPositionSchema, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./features/network-modifications/common/connectivity/connectivityForm.utils.js";
239
239
  import { ConnectivityForm } from "./features/network-modifications/common/connectivity/ConnectivityForm.js";
240
240
  import { BranchConnectivityForm } from "./features/network-modifications/common/connectivity/BranchConnectivityForm.js";
241
241
  import { VoltageLevelConnectivityForm } from "./features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js";
@@ -252,6 +252,19 @@ import { RegulatingTerminalForm } from "./features/network-modifications/common/
252
252
  import { getRegulatingTerminalEmptyFormData, getRegulatingTerminalEquipmentData, getRegulatingTerminalFormData, getRegulatingTerminalVoltageLevelData } from "./features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js";
253
253
  import { VoltageRegulationForm } from "./features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js";
254
254
  import { REGULATION_TYPES, getVoltageRegulationEmptyFormData, getVoltageRegulationSchema } from "./features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js";
255
+ import { APPLICABILITY, TEMPORARY_LIMIT_MODIFICATION_TYPE } from "./features/network-modifications/common/currentLimits/limits.types.js";
256
+ import { LimitsTagChip, getPropertyAvatar } from "./features/network-modifications/common/currentLimits/LimitsTagChip.js";
257
+ import { LimitsPane } from "./features/network-modifications/common/currentLimits/LimitsPane.js";
258
+ import { addModificationTypeToOpLimitsGroups, addModificationTypeToTemporaryLimits, addOperationTypeToSelectedOpLG, convertToOperationalLimitsGroupFormSchema, formatMapInfosToTemporaryLimitsFormSchema, formatOpLimitGroupsToFormInfos, formatTemporaryLimitsModificationToFormSchema, generateEmptyOperationalLimitsGroup, generateUniqueId, getAllLimitsFormData, getAllLimitsFormDataProperties, getLimitsEmptyFormData, getLimitsEmptyFormDataProps, getLimitsValidationSchema, getLimitsValidationSchemaProps, mapServerLimitsGroupsToFormInfos, sanitizeLimitNames, sanitizeLimitsGroups } from "./features/network-modifications/common/currentLimits/limitsPane.utils.js";
259
+ import { LimitsChart } from "./features/network-modifications/common/currentLimits/limitsEditor/limitsChart.js";
260
+ import { LimitsPropertiesSideStack } from "./features/network-modifications/common/currentLimits/limitsEditor/LimitsPropertiesSideStack.js";
261
+ import { LimitsEditor } from "./features/network-modifications/common/currentLimits/limitsEditor/LimitsEditor.js";
262
+ import { TemporaryLimitsTable } from "./features/network-modifications/common/currentLimits/limitsEditor/TemporaryLimitsTable.js";
263
+ import { OPERATIONAL_LIMITS_GROUPS_MODIFICATION_TYPE } from "./features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroups.types.js";
264
+ import { LimitsGroupsContextualMenu } from "./features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsGroupsContextualMenu.js";
265
+ import { LimitsPropertiesStack } from "./features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsPropertiesStack.js";
266
+ import { OperationalLimitsGroups } from "./features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroups.js";
267
+ import { OperationalLimitsGroupTabLabel } from "./features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroupTabLabel.js";
255
268
  import { getHvdcLccDeletionSchema } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
256
269
  import { ShuntCompensatorSelectionForm } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
257
270
  import { useHvdcLccDeletion } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
@@ -369,6 +382,16 @@ import { ShuntCompensatorCreationForm } from "./features/network-modifications/s
369
382
  import { shuntCompensatorCreationDtoToForm, shuntCompensatorCreationEmptyFormData, shuntCompensatorCreationFormSchema, shuntCompensatorCreationFormToDto } from "./features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js";
370
383
  import { ShuntCompensatorModificationForm } from "./features/network-modifications/shunt-compensator/modification/ShuntCompensatorModificationForm.js";
371
384
  import { shuntCompensatorModificationDtoToForm, shuntCompensatorModificationEmptyFormData, shuntCompensatorModificationFormSchema, shuntCompensatorModificationFormToDto } from "./features/network-modifications/shunt-compensator/modification/shuntCompensatorModification.utils.js";
385
+ import { getCharacteristicsValidationSchema, getLineCharacteristicsEmptyFormData, getLineCharacteristicsFormData, getLineCharacteristicsValidationSchemaProps } from "./features/network-modifications/line/characteristics/lineCharacteristicsPane.utils.js";
386
+ import { LineCharacteristicsPane } from "./features/network-modifications/line/characteristics/LineCharacteristicsPane.js";
387
+ import { CATEGORIES_TABS } from "./features/network-modifications/line/catalog/lineCatalog.type.js";
388
+ import { LineSegmentsInfoSchema, SegmentCurrentLimitsSchema, SegmentInfoSchema, SegmentSchema, SegmentTemporaryLimitSchema, convertLimitsToOperationalLimitsGroupFormSchema, convertToLineSegmentInfos, convertToLineSegmentsFormData, emptyLineSegment } from "./features/network-modifications/line/catalog/segment.utils.js";
389
+ import { LINE_TAB_FIELDS, LineDialogTab } from "./features/network-modifications/line/common/line.utils.js";
390
+ import { LineDialogTabs } from "./features/network-modifications/line/common/LineDialogTabs.js";
391
+ import { LineDialogTabsContent } from "./features/network-modifications/line/common/LineDialogTabsContent.js";
392
+ import { LineDialogHeader } from "./features/network-modifications/line/common/LineDialogHeader.js";
393
+ import { LineForm } from "./features/network-modifications/line/common/LineForm.js";
394
+ import { lineCreationDtoToForm, lineCreationEmptyFormData, lineCreationFormSchema, lineCreationFormToDto } from "./features/network-modifications/line/creation/lineCreation.utils.js";
372
395
  import { BuildStatusChip } from "./features/node/build-status-chip.js";
373
396
  import { BuildStatus } from "./features/node/constant.js";
374
397
  import { COLUMNS_WITHOUT_BORDER, DEPTH_CELL_WIDTH, DROP_FORBIDDEN_INDICATOR_BOTTOM, DROP_FORBIDDEN_INDICATOR_TOP, DROP_INDICATOR_BOTTOM, DROP_INDICATOR_TOP, MODIFICATION_ROW_HEIGHT, createCellBorderColor, createCellContentWrapperSx, createCellStyle, createEditDescriptionStyle, createHeaderCellStyle, createModificationNameCellStyle, createNameCellLabelBoxSx, createNameCellRootStyle, createRootNetworkChipCellSx, createRowSx, networkModificationTableStyles } from "./features/network-modification-table/network-modification-table-styles.js";
@@ -387,7 +410,7 @@ import { SelectHeaderCell } from "./features/network-modification-table/renderer
387
410
  import { SwitchCell } from "./features/network-modification-table/renderers/switch-cell.js";
388
411
  import { DragCloneRow } from "./features/network-modification-table/row/drag-row-clone.js";
389
412
  import { ModificationRow } from "./features/network-modification-table/row/modification-row.js";
390
- import { MAX_COMPOSITE_NESTING_DEPTH, fetchSubModificationsForExpandedRows, findAllLoadedCompositeModifications, findDepth, findModificationInTree, formatToComposedModification, isCompositeModification, mergeSubModificationsIntoTree, moveSubModificationInTree, removeUuidsFromTree, updateModificationFieldInTree, updateSubModificationsOfACompositeInTree } from "./features/network-modification-table/utils.js";
413
+ import { MAX_COMPOSITE_NESTING_DEPTH, fetchSubModificationsForExpandedRows, findAllLoadedCompositeModifications, findDepth, findModificationInTree, formatToComposedModification, isCompositeModification, isSharedModification, mergeSubModificationsIntoTree, moveSubModificationInTree, removeUuidsFromTree, updateModificationFieldInTree, updateSubModificationsOfACompositeInTree } from "./features/network-modification-table/utils.js";
391
414
  import { AnnouncementBanner } from "./features/announcement/AnnouncementBanner.js";
392
415
  import { AnnouncementNotification } from "./features/announcement/AnnouncementNotification.js";
393
416
  import { useGlobalAnnouncement } from "./features/announcement/useGlobalAnnouncement.js";
@@ -481,6 +504,7 @@ export {
481
504
  ACTIVE,
482
505
  ALL_EQUIPMENTS,
483
506
  AMPERE,
507
+ APPLICABILITY,
484
508
  AUTO_EXTENSIBLE_COLUMNS,
485
509
  AboutDialog,
486
510
  ActivableChip,
@@ -525,6 +549,7 @@ export {
525
549
  ButtonReadOnlyInput,
526
550
  ByFilterDeletionForm,
527
551
  CALCULATION_TYPE,
552
+ CATEGORIES_TABS,
528
553
  CENTER_LABEL,
529
554
  CHARACTERISTICS_CHOICES,
530
555
  COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS,
@@ -752,6 +777,7 @@ export {
752
777
  LIMIT_DURATION_FORM,
753
778
  LIMIT_REDUCTIONS_FORM,
754
779
  LINE_FLOW_MODE,
780
+ LINE_TAB_FIELDS,
755
781
  LOADS_VARIATIONS,
756
782
  LOAD_FILTERS,
757
783
  LOAD_INCREASE_START_TIME,
@@ -768,8 +794,22 @@ export {
768
794
  LimitReductionTableCell,
769
795
  LimitReductionTableRow,
770
796
  LimitReductionsTableForm,
797
+ LimitsChart,
798
+ LimitsEditor,
799
+ LimitsGroupsContextualMenu,
800
+ LimitsPane,
801
+ LimitsPropertiesSideStack,
802
+ LimitsPropertiesStack,
803
+ LimitsTagChip,
771
804
  Line,
805
+ LineCharacteristicsPane,
806
+ LineDialogHeader,
807
+ LineDialogTab,
808
+ LineDialogTabs,
809
+ LineDialogTabsContent,
772
810
  LineFlowMode,
811
+ LineForm,
812
+ LineSegmentsInfoSchema,
773
813
  LineSeparator,
774
814
  Load,
775
815
  LoadDialogHeader,
@@ -841,10 +881,13 @@ export {
841
881
  NumericCellRenderer,
842
882
  NumericEditor,
843
883
  OHM,
884
+ OPERATIONAL_LIMITS_GROUPS_MODIFICATION_TYPE,
844
885
  OPERATOR_OPTIONS,
845
886
  OhmAdornment,
846
887
  OperatingStatus,
847
888
  OperationType,
889
+ OperationalLimitsGroupTabLabel,
890
+ OperationalLimitsGroups,
848
891
  OperatorType,
849
892
  OptionalServicesStatus,
850
893
  OverflowableChip,
@@ -980,6 +1023,10 @@ export {
980
1023
  SecurityAnalysisParametersInline,
981
1024
  SecurityAnalysisResultNmk,
982
1025
  SecurityAnalysisTable,
1026
+ SegmentCurrentLimitsSchema,
1027
+ SegmentInfoSchema,
1028
+ SegmentSchema,
1029
+ SegmentTemporaryLimitSchema,
983
1030
  SelectCell,
984
1031
  SelectCellRenderer,
985
1032
  SelectClearable,
@@ -1020,6 +1067,7 @@ export {
1020
1067
  SwitchWithLabel,
1021
1068
  SwitchesBetweenSections,
1022
1069
  TAB_INFO,
1070
+ TEMPORARY_LIMIT_MODIFICATION_TYPE,
1023
1071
  TRANSFORMERS_SELECTION_TYPE,
1024
1072
  TWT_SPLIT_SHUNT_ADMITTANCE,
1025
1073
  TYPE_TAG_MAX_SIZE,
@@ -1029,6 +1077,7 @@ export {
1029
1077
  TableTextInput,
1030
1078
  TableType,
1031
1079
  TagRenderer,
1080
+ TemporaryLimitsTable,
1032
1081
  TextFieldWithAdornment,
1033
1082
  TextInput,
1034
1083
  TextValueEditor,
@@ -1079,6 +1128,9 @@ export {
1079
1128
  YUP_NOT_TYPE_NUMBER,
1080
1129
  YUP_POSITIVE,
1081
1130
  YUP_REQUIRED,
1131
+ addModificationTypeToOpLimitsGroups,
1132
+ addModificationTypeToTemporaryLimits,
1133
+ addOperationTypeToSelectedOpLG,
1082
1134
  addToleranceToFilter,
1083
1135
  alertThresholdMarks,
1084
1136
  areArrayElementsUnique,
@@ -1115,7 +1167,11 @@ export {
1115
1167
  computeTagMinSize,
1116
1168
  computeTolerance,
1117
1169
  convertInputValue,
1170
+ convertLimitsToOperationalLimitsGroupFormSchema,
1118
1171
  convertOutputValue,
1172
+ convertToLineSegmentInfos,
1173
+ convertToLineSegmentsFormData,
1174
+ convertToOperationalLimitsGroupFormSchema,
1119
1175
  copyEquipmentPropertiesForCreation,
1120
1176
  copyToClipboard,
1121
1177
  countRules,
@@ -1149,6 +1205,7 @@ export {
1149
1205
  elementSearchEn,
1150
1206
  elementSearchFr,
1151
1207
  emptyFormData,
1208
+ emptyLineSegment,
1152
1209
  emptyModificationByAssignmentFormData,
1153
1210
  emptyProperties,
1154
1211
  enrichPccMinParameters,
@@ -1229,9 +1286,14 @@ export {
1229
1286
  flattenNmKResultsConstraints,
1230
1287
  flattenNmKResultsContingencies,
1231
1288
  formatComputingTypeLabel,
1289
+ formatMapInfosToTemporaryLimitsFormSchema,
1290
+ formatOpLimitGroupsToFormInfos,
1291
+ formatTemporaryLimitsModificationToFormSchema,
1232
1292
  formatToComposedModification,
1233
1293
  genHelperError,
1294
+ generateEmptyOperationalLimitsGroup,
1234
1295
  generateTreeViewFinderClass,
1296
+ generateUniqueId,
1235
1297
  generatorCreationDtoToForm,
1236
1298
  generatorCreationEmptyFormData,
1237
1299
  generatorCreationFormSchema,
@@ -1244,6 +1306,8 @@ export {
1244
1306
  getActivePowerControlEmptyFormData,
1245
1307
  getActivePowerControlSchema,
1246
1308
  getActivePowerSetPointSchema,
1309
+ getAllLimitsFormData,
1310
+ getAllLimitsFormDataProperties,
1247
1311
  getAppName,
1248
1312
  getAvailableComponentLibraries,
1249
1313
  getBaseNetworkModificationUrl,
@@ -1252,11 +1316,15 @@ export {
1252
1316
  getBranchActiveReactivePowerEmptyFormData,
1253
1317
  getBranchActiveReactivePowerEmptyFormDataProperties,
1254
1318
  getBranchActiveReactivePowerValidationSchema,
1319
+ getBranchActiveReactivePowerValidationSchemaObject,
1255
1320
  getBranchActiveReactivePowerValidationSchemaProperties,
1321
+ getBranchConnectivityWithPositionEmptyFormDataProps,
1322
+ getBranchConnectivityWithPositionSchema,
1256
1323
  getCharacteristicsCreateFormDataFromSearchCopy,
1257
1324
  getCharacteristicsEmptyFormData,
1258
1325
  getCharacteristicsFormData,
1259
1326
  getCharacteristicsFormValidationSchema,
1327
+ getCharacteristicsValidationSchema,
1260
1328
  getComputedLanguage,
1261
1329
  getCon1andCon2WithPositionValidationSchema,
1262
1330
  getConcatenatedProperties,
@@ -1301,6 +1369,13 @@ export {
1301
1369
  getInjectionActiveReactivePowerValidationSchemaProperties,
1302
1370
  getLabelOrValue,
1303
1371
  getLimitReductionsFormSchema,
1372
+ getLimitsEmptyFormData,
1373
+ getLimitsEmptyFormDataProps,
1374
+ getLimitsValidationSchema,
1375
+ getLimitsValidationSchemaProps,
1376
+ getLineCharacteristicsEmptyFormData,
1377
+ getLineCharacteristicsFormData,
1378
+ getLineCharacteristicsValidationSchemaProps,
1304
1379
  getLoadFlowDefaultLimitReductions,
1305
1380
  getLoadFlowProviders,
1306
1381
  getLoadFlowSpecificParametersDescription,
@@ -1319,6 +1394,7 @@ export {
1319
1394
  getPowerWithValidityValidationSchema,
1320
1395
  getPreLoginPath,
1321
1396
  getPropertiesFromModification,
1397
+ getPropertyAvatar,
1322
1398
  getPropertyValue,
1323
1399
  getRangeInputSchema,
1324
1400
  getReactiveCapabilityCurveValidationSchema,
@@ -1392,12 +1468,17 @@ export {
1392
1468
  isNonEmptyStringOrArray,
1393
1469
  isObjectEmpty,
1394
1470
  isProcessType,
1471
+ isSharedModification,
1395
1472
  isStudyMetadata,
1396
1473
  isValidComputingType,
1397
1474
  isValidContingencyRow,
1398
1475
  italicFontTextField,
1399
1476
  keyGenerator,
1400
1477
  kiloUnitToUnit,
1478
+ lineCreationDtoToForm,
1479
+ lineCreationEmptyFormData,
1480
+ lineCreationFormSchema,
1481
+ lineCreationFormToDto,
1401
1482
  loadCreationDtoToForm,
1402
1483
  loadCreationEmptyFormData,
1403
1484
  loadCreationFormSchema,
@@ -1418,6 +1499,7 @@ export {
1418
1499
  mapReportLogs,
1419
1500
  mapSecurityAnalysisParameters,
1420
1501
  mapSensitivityAnalysisParameters,
1502
+ mapServerLimitsGroupsToFormInfos,
1421
1503
  mergeModificationAndEquipmentProperties,
1422
1504
  mergeSubModificationsIntoTree,
1423
1505
  mergeSx,
@@ -1453,6 +1535,8 @@ export {
1453
1535
  roundToDefaultPrecision,
1454
1536
  roundToPrecision,
1455
1537
  safeEncodeURIComponent,
1538
+ sanitizeLimitNames,
1539
+ sanitizeLimitsGroups,
1456
1540
  sanitizePercentageValue,
1457
1541
  sanitizeString,
1458
1542
  saveExpertFilter,
@@ -21,6 +21,7 @@ export declare const networkModificationsEn: {
21
21
  'network_modifications.LINE_CREATION': string;
22
22
  'network_modifications.LINE_MODIFICATION': string;
23
23
  'network_modifications.COMPOSITE_MODIFICATION': string;
24
+ 'network_modifications.MODIFICATION_REFERENCE': string;
24
25
  'network_modifications.TWO_WINDINGS_TRANSFORMER_CREATION': string;
25
26
  'network_modifications.TWO_WINDINGS_TRANSFORMER_MODIFICATION': string;
26
27
  'network_modifications.OPERATING_STATUS_MODIFICATION': string;
@@ -273,9 +274,36 @@ export declare const networkModificationsEn: {
273
274
  ModifyGenerator: string;
274
275
  GeneratorModificationError: string;
275
276
  NoBusbarSectionFound: string;
277
+ CreateLine: string;
278
+ LineCreationError: string;
279
+ SelectedOperationalLimitGroups: string;
280
+ LimitSets: string;
281
+ DeleteFromMenu: string;
282
+ Duplicate: string;
283
+ BothSides: string;
284
+ TemporaryLimitDuration: string;
285
+ TemporaryLimitName: string;
286
+ TemporaryLimitValue: string;
287
+ permanentLimit: string;
288
+ PermanentCurrentLimitText: string;
289
+ unlimited: string;
290
+ forbidden: string;
291
+ Applicability: string;
292
+ disableOLGedition: string;
293
+ Edit: string;
294
+ View: string;
295
+ TemporaryLimitNameUnicityError: string;
296
+ TemporaryLimitDurationUnicityError: string;
297
+ LimitSetApplicabilityError: string;
298
+ permanentCurrentLimitMustBeGreaterThanZero: string;
299
+ UniqueName: string;
300
+ FieldNotEmpty: string;
301
+ TemporaryCurrentLimitsText: string;
302
+ SelectedOperationalLimitGroup: string;
276
303
  SubstationTab: string;
277
304
  ConnectivityTab: string;
278
305
  CharacteristicsTab: string;
306
+ LimitsTab: string;
279
307
  SetpointsAndLimitsTab: string;
280
308
  SpecificTab: string;
281
309
  StructureTab: string;
@@ -26,6 +26,7 @@ const networkModificationsEn = {
26
26
  "network_modifications.LINE_CREATION": "Creating line {computedLabel}",
27
27
  "network_modifications.LINE_MODIFICATION": "Modifying line {computedLabel}",
28
28
  "network_modifications.COMPOSITE_MODIFICATION": "{computedLabel}",
29
+ "network_modifications.MODIFICATION_REFERENCE": "{computedLabel}",
29
30
  "network_modifications.TWO_WINDINGS_TRANSFORMER_CREATION": "Creating 2 windings transformer {computedLabel}",
30
31
  "network_modifications.TWO_WINDINGS_TRANSFORMER_MODIFICATION": "Modifying 2 windings transformer {computedLabel}",
31
32
  "network_modifications.OPERATING_STATUS_MODIFICATION": "{action, select, TRIP {Trip {computedLabel}} LOCKOUT {Lock out {computedLabel}} ENERGISE_END_ONE {Energise {computedLabel} on {energizedEnd}} ENERGISE_END_TWO {Energise {computedLabel} on {energizedEnd}} SWITCH_ON {Switch on {computedLabel}} other {Equipment operating status modification {computedLabel}}}",
@@ -278,10 +279,37 @@ const networkModificationsEn = {
278
279
  ModifyGenerator: "Modify generator",
279
280
  GeneratorModificationError: "Error while modifying generator",
280
281
  NoBusbarSectionFound: "No busbar section found for this voltage level",
282
+ CreateLine: "Create line",
283
+ LineCreationError: "Error while creating line",
284
+ SelectedOperationalLimitGroups: "Active limit sets",
285
+ LimitSets: "Limit sets",
286
+ DeleteFromMenu: "Delete",
287
+ Duplicate: "Duplicate",
288
+ BothSides: "Both Sides",
289
+ TemporaryLimitDuration: "Duration (s)",
290
+ TemporaryLimitName: "Name",
291
+ TemporaryLimitValue: "Value (A)",
292
+ permanentLimit: "PATL",
293
+ PermanentCurrentLimitText: "PATL",
294
+ unlimited: "Unlimited",
295
+ forbidden: "Forbidden",
296
+ Applicability: "Applicability",
297
+ disableOLGedition: "Entered limit sets data will be lost. Do you wish to continue?",
298
+ Edit: "Edit",
299
+ View: "View",
300
+ TemporaryLimitNameUnicityError: "Temporary limit names must be unique in the table",
301
+ TemporaryLimitDurationUnicityError: "Temporary limit acceptable durations must be unique in the table",
302
+ LimitSetApplicabilityError: "2 limit sets with the same name must have different application sides.",
303
+ permanentCurrentLimitMustBeGreaterThanZero: "The permanent current limit value must be greater than 0",
304
+ UniqueName: "Name should be unique",
305
+ FieldNotEmpty: "Field should not be empty",
306
+ TemporaryCurrentLimitsText: "Temporary current limits",
307
+ SelectedOperationalLimitGroup: "Active limit set",
281
308
  // Tabs
282
309
  SubstationTab: "Substation",
283
310
  ConnectivityTab: "Connectivity",
284
311
  CharacteristicsTab: "Characteristics",
312
+ LimitsTab: "Limits",
285
313
  SetpointsAndLimitsTab: "Setpoints & Limits",
286
314
  SpecificTab: "Specific",
287
315
  StructureTab: "Structure",
@@ -33,7 +33,8 @@ export declare const parametersEn: {
33
33
  descLfWriteSlackBus: string;
34
34
  descLfDC: string;
35
35
  descLfConnectedComponentMode: string;
36
- descLfConnectedComponentModeMain: string;
36
+ descLfConnectedComponentModeMainSync: string;
37
+ descLfConnectedComponentModeMainConnected: string;
37
38
  descLfConnectedComponentModeAll: string;
38
39
  descLfHvdcAcEmulation: string;
39
40
  descLfDistributedSlack: string;
@@ -206,6 +207,7 @@ export declare const parametersEn: {
206
207
  DeleteContingencyList: string;
207
208
  getContingencyListError: string;
208
209
  xContingenciesWillBeSimulatedAndYNotFound: string;
210
+ contingenciesWillNotBeSimulated: string;
209
211
  contingencyCountImpossibleOnUnbuiltNode: string;
210
212
  noContingency: string;
211
213
  resultsThreshold: string;
@@ -27,7 +27,8 @@ const parametersEn = {
27
27
  descLfWriteSlackBus: "Write slack bus in the network",
28
28
  descLfDC: "Run a DC power flow",
29
29
  descLfConnectedComponentMode: "Select connected component for calculation",
30
- descLfConnectedComponentModeMain: "Main connected component",
30
+ descLfConnectedComponentModeMainSync: "Main synchronous component",
31
+ descLfConnectedComponentModeMainConnected: "Main connected component",
31
32
  descLfConnectedComponentModeAll: "All connected components",
32
33
  descLfHvdcAcEmulation: "Enable AC emulation on HVDC lines",
33
34
  descLfDistributedSlack: "Enable balancing",
@@ -200,6 +201,7 @@ const parametersEn = {
200
201
  DeleteContingencyList: "Delete",
201
202
  getContingencyListError: "Can't fetch contingencies lists",
202
203
  xContingenciesWillBeSimulatedAndYNotFound: "{x, plural, =0 {no contingency} =1 {1 contingency} other {{x} contingencies}} to be simulated {y, plural, =0 {} other {and {y} not found}}",
204
+ contingenciesWillNotBeSimulated: "{invalidContingencyErrorMessage}",
203
205
  contingencyCountImpossibleOnUnbuiltNode: "Can't estimate contingencies on an unbuilt node",
204
206
  noContingency: "No contingency",
205
207
  resultsThreshold: "Minimum sensitivity threshold",
@@ -21,6 +21,7 @@ export declare const networkModificationsFr: {
21
21
  'network_modifications.LINE_CREATION': string;
22
22
  'network_modifications.LINE_MODIFICATION': string;
23
23
  'network_modifications.COMPOSITE_MODIFICATION': string;
24
+ 'network_modifications.MODIFICATION_REFERENCE': string;
24
25
  'network_modifications.TWO_WINDINGS_TRANSFORMER_CREATION': string;
25
26
  'network_modifications.TWO_WINDINGS_TRANSFORMER_MODIFICATION': string;
26
27
  'network_modifications.OPERATING_STATUS_MODIFICATION': string;
@@ -273,9 +274,36 @@ export declare const networkModificationsFr: {
273
274
  ModifyGenerator: string;
274
275
  GeneratorModificationError: string;
275
276
  NoBusbarSectionFound: string;
277
+ CreateLine: string;
278
+ LineCreationError: string;
279
+ SelectedOperationalLimitGroups: string;
280
+ LimitSets: string;
281
+ DeleteFromMenu: string;
282
+ Duplicate: string;
283
+ BothSides: string;
284
+ TemporaryLimitDuration: string;
285
+ TemporaryLimitName: string;
286
+ TemporaryLimitValue: string;
287
+ permanentLimit: string;
288
+ PermanentCurrentLimitText: string;
289
+ unlimited: string;
290
+ forbidden: string;
291
+ Applicability: string;
292
+ disableOLGedition: string;
293
+ Edit: string;
294
+ View: string;
295
+ TemporaryLimitNameUnicityError: string;
296
+ TemporaryLimitDurationUnicityError: string;
297
+ LimitSetApplicabilityError: string;
298
+ permanentCurrentLimitMustBeGreaterThanZero: string;
299
+ UniqueName: string;
300
+ FieldNotEmpty: string;
301
+ TemporaryCurrentLimitsText: string;
302
+ SelectedOperationalLimitGroup: string;
276
303
  SubstationTab: string;
277
304
  ConnectivityTab: string;
278
305
  CharacteristicsTab: string;
306
+ LimitsTab: string;
279
307
  SetpointsAndLimitsTab: string;
280
308
  SpecificTab: string;
281
309
  StructureTab: string;
@@ -26,6 +26,7 @@ const networkModificationsFr = {
26
26
  "network_modifications.LINE_CREATION": "Création de la ligne {computedLabel}",
27
27
  "network_modifications.LINE_MODIFICATION": "Modification de la ligne {computedLabel}",
28
28
  "network_modifications.COMPOSITE_MODIFICATION": "{computedLabel}",
29
+ "network_modifications.MODIFICATION_REFERENCE": "{computedLabel}",
29
30
  "network_modifications.TWO_WINDINGS_TRANSFORMER_CREATION": "Création du transformateur à 2 enroulements {computedLabel}",
30
31
  "network_modifications.TWO_WINDINGS_TRANSFORMER_MODIFICATION": "Modification du transformateur à 2 enroulements {computedLabel}",
31
32
  "network_modifications.OPERATING_STATUS_MODIFICATION": "{action, select, TRIP {Déclenchement de {computedLabel}} LOCKOUT {Consignation de {computedLabel}} ENERGISE_END_ONE {Mise sous tension à vide de {computedLabel} depuis {energizedEnd}} ENERGISE_END_TWO {Mise sous tension à vide de {computedLabel} depuis {energizedEnd}} SWITCH_ON {Mise en service de {computedLabel}} other {Modification du statut opérationnel de l'équipement {computedLabel}}}",
@@ -278,10 +279,37 @@ const networkModificationsFr = {
278
279
  ModifyGenerator: "Modifier un groupe",
279
280
  GeneratorModificationError: "Erreur lors de la modification d'un générateur ",
280
281
  NoBusbarSectionFound: "Aucun jeu de barres trouvé pour ce poste",
282
+ CreateLine: "Créer une ligne",
283
+ LineCreationError: "Erreur lors de la création d'une ligne",
284
+ SelectedOperationalLimitGroups: "Jeux de limites actifs",
285
+ LimitSets: "Jeux de limites",
286
+ DeleteFromMenu: "Supprimer",
287
+ Duplicate: "Dupliquer",
288
+ BothSides: "Ouvrage",
289
+ TemporaryLimitDuration: "Tempo (s)",
290
+ TemporaryLimitName: "Nom",
291
+ TemporaryLimitValue: "Valeur (A)",
292
+ permanentLimit: "IST",
293
+ PermanentCurrentLimitText: "IST",
294
+ unlimited: "Illimité",
295
+ forbidden: "Interdit",
296
+ Applicability: "Applicable sur",
297
+ disableOLGedition: "Les données saisies pour les jeux de limites ne seront pas conservées. Voulez-vous continuer ?",
298
+ Edit: "Édition",
299
+ View: "Visualisation",
300
+ TemporaryLimitNameUnicityError: "Les noms des limites temporaires doivent être uniques dans la table",
301
+ TemporaryLimitDurationUnicityError: "Les tempos des limites temporaires doivent être uniques dans la table",
302
+ LimitSetApplicabilityError: "2 jeux de limites de même nom doivent s'appliquer sur des côtés différents.",
303
+ permanentCurrentLimitMustBeGreaterThanZero: "La valeur IST doit être supérieure à 0",
304
+ UniqueName: "Le nom doit être unique",
305
+ FieldNotEmpty: "le champs ne doit pas être vide",
306
+ TemporaryCurrentLimitsText: "Limites d'intensité temporaires",
307
+ SelectedOperationalLimitGroup: "Jeu de limites actif",
281
308
  // Tabs
282
309
  SubstationTab: "Site",
283
310
  ConnectivityTab: "Connectivité",
284
311
  CharacteristicsTab: "Caractéristiques",
312
+ LimitsTab: "Limites",
285
313
  SetpointsAndLimitsTab: "Consignes & Limites",
286
314
  SpecificTab: "Spécifique",
287
315
  StructureTab: "Structure",
@@ -33,7 +33,8 @@ export declare const parametersFr: {
33
33
  descLfWriteSlackBus: string;
34
34
  descLfDC: string;
35
35
  descLfConnectedComponentMode: string;
36
- descLfConnectedComponentModeMain: string;
36
+ descLfConnectedComponentModeMainSync: string;
37
+ descLfConnectedComponentModeMainConnected: string;
37
38
  descLfConnectedComponentModeAll: string;
38
39
  descLfHvdcAcEmulation: string;
39
40
  descLfDistributedSlack: string;
@@ -207,6 +208,7 @@ export declare const parametersFr: {
207
208
  DeleteContingencyList: string;
208
209
  getContingencyListError: string;
209
210
  xContingenciesWillBeSimulatedAndYNotFound: string;
211
+ contingenciesWillNotBeSimulated: string;
210
212
  contingencyCountImpossibleOnUnbuiltNode: string;
211
213
  noContingency: string;
212
214
  resultsThreshold: string;
@@ -27,7 +27,8 @@ const parametersFr = {
27
27
  descLfWriteSlackBus: "Écrire le nœud bilan calculé automatiquement dans le réseau",
28
28
  descLfDC: "Lancer le calcul en actif seul",
29
29
  descLfConnectedComponentMode: "Choix de la composante connexe de calcul",
30
- descLfConnectedComponentModeMain: "Composante connexe principale",
30
+ descLfConnectedComponentModeMainSync: "Composante synchrone principale",
31
+ descLfConnectedComponentModeMainConnected: "Composante connexe principale",
31
32
  descLfConnectedComponentModeAll: "Toutes les composantes connexes",
32
33
  descLfHvdcAcEmulation: "Permettre l'émulation AC des HVDC",
33
34
  descLfDistributedSlack: "Activer la compensation",
@@ -201,6 +202,7 @@ const parametersFr = {
201
202
  DeleteContingencyList: "Supprimer",
202
203
  getContingencyListError: "Impossible de récupérer les listes d'aléas",
203
204
  xContingenciesWillBeSimulatedAndYNotFound: "{x, plural, =0 {aucun défaut} =1 {1 défaut} other {{x} défauts}} à simuler {y, plural, =0 {} =1 {et 1 non trouvé} other {et {y} non trouvés}}",
205
+ contingenciesWillNotBeSimulated: "{invalidContingencyErrorMessage}",
204
206
  contingencyCountImpossibleOnUnbuiltNode: "Impossible d'estimer le nombre d'aléas sur un noeud non réalisé",
205
207
  noContingency: "Aucun défaut",
206
208
  resultsThreshold: "Seuil minimal de sensibilité",
@@ -10,12 +10,17 @@ export declare enum FieldConstants {
10
10
  ADDITIONAL_PROPERTIES = "AdditionalProperties",
11
11
  AG_GRID_ROW_UUID = "agGridRowUuid",
12
12
  API_CALL = "apiCall",
13
+ APPLY_SEGMENTS_LIMITS = "applySegmentsLimits",
14
+ APPLICABILITY_FIELD = "applicability",
13
15
  ASSIGNMENTS = "assignments",
16
+ B1 = "b1",
17
+ B2 = "b2",
14
18
  BUS_OR_BUSBAR_SECTION = "busOrBusbarSection",
15
19
  CASE_FILE = "caseFile",
16
20
  CASE_FORMAT = "caseFormat",
17
21
  CASE_NAME = "caseName",
18
22
  CASE_UUID = "caseUuid",
23
+ CHARACTERISTICS = "characteristics",
19
24
  CHARACTERISTICS_CHOICE = "characteristicsChoice",
20
25
  CONNECTED = "terminalConnected",
21
26
  CONNECTION_DIRECTION = "connectionDirection",
@@ -30,6 +35,7 @@ export declare enum FieldConstants {
30
35
  COUNTRIES_2 = "countries2",
31
36
  COUNTRIES = "countries",
32
37
  COUNTRY = "country",
38
+ CURRENT_LIMITS = "currentLimits",
33
39
  CURRENT_PARAMETERS = "currentParameters",
34
40
  DELETION_MARK = "deletionMark",
35
41
  DELETION_SPECIFIC_DATA = "equipmentInfos",
@@ -52,6 +58,8 @@ export declare enum FieldConstants {
52
58
  FORCED_OUTAGE_RATE = "forcedOutageRate",
53
59
  FORMATTED_CASE_PARAMETERS = "formattedCaseParameters",
54
60
  FREQUENCY_REGULATION = "frequencyRegulation",
61
+ G1 = "g1",
62
+ G2 = "g2",
55
63
  HVDC_LINE_LCC_DELETION_SPECIFIC_TYPE = "HVDC_LINE_WITH_LCC",
56
64
  ID = "id",
57
65
  LOADFLOW_PARAMETERS = "loadflowParameters",
@@ -75,6 +83,7 @@ export declare enum FieldConstants {
75
83
  NOMINAL_VOLTAGE_3 = "nominalVoltage3",
76
84
  NOMINAL_VOLTAGE = "nominalVoltage",
77
85
  OPERATION_TYPE = "type",
86
+ PERMANENT_LIMIT = "permanentLimit",
78
87
  PLANNED_ACTIVE_POWER_SET_POINT = "plannedActivePowerSetPoint",
79
88
  PLANNED_OUTAGE_RATE = "plannedOutageRate",
80
89
  PREVIOUS_VALUE = "previousValue",
@@ -108,11 +117,18 @@ export declare enum FieldConstants {
108
117
  BUS_BAR_SECTION_ID1 = "busbarSectionId1",
109
118
  BUS_BAR_SECTION_ID2 = "busbarSectionId2",
110
119
  COUPLING_OMNIBUS = "couplingOmnibus",
120
+ ENABLE_OLG_MODIFICATION = "enableOLGModification",
111
121
  HIDE_BUS_BAR_SECTION = "hideBusBarSection",
112
122
  HIDE_NOMINAL_VOLTAGE = "hideNominalVoltage",
113
123
  HIDE_SUBSTATION_FIELD = "hideSubstationField",
114
124
  HIGH_SHORT_CIRCUIT_CURRENT_LIMIT = "highShortCircuitCurrentLimit",
115
125
  HIGH_VOLTAGE_LIMIT = "highVoltageLimit",
126
+ LIMITS = "limits",
127
+ LIMITS_PROPERTIES = "limitsProperties",
128
+ LIMIT_SET_NAME = "limitSetName",
129
+ LIMIT_VALUE = "limitValue",
130
+ CATALOG_DATA = "catalogData",
131
+ LINE_SEGMENTS = "lineSegments",
116
132
  LOW_SHORT_CIRCUIT_CURRENT_LIMIT = "lowShortCircuitCurrentLimit",
117
133
  LOW_VOLTAGE_LIMIT = "lowVoltageLimit",
118
134
  MINIMUM_REACTIVE_POWER = "minimumReactivePower",
@@ -120,20 +136,50 @@ export declare enum FieldConstants {
120
136
  MIN_Q = "minQ",
121
137
  MAX_Q = "maxQ",
122
138
  NOMINAL_V = "nominalV",
139
+ OPERATIONAL_LIMITS_GROUPS = "operationalLimitsGroups",
140
+ OLG_IS_DUPLICATE = "operationalLimitsGroupsIsDuplicate",
123
141
  P = "p",
124
142
  Q_PERCENT = "qPercent",
143
+ R = "r",
125
144
  REACTIVE_CAPABILITY_CURVE_CHOICE = "reactiveCapabilityCurveChoice",
126
145
  REACTIVE_CAPABILITY_CURVE_TABLE = "reactiveCapabilityCurveTable",
127
146
  REACTIVE_LIMITS = "reactiveLimits",
128
147
  SECTION_COUNT = "sectionCount",
148
+ SEGMENT_DISTANCE_VALUE = "segmentDistanceValue",
149
+ SEGMENT_TYPE_VALUE = "segmentTypeValue",
150
+ SEGMENT_TYPE_ID = "segmentTypeId",
151
+ SEGMENT_RESISTANCE = "segmentResistance",
152
+ SEGMENT_REACTANCE = "segmentReactance",
153
+ SEGMENT_SUSCEPTANCE = "segmentSusceptance",
154
+ SEGMENT_CURRENT_LIMITS = "segmentCurrentLimits",
155
+ TOTAL_RESISTANCE = "totalResistance",
156
+ TOTAL_REACTANCE = "totalReactance",
157
+ TOTAL_SUSCEPTANCE = "totalSusceptance",
158
+ SEGMENTS = "segments",
159
+ AERIAL_AREAS = "aerialAreas",
160
+ AERIAL_TEMPERATURES = "aerialTemperatures",
161
+ UNDERGROUND_AREAS = "undergroundAreas",
162
+ UNDERGROUND_SHAPE_FACTORS = "undergroundShapeFactors",
163
+ FINAL_CURRENT_LIMITS = "finalCurrentLimits",
164
+ SELECTED_CATEGORIES_TAB = "selectedCategoryTab",
165
+ AREA = "area",
166
+ TEMPERATURE = "temperature",
167
+ SHAPE_FACTOR = "shapeFactor",
168
+ SELECTED_OPERATIONAL_LIMITS_GROUP_ID1 = "selectedOperationalLimitsGroupId1",
169
+ SELECTED_OPERATIONAL_LIMITS_GROUP_ID2 = "selectedOperationalLimitsGroupId2",
129
170
  SUBSTATION_CREATION = "substationCreation",
130
171
  SUBSTATION_CREATION_ID = "substationCreationId",
131
172
  SUBSTATION_ID = "substationId",
132
173
  SUBSTATION_NAME = "substationName",
133
174
  SWITCHES_BETWEEN_SECTIONS = "switchesBetweenSections",
175
+ TEMPORARY_LIMITS = "temporaryLimits",
176
+ TEMPORARY_LIMIT_NAME = "name",
177
+ TEMPORARY_LIMIT_DURATION = "acceptableDuration",
178
+ TEMPORARY_LIMIT_VALUE = "value",
134
179
  TOPOLOGY_KIND = "topologyKind",
135
180
  TRANSFORMER_REACTANCE = "transformerReactance",
136
181
  TRANSIENT_REACTANCE = "directTransX",
137
182
  VOLTAGE_REGULATION_TYPE = "voltageRegulationType",
138
- VOLTAGE_SET_POINT = "voltageSetpoint"
183
+ VOLTAGE_SET_POINT = "voltageSetpoint",
184
+ X = "x"
139
185
  }