@gridsuite/commons-ui 0.241.1 → 0.243.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 (151) hide show
  1. package/README.md +10 -2
  2. package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +1 -1
  3. package/dist/components/composite/grid/grid-item.d.ts +2 -1
  4. package/dist/components/composite/grid/grid-item.js +9 -2
  5. package/dist/components/ui/csvPicker/csv-picker.d.ts +7 -2
  6. package/dist/components/ui/csvPicker/csv-picker.js +7 -6
  7. package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-autocomplete.d.ts +1 -2
  8. package/dist/features/index.js +87 -3
  9. package/dist/features/network-modification-table/index.js +2 -1
  10. package/dist/features/network-modification-table/use-modifications-drag-and-drop.js +2 -1
  11. package/dist/features/network-modification-table/utils.d.ts +1 -0
  12. package/dist/features/network-modification-table/utils.js +5 -1
  13. package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +3 -0
  14. package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +3 -0
  15. package/dist/features/network-modifications/battery/modification/BatteryDialogHeader.js +3 -0
  16. package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.js +3 -0
  17. package/dist/features/network-modifications/battery/modification/batteryModification.utils.js +3 -0
  18. package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.d.ts +71 -2
  19. package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.js +26 -8
  20. package/dist/features/network-modifications/common/connectivity/index.js +3 -1
  21. package/dist/features/network-modifications/common/currentLimits/LimitsPane.d.ts +7 -0
  22. package/dist/features/network-modifications/common/currentLimits/LimitsPane.js +243 -0
  23. package/dist/features/network-modifications/common/currentLimits/LimitsTagChip.d.ts +9 -0
  24. package/dist/features/network-modifications/common/currentLimits/LimitsTagChip.js +29 -0
  25. package/dist/features/network-modifications/common/currentLimits/SelectedOperationalLimitGroup.d.ts +9 -0
  26. package/dist/features/network-modifications/common/currentLimits/SelectedOperationalLimitGroup.js +100 -0
  27. package/dist/features/network-modifications/common/currentLimits/index.d.ts +12 -0
  28. package/dist/features/network-modifications/common/currentLimits/index.js +47 -0
  29. package/dist/features/network-modifications/common/currentLimits/limits.types.d.ts +52 -0
  30. package/dist/features/network-modifications/common/currentLimits/limits.types.js +17 -0
  31. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsEditor.d.ts +10 -0
  32. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsEditor.js +285 -0
  33. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsPropertiesSideStack.d.ts +5 -0
  34. package/dist/features/network-modifications/common/currentLimits/limitsEditor/LimitsPropertiesSideStack.js +184 -0
  35. package/dist/features/network-modifications/common/currentLimits/limitsEditor/TemporaryLimitsTable.d.ts +14 -0
  36. package/dist/features/network-modifications/common/currentLimits/limitsEditor/TemporaryLimitsTable.js +166 -0
  37. package/dist/features/network-modifications/common/currentLimits/limitsEditor/index.d.ts +10 -0
  38. package/dist/features/network-modifications/common/currentLimits/limitsEditor/index.js +10 -0
  39. package/dist/features/network-modifications/common/currentLimits/limitsEditor/limitsChart.d.ts +11 -0
  40. package/dist/features/network-modifications/common/currentLimits/limitsEditor/limitsChart.js +177 -0
  41. package/dist/features/network-modifications/common/currentLimits/limitsPane.utils.d.ts +213 -0
  42. package/dist/features/network-modifications/common/currentLimits/limitsPane.utils.js +337 -0
  43. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsGroupsContextualMenu.d.ts +25 -0
  44. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsGroupsContextualMenu.js +92 -0
  45. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsPropertiesStack.d.ts +10 -0
  46. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/LimitsPropertiesStack.js +25 -0
  47. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroupTabLabel.d.ts +10 -0
  48. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroupTabLabel.js +73 -0
  49. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroups.d.ts +16 -0
  50. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/OperationalLimitsGroups.js +121 -0
  51. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/index.d.ts +11 -0
  52. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/index.js +12 -0
  53. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroups.types.d.ts +71 -0
  54. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroups.types.js +15 -0
  55. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroupsStyles.d.ts +46 -0
  56. package/dist/features/network-modifications/common/currentLimits/operationalLimitsGroups/operationalLimitsGroupsStyles.js +45 -0
  57. package/dist/features/network-modifications/common/index.d.ts +1 -0
  58. package/dist/features/network-modifications/common/index.js +50 -2
  59. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +11 -0
  60. package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +6 -4
  61. package/dist/features/network-modifications/common/measurements/index.js +2 -1
  62. package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +1 -1
  63. package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +3 -7
  64. package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +3 -0
  65. package/dist/features/network-modifications/generator/creation/GeneratorCreationForm.js +9 -6
  66. package/dist/features/network-modifications/generator/creation/generatorCreation.utils.js +3 -0
  67. package/dist/features/network-modifications/generator/modification/GeneratorDialogHeader.js +3 -0
  68. package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.js +9 -6
  69. package/dist/features/network-modifications/generator/modification/generatorModification.utils.js +3 -0
  70. package/dist/features/network-modifications/index.d.ts +1 -0
  71. package/dist/features/network-modifications/index.js +85 -2
  72. package/dist/features/network-modifications/line/catalog/index.d.ts +8 -0
  73. package/dist/features/network-modifications/line/catalog/index.js +14 -0
  74. package/dist/features/network-modifications/line/catalog/lineCatalog.type.d.ts +66 -0
  75. package/dist/features/network-modifications/line/catalog/lineCatalog.type.js +7 -0
  76. package/dist/features/network-modifications/line/catalog/segment.utils.d.ts +90 -0
  77. package/dist/features/network-modifications/line/catalog/segment.utils.js +100 -0
  78. package/dist/features/network-modifications/line/characteristics/LineCharacteristicsPane.d.ts +8 -0
  79. package/dist/features/network-modifications/line/characteristics/LineCharacteristicsPane.js +152 -0
  80. package/dist/features/network-modifications/line/characteristics/index.d.ts +9 -0
  81. package/dist/features/network-modifications/line/characteristics/index.js +9 -0
  82. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.types.d.ts +14 -0
  83. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.types.js +1 -0
  84. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.utils.d.ts +52 -0
  85. package/dist/features/network-modifications/line/characteristics/lineCharacteristicsPane.utils.js +53 -0
  86. package/dist/features/network-modifications/line/common/LineDialogHeader.d.ts +6 -0
  87. package/dist/features/network-modifications/line/common/LineDialogHeader.js +103 -0
  88. package/dist/features/network-modifications/line/common/LineDialogTabs.d.ts +9 -0
  89. package/dist/features/network-modifications/line/common/LineDialogTabs.js +61 -0
  90. package/dist/features/network-modifications/line/common/LineDialogTabsContent.d.ts +8 -0
  91. package/dist/features/network-modifications/line/common/LineDialogTabsContent.js +96 -0
  92. package/dist/features/network-modifications/line/common/LineForm.d.ts +6 -0
  93. package/dist/features/network-modifications/line/common/LineForm.js +50 -0
  94. package/dist/features/network-modifications/line/common/index.d.ts +12 -0
  95. package/dist/features/network-modifications/line/common/index.js +13 -0
  96. package/dist/features/network-modifications/line/common/line.types.d.ts +47 -0
  97. package/dist/features/network-modifications/line/common/line.types.js +1 -0
  98. package/dist/features/network-modifications/line/common/line.utils.d.ts +13 -0
  99. package/dist/features/network-modifications/line/common/line.utils.js +34 -0
  100. package/dist/features/network-modifications/line/creation/index.d.ts +8 -0
  101. package/dist/features/network-modifications/line/creation/index.js +7 -0
  102. package/dist/features/network-modifications/line/creation/lineCreation.types.d.ts +39 -0
  103. package/dist/features/network-modifications/line/creation/lineCreation.types.js +1 -0
  104. package/dist/features/network-modifications/line/creation/lineCreation.utils.d.ts +151 -0
  105. package/dist/features/network-modifications/line/creation/lineCreation.utils.js +172 -0
  106. package/dist/features/network-modifications/line/index.d.ts +10 -0
  107. package/dist/features/network-modifications/line/index.js +37 -0
  108. package/dist/features/network-modifications/load/common/LoadDialogHeader.js +3 -0
  109. package/dist/features/network-modifications/load/modification/loadModification.utils.js +3 -0
  110. package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +7 -6
  111. package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +3 -0
  112. package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +3 -0
  113. package/dist/features/network-modifications/shunt-compensator/modification/ShuntCompensatorModificationForm.js +3 -0
  114. package/dist/features/network-modifications/shunt-compensator/modification/shuntCompensatorModification.utils.js +3 -0
  115. package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +3 -0
  116. package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +3 -0
  117. package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +3 -0
  118. package/dist/features/network-modifications/voltageLevel/creation/index.js +3 -0
  119. package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +3 -0
  120. package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +3 -0
  121. package/dist/features/network-modifications/voltageLevel/index.js +3 -0
  122. package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +4 -1
  123. package/dist/features/parameters/common/contingency-table/contingency-table.js +22 -10
  124. package/dist/features/parameters/common/contingency-table/types.d.ts +7 -8
  125. package/dist/features/parameters/common/contingency-table/utils.d.ts +13 -0
  126. package/dist/features/parameters/common/contingency-table/utils.js +31 -0
  127. package/dist/features/parameters/loadflow/load-flow-general-parameters.js +5 -1
  128. package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +19 -31
  129. package/dist/hooks/useModificationLabelComputer.js +1 -0
  130. package/dist/index.js +87 -7
  131. package/dist/translations/en/index.d.ts +0 -1
  132. package/dist/translations/en/index.js +0 -2
  133. package/dist/translations/en/networkModificationsEn.d.ts +28 -0
  134. package/dist/translations/en/networkModificationsEn.js +28 -0
  135. package/dist/translations/en/parameters.d.ts +3 -1
  136. package/dist/translations/en/parameters.js +3 -1
  137. package/dist/translations/fr/index.d.ts +0 -1
  138. package/dist/translations/fr/index.js +0 -2
  139. package/dist/translations/fr/networkModificationsFr.d.ts +28 -0
  140. package/dist/translations/fr/networkModificationsFr.js +28 -0
  141. package/dist/translations/fr/parameters.d.ts +3 -1
  142. package/dist/translations/fr/parameters.js +3 -1
  143. package/dist/utils/constants/fieldConstants.d.ts +47 -1
  144. package/dist/utils/constants/fieldConstants.js +46 -0
  145. package/dist/utils/types/modificationType.d.ts +4 -0
  146. package/dist/utils/types/modificationType.js +5 -0
  147. package/package.json +11 -4
  148. package/dist/translations/en/inputsEn.d.ts +0 -24
  149. package/dist/translations/en/inputsEn.js +0 -21
  150. package/dist/translations/fr/inputsFr.d.ts +0 -24
  151. package/dist/translations/fr/inputsFr.js +0 -21
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";
@@ -431,7 +454,6 @@ import { errorsEn } from "./translations/en/errorsEn.js";
431
454
  import { filterEn } from "./translations/en/filterEn.js";
432
455
  import { filterExpertEn } from "./translations/en/filterExpertEn.js";
433
456
  import { flatParametersEn } from "./translations/en/flatParametersEn.js";
434
- import { inputsEn } from "./translations/en/inputsEn.js";
435
457
  import { loginEn } from "./translations/en/loginEn.js";
436
458
  import { multipleSelectionDialogEn } from "./translations/en/multipleSelectionDialogEn.js";
437
459
  import { reportViewerEn } from "./translations/en/reportViewerEn.js";
@@ -462,7 +484,6 @@ import { errorsFr } from "./translations/fr/errorsFr.js";
462
484
  import { filterExpertFr } from "./translations/fr/filterExpertFr.js";
463
485
  import { filterFr } from "./translations/fr/filterFr.js";
464
486
  import { flatParametersFr } from "./translations/fr/flatParametersFr.js";
465
- import { inputsFr } from "./translations/fr/inputsFr.js";
466
487
  import { loginFr } from "./translations/fr/loginFr.js";
467
488
  import { multipleSelectionDialogFr } from "./translations/fr/multipleSelectionDialogFr.js";
468
489
  import { reportViewerFr } from "./translations/fr/reportViewerFr.js";
@@ -481,6 +502,7 @@ export {
481
502
  ACTIVE,
482
503
  ALL_EQUIPMENTS,
483
504
  AMPERE,
505
+ APPLICABILITY,
484
506
  AUTO_EXTENSIBLE_COLUMNS,
485
507
  AboutDialog,
486
508
  ActivableChip,
@@ -525,6 +547,7 @@ export {
525
547
  ButtonReadOnlyInput,
526
548
  ByFilterDeletionForm,
527
549
  CALCULATION_TYPE,
550
+ CATEGORIES_TABS,
528
551
  CENTER_LABEL,
529
552
  CHARACTERISTICS_CHOICES,
530
553
  COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS,
@@ -752,6 +775,7 @@ export {
752
775
  LIMIT_DURATION_FORM,
753
776
  LIMIT_REDUCTIONS_FORM,
754
777
  LINE_FLOW_MODE,
778
+ LINE_TAB_FIELDS,
755
779
  LOADS_VARIATIONS,
756
780
  LOAD_FILTERS,
757
781
  LOAD_INCREASE_START_TIME,
@@ -768,8 +792,22 @@ export {
768
792
  LimitReductionTableCell,
769
793
  LimitReductionTableRow,
770
794
  LimitReductionsTableForm,
795
+ LimitsChart,
796
+ LimitsEditor,
797
+ LimitsGroupsContextualMenu,
798
+ LimitsPane,
799
+ LimitsPropertiesSideStack,
800
+ LimitsPropertiesStack,
801
+ LimitsTagChip,
771
802
  Line,
803
+ LineCharacteristicsPane,
804
+ LineDialogHeader,
805
+ LineDialogTab,
806
+ LineDialogTabs,
807
+ LineDialogTabsContent,
772
808
  LineFlowMode,
809
+ LineForm,
810
+ LineSegmentsInfoSchema,
773
811
  LineSeparator,
774
812
  Load,
775
813
  LoadDialogHeader,
@@ -841,10 +879,13 @@ export {
841
879
  NumericCellRenderer,
842
880
  NumericEditor,
843
881
  OHM,
882
+ OPERATIONAL_LIMITS_GROUPS_MODIFICATION_TYPE,
844
883
  OPERATOR_OPTIONS,
845
884
  OhmAdornment,
846
885
  OperatingStatus,
847
886
  OperationType,
887
+ OperationalLimitsGroupTabLabel,
888
+ OperationalLimitsGroups,
848
889
  OperatorType,
849
890
  OptionalServicesStatus,
850
891
  OverflowableChip,
@@ -980,6 +1021,10 @@ export {
980
1021
  SecurityAnalysisParametersInline,
981
1022
  SecurityAnalysisResultNmk,
982
1023
  SecurityAnalysisTable,
1024
+ SegmentCurrentLimitsSchema,
1025
+ SegmentInfoSchema,
1026
+ SegmentSchema,
1027
+ SegmentTemporaryLimitSchema,
983
1028
  SelectCell,
984
1029
  SelectCellRenderer,
985
1030
  SelectClearable,
@@ -1020,6 +1065,7 @@ export {
1020
1065
  SwitchWithLabel,
1021
1066
  SwitchesBetweenSections,
1022
1067
  TAB_INFO,
1068
+ TEMPORARY_LIMIT_MODIFICATION_TYPE,
1023
1069
  TRANSFORMERS_SELECTION_TYPE,
1024
1070
  TWT_SPLIT_SHUNT_ADMITTANCE,
1025
1071
  TYPE_TAG_MAX_SIZE,
@@ -1029,6 +1075,7 @@ export {
1029
1075
  TableTextInput,
1030
1076
  TableType,
1031
1077
  TagRenderer,
1078
+ TemporaryLimitsTable,
1032
1079
  TextFieldWithAdornment,
1033
1080
  TextInput,
1034
1081
  TextValueEditor,
@@ -1079,6 +1126,9 @@ export {
1079
1126
  YUP_NOT_TYPE_NUMBER,
1080
1127
  YUP_POSITIVE,
1081
1128
  YUP_REQUIRED,
1129
+ addModificationTypeToOpLimitsGroups,
1130
+ addModificationTypeToTemporaryLimits,
1131
+ addOperationTypeToSelectedOpLG,
1082
1132
  addToleranceToFilter,
1083
1133
  alertThresholdMarks,
1084
1134
  areArrayElementsUnique,
@@ -1115,7 +1165,11 @@ export {
1115
1165
  computeTagMinSize,
1116
1166
  computeTolerance,
1117
1167
  convertInputValue,
1168
+ convertLimitsToOperationalLimitsGroupFormSchema,
1118
1169
  convertOutputValue,
1170
+ convertToLineSegmentInfos,
1171
+ convertToLineSegmentsFormData,
1172
+ convertToOperationalLimitsGroupFormSchema,
1119
1173
  copyEquipmentPropertiesForCreation,
1120
1174
  copyToClipboard,
1121
1175
  countRules,
@@ -1149,6 +1203,7 @@ export {
1149
1203
  elementSearchEn,
1150
1204
  elementSearchFr,
1151
1205
  emptyFormData,
1206
+ emptyLineSegment,
1152
1207
  emptyModificationByAssignmentFormData,
1153
1208
  emptyProperties,
1154
1209
  enrichPccMinParameters,
@@ -1229,9 +1284,14 @@ export {
1229
1284
  flattenNmKResultsConstraints,
1230
1285
  flattenNmKResultsContingencies,
1231
1286
  formatComputingTypeLabel,
1287
+ formatMapInfosToTemporaryLimitsFormSchema,
1288
+ formatOpLimitGroupsToFormInfos,
1289
+ formatTemporaryLimitsModificationToFormSchema,
1232
1290
  formatToComposedModification,
1233
1291
  genHelperError,
1292
+ generateEmptyOperationalLimitsGroup,
1234
1293
  generateTreeViewFinderClass,
1294
+ generateUniqueId,
1235
1295
  generatorCreationDtoToForm,
1236
1296
  generatorCreationEmptyFormData,
1237
1297
  generatorCreationFormSchema,
@@ -1244,6 +1304,8 @@ export {
1244
1304
  getActivePowerControlEmptyFormData,
1245
1305
  getActivePowerControlSchema,
1246
1306
  getActivePowerSetPointSchema,
1307
+ getAllLimitsFormData,
1308
+ getAllLimitsFormDataProperties,
1247
1309
  getAppName,
1248
1310
  getAvailableComponentLibraries,
1249
1311
  getBaseNetworkModificationUrl,
@@ -1252,11 +1314,15 @@ export {
1252
1314
  getBranchActiveReactivePowerEmptyFormData,
1253
1315
  getBranchActiveReactivePowerEmptyFormDataProperties,
1254
1316
  getBranchActiveReactivePowerValidationSchema,
1317
+ getBranchActiveReactivePowerValidationSchemaObject,
1255
1318
  getBranchActiveReactivePowerValidationSchemaProperties,
1319
+ getBranchConnectivityWithPositionEmptyFormDataProps,
1320
+ getBranchConnectivityWithPositionSchema,
1256
1321
  getCharacteristicsCreateFormDataFromSearchCopy,
1257
1322
  getCharacteristicsEmptyFormData,
1258
1323
  getCharacteristicsFormData,
1259
1324
  getCharacteristicsFormValidationSchema,
1325
+ getCharacteristicsValidationSchema,
1260
1326
  getComputedLanguage,
1261
1327
  getCon1andCon2WithPositionValidationSchema,
1262
1328
  getConcatenatedProperties,
@@ -1301,6 +1367,13 @@ export {
1301
1367
  getInjectionActiveReactivePowerValidationSchemaProperties,
1302
1368
  getLabelOrValue,
1303
1369
  getLimitReductionsFormSchema,
1370
+ getLimitsEmptyFormData,
1371
+ getLimitsEmptyFormDataProps,
1372
+ getLimitsValidationSchema,
1373
+ getLimitsValidationSchemaProps,
1374
+ getLineCharacteristicsEmptyFormData,
1375
+ getLineCharacteristicsFormData,
1376
+ getLineCharacteristicsValidationSchemaProps,
1304
1377
  getLoadFlowDefaultLimitReductions,
1305
1378
  getLoadFlowProviders,
1306
1379
  getLoadFlowSpecificParametersDescription,
@@ -1319,6 +1392,7 @@ export {
1319
1392
  getPowerWithValidityValidationSchema,
1320
1393
  getPreLoginPath,
1321
1394
  getPropertiesFromModification,
1395
+ getPropertyAvatar,
1322
1396
  getPropertyValue,
1323
1397
  getRangeInputSchema,
1324
1398
  getReactiveCapabilityCurveValidationSchema,
@@ -1377,8 +1451,6 @@ export {
1377
1451
  initializeAuthenticationProd,
1378
1452
  initializeDirectory,
1379
1453
  initializedProperty,
1380
- inputsEn,
1381
- inputsFr,
1382
1454
  intlInitialVoltageProfileMode,
1383
1455
  intlPredefinedParametersOptions,
1384
1456
  isBlankOrEmpty,
@@ -1392,12 +1464,17 @@ export {
1392
1464
  isNonEmptyStringOrArray,
1393
1465
  isObjectEmpty,
1394
1466
  isProcessType,
1467
+ isSharedModification,
1395
1468
  isStudyMetadata,
1396
1469
  isValidComputingType,
1397
1470
  isValidContingencyRow,
1398
1471
  italicFontTextField,
1399
1472
  keyGenerator,
1400
1473
  kiloUnitToUnit,
1474
+ lineCreationDtoToForm,
1475
+ lineCreationEmptyFormData,
1476
+ lineCreationFormSchema,
1477
+ lineCreationFormToDto,
1401
1478
  loadCreationDtoToForm,
1402
1479
  loadCreationEmptyFormData,
1403
1480
  loadCreationFormSchema,
@@ -1418,6 +1495,7 @@ export {
1418
1495
  mapReportLogs,
1419
1496
  mapSecurityAnalysisParameters,
1420
1497
  mapSensitivityAnalysisParameters,
1498
+ mapServerLimitsGroupsToFormInfos,
1421
1499
  mergeModificationAndEquipmentProperties,
1422
1500
  mergeSubModificationsIntoTree,
1423
1501
  mergeSx,
@@ -1453,6 +1531,8 @@ export {
1453
1531
  roundToDefaultPrecision,
1454
1532
  roundToPrecision,
1455
1533
  safeEncodeURIComponent,
1534
+ sanitizeLimitNames,
1535
+ sanitizeLimitsGroups,
1456
1536
  sanitizePercentageValue,
1457
1537
  sanitizeString,
1458
1538
  saveExpertFilter,
@@ -21,7 +21,6 @@ export * from './errorsEn';
21
21
  export * from './filterEn';
22
22
  export * from './filterExpertEn';
23
23
  export * from './flatParametersEn';
24
- export * from './inputsEn';
25
24
  export * from './loginEn';
26
25
  export * from './multipleSelectionDialogEn';
27
26
  export * from './reportViewerEn';
@@ -15,7 +15,6 @@ import { errorsEn } from "./errorsEn.js";
15
15
  import { filterEn } from "./filterEn.js";
16
16
  import { filterExpertEn } from "./filterExpertEn.js";
17
17
  import { flatParametersEn } from "./flatParametersEn.js";
18
- import { inputsEn } from "./inputsEn.js";
19
18
  import { loginEn } from "./loginEn.js";
20
19
  import { multipleSelectionDialogEn } from "./multipleSelectionDialogEn.js";
21
20
  import { reportViewerEn } from "./reportViewerEn.js";
@@ -50,7 +49,6 @@ export {
50
49
  filterExpertEn,
51
50
  flatParametersEn,
52
51
  importParamsEn,
53
- inputsEn,
54
52
  loginEn,
55
53
  multipleSelectionDialogEn,
56
54
  networkModificationsEn,
@@ -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,7 +21,6 @@ export * from './errorsFr';
21
21
  export * from './filterExpertFr';
22
22
  export * from './filterFr';
23
23
  export * from './flatParametersFr';
24
- export * from './inputsFr';
25
24
  export * from './loginFr';
26
25
  export * from './multipleSelectionDialogFr';
27
26
  export * from './reportViewerFr';
@@ -15,7 +15,6 @@ import { errorsFr } from "./errorsFr.js";
15
15
  import { filterExpertFr } from "./filterExpertFr.js";
16
16
  import { filterFr } from "./filterFr.js";
17
17
  import { flatParametersFr } from "./flatParametersFr.js";
18
- import { inputsFr } from "./inputsFr.js";
19
18
  import { loginFr } from "./loginFr.js";
20
19
  import { multipleSelectionDialogFr } from "./multipleSelectionDialogFr.js";
21
20
  import { reportViewerFr } from "./reportViewerFr.js";
@@ -50,7 +49,6 @@ export {
50
49
  filterFr,
51
50
  flatParametersFr,
52
51
  importParamsFr,
53
- inputsFr,
54
52
  loginFr,
55
53
  multipleSelectionDialogFr,
56
54
  networkModificationsFr,
@@ -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é",