@gridsuite/commons-ui 0.267.0 → 0.269.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 (109) hide show
  1. package/dist/components/composite/agGridTable/BottomTableButtons.js +1 -1
  2. package/dist/components/composite/grid/grid-section.d.ts +5 -2
  3. package/dist/components/composite/grid/grid-section.js +56 -4
  4. package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +1 -1
  5. package/dist/components/ui/reactHookForm/booleans/BooleanInput.js +1 -1
  6. package/dist/features/common/index.d.ts +7 -0
  7. package/dist/features/common/index.js +4 -0
  8. package/dist/features/common/renderTable-ExportCsv.d.ts +18 -0
  9. package/dist/features/common/renderTable-ExportCsv.js +136 -0
  10. package/dist/features/index.d.ts +5 -0
  11. package/dist/features/index.js +43 -2
  12. package/dist/features/network-modifications/index.d.ts +1 -0
  13. package/dist/features/network-modifications/index.js +33 -1
  14. package/dist/features/network-modifications/static-var-compensator/common/constants.d.ts +20 -0
  15. package/dist/features/network-modifications/static-var-compensator/common/constants.js +9 -0
  16. package/dist/features/network-modifications/static-var-compensator/common/index.d.ts +13 -0
  17. package/dist/features/network-modifications/static-var-compensator/common/index.js +20 -0
  18. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.d.ts +91 -0
  19. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.js +166 -0
  20. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.d.ts +8 -0
  21. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.js +200 -0
  22. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.d.ts +66 -0
  23. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.js +149 -0
  24. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.d.ts +7 -0
  25. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.js +153 -0
  26. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.d.ts +7 -0
  27. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.js +72 -0
  28. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.d.ts +7 -0
  29. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +44 -0
  30. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.d.ts +8 -0
  31. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.js +34 -0
  32. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.d.ts +9 -0
  33. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.js +100 -0
  34. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.d.ts +68 -0
  35. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.js +1 -0
  36. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.d.ts +7 -0
  37. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.js +161 -0
  38. package/dist/features/network-modifications/static-var-compensator/creation/index.d.ts +9 -0
  39. package/dist/features/network-modifications/static-var-compensator/creation/index.js +9 -0
  40. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.d.ts +8 -0
  41. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.js +105 -0
  42. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.d.ts +114 -0
  43. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.js +189 -0
  44. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.d.ts +34 -0
  45. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.js +1 -0
  46. package/dist/features/network-modifications/static-var-compensator/index.d.ts +8 -0
  47. package/dist/features/network-modifications/static-var-compensator/index.js +27 -0
  48. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.d.ts +8 -0
  49. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.js +153 -0
  50. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.d.ts +20 -0
  51. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.js +40 -0
  52. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.d.ts +11 -0
  53. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.js +1 -0
  54. package/dist/features/network-modifications/voltageLevel/coupling-device/index.d.ts +3 -0
  55. package/dist/features/network-modifications/voltageLevel/coupling-device/index.js +9 -0
  56. package/dist/features/network-modifications/voltageLevel/creation/index.js +1 -1
  57. package/dist/features/network-modifications/voltageLevel/index.d.ts +1 -0
  58. package/dist/features/network-modifications/voltageLevel/index.js +8 -1
  59. package/dist/features/network-modifications/voltageLevel/topology/CreateVoltageLevelTopologyForm.js +12 -2
  60. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.types.d.ts +1 -1
  61. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.utils.d.ts +3 -3
  62. package/dist/features/parameters/loadflow/load-flow-provider-specific-parameters.js +10 -1
  63. package/dist/features/results/constants.d.ts +7 -0
  64. package/dist/features/results/constants.js +4 -0
  65. package/dist/features/results/hooks/index.d.ts +7 -0
  66. package/dist/features/results/hooks/index.js +4 -0
  67. package/dist/features/results/hooks/useIntlResultStatusMessages.d.ts +19 -0
  68. package/dist/features/results/hooks/useIntlResultStatusMessages.js +23 -0
  69. package/dist/features/results/loadflow/index.d.ts +8 -0
  70. package/dist/features/results/loadflow/index.js +4 -0
  71. package/dist/features/results/loadflow/limit-violation-result.d.ts +2 -0
  72. package/dist/features/results/loadflow/limit-violation-result.js +134 -0
  73. package/dist/features/results/loadflow/load-flow-result.type.d.ts +29 -0
  74. package/dist/features/results/loadflow/load-flow-result.type.js +1 -0
  75. package/dist/features/results/securityanalysis/index.js +1 -2
  76. package/dist/features/results/securityanalysis/security-analysis-result-nmk.js +2 -1
  77. package/dist/features/results/securityanalysis/utils.d.ts +0 -2
  78. package/dist/features/results/securityanalysis/utils.js +0 -22
  79. package/dist/features/results/utils/index.d.ts +7 -0
  80. package/dist/features/results/utils/index.js +4 -0
  81. package/dist/features/results/utils/no-rows-message.d.ts +2 -0
  82. package/dist/features/results/utils/no-rows-message.js +24 -0
  83. package/dist/features/topBar/TopBar.js +2 -2
  84. package/dist/hooks/index.d.ts +1 -0
  85. package/dist/hooks/index.js +2 -0
  86. package/dist/hooks/useOpenLoaderShortWait.d.ts +18 -0
  87. package/dist/hooks/useOpenLoaderShortWait.js +19 -0
  88. package/dist/index.js +50 -1
  89. package/dist/translations/en/businessErrorsEn.d.ts +14 -0
  90. package/dist/translations/en/businessErrorsEn.js +15 -1
  91. package/dist/translations/en/index.d.ts +1 -0
  92. package/dist/translations/en/index.js +2 -0
  93. package/dist/translations/en/networkModificationsEn.d.ts +28 -0
  94. package/dist/translations/en/networkModificationsEn.js +30 -1
  95. package/dist/translations/en/specificParameters.d.ts +96 -0
  96. package/dist/translations/en/specificParameters.js +95 -0
  97. package/dist/translations/fr/businessErrorsFr.d.ts +14 -0
  98. package/dist/translations/fr/businessErrorsFr.js +15 -1
  99. package/dist/translations/fr/index.d.ts +1 -0
  100. package/dist/translations/fr/index.js +2 -0
  101. package/dist/translations/fr/networkModificationsFr.d.ts +28 -0
  102. package/dist/translations/fr/networkModificationsFr.js +30 -1
  103. package/dist/translations/fr/specificParameters.d.ts +96 -0
  104. package/dist/translations/fr/specificParameters.js +95 -0
  105. package/dist/utils/constants/fieldConstants.d.ts +19 -1
  106. package/dist/utils/constants/fieldConstants.js +18 -0
  107. package/dist/utils/index.d.ts +1 -0
  108. package/dist/utils/index.js +2 -0
  109. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -285,6 +285,8 @@ import { SubstationCreationForm } from "./features/network-modifications/substat
285
285
  import { substationCreationDtoToForm, substationCreationEmptyFormData, substationCreationFormSchema, substationCreationFormToDto } from "./features/network-modifications/substation/creation/substationCreation.utils.js";
286
286
  import { SubstationModificationForm } from "./features/network-modifications/substation/modification/SubstationModificationForm.js";
287
287
  import { substationModificationDtoToForm, substationModificationEmptyFormData, substationModificationFormSchema, substationModificationFormToDto } from "./features/network-modifications/substation/modification/substationModification.utils.js";
288
+ import { CouplingDeviceCreationForm } from "./features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.js";
289
+ import { couplingDeviceCreationDtoToForm, couplingDeviceCreationFormSchema, couplingDeviceCreationFormToDto, emptyCouplingDeviceCreationFormData } from "./features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.js";
288
290
  import { SwitchesBetweenSections } from "./features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js";
289
291
  import "react/jsx-runtime";
290
292
  import "@mui/material";
@@ -330,6 +332,7 @@ import { ComputingType } from "./utils/types/computing-type.js";
330
332
  import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./utils/ts-utils.js";
331
333
  import { toNumber, validateValueIsANumber } from "./utils/validation-functions.js";
332
334
  import { NO_ITEM_SELECTION_FOR_COPY } from "./utils/directory-utils.js";
335
+ import { RunningStatus } from "./utils/running-status.js";
333
336
  import { fetchAppsMetadata, fetchBaseVoltages, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isExploreMetadata, isStudyMetadata } from "./services/appsMetadata.js";
334
337
  import { fetchConfigParameter, fetchConfigParameters, getAppName, updateConfigParameter } from "./services/config.js";
335
338
  import { PermissionType, elementAlreadyExists, fetchDirectoryContent, fetchDirectoryElementPath, fetchElementNames, fetchRootFolders, hasElementPermission } from "./services/directory.js";
@@ -409,6 +412,14 @@ import { LineDialogHeader } from "./features/network-modifications/line/common/L
409
412
  import { LineForm } from "./features/network-modifications/line/common/LineForm.js";
410
413
  import { lineCreationDtoToForm, lineCreationEmptyFormData, lineCreationFormSchema, lineCreationFormToDto } from "./features/network-modifications/line/creation/lineCreation.utils.js";
411
414
  import { lineModificationDtoToForm, lineModificationEmptyFormData, lineModificationFormSchema, lineModificationFormToDto } from "./features/network-modifications/line/modification/lineModification.utils.js";
415
+ import { StaticVarCompensatorDialogHeader } from "./features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.js";
416
+ import { StaticVarCompensatorDialogTabs } from "./features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js";
417
+ import { STATIC_VAR_COMPENSATOR_TAB_FIELDS, StaticVarCompensatorDialogTab } from "./features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.js";
418
+ import { VOLTAGE_REGULATION_MODES } from "./features/network-modifications/static-var-compensator/common/constants.js";
419
+ import { getReactiveFormData, getReactiveFormEmptyFormData, getReactiveFormValidationSchema } from "./features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.js";
420
+ import { computeQ0, getStandbyAutomatonEmptyFormData, getStandbyAutomatonFormData, getStandbyAutomatonFormValidationSchema } from "./features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.js";
421
+ import { StaticVarCompensatorCreationForm } from "./features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.js";
422
+ import { staticVarCompensatorCreationEmptyFormData, staticVarCompensatorCreationFormSchema, staticVarCompensatorCreationFormToDto, staticVarCompensatorDtoToForm } from "./features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.js";
412
423
  import { BuildStatusChip } from "./features/node/build-status-chip.js";
413
424
  import { BuildStatus } from "./features/node/constant.js";
414
425
  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";
@@ -434,7 +445,10 @@ import { useGlobalAnnouncement } from "./features/announcement/useGlobalAnnounce
434
445
  import { SecurityAnalysisResultNmk } from "./features/results/securityanalysis/security-analysis-result-nmk.js";
435
446
  import { SecurityAnalysisTable } from "./features/results/securityanalysis/security-analysis-table.js";
436
447
  import { NmkType } from "./features/results/securityanalysis/security-analysis.type.js";
437
- import { PAGE_OPTIONS, flattenNmKResultsConstraints, flattenNmKResultsContingencies, getNoRowsMessage, handlePostSortRows, mapNmKResultsCutOffPower } from "./features/results/securityanalysis/utils.js";
448
+ import { PAGE_OPTIONS, flattenNmKResultsConstraints, flattenNmKResultsContingencies, handlePostSortRows, mapNmKResultsCutOffPower } from "./features/results/securityanalysis/utils.js";
449
+ import { LimitViolationResult } from "./features/results/loadflow/limit-violation-result.js";
450
+ import { getNoRowsMessage } from "./features/results/utils/no-rows-message.js";
451
+ import { RESULTS_LOADING_DELAY } from "./features/results/constants.js";
438
452
  import { ProcessType } from "./features/process-configs/common/process-config.type.js";
439
453
  import { emptyProcessConfigModificationsFormData, getProcessConfigModificationsBackendFromFormData, getProcessConfigModificationsFormData, processConfigModificationsShape } from "./features/process-configs/common/process-config-modifications-edition.utils.js";
440
454
  import { ProcessConfigModificationsEdition } from "./features/process-configs/common/process-config-modifications-edition.js";
@@ -450,6 +464,8 @@ import { MAX_RECENT_GLOBAL_FILTERS, addSelectedGlobalFiltersToTableState, clearS
450
464
  import { syncGlobalFilters } from "./features/global-filter/utils/global-filter-sync.utils.js";
451
465
  import { RECENT_FILTER, addGlobalFilterId, getGlobalFilterId, getOptionLabel } from "./features/global-filter/utils/global-filter-utils.js";
452
466
  import { GlobalFilterContextProvider } from "./features/global-filter/context/global-filter-context-provider.js";
467
+ import { RenderTableAndExportCsv } from "./features/common/renderTable-ExportCsv.js";
468
+ import { useIntlResultStatusMessages } from "./features/results/hooks/useIntlResultStatusMessages.js";
453
469
  import { useStateBoolean } from "./hooks/customStates/useStateBoolean.js";
454
470
  import { useStateNumber } from "./hooks/customStates/useStateNumber.js";
455
471
  import { useModificationLabelComputer } from "./hooks/useModificationLabelComputer.js";
@@ -464,6 +480,7 @@ import { useFormatLabelWithUnit } from "./hooks/useFormatLabelWithUnit.js";
464
480
  import { useSelectAppearance } from "./hooks/useSelectAppearance.js";
465
481
  import { OptionalServicesStatus, useParametersBackend } from "./hooks/use-parameters-backend.js";
466
482
  import { useGetLabelEquipmentTypes } from "./hooks/useGetLabelEquipmentTypes.js";
483
+ import { useOpenLoaderShortWait } from "./hooks/useOpenLoaderShortWait.js";
467
484
  import { LOGOUT_ERROR, RESET_AUTHENTICATION_ROUTER_ERROR, SHOW_AUTH_INFO_LOGIN, SIGNIN_CALLBACK_ERROR, UNAUTHORIZED_USER_INFO, USER, USER_VALIDATION_ERROR, resetAuthenticationRouterError, setLoggedUser, setLogoutError, setShowAuthenticationRouterLogin, setSignInCallbackError, setUnauthorizedUserInfo, setUserValidationError } from "./redux/actions/authActions.js";
468
485
  import { getUser, getUserToken, setCommonStore, subscribeToUserState } from "./redux/commonStore.js";
469
486
  import { cardErrorBoundaryEn } from "./translations/en/cardErrorBoundaryEn.js";
@@ -495,6 +512,7 @@ import { exportParamsEn } from "./translations/en/external/exportParamsEn.js";
495
512
  import { importParamsEn } from "./translations/en/external/importParamsEn.js";
496
513
  import { componentsEn } from "./translations/en/componentsEn.js";
497
514
  import { parametersEn } from "./translations/en/parameters.js";
515
+ import { specificParametersEn } from "./translations/en/specificParameters.js";
498
516
  import { useUniqueNameValidationEn } from "./translations/en/use-unique-name-validation-en.js";
499
517
  import { processConfigEn } from "./translations/en/processConfigEn.js";
500
518
  import { genericValidationEn } from "./translations/en/generic-validationEn.js";
@@ -527,6 +545,7 @@ import { exportParamsFr } from "./translations/fr/external/exportParamsFr.js";
527
545
  import { importParamsFr } from "./translations/fr/external/importParamsFr.js";
528
546
  import { componentsFr } from "./translations/fr/componentsFr.js";
529
547
  import { parametersFr } from "./translations/fr/parameters.js";
548
+ import { specificParametersFr } from "./translations/fr/specificParameters.js";
530
549
  import { useUniqueNameValidationFr } from "./translations/fr/use-unique-name-validation-fr.js";
531
550
  import { processConfigFr } from "./translations/fr/processConfigFr.js";
532
551
  import { genericValidationFr } from "./translations/fr/generic-validationFr.js";
@@ -630,6 +649,7 @@ export {
630
649
  CountriesInput,
631
650
  CountrySelectionInput,
632
651
  CountryValueEditor,
652
+ CouplingDeviceCreationForm,
633
653
  CreateParameterDialog,
634
654
  CreateVoltageLevelTopologyForm,
635
655
  CsvDownloadButton,
@@ -845,6 +865,7 @@ export {
845
865
  LimitReductionTableRow,
846
866
  LimitReductionsTableForm,
847
867
  LimitTypes,
868
+ LimitViolationResult,
848
869
  LimitsChart,
849
870
  LimitsEditor,
850
871
  LimitsGroupsContextualMenu,
@@ -1028,6 +1049,7 @@ export {
1028
1049
  REMOVE,
1029
1050
  REPORT_SEVERITY,
1030
1051
  RESET_AUTHENTICATION_ROUTER_ERROR,
1052
+ RESULTS_LOADING_DELAY,
1031
1053
  RULES,
1032
1054
  RadioInput,
1033
1055
  RangeInput,
@@ -1042,6 +1064,7 @@ export {
1042
1064
  ReferenceType,
1043
1065
  RegulatingTerminalForm,
1044
1066
  RemoveButton,
1067
+ RenderTableAndExportCsv,
1045
1068
  ReportFetcherContext,
1046
1069
  ReportFilterContext,
1047
1070
  ReportType,
@@ -1051,6 +1074,7 @@ export {
1051
1074
  RootNetworkChipCell,
1052
1075
  RootNetworkHeaderRenderer,
1053
1076
  RuleValueEditor,
1077
+ RunningStatus,
1054
1078
  SAProcessConfigEditionDialog,
1055
1079
  SCENARIO_DURATION,
1056
1080
  SEARCH_EQUIPMENTS,
@@ -1085,6 +1109,7 @@ export {
1085
1109
  STARTED_GENERATORS_IN_CALCULATION_CLUSTER_THRESHOLD,
1086
1110
  STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER_THRESHOLD,
1087
1111
  START_TIME,
1112
+ STATIC_VAR_COMPENSATOR_TAB_FIELDS,
1088
1113
  STOP_TIME,
1089
1114
  SUBSTATION_LAYOUT,
1090
1115
  SVAR_REGULATION_MODE_OPTIONS,
@@ -1125,6 +1150,10 @@ export {
1125
1150
  SnackbarProvider,
1126
1151
  SolverType,
1127
1152
  SortWay,
1153
+ StaticVarCompensatorCreationForm,
1154
+ StaticVarCompensatorDialogHeader,
1155
+ StaticVarCompensatorDialogTab,
1156
+ StaticVarCompensatorDialogTabs,
1128
1157
  SubmitButton,
1129
1158
  Substation,
1130
1159
  SubstationCreationForm,
@@ -1180,6 +1209,7 @@ export {
1180
1209
  VOLTAGE_LEVELS_FORM,
1181
1210
  VOLTAGE_LIMITS_DEFAULT,
1182
1211
  VOLTAGE_LIMITS_MODIFICATION,
1212
+ VOLTAGE_REGULATION_MODES,
1183
1213
  VSC,
1184
1214
  ValueEditor,
1185
1215
  ValueSelector,
@@ -1238,6 +1268,7 @@ export {
1238
1268
  commonButtonFr,
1239
1269
  componentsEn,
1240
1270
  componentsFr,
1271
+ computeQ0,
1241
1272
  computeSwitchedOnValue,
1242
1273
  computeTagMinSize,
1243
1274
  computeTolerance,
@@ -1250,6 +1281,9 @@ export {
1250
1281
  copyEquipmentPropertiesForCreation,
1251
1282
  copyToClipboard,
1252
1283
  countRules,
1284
+ couplingDeviceCreationDtoToForm,
1285
+ couplingDeviceCreationFormSchema,
1286
+ couplingDeviceCreationFormToDto,
1253
1287
  createCellBorderColor,
1254
1288
  createCellContentWrapperSx,
1255
1289
  createCellStyle,
@@ -1284,6 +1318,7 @@ export {
1284
1318
  elementEditionStyles,
1285
1319
  elementSearchEn,
1286
1320
  elementSearchFr,
1321
+ emptyCouplingDeviceCreationFormData,
1287
1322
  emptyFormData,
1288
1323
  emptyLineSegment,
1289
1324
  emptyModificationByAssignmentFormData,
@@ -1489,6 +1524,9 @@ export {
1489
1524
  getRangeInputSchema,
1490
1525
  getReactiveCapabilityCurveValidationSchema,
1491
1526
  getReactiveCapabilityCurveValidationSchemaArray,
1527
+ getReactiveFormData,
1528
+ getReactiveFormEmptyFormData,
1529
+ getReactiveFormValidationSchema,
1492
1530
  getReactiveLimitsEmptyFormData,
1493
1531
  getReactiveLimitsEmptyFormDataProps,
1494
1532
  getReactiveLimitsFormData,
@@ -1514,6 +1552,9 @@ export {
1514
1552
  getShortCircuitFormData,
1515
1553
  getShortCircuitFormSchema,
1516
1554
  getShortCircuitSpecificParametersDescription,
1555
+ getStandbyAutomatonEmptyFormData,
1556
+ getStandbyAutomatonFormData,
1557
+ getStandbyAutomatonFormValidationSchema,
1517
1558
  getStudyNetworkVisualizationsParameters,
1518
1559
  getStudyShortCircuitParameters,
1519
1560
  getStudyUrl,
@@ -1674,7 +1715,13 @@ export {
1674
1715
  shuntCompensatorModificationFormToDto,
1675
1716
  snackWithFallback,
1676
1717
  sortSeverityList,
1718
+ specificParametersEn,
1719
+ specificParametersFr,
1677
1720
  standardTextField,
1721
+ staticVarCompensatorCreationEmptyFormData,
1722
+ staticVarCompensatorCreationFormSchema,
1723
+ staticVarCompensatorCreationFormToDto,
1724
+ staticVarCompensatorDtoToForm,
1678
1725
  styles,
1679
1726
  subscribeToUserState,
1680
1727
  substationCreationDtoToForm,
@@ -1740,11 +1787,13 @@ export {
1740
1787
  useGlobalAnnouncement,
1741
1788
  useHvdcLccDeletion,
1742
1789
  useIntlRef,
1790
+ useIntlResultStatusMessages,
1743
1791
  useListenerManager,
1744
1792
  useLocalizedCountries,
1745
1793
  useModificationLabelComputer,
1746
1794
  useModificationsDragAndDrop,
1747
1795
  useNotificationsListener,
1796
+ useOpenLoaderShortWait,
1748
1797
  useParameterLayoutContext,
1749
1798
  useParametersBackend,
1750
1799
  useParametersForm,
@@ -84,4 +84,18 @@ export declare const businessErrorsEn: {
84
84
  'dynamicMarginCalculation.providerNotFound': string;
85
85
  'dynamicMarginCalculation.loadFilterNotFound': string;
86
86
  'monitor.server.differentProcessConfigType': string;
87
+ 'network.notFound': string;
88
+ 'network.variant.notFound': string;
89
+ 'modification.container.notFound': string;
90
+ 'modification.container.badType': string;
91
+ 'modification.container.type.notFound': string;
92
+ 'modification.notFound': string;
93
+ 'modifications.notFound': string;
94
+ 'modification.infos.error': string;
95
+ 'modification.deletion.argument.error': string;
96
+ 'modification.duplication.argument.error': string;
97
+ 'modification.with_group.deletion.forbidden': string;
98
+ 'modification.description.missing': string;
99
+ 'modification.composite.move.cycle.error': string;
100
+ 'modification.voltageLevel.attachmentLine.missing': string;
87
101
  };
@@ -77,7 +77,21 @@ const businessErrorsEn = {
77
77
  "diagram.noVoltageLevelFound": "No voltage level found for this network area diagram",
78
78
  "dynamicMarginCalculation.providerNotFound": "Dynamic margin calculation provider not found.",
79
79
  "dynamicMarginCalculation.loadFilterNotFound": "Some load filters do not exist: {filterUuids}",
80
- "monitor.server.differentProcessConfigType": "Cannot compare 2 different process config types : {processConfigEntity1Type} vs {processConfigEntity2Type}"
80
+ "monitor.server.differentProcessConfigType": "Cannot compare 2 different process config types : {processConfigEntity1Type} vs {processConfigEntity2Type}",
81
+ "network.notFound": "Network {networkId} not found",
82
+ "network.variant.notFound": "Variant {variantId} for network {networkId} not found",
83
+ "modification.container.notFound": "Modification container {containerId} of type {containerType} not found",
84
+ "modification.container.badType": "Modification container type of {containerId} is invalid : actual type {containerType} -> expected type {expectedContainerType}",
85
+ "modification.container.type.notFound": "Modification container type of {modificationId} not found",
86
+ "modification.notFound": "Modification {modificationId} not found",
87
+ "modifications.notFound": "Some of these modifications {ids} were not found",
88
+ "modification.infos.error": "Modification infos error : {errorMessage}",
89
+ "modification.deletion.argument.error": "Modification deletion : invalid arguments (need to specify the group id or give a list of modifications ids)",
90
+ "modification.duplication.argument.error": "Modification duplication : invalid arguments (need to specify the group id or give a list of modifications ids)",
91
+ "modification.with_group.deletion.forbidden": "Unauthorized deletion: modification {modificationId} is owned by group {groupId}",
92
+ "modification.description.missing": "Missing network modification description",
93
+ "modification.composite.move.cycle.error": "Moving composite modification {compositeModificationId} into {modificationId} would create a cycle",
94
+ "modification.voltageLevel.attachmentLine.missing": "Line attach for voltage level {voltageLevelId} is missing"
81
95
  };
82
96
  export {
83
97
  businessErrorsEn
@@ -33,6 +33,7 @@ export * from './external/exportParamsEn';
33
33
  export * from './external/importParamsEn';
34
34
  export * from './componentsEn';
35
35
  export * from './parameters';
36
+ export * from './specificParameters';
36
37
  export * from './use-unique-name-validation-en';
37
38
  export * from './processConfigEn';
38
39
  export * from './generic-validationEn';
@@ -27,6 +27,7 @@ import { exportParamsEn } from "./external/exportParamsEn.js";
27
27
  import { importParamsEn } from "./external/importParamsEn.js";
28
28
  import { componentsEn } from "./componentsEn.js";
29
29
  import { parametersEn } from "./parameters.js";
30
+ import { specificParametersEn } from "./specificParameters.js";
30
31
  import { useUniqueNameValidationEn } from "./use-unique-name-validation-en.js";
31
32
  import { processConfigEn } from "./processConfigEn.js";
32
33
  import { genericValidationEn } from "./generic-validationEn.js";
@@ -59,6 +60,7 @@ export {
59
60
  parametersEn,
60
61
  processConfigEn,
61
62
  reportViewerEn,
63
+ specificParametersEn,
62
64
  tableEn,
63
65
  topBarEn,
64
66
  treeviewFinderEn,
@@ -143,6 +143,7 @@ export declare const networkModificationsEn: {
143
143
  Setpoints: string;
144
144
  ActivePowerText: string;
145
145
  ReactivePowerText: string;
146
+ ReactivePowerRegulationText: string;
146
147
  RegulationTypeText: string;
147
148
  QPercentText: string;
148
149
  RegulatingTerminalGenerator: string;
@@ -288,6 +289,30 @@ export declare const networkModificationsEn: {
288
289
  filter: string;
289
290
  G: string;
290
291
  B: string;
292
+ maximumSusceptance: string;
293
+ minSusceptance: string;
294
+ maxQAtVnominal: string;
295
+ minQAtNominalV: string;
296
+ ModeAutomaton: string;
297
+ StandbyAutomaton: string;
298
+ StandbyNotAvailable: string;
299
+ LowVoltageSetpoint: string;
300
+ HighVoltageSetpoint: string;
301
+ LowVoltageThreshold: string;
302
+ HighVoltageThreshold: string;
303
+ AddAutomaton: string;
304
+ CreateStaticVarCompensator: string;
305
+ StaticVarCompensatorCreationError: string;
306
+ StaticVarCompensatorErrorQFixGreaterThanQMax: string;
307
+ StaticVarCompensatorErrorQFixLessThanQMin: string;
308
+ StaticVarCompensatorErrorSFixGreaterThanSMax: string;
309
+ StaticVarCompensatorErrorSFixLessThanSMin: string;
310
+ StaticVarCompensatorConnectivityTab: string;
311
+ StaticVarCompensatorSetPointsAndLimitsTab: string;
312
+ StaticVarCompensatorAutomatonTab: string;
313
+ StaticVarCompensatorAdditionalInfosTab: string;
314
+ b0: string;
315
+ fixQAtNominalV: string;
291
316
  SubstationTab: string;
292
317
  ConnectivityTab: string;
293
318
  CharacteristicsTab: string;
@@ -307,4 +332,7 @@ export declare const networkModificationsEn: {
307
332
  AtLeastOneSectionAdded: string;
308
333
  SectionCount: string;
309
334
  VoltageLevelId: string;
335
+ CreateCouplingDevice: string;
336
+ CouplingDeviceText: string;
337
+ CouplingDeviceBusBarSectionToolTipText: string;
310
338
  };
@@ -137,6 +137,7 @@ const networkModificationsEn = {
137
137
  Setpoints: "Setpoints",
138
138
  ActivePowerText: "Active power",
139
139
  ReactivePowerText: "Reactive power",
140
+ ReactivePowerRegulationText: "Reactive regulation",
140
141
  RegulationTypeText: "Regulation type",
141
142
  QPercentText: "Reactive percentage",
142
143
  RegulatingTerminalGenerator: "Regulated terminal",
@@ -282,6 +283,30 @@ const networkModificationsEn = {
282
283
  filter: "Filter",
283
284
  G: "Magnetizing conductance",
284
285
  B: "Magnetizing susceptance",
286
+ maximumSusceptance: "Susceptance max",
287
+ minSusceptance: "Susceptance min",
288
+ maxQAtVnominal: "Q max at nominal voltage",
289
+ minQAtNominalV: "Q min at nominal voltage",
290
+ ModeAutomaton: "Mode",
291
+ StandbyAutomaton: "Standby",
292
+ StandbyNotAvailable: "Standby only available in voltage regulation mode",
293
+ LowVoltageSetpoint: "Low voltage set point",
294
+ HighVoltageSetpoint: "High voltage set point",
295
+ LowVoltageThreshold: "Low voltage threshold",
296
+ HighVoltageThreshold: "High voltage threshold",
297
+ AddAutomaton: "Add an automaton",
298
+ CreateStaticVarCompensator: "Create static var compensator",
299
+ StaticVarCompensatorCreationError: "Error while creating static var compensator",
300
+ StaticVarCompensatorErrorQFixGreaterThanQMax: "Q Fixed value should be less than Q maximum value",
301
+ StaticVarCompensatorErrorQFixLessThanQMin: "Q Fixed value should be greater than Q minimum value",
302
+ StaticVarCompensatorErrorSFixGreaterThanSMax: "Susceptance Fixed value should be less than susceptance maximum value",
303
+ StaticVarCompensatorErrorSFixLessThanSMin: "Susceptance Fixed value should be greater than susceptance minimum value",
304
+ StaticVarCompensatorConnectivityTab: "Connectivity",
305
+ StaticVarCompensatorSetPointsAndLimitsTab: "Set points & Limits",
306
+ StaticVarCompensatorAutomatonTab: "Automaton",
307
+ StaticVarCompensatorAdditionalInfosTab: "Additional information",
308
+ b0: "Fixed part of susceptance",
309
+ fixQAtNominalV: "Q fixed",
285
310
  // Tabs
286
311
  SubstationTab: "Substation",
287
312
  ConnectivityTab: "Connectivity",
@@ -302,7 +327,11 @@ const networkModificationsEn = {
302
327
  builtNodeTooltipForDiagram: "Current diagram taking into account all applied modifications",
303
328
  AtLeastOneSectionAdded: "At least one busbar section must be added",
304
329
  SectionCount: "Section count",
305
- VoltageLevelId: "Voltage level ID"
330
+ VoltageLevelId: "Voltage level ID",
331
+ // Voltage level coupling device creation
332
+ CreateCouplingDevice: "Add a coupling device",
333
+ CouplingDeviceText: "Bus bar sections",
334
+ CouplingDeviceBusBarSectionToolTipText: "If both bus bar sections have a different section number it creates an omnibus otherwise a coupling device"
306
335
  };
307
336
  export {
308
337
  networkModificationsEn
@@ -0,0 +1,96 @@
1
+ /**
2
+ * Copyright (c) 2026, RTE (http://www.rte-france.com)
3
+ * This Source Code Form is subject to the terms of the Mozilla Public
4
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
5
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
+ */
7
+ export declare const specificParametersEn: {
8
+ slackBusSelectionMode: string;
9
+ slackBusesIds: string;
10
+ lowImpedanceBranchMode: string;
11
+ voltageRemoteControl: string;
12
+ slackDistributionFailureBehavior: string;
13
+ loadPowerFactorConstant: string;
14
+ plausibleActivePowerLimit: string;
15
+ slackBusPMaxMismatch: string;
16
+ voltagePerReactivePowerControl: string;
17
+ generatorReactivePowerRemoteControl: string;
18
+ transformerReactivePowerControl: string;
19
+ maxNewtonRaphsonIterations: string;
20
+ maxOuterLoopIterations: string;
21
+ newtonRaphsonConvEpsPerEq: string;
22
+ voltageInitModeOverride: string;
23
+ transformerVoltageControlMode: string;
24
+ shuntVoltageControlMode: string;
25
+ minPlausibleTargetVoltage: string;
26
+ maxPlausibleTargetVoltage: string;
27
+ minRealisticVoltage: string;
28
+ maxRealisticVoltage: string;
29
+ minNominalVoltageRealisticVoltageCheck: string;
30
+ reactiveRangeCheckMode: string;
31
+ lowImpedanceThreshold: string;
32
+ networkCacheEnabled: string;
33
+ svcVoltageMonitoring: string;
34
+ stateVectorScalingMode: string;
35
+ maxSlackBusCount: string;
36
+ incrementalTransformerRatioTapControlOuterLoopMaxTapShift: string;
37
+ secondaryVoltageControl: string;
38
+ reactiveLimitsMaxPqPvSwitch: string;
39
+ newtonRaphsonStoppingCriteriaType: string;
40
+ maxActivePowerMismatch: string;
41
+ maxReactivePowerMismatch: string;
42
+ maxVoltageMismatch: string;
43
+ maxAngleMismatch: string;
44
+ maxRatioMismatch: string;
45
+ maxSusceptanceMismatch: string;
46
+ phaseShifterControlMode: string;
47
+ alwaysUpdateNetwork: string;
48
+ mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: string;
49
+ reportedFeatures: string;
50
+ slackBusCountryFilter: string;
51
+ actionableSwitchesIds: string;
52
+ actionableTransformersIds: string;
53
+ asymmetrical: string;
54
+ minNominalVoltageTargetVoltageCheck: string;
55
+ reactivePowerDispatchMode: string;
56
+ useActiveLimits: string;
57
+ disableVoltageControlOfGeneratorsOutsideActivePowerLimits: string;
58
+ lineSearchStateVectorScalingMaxIteration: string;
59
+ lineSearchStateVectorScalingStepFold: string;
60
+ maxVoltageChangeStateVectorScalingMaxDv: string;
61
+ maxVoltageChangeStateVectorScalingMaxDphi: string;
62
+ linePerUnitMode: string;
63
+ useLoadModel: string;
64
+ dcApproximationType: string;
65
+ simulateAutomationSystems: string;
66
+ acSolverType: string;
67
+ maxNewtonKrylovIterations: string;
68
+ newtonKrylovLineSearch: string;
69
+ referenceBusSelectionMode: string;
70
+ writeReferenceTerminals: string;
71
+ voltageTargetPriorities: string;
72
+ transformerVoltageControlUseInitialTapPosition: string;
73
+ generatorVoltageControlMinNominalVoltage: string;
74
+ fictitiousGeneratorVoltageControlCheckMode: string;
75
+ areaInterchangeControl: string;
76
+ areaInterchangeControlAreaType: string;
77
+ areaInterchangePMaxMismatch: string;
78
+ voltageRemoteControlRobustMode: string;
79
+ forceTargetQInReactiveLimits: string;
80
+ disableInconsistentVoltageControls: string;
81
+ extrapolateReactiveLimits: string;
82
+ startWithFrozenACEmulation: string;
83
+ generatorsWithZeroMwTargetAreNotStarted: string;
84
+ incrementalShuntControlOuterLoopMaxSectionShift: string;
85
+ fixVoltageTargets: string;
86
+ acDcNetwork: string;
87
+ allowNonLinearShuntZeroSection: string;
88
+ svcRegulationOn: string;
89
+ dsoVoltageLevel: string;
90
+ tfoVoltageLevel: string;
91
+ startTime: string;
92
+ stopTime: string;
93
+ precision: string;
94
+ timeStep: string;
95
+ mergeLoads: string;
96
+ };
@@ -0,0 +1,95 @@
1
+ const specificParametersEn = {
2
+ // open LoadFlow
3
+ slackBusSelectionMode: "Slack bus selection mode",
4
+ slackBusesIds: "Slack bus IDs",
5
+ lowImpedanceBranchMode: "Low impedance branch mode",
6
+ voltageRemoteControl: "Voltage remote control",
7
+ slackDistributionFailureBehavior: "Slack distribution failure behavior",
8
+ loadPowerFactorConstant: "Constant load power factor",
9
+ plausibleActivePowerLimit: "Plausible active power limit",
10
+ slackBusPMaxMismatch: "Max power mismatch",
11
+ voltagePerReactivePowerControl: "SVC use regulation slope",
12
+ generatorReactivePowerRemoteControl: "Use remote reactive power control",
13
+ transformerReactivePowerControl: "Transformer reactive power control",
14
+ maxNewtonRaphsonIterations: "Maximum Newton-Raphson iterations",
15
+ maxOuterLoopIterations: "Maximum outer loop iterations",
16
+ newtonRaphsonConvEpsPerEq: "Newton-Raphson convergence criteria",
17
+ voltageInitModeOverride: "Voltage initialization mode override",
18
+ transformerVoltageControlMode: "Transformer voltage control mode",
19
+ shuntVoltageControlMode: "Shunt voltage control mode",
20
+ minPlausibleTargetVoltage: "Minimum plausible target voltage",
21
+ maxPlausibleTargetVoltage: "Maximum plausible target voltage",
22
+ minRealisticVoltage: "Minimum realistic voltage",
23
+ maxRealisticVoltage: "Maximum realistic voltage",
24
+ minNominalVoltageRealisticVoltageCheck: "Minimum nominal voltage for realism check",
25
+ reactiveRangeCheckMode: "Reactive range check mode",
26
+ lowImpedanceThreshold: "Low impedance threshold",
27
+ networkCacheEnabled: "Network cache enabled",
28
+ svcVoltageMonitoring: "SVC voltage monitoring",
29
+ stateVectorScalingMode: "State vector scaling mode",
30
+ maxSlackBusCount: "Maximum slack bus count",
31
+ incrementalTransformerRatioTapControlOuterLoopMaxTapShift: "Maximum tap shift per outer loop",
32
+ secondaryVoltageControl: "Secondary voltage control",
33
+ reactiveLimitsMaxPqPvSwitch: "Maximum PV-PQ switches",
34
+ newtonRaphsonStoppingCriteriaType: "Newton-Raphson stopping criteria type",
35
+ maxActivePowerMismatch: "Maximum active power mismatch",
36
+ maxReactivePowerMismatch: "Maximum reactive power mismatch",
37
+ maxVoltageMismatch: "Maximum voltage mismatch",
38
+ maxAngleMismatch: "Maximum angle mismatch",
39
+ maxRatioMismatch: "Maximum ratio mismatch",
40
+ maxSusceptanceMismatch: "Maximum susceptance mismatch",
41
+ phaseShifterControlMode: "Phase shifter simulation mode",
42
+ alwaysUpdateNetwork: "Update network after divergence",
43
+ mostMeshedSlackBusSelectorMaxNominalVoltagePercentile: "Max nominal voltage percentile",
44
+ reportedFeatures: "Additional reported features",
45
+ slackBusCountryFilter: "Slack bus country filter",
46
+ actionableSwitchesIds: "Actionable switch IDs",
47
+ actionableTransformersIds: "Actionable transformer IDs",
48
+ asymmetrical: "Asymmetrical calculation",
49
+ minNominalVoltageTargetVoltageCheck: "Minimum nominal voltage for target check",
50
+ reactivePowerDispatchMode: "Reactive power dispatch mode",
51
+ useActiveLimits: "Use active power limits",
52
+ disableVoltageControlOfGeneratorsOutsideActivePowerLimits: "Disable voltage control outside active limits",
53
+ lineSearchStateVectorScalingMaxIteration: "Line search max iterations",
54
+ lineSearchStateVectorScalingStepFold: "Line search step fold",
55
+ maxVoltageChangeStateVectorScalingMaxDv: "Maximum voltage magnitude change",
56
+ maxVoltageChangeStateVectorScalingMaxDphi: "Maximum voltage angle change",
57
+ linePerUnitMode: "Line per-unit mode",
58
+ useLoadModel: "Use voltage-dependent load model",
59
+ dcApproximationType: "DC approximation type",
60
+ simulateAutomationSystems: "Automation systems simulation",
61
+ acSolverType: "AC solver type",
62
+ maxNewtonKrylovIterations: "Newton-Krylov maximum iterations",
63
+ newtonKrylovLineSearch: "Newton-Krylov line search",
64
+ referenceBusSelectionMode: "Reference bus selection mode",
65
+ writeReferenceTerminals: "Write reference terminals",
66
+ voltageTargetPriorities: "Voltage target priorities",
67
+ transformerVoltageControlUseInitialTapPosition: "Preserve initial relative tap position",
68
+ generatorVoltageControlMinNominalVoltage: "Minimum nominal voltage for generator voltage control",
69
+ fictitiousGeneratorVoltageControlCheckMode: "Fictitious generator voltage control checks",
70
+ areaInterchangeControl: "Area interchange control over slack",
71
+ areaInterchangeControlAreaType: "Area type for interchange control",
72
+ areaInterchangePMaxMismatch: "Area interchange mismatch limit",
73
+ voltageRemoteControlRobustMode: "Robust remote voltage control",
74
+ forceTargetQInReactiveLimits: "Force reactive target within limits",
75
+ disableInconsistentVoltageControls: "Disable inconsistent voltage controls",
76
+ extrapolateReactiveLimits: "Extrapolate reactive limits",
77
+ startWithFrozenACEmulation: "Start with frozen AC emulation",
78
+ generatorsWithZeroMwTargetAreNotStarted: "Zero-target generators disabled",
79
+ incrementalShuntControlOuterLoopMaxSectionShift: "Maximum shunt section shift",
80
+ fixVoltageTargets: "Auto-correct voltage targets",
81
+ acDcNetwork: "Simultaneous AC/DC load flow",
82
+ allowNonLinearShuntZeroSection: "Allow implicit zero section for non-linear shunts",
83
+ // Dyna Flow
84
+ svcRegulationOn: "SVC voltage regulation",
85
+ dsoVoltageLevel: "Minimum load voltage level",
86
+ tfoVoltageLevel: "Generator transformer voltage threshold",
87
+ startTime: "Simulation start time",
88
+ stopTime: "Simulation stop time",
89
+ precision: "Numerical precision",
90
+ timeStep: "Maximum solver time step (s)",
91
+ mergeLoads: "Merge loads on same bus"
92
+ };
93
+ export {
94
+ specificParametersEn
95
+ };
@@ -84,4 +84,18 @@ export declare const businessErrorsFr: {
84
84
  'dynamicMarginCalculation.providerNotFound': string;
85
85
  'dynamicMarginCalculation.loadFilterNotFound': string;
86
86
  'monitor.server.differentProcessConfigType': string;
87
+ 'network.notFound': string;
88
+ 'network.variant.notFound': string;
89
+ 'modification.container.notFound': string;
90
+ 'modification.container.badType': string;
91
+ 'modification.container.type.notFound': string;
92
+ 'modification.notFound': string;
93
+ 'modifications.notFound': string;
94
+ 'modification.infos.error': string;
95
+ 'modification.deletion.argument.error': string;
96
+ 'modification.duplication.argument.error': string;
97
+ 'modification.with_group.deletion.forbidden': string;
98
+ 'modification.description.missing': string;
99
+ 'modification.composite.move.cycle.error': string;
100
+ 'modification.voltageLevel.attachmentLine.missing': string;
87
101
  };
@@ -77,7 +77,21 @@ const businessErrorsFr = {
77
77
  "diagram.noVoltageLevelFound": "Aucun poste trouvé pour cette image nodale de zone",
78
78
  "dynamicMarginCalculation.providerNotFound": "Simulateur du calcul de marge dynamique non trouvé.",
79
79
  "dynamicMarginCalculation.loadFilterNotFound": "Certains filtres de consommations n'existent pas : {filterUuids}",
80
- "monitor.server.differentProcessConfigType": "Impossible de comparer 2 configurations de processus de type différent : {processConfigEntity1Type} vs {processConfigEntity2Type}"
80
+ "monitor.server.differentProcessConfigType": "Impossible de comparer 2 configurations de processus de type différent : {processConfigEntity1Type} vs {processConfigEntity2Type}",
81
+ "network.notFound": "Réseau {networkId} non trouvé",
82
+ "network.variant.notFound": "Variante {variantId} pour le réseau {networkId} non trouvé",
83
+ "modification.container.notFound": "Le container de modification {containerId} de type {containerType} est introuvable",
84
+ "modification.container.badType": "Le type du container {containerId} est invalide : type actuel {} -> type attendu {expectedContainerType}",
85
+ "modification.container.type.notFound": "Le type de container pour la modification {modificationId} est introuvable",
86
+ "modification.notFound": "La modification {modificationId} est introuvable",
87
+ "modifications.notFound": "Certaines modifications parmi celles ci {ids} n'ont pas été trouvée",
88
+ "modification.infos.error": "Infos de modification erronées : {errorMessage}",
89
+ "modification.deletion.argument.error": "Modification suppression : arguments invalides (besoin d'un id de groupe ou d'une liste de uuids de modifications)",
90
+ "modification.duplication.argument.error": "Modification duplication : arguments invalides (besoin d'un id de groupe ou d'une liste de uuids de modifications)",
91
+ "modification.with_group.deletion.forbidden": "Suppression non autorisée : la modification {modificationId} appartient au groupe {groupId}",
92
+ "modification.description.missing": "La description de la modification réseau est manquante",
93
+ "modification.composite.move.cycle.error": "Le déplacement de la modification composite {compositeModificationId} dans {modificationId} va créer un cycle",
94
+ "modification.voltageLevel.attachmentLine.missing": "La ligne de piquage pour le poste {voltageLevelId} est manquante"
81
95
  };
82
96
  export {
83
97
  businessErrorsFr
@@ -33,6 +33,7 @@ export * from './external/exportParamsFr';
33
33
  export * from './external/importParamsFr';
34
34
  export * from './componentsFr';
35
35
  export * from './parameters';
36
+ export * from './specificParameters';
36
37
  export * from './use-unique-name-validation-fr';
37
38
  export * from './processConfigFr';
38
39
  export * from './generic-validationFr';
@@ -27,6 +27,7 @@ import { exportParamsFr } from "./external/exportParamsFr.js";
27
27
  import { importParamsFr } from "./external/importParamsFr.js";
28
28
  import { componentsFr } from "./componentsFr.js";
29
29
  import { parametersFr } from "./parameters.js";
30
+ import { specificParametersFr } from "./specificParameters.js";
30
31
  import { useUniqueNameValidationFr } from "./use-unique-name-validation-fr.js";
31
32
  import { processConfigFr } from "./processConfigFr.js";
32
33
  import { genericValidationFr } from "./generic-validationFr.js";
@@ -59,6 +60,7 @@ export {
59
60
  parametersFr,
60
61
  processConfigFr,
61
62
  reportViewerFr,
63
+ specificParametersFr,
62
64
  tableFr,
63
65
  topBarFr,
64
66
  treeviewFinderFr,