@gridsuite/commons-ui 0.107.0 → 0.108.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 (115) hide show
  1. package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.js +10 -10
  2. package/dist/components/directoryItemSelector/DirectoryItemSelector.js +1 -0
  3. package/dist/components/dnd-table/dnd-table-add-rows-dialog.d.ts +13 -0
  4. package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +69 -0
  5. package/dist/components/dnd-table/dnd-table-bottom-left-buttons.d.ts +17 -0
  6. package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +48 -0
  7. package/dist/components/dnd-table/dnd-table-bottom-right-buttons.d.ts +17 -0
  8. package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +104 -0
  9. package/dist/components/dnd-table/dnd-table.d.ts +28 -0
  10. package/dist/components/dnd-table/dnd-table.js +394 -0
  11. package/dist/components/dnd-table/dnd-table.type.d.ts +51 -0
  12. package/dist/components/dnd-table/dnd-table.type.js +16 -0
  13. package/dist/components/dnd-table/index.d.ts +11 -0
  14. package/dist/components/dnd-table/index.js +14 -0
  15. package/dist/components/filter/HeaderFilterForm.js +4 -4
  16. package/dist/components/filter/expert/expertFilterConstants.d.ts +15 -0
  17. package/dist/components/filter/expert/expertFilterConstants.js +28 -0
  18. package/dist/components/filter/expert/expertFilterUtils.js +1 -1
  19. package/dist/components/index.d.ts +1 -0
  20. package/dist/components/index.js +57 -1
  21. package/dist/components/inputs/index.js +6 -0
  22. package/dist/components/inputs/reactHookForm/chip-items-input.d.ts +13 -0
  23. package/dist/components/inputs/reactHookForm/chip-items-input.js +129 -0
  24. package/dist/components/inputs/reactHookForm/index.d.ts +2 -0
  25. package/dist/components/inputs/reactHookForm/index.js +6 -0
  26. package/dist/components/inputs/reactHookForm/tableInputs/index.d.ts +8 -0
  27. package/dist/components/inputs/reactHookForm/tableInputs/index.js +6 -0
  28. package/dist/components/inputs/reactHookForm/tableInputs/table-numerical-input.d.ts +12 -0
  29. package/dist/components/inputs/reactHookForm/tableInputs/table-numerical-input.js +110 -0
  30. package/dist/components/inputs/reactHookForm/tableInputs/table-text-input.d.ts +8 -0
  31. package/dist/components/inputs/reactHookForm/tableInputs/table-text-input.js +43 -0
  32. package/dist/components/inputs/reactQueryBuilder/ValueEditor.js +4 -2
  33. package/dist/components/parameters/common/ProviderParam.js +6 -6
  34. package/dist/components/parameters/common/constant.d.ts +8 -0
  35. package/dist/components/parameters/common/constant.js +12 -1
  36. package/dist/components/parameters/common/index.js +3 -1
  37. package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +7 -7
  38. package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +6 -6
  39. package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +8 -8
  40. package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +11 -10
  41. package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +7 -7
  42. package/dist/components/parameters/common/widget/parameter-float.js +6 -6
  43. package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +11 -10
  44. package/dist/components/parameters/common/widget/parameter-line-slider.js +6 -6
  45. package/dist/components/parameters/index.d.ts +1 -0
  46. package/dist/components/parameters/index.js +39 -1
  47. package/dist/components/parameters/loadflow/load-flow-general-parameters.js +6 -6
  48. package/dist/components/parameters/loadflow/load-flow-parameter-field.js +6 -6
  49. package/dist/components/parameters/loadflow/load-flow-parameters-form.js +6 -6
  50. package/dist/components/parameters/loadflow/load-flow-parameters-header.js +6 -6
  51. package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +3 -3
  52. package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +2 -1
  53. package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +6 -6
  54. package/dist/components/parameters/network-visualizations/network-visualizations-form.js +7 -7
  55. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +3 -3
  56. package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +2 -2
  57. package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +12 -11
  58. package/dist/components/parameters/short-circuit/short-circuit-fields.js +5 -5
  59. package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +3 -3
  60. package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +6 -6
  61. package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +2 -2
  62. package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +11 -10
  63. package/dist/components/parameters/voltage-init/constants.d.ts +39 -0
  64. package/dist/components/parameters/voltage-init/constants.js +65 -0
  65. package/dist/components/parameters/voltage-init/equipment-selection-parameters.d.ts +7 -0
  66. package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +119 -0
  67. package/dist/components/parameters/voltage-init/general-parameters.d.ts +4 -0
  68. package/dist/components/parameters/voltage-init/general-parameters.js +112 -0
  69. package/dist/components/parameters/voltage-init/index.d.ts +10 -0
  70. package/dist/components/parameters/voltage-init/index.js +38 -0
  71. package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +32 -0
  72. package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +218 -0
  73. package/dist/components/parameters/voltage-init/voltage-init-form-utils.d.ts +4 -0
  74. package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +220 -0
  75. package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +2 -0
  76. package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +97 -0
  77. package/dist/components/parameters/voltage-init/voltage-init-parameters-form.d.ts +30 -0
  78. package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +150 -0
  79. package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.d.ts +8 -0
  80. package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +152 -0
  81. package/dist/components/parameters/voltage-init/voltage-init.type.d.ts +33 -0
  82. package/dist/components/parameters/voltage-init/voltage-init.type.js +8 -0
  83. package/dist/components/parameters/voltage-init/voltage-limits-parameters.d.ts +7 -0
  84. package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +188 -0
  85. package/dist/components/treeViewFinder/TreeViewFinder.d.ts +2 -0
  86. package/dist/index.js +69 -2
  87. package/dist/services/index.d.ts +1 -0
  88. package/dist/services/index.js +6 -2
  89. package/dist/services/study.d.ts +2 -0
  90. package/dist/services/study.js +15 -1
  91. package/dist/services/voltage-init.d.ts +4 -0
  92. package/dist/services/voltage-init.js +14 -0
  93. package/dist/translations/en/dndTableEn.d.ts +16 -0
  94. package/dist/translations/en/dndTableEn.js +13 -0
  95. package/dist/translations/en/filterExpertEn.d.ts +3 -0
  96. package/dist/translations/en/filterExpertEn.js +4 -1
  97. package/dist/translations/en/index.d.ts +1 -0
  98. package/dist/translations/en/index.js +2 -0
  99. package/dist/translations/en/parameters.d.ts +30 -0
  100. package/dist/translations/en/parameters.js +31 -1
  101. package/dist/translations/fr/dndTableFr.d.ts +16 -0
  102. package/dist/translations/fr/dndTableFr.js +13 -0
  103. package/dist/translations/fr/filterExpertFr.d.ts +3 -0
  104. package/dist/translations/fr/filterExpertFr.js +4 -1
  105. package/dist/translations/fr/index.d.ts +1 -0
  106. package/dist/translations/fr/index.js +2 -0
  107. package/dist/translations/fr/parameters.d.ts +31 -0
  108. package/dist/translations/fr/parameters.js +32 -1
  109. package/dist/utils/index.d.ts +1 -0
  110. package/dist/utils/index.js +3 -0
  111. package/dist/utils/types/fieldType.d.ts +3 -0
  112. package/dist/utils/types/fieldType.js +3 -0
  113. package/dist/utils/validation-functions.d.ts +8 -0
  114. package/dist/utils/validation-functions.js +23 -0
  115. package/package.json +1 -1
@@ -2,10 +2,12 @@ import { ReactElement } from 'react';
2
2
  import { ButtonProps, ModalProps } from '@mui/material';
3
3
  import { SimpleTreeViewClasses } from '@mui/x-tree-view';
4
4
  import { UUID } from 'crypto';
5
+ import { ElementType } from '../../utils';
5
6
  export declare const generateTreeViewFinderClass: (className: string) => string;
6
7
  export interface TreeViewFinderNodeProps {
7
8
  id: UUID;
8
9
  name: string;
10
+ type?: ElementType;
9
11
  description?: string;
10
12
  icon?: ReactElement;
11
13
  childrenCount?: number;
package/dist/index.js CHANGED
@@ -23,6 +23,11 @@ import { ElementSaveDialog } from "./components/dialogs/elementSaveDialog/Elemen
23
23
  import { ModifyElementSelection } from "./components/dialogs/modifyElementSelection/ModifyElementSelection.js";
24
24
  import { PopupConfirmationDialog } from "./components/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js";
25
25
  import { DirectoryItemSelector } from "./components/directoryItemSelector/DirectoryItemSelector.js";
26
+ import { DndTable } from "./components/dnd-table/dnd-table.js";
27
+ import { DndColumnType, MAX_ROWS_NUMBER, SELECTED } from "./components/dnd-table/dnd-table.type.js";
28
+ import { DndTableAddRowsDialog } from "./components/dnd-table/dnd-table-add-rows-dialog.js";
29
+ import { DndTableBottomLeftButtons } from "./components/dnd-table/dnd-table-bottom-left-buttons.js";
30
+ import { DndTableBottomRightButtons } from "./components/dnd-table/dnd-table-bottom-right-buttons.js";
26
31
  import { EquipmentItem } from "./components/elementSearch/elementItem/EquipmentItem.js";
27
32
  import { ElementSearchDialog } from "./components/elementSearch/elementSearchDialog/ElementSearchDialog.js";
28
33
  import { ElementSearchInput } from "./components/elementSearch/elementSearchInput/ElementSearchInput.js";
@@ -48,6 +53,7 @@ import "react/jsx-runtime";
48
53
  import "@mui/material";
49
54
  import "react-intl";
50
55
  import { SelectClearable } from "./components/inputs/SelectClearable.js";
56
+ import { ChipItemsInput } from "./components/inputs/reactHookForm/chip-items-input.js";
51
57
  import { DESCRIPTION_INPUT, DirectoryItemsInput, NAME } from "./components/inputs/reactHookForm/DirectoryItemsInput.js";
52
58
  import { RawReadOnlyInput } from "./components/inputs/reactHookForm/RawReadOnlyInput.js";
53
59
  import { BottomRightButtons } from "./components/inputs/reactHookForm/agGridTable/BottomRightButtons.js";
@@ -74,6 +80,8 @@ import { CountriesInput } from "./components/inputs/reactHookForm/selectInputs/C
74
80
  import { InputWithPopupConfirmation } from "./components/inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js";
75
81
  import { MuiSelectInput } from "./components/inputs/reactHookForm/selectInputs/MuiSelectInput.js";
76
82
  import { SelectInput } from "./components/inputs/reactHookForm/selectInputs/SelectInput.js";
83
+ import { TableNumericalInput } from "./components/inputs/reactHookForm/tableInputs/table-numerical-input.js";
84
+ import { TableTextInput } from "./components/inputs/reactHookForm/tableInputs/table-text-input.js";
77
85
  import { DescriptionField } from "./components/inputs/reactHookForm/text/DescriptionField.js";
78
86
  import { ExpandingTextField } from "./components/inputs/reactHookForm/text/ExpandingTextField.js";
79
87
  import { TextInput } from "./components/inputs/reactHookForm/text/TextInput.js";
@@ -117,7 +125,7 @@ import { LeftPanelOpenIcon } from "./components/icons/LeftPanelOpenIcon.js";
117
125
  import { LeftPanelCloseIcon } from "./components/icons/LeftPanelCloseIcon.js";
118
126
  import { DeviceHubIcon } from "./components/icons/DeviceHubIcon.js";
119
127
  import { ComputingType, formatComputingTypeLabel, isValidComputingType } from "./components/parameters/common/computing-type.js";
120
- import { PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, VOLTAGE_LEVEL } from "./components/parameters/common/constant.js";
128
+ import { PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, ReactivePowerAdornment, VOLTAGE_LEVEL, VoltageAdornment } from "./components/parameters/common/constant.js";
121
129
  import { LineSeparator } from "./components/parameters/common/line-separator.js";
122
130
  import { LabelledButton, SwitchWithLabel, TabPanel } from "./components/parameters/common/parameters.js";
123
131
  import { CreateParameterDialog } from "./components/parameters/common/parameters-creation-dialog.js";
@@ -146,6 +154,10 @@ import { LoadFlowParametersEditionDialog } from "./components/parameters/loadflo
146
154
  import { InitialVoltage, PredefinedParameters, SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE, SHORT_CIRCUIT_PREDEFINED_PARAMS, SHORT_CIRCUIT_WITH_FEEDER_RESULT, SHORT_CIRCUIT_WITH_LOADS, SHORT_CIRCUIT_WITH_NEUTRAL_POSITION, SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS, SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS, intlInitialVoltageProfileMode, intlPredefinedParametersOptions } from "./components/parameters/short-circuit/constants.js";
147
155
  import { ShortCircuitParametersInLine } from "./components/parameters/short-circuit/short-circuit-parameters-inline.js";
148
156
  import { ShortCircuitParametersEditionDialog } from "./components/parameters/short-circuit/short-circuit-parameters-dialog.js";
157
+ import { DEFAULT_GENERAL_APPLY_MODIFICATIONS, DEFAULT_REACTIVE_SLACKS_THRESHOLD, DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, DEFAULT_UPDATE_BUS_VOLTAGE, FILTERS, FILTER_ID, FILTER_NAME, GENERAL, GENERAL_APPLY_MODIFICATIONS, GENERATORS_SELECTION_TYPE, HIGH_VOLTAGE_LIMIT, ID, LEG_SIDE, LOW_VOLTAGE_LIMIT, PRIORITY, RATIO_TAP_CHANGER_POSITION, RATIO_TAP_CHANGER_TARGET_V, REACTIVE_SLACKS_THRESHOLD, SELECTION_TYPE, SHUNT_COMPENSATORS_SELECTION_TYPE, SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, TRANSFORMERS_SELECTION_TYPE, UPDATE_BUS_VOLTAGE, VARIABLE_Q_GENERATORS, VARIABLE_SHUNT_COMPENSATORS, VARIABLE_TRANSFORMERS, VOLTAGE_LIMITS_DEFAULT, VOLTAGE_LIMITS_MODIFICATION, VoltageInitTabValues } from "./components/parameters/voltage-init/constants.js";
158
+ import { EquipmentsSelectionType } from "./components/parameters/voltage-init/voltage-init.type.js";
159
+ import { VoltageInitParametersEditionDialog } from "./components/parameters/voltage-init/voltage-init-parameters-dialog.js";
160
+ import { VoltageInitParametersInLine } from "./components/parameters/voltage-init/voltage-init-parameters-inline.js";
149
161
  import { CustomMenuItem, CustomNestedMenuItem } from "./components/menus/custom-nested-menu.js";
150
162
  import { useStateBoolean } from "./hooks/customStates/useStateBoolean.js";
151
163
  import { useStateNumber } from "./hooks/customStates/useStateNumber.js";
@@ -167,9 +179,10 @@ import { createFilter, createParameter, fetchElementsInfos, saveFilter, updatePa
167
179
  import { fetchAppsMetadata, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isStudyMetadata } from "./services/appsMetadata.js";
168
180
  import { elementAlreadyExists, fetchDirectoryContent, fetchDirectoryElementPath, fetchRootFolders } from "./services/directory.js";
169
181
  import { PREFIX_STUDY_QUERIES, fetchLoadFlowParameters, getDefaultLoadFlowProvider, getLoadFlowDefaultLimitReductions, getLoadFlowProviders, getLoadFlowSpecificParametersDescription, getLoadFlowUrl, setLoadFlowParameters } from "./services/loadflow.js";
170
- import { exportFilter, getAvailableComponentLibraries, getStudyNetworkVisualizationsParameters, getStudyShortCircuitParameters, invalidateStudyShortCircuitStatus, setStudyNetworkVisualizationParameters, setStudyShortCircuitParameters } from "./services/study.js";
182
+ import { exportFilter, getAvailableComponentLibraries, getStudyNetworkVisualizationsParameters, getStudyShortCircuitParameters, invalidateStudyShortCircuitStatus, setStudyNetworkVisualizationParameters, setStudyShortCircuitParameters, updateVoltageInitParameters } from "./services/study.js";
171
183
  import { getNetworkVisualizationsParameters } from "./services/study-config.js";
172
184
  import { fetchCurrentAnnouncement, fetchUserDetails } from "./services/userAdmin.js";
185
+ import { getVoltageInitParameters, getVoltageInitUrl } from "./services/voltage-init.js";
173
186
  import { equalsArray } from "./utils/algos.js";
174
187
  import { FetchStatus } from "./utils/constants/fetchStatus.js";
175
188
  import { FieldConstants } from "./utils/constants/fieldConstants.js";
@@ -192,12 +205,14 @@ import { ParameterType } from "./utils/types/parameters.type.js";
192
205
  import { SolverTypeInfos } from "./utils/types/dynamic-simulation.type.js";
193
206
  import { EnergySource } from "./utils/types/non-evacuated-energy.type.js";
194
207
  import { DistributionType, SensitivityType } from "./utils/types/sensitivity-analysis.type.js";
208
+ import { toNumber, validateValueIsANumber } from "./utils/validation-functions.js";
195
209
  import "./utils/yupConfig.js";
196
210
  import { cardErrorBoundaryEn } from "./translations/en/cardErrorBoundaryEn.js";
197
211
  import { commonButtonEn } from "./translations/en/commonButtonEn.js";
198
212
  import { csvEn } from "./translations/en/csvEn.js";
199
213
  import { descriptionEn } from "./translations/en/descriptionEn.js";
200
214
  import { directoryItemsInputEn } from "./translations/en/directoryItemsInputEn.js";
215
+ import { dndTableEn } from "./translations/en/dndTableEn.js";
201
216
  import { elementSearchEn } from "./translations/en/elementSearchEn.js";
202
217
  import { equipmentSearchEn } from "./translations/en/equipmentSearchEn.js";
203
218
  import { equipmentsEn } from "./translations/en/equipmentsEn.js";
@@ -221,6 +236,7 @@ import { commonButtonFr } from "./translations/fr/commonButtonFr.js";
221
236
  import { csvFr } from "./translations/fr/csvFr.js";
222
237
  import { descriptionFr } from "./translations/fr/descriptionFr.js";
223
238
  import { directoryItemsInputFr } from "./translations/fr/directoryItemsInputFr.js";
239
+ import { dndTableFr } from "./translations/fr/dndTableFr.js";
224
240
  import { elementSearchFr } from "./translations/fr/elementSearchFr.js";
225
241
  import { equipmentSearchFr } from "./translations/fr/equipmentSearchFr.js";
226
242
  import { equipmentsFr } from "./translations/fr/equipmentsFr.js";
@@ -272,6 +288,7 @@ export {
272
288
  CardErrorBoundary,
273
289
  CheckBoxList,
274
290
  CheckboxInput,
291
+ ChipItemsInput,
275
292
  CombinatorSelector,
276
293
  CombinatorType,
277
294
  ComputingType,
@@ -295,8 +312,12 @@ export {
295
312
  DC,
296
313
  DC_POWER_FACTOR,
297
314
  DC_USE_TRANSFORMER_RATIO,
315
+ DEFAULT_GENERAL_APPLY_MODIFICATIONS,
298
316
  DEFAULT_LIMIT_REDUCTION_VALUE,
299
317
  DEFAULT_RANGE_VALUE,
318
+ DEFAULT_REACTIVE_SLACKS_THRESHOLD,
319
+ DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD,
320
+ DEFAULT_UPDATE_BUS_VOLTAGE,
300
321
  DEGREE,
301
322
  DESCRIPTION_INPUT,
302
323
  DIAGONAL_LABEL,
@@ -311,6 +332,11 @@ export {
311
332
  DirectoryItemSelector,
312
333
  DirectoryItemsInput,
313
334
  DistributionType,
335
+ DndColumnType,
336
+ DndTable,
337
+ DndTableAddRowsDialog,
338
+ DndTableBottomLeftButtons,
339
+ DndTableBottomRightButtons,
314
340
  ENERGY_SOURCE_OPTIONS,
315
341
  EQUIPMENT_TYPE,
316
342
  EXPERT_FILTER_EQUIPMENTS,
@@ -324,6 +350,7 @@ export {
324
350
  EnergySource,
325
351
  EquipmentItem,
326
352
  EquipmentType,
353
+ EquipmentsSelectionType,
327
354
  ErrorInLogoutAlert,
328
355
  ErrorInUserValidationAlert,
329
356
  ErrorInput,
@@ -334,8 +361,11 @@ export {
334
361
  ExplicitNamingFilterForm,
335
362
  ExtendedEquipmentType,
336
363
  FIELDS_OPTIONS,
364
+ FILTERS,
337
365
  FILTER_EQUIPMENTS,
338
366
  FILTER_EQUIPMENTS_ATTRIBUTES,
367
+ FILTER_ID,
368
+ FILTER_NAME,
339
369
  FetchStatus,
340
370
  FieldConstants,
341
371
  FieldErrorAlert,
@@ -346,14 +376,19 @@ export {
346
376
  FilterType,
347
377
  FlatParameters,
348
378
  FloatInput,
379
+ GENERAL,
380
+ GENERAL_APPLY_MODIFICATIONS,
381
+ GENERATORS_SELECTION_TYPE,
349
382
  GRIDSUITE_DEFAULT_PRECISION,
350
383
  Generator,
351
384
  GridLogo,
352
385
  GroupValueEditor,
386
+ HIGH_VOLTAGE_LIMIT,
353
387
  HVDC_AC_EMULATION,
354
388
  HelperPreviousValue,
355
389
  Hvdc,
356
390
  HvdcType,
391
+ ID,
357
392
  INIT_NAD_WITH_GEO_DATA,
358
393
  INTL_LINE_FLOW_MODE_OPTIONS,
359
394
  INTL_MAP_BASE_MAP_OPTIONS,
@@ -369,12 +404,14 @@ export {
369
404
  LANG_FRENCH,
370
405
  LANG_SYSTEM,
371
406
  LCC,
407
+ LEG_SIDE,
372
408
  LIGHT_THEME,
373
409
  LIMIT_DURATION_FORM,
374
410
  LIMIT_REDUCTIONS_FORM,
375
411
  LINE_FLOW_MODE,
376
412
  LOAD_TYPE_OPTIONS,
377
413
  LOGOUT_ERROR,
414
+ LOW_VOLTAGE_LIMIT,
378
415
  LabelledButton,
379
416
  LeftPanelCloseIcon,
380
417
  LeftPanelOpenIcon,
@@ -396,6 +433,7 @@ export {
396
433
  MAP_BASE_MAP,
397
434
  MAP_MANUAL_REFRESH,
398
435
  MAX_CHAR_DESCRIPTION,
436
+ MAX_ROWS_NUMBER,
399
437
  MAX_VALUE_ALLOWED_FOR_LIMIT_REDUCTION,
400
438
  MEGA_VAR,
401
439
  MEGA_VOLT_AMPERE,
@@ -449,6 +487,7 @@ export {
449
487
  PREFIX_DIRECTORY_NOTIFICATION_WS,
450
488
  PREFIX_STUDY_NOTIFICATION_WS,
451
489
  PREFIX_STUDY_QUERIES,
490
+ PRIORITY,
452
491
  PROVIDER,
453
492
  ParameterFloat,
454
493
  ParameterGroup,
@@ -461,6 +500,9 @@ export {
461
500
  PropertyValueEditor,
462
501
  ProviderParam,
463
502
  RATIO_REGULATION_MODE_OPTIONS,
503
+ RATIO_TAP_CHANGER_POSITION,
504
+ RATIO_TAP_CHANGER_TARGET_V,
505
+ REACTIVE_SLACKS_THRESHOLD,
464
506
  READ_SLACK_BUS,
465
507
  REGULATION_TYPE_OPTIONS,
466
508
  RESET_AUTHENTICATION_ROUTER_ERROR,
@@ -469,9 +511,12 @@ export {
469
511
  RangeInput,
470
512
  RangeType,
471
513
  RawReadOnlyInput,
514
+ ReactivePowerAdornment,
472
515
  RemoveButton,
473
516
  RuleValueEditor,
474
517
  SEARCH_EQUIPMENTS,
518
+ SELECTED,
519
+ SELECTION_TYPE,
475
520
  SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE,
476
521
  SHORT_CIRCUIT_PREDEFINED_PARAMS,
477
522
  SHORT_CIRCUIT_WITH_FEEDER_RESULT,
@@ -480,6 +525,8 @@ export {
480
525
  SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS,
481
526
  SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS,
482
527
  SHOW_AUTH_INFO_LOGIN,
528
+ SHUNT_COMPENSATORS_SELECTION_TYPE,
529
+ SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD,
483
530
  SHUNT_COMPENSATOR_TYPE_OPTIONS,
484
531
  SHUNT_COMPENSATOR_VOLTAGE_CONTROL_ON,
485
532
  SIEMENS,
@@ -505,11 +552,14 @@ export {
505
552
  SwitchInput,
506
553
  SwitchWithLabel,
507
554
  TAB_INFO,
555
+ TRANSFORMERS_SELECTION_TYPE,
508
556
  TRANSFORMER_VOLTAGE_CONTROL_ON,
509
557
  TWT_SPLIT_SHUNT_ADMITTANCE,
510
558
  TYPE_TAG_MAX_SIZE,
511
559
  TabPanel,
512
560
  TabValues,
561
+ TableNumericalInput,
562
+ TableTextInput,
513
563
  TagRenderer,
514
564
  TextFieldWithAdornment,
515
565
  TextInput,
@@ -520,19 +570,29 @@ export {
520
570
  TreeViewFinder,
521
571
  TwoWindingTransfo,
522
572
  UNAUTHORIZED_USER_INFO,
573
+ UPDATE_BUS_VOLTAGE,
523
574
  USER,
524
575
  USER_VALIDATION_ERROR,
525
576
  USE_REACTIVE_LIMITS,
526
577
  UnauthorizedAccessAlert,
527
578
  UniqueNameInput,
528
579
  UserManagerMock,
580
+ VARIABLE_Q_GENERATORS,
581
+ VARIABLE_SHUNT_COMPENSATORS,
582
+ VARIABLE_TRANSFORMERS,
529
583
  VL_TAG_MAX_SIZE,
530
584
  VOLTAGE_INIT_MODE,
531
585
  VOLTAGE_LEVEL,
532
586
  VOLTAGE_LEVELS_FORM,
587
+ VOLTAGE_LIMITS_DEFAULT,
588
+ VOLTAGE_LIMITS_MODIFICATION,
533
589
  VSC,
534
590
  ValueEditor,
535
591
  ValueSelector,
592
+ VoltageAdornment,
593
+ VoltageInitParametersEditionDialog,
594
+ VoltageInitParametersInLine,
595
+ VoltageInitTabValues,
536
596
  VoltageLevel,
537
597
  WRITE_SLACK_BUS,
538
598
  alertThresholdMarks,
@@ -559,6 +619,8 @@ export {
559
619
  directoryItemsInputEn,
560
620
  directoryItemsInputFr,
561
621
  dispatchUser,
622
+ dndTableEn,
623
+ dndTableFr,
562
624
  elementAlreadyExists,
563
625
  elementSearchEn,
564
626
  elementSearchFr,
@@ -624,6 +686,8 @@ export {
624
686
  getTabIndicatorStyle,
625
687
  getTabStyle,
626
688
  getUserToken,
689
+ getVoltageInitParameters,
690
+ getVoltageInitUrl,
627
691
  gridItem,
628
692
  handleSigninCallback,
629
693
  handleSilentRenewCallback,
@@ -692,6 +756,7 @@ export {
692
756
  toFormValueSaParameters,
693
757
  toFormValuesLimitReductions,
694
758
  toNestedGlobalSelectors,
759
+ toNumber,
695
760
  topBarEn,
696
761
  topBarFr,
697
762
  treeviewFinderEn,
@@ -700,6 +765,7 @@ export {
700
765
  unitToMicroUnit,
701
766
  unscrollableDialogStyles,
702
767
  updateParameter,
768
+ updateVoltageInitParameters,
703
769
  useConfidentialityWarning,
704
770
  useConvertValue,
705
771
  useCustomFormContext,
@@ -720,5 +786,6 @@ export {
720
786
  useStateBoolean,
721
787
  useStateNumber,
722
788
  useValid,
789
+ validateValueIsANumber,
723
790
  yup as yupConfig
724
791
  };
@@ -12,3 +12,4 @@ export * from './loadflow';
12
12
  export * from './study';
13
13
  export * from './study-config';
14
14
  export * from './userAdmin';
15
+ export * from './voltage-init';
@@ -3,9 +3,10 @@ import { createFilter, createParameter, fetchElementsInfos, saveFilter, updatePa
3
3
  import { fetchAppsMetadata, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isStudyMetadata } from "./appsMetadata.js";
4
4
  import { elementAlreadyExists, fetchDirectoryContent, fetchDirectoryElementPath, fetchRootFolders } from "./directory.js";
5
5
  import { PREFIX_STUDY_QUERIES, fetchLoadFlowParameters, getDefaultLoadFlowProvider, getLoadFlowDefaultLimitReductions, getLoadFlowProviders, getLoadFlowSpecificParametersDescription, getLoadFlowUrl, setLoadFlowParameters } from "./loadflow.js";
6
- import { exportFilter, getAvailableComponentLibraries, getStudyNetworkVisualizationsParameters, getStudyShortCircuitParameters, invalidateStudyShortCircuitStatus, setStudyNetworkVisualizationParameters, setStudyShortCircuitParameters } from "./study.js";
6
+ import { exportFilter, getAvailableComponentLibraries, getStudyNetworkVisualizationsParameters, getStudyShortCircuitParameters, invalidateStudyShortCircuitStatus, setStudyNetworkVisualizationParameters, setStudyShortCircuitParameters, updateVoltageInitParameters } from "./study.js";
7
7
  import { getNetworkVisualizationsParameters } from "./study-config.js";
8
8
  import { fetchCurrentAnnouncement, fetchUserDetails } from "./userAdmin.js";
9
+ import { getVoltageInitParameters, getVoltageInitUrl } from "./voltage-init.js";
9
10
  export {
10
11
  PREFIX_STUDY_QUERIES,
11
12
  backendFetch,
@@ -38,11 +39,14 @@ export {
38
39
  getRequestParamFromList,
39
40
  getStudyNetworkVisualizationsParameters,
40
41
  getStudyShortCircuitParameters,
42
+ getVoltageInitParameters,
43
+ getVoltageInitUrl,
41
44
  invalidateStudyShortCircuitStatus,
42
45
  isStudyMetadata,
43
46
  saveFilter,
44
47
  setLoadFlowParameters,
45
48
  setStudyNetworkVisualizationParameters,
46
49
  setStudyShortCircuitParameters,
47
- updateParameter
50
+ updateParameter,
51
+ updateVoltageInitParameters
48
52
  };
@@ -1,6 +1,7 @@
1
1
  import { UUID } from 'crypto';
2
2
  import { NetworkVisualizationParameters } from '../components/parameters/network-visualizations/network-visualizations.types';
3
3
  import { ShortCircuitParameters, ShortCircuitParametersInfos } from '../components/parameters/short-circuit/short-circuit-parameters.type';
4
+ import { VoltageInitStudyParameters } from '../components/parameters/voltage-init/voltage-init.type';
4
5
  export declare function exportFilter(studyUuid: UUID, filterUuid?: UUID, token?: string): Promise<any>;
5
6
  export declare function getAvailableComponentLibraries(): Promise<string[]>;
6
7
  export declare function getStudyNetworkVisualizationsParameters(studyUuid: UUID): Promise<NetworkVisualizationParameters>;
@@ -8,3 +9,4 @@ export declare function setStudyNetworkVisualizationParameters(studyUuid: UUID,
8
9
  export declare function getStudyShortCircuitParameters(studyUuid: UUID): Promise<ShortCircuitParametersInfos>;
9
10
  export declare function setStudyShortCircuitParameters(studyUuid: UUID, newParams: ShortCircuitParameters): Promise<Response>;
10
11
  export declare function invalidateStudyShortCircuitStatus(studyUuid: UUID): Promise<Response>;
12
+ export declare function updateVoltageInitParameters(studyUuid: UUID | null, newParams: VoltageInitStudyParameters): Promise<Response>;
@@ -51,6 +51,19 @@ function invalidateStudyShortCircuitStatus(studyUuid) {
51
51
  method: "PUT"
52
52
  });
53
53
  }
54
+ function updateVoltageInitParameters(studyUuid, newParams) {
55
+ console.info("set study voltage init parameters");
56
+ const url = `${PREFIX_STUDY_QUERIES}/v1/studies/${studyUuid}/voltage-init/parameters`;
57
+ console.debug(url);
58
+ return backendFetch(url, {
59
+ method: "POST",
60
+ headers: {
61
+ Accept: "application/json",
62
+ "Content-Type": "application/json"
63
+ },
64
+ body: JSON.stringify(newParams)
65
+ });
66
+ }
54
67
  export {
55
68
  exportFilter,
56
69
  getAvailableComponentLibraries,
@@ -58,5 +71,6 @@ export {
58
71
  getStudyShortCircuitParameters,
59
72
  invalidateStudyShortCircuitStatus,
60
73
  setStudyNetworkVisualizationParameters,
61
- setStudyShortCircuitParameters
74
+ setStudyShortCircuitParameters,
75
+ updateVoltageInitParameters
62
76
  };
@@ -0,0 +1,4 @@
1
+ import { UUID } from 'crypto';
2
+ import { VoltageInitParameters } from '../components/parameters/voltage-init/voltage-init.type';
3
+ export declare function getVoltageInitUrl(): string;
4
+ export declare function getVoltageInitParameters(parameterUuid: UUID): Promise<VoltageInitParameters>;
@@ -0,0 +1,14 @@
1
+ import { backendFetchJson } from "./utils.js";
2
+ function getVoltageInitUrl() {
3
+ return `${"api/gateway"}/voltage-init/v1/`;
4
+ }
5
+ function getVoltageInitParameters(parameterUuid) {
6
+ console.info("get voltage init parameters");
7
+ const getVoltageInitParams = `${getVoltageInitUrl()}parameters/${encodeURIComponent(parameterUuid)}`;
8
+ console.debug(getVoltageInitParams);
9
+ return backendFetchJson(getVoltageInitParams);
10
+ }
11
+ export {
12
+ getVoltageInitParameters,
13
+ getVoltageInitUrl
14
+ };
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Copyright (c) 2025, 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 dndTableEn: {
8
+ DndAddRows: string;
9
+ DndDeleteRows: string;
10
+ MoveUpRows: string;
11
+ MoveDownRows: string;
12
+ DragAndDrop: string;
13
+ AddRowsDialogTitle: string;
14
+ AddRowsButton: string;
15
+ MaximumRowNumberError: string;
16
+ };
@@ -0,0 +1,13 @@
1
+ const dndTableEn = {
2
+ DndAddRows: "Add",
3
+ DndDeleteRows: "Delete",
4
+ MoveUpRows: "Move up",
5
+ MoveDownRows: "Move down",
6
+ DragAndDrop: "Drag and Drop",
7
+ AddRowsDialogTitle: "How many rows do you want to add ?",
8
+ AddRowsButton: "Add",
9
+ MaximumRowNumberError: "The number of rows must not exceed the value {value}"
10
+ };
11
+ export {
12
+ dndTableEn
13
+ };
@@ -188,4 +188,7 @@ export declare const filterExpertEn: {
188
188
  lowShortCircuitCurrentLimit: string;
189
189
  highShortCircuitCurrentLimit: string;
190
190
  valuesList: string;
191
+ substationId: string;
192
+ substationId1: string;
193
+ substationId2: string;
191
194
  };
@@ -181,7 +181,10 @@ const filterExpertEn = {
181
181
  changeOperatorMessage: "The operator will be changed and will be applied to all the criteria already created in the group.",
182
182
  lowShortCircuitCurrentLimit: "Low short-circuit current limit",
183
183
  highShortCircuitCurrentLimit: "High short-circuit current limit",
184
- valuesList: "Values list"
184
+ valuesList: "Values list",
185
+ substationId: "Substation ID",
186
+ substationId1: "Substation ID 1",
187
+ substationId2: "Substation ID 2"
185
188
  };
186
189
  export {
187
190
  filterExpertEn
@@ -9,6 +9,7 @@ export * from './commonButtonEn';
9
9
  export * from './csvEn';
10
10
  export * from './descriptionEn';
11
11
  export * from './directoryItemsInputEn';
12
+ export * from './dndTableEn';
12
13
  export * from './elementSearchEn';
13
14
  export * from './equipmentSearchEn';
14
15
  export * from './equipmentsEn';
@@ -3,6 +3,7 @@ import { commonButtonEn } from "./commonButtonEn.js";
3
3
  import { csvEn } from "./csvEn.js";
4
4
  import { descriptionEn } from "./descriptionEn.js";
5
5
  import { directoryItemsInputEn } from "./directoryItemsInputEn.js";
6
+ import { dndTableEn } from "./dndTableEn.js";
6
7
  import { elementSearchEn } from "./elementSearchEn.js";
7
8
  import { equipmentSearchEn } from "./equipmentSearchEn.js";
8
9
  import { equipmentsEn } from "./equipmentsEn.js";
@@ -28,6 +29,7 @@ export {
28
29
  csvEn,
29
30
  descriptionEn,
30
31
  directoryItemsInputEn,
32
+ dndTableEn,
31
33
  elementSearchEn,
32
34
  equipmentSearchEn,
33
35
  equipmentsEn,
@@ -116,4 +116,34 @@ export declare const parametersEn: {
116
116
  nominalInitialVoltageProfileMode: string;
117
117
  cei909InitialVoltageProfileMode: string;
118
118
  Or: string;
119
+ updateVoltageInitParametersError: string;
120
+ VoltageInitParametersGeneralTabLabel: string;
121
+ VoltageInitParametersGeneralApplyModificationsLabel: string;
122
+ VoltageInitParametersGeneralSaveInfo: string;
123
+ VoltageInitParametersGeneralUpdateBusVoltageLabel: string;
124
+ VoltageInitParametersEquipmentsSelectionAlert: string;
125
+ VoltageLimits: string;
126
+ VoltageLevelFilter: string;
127
+ LowVoltageLimitDefault: string;
128
+ HighVoltageLimitDefault: string;
129
+ LowVoltageLimitAdjustment: string;
130
+ HighVoltageLimitAdjustment: string;
131
+ VoltageLevelFilterTooltip: string;
132
+ FilterInputMinError: string;
133
+ EquipmentSelection: string;
134
+ ReactiveSlacksThreshold: string;
135
+ ReactiveSlacksThresholdMustBeGreaterOrEqualToZero: string;
136
+ ShuntCompensatorActivationThreshold: string;
137
+ ShuntCompensatorActivationThresholdMustBeGreaterOrEqualToZero: string;
138
+ ShuntCompensatorActivationThresholdDescription: string;
139
+ VoltageInitParametersError: string;
140
+ AdjustExistingLimits: string;
141
+ AdjustExistingLimitsInfo: string;
142
+ SetDefaultLimits: string;
143
+ allExcept: string;
144
+ noneExcept: string;
145
+ FiltersListsSelection: string;
146
+ VariableGenerators: string;
147
+ VariableTransformers: string;
148
+ VariableShuntCompensators: string;
119
149
  };
@@ -109,7 +109,37 @@ const parametersEn = {
109
109
  iscMinWithNominalVoltageMapPredefinedParams: "ISC min with nominal voltage profile",
110
110
  nominalInitialVoltageProfileMode: "Nominal",
111
111
  cei909InitialVoltageProfileMode: "IEC 909",
112
- Or: "or"
112
+ Or: "or",
113
+ updateVoltageInitParametersError: "An error occurred while updating the voltage profile initialization parameters",
114
+ VoltageInitParametersGeneralTabLabel: "General",
115
+ VoltageInitParametersGeneralApplyModificationsLabel: "Automatically apply voltage init modification",
116
+ VoltageInitParametersGeneralSaveInfo: "This option won't be saved and will be set back to its default value when choosing settings from GridExplore",
117
+ VoltageInitParametersGeneralUpdateBusVoltageLabel: "Update bus voltage",
118
+ VoltageInitParametersEquipmentsSelectionAlert: "Static var compensators and VSC converter stations are always considered variable",
119
+ VoltageLimits: "Voltage limits",
120
+ VoltageLevelFilter: "Voltage level filter",
121
+ LowVoltageLimitDefault: "Low voltage limit default value",
122
+ HighVoltageLimitDefault: "High voltage limit default value",
123
+ LowVoltageLimitAdjustment: "Low voltage limit adjustment",
124
+ HighVoltageLimitAdjustment: "High voltage limit adjustment",
125
+ VoltageLevelFilterTooltip: "User entries are applied one after another starting at the top of the list. If a voltage level is included in more than one filter, an entry can therefore be replaced by a subsequent entry",
126
+ FilterInputMinError: "You must pick at least one filter",
127
+ EquipmentSelection: "Equipment selection",
128
+ ReactiveSlacksThreshold: "Alert threshold on reactive slacks",
129
+ ReactiveSlacksThresholdMustBeGreaterOrEqualToZero: "The threshold must be greater or equal to 0",
130
+ ShuntCompensatorActivationThreshold: "Alert threshold on shunt compensator activation",
131
+ ShuntCompensatorActivationThresholdMustBeGreaterOrEqualToZero: "The threshold must be greater or equal to 0",
132
+ ShuntCompensatorActivationThresholdDescription: "Threshold (in MVar) above which the difference between discretized and optimal value for shunt compensator activation is considered significant (and will thus be recorded in the functional logs)",
133
+ VoltageInitParametersError: "An error occurred while updating the voltage profile initialization parameters",
134
+ AdjustExistingLimits: "Adjust existing limits",
135
+ AdjustExistingLimitsInfo: "Please enter a positive number in order to increase an existing voltage limit and a negative number in order to decrease an existing voltage limit (new limit = existing limit + user input).",
136
+ SetDefaultLimits: "Default values to fill missing limits",
137
+ allExcept: "All except",
138
+ noneExcept: "None except",
139
+ FiltersListsSelection: "Filters lists selection",
140
+ VariableGenerators: "Generators with variable reactive power",
141
+ VariableTransformers: "Variable transformers",
142
+ VariableShuntCompensators: "Variable shunt compensators"
113
143
  };
114
144
  export {
115
145
  parametersEn
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Copyright (c) 2025, 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 dndTableFr: {
8
+ DndAddRows: string;
9
+ DndDeleteRows: string;
10
+ MoveUpRows: string;
11
+ MoveDownRows: string;
12
+ DragAndDrop: string;
13
+ AddRowsDialogTitle: string;
14
+ AddRowsButton: string;
15
+ MaximumRowNumberError: string;
16
+ };
@@ -0,0 +1,13 @@
1
+ const dndTableFr = {
2
+ DndAddRows: "Ajouter",
3
+ DndDeleteRows: "Supprimer",
4
+ MoveUpRows: "Monter",
5
+ MoveDownRows: "Descendre",
6
+ DragAndDrop: "Glisser-déposer",
7
+ AddRowsDialogTitle: "Combien de lignes voulez-vous ajouter ?",
8
+ AddRowsButton: "Ajouter",
9
+ MaximumRowNumberError: "Le nombre de lignes ne doit pas dépasser la valeur {value}"
10
+ };
11
+ export {
12
+ dndTableFr
13
+ };
@@ -188,4 +188,7 @@ export declare const filterExpertFr: {
188
188
  lowShortCircuitCurrentLimit: string;
189
189
  highShortCircuitCurrentLimit: string;
190
190
  valuesList: string;
191
+ substationId: string;
192
+ substationId1: string;
193
+ substationId2: string;
191
194
  };
@@ -181,7 +181,10 @@ const filterExpertFr = {
181
181
  changeOperatorMessage: "L'opérateur sera modifié et s'appliquera sur tous les critères déjà créés dans le groupe.",
182
182
  lowShortCircuitCurrentLimit: "Limite ICC min",
183
183
  highShortCircuitCurrentLimit: "Limite ICC max",
184
- valuesList: "Liste de valeurs"
184
+ valuesList: "Liste de valeurs",
185
+ substationId: "ID Site",
186
+ substationId1: "ID Site 1",
187
+ substationId2: "ID Site 2"
185
188
  };
186
189
  export {
187
190
  filterExpertFr
@@ -9,6 +9,7 @@ export * from './commonButtonFr';
9
9
  export * from './csvFr';
10
10
  export * from './descriptionFr';
11
11
  export * from './directoryItemsInputFr';
12
+ export * from './dndTableFr';
12
13
  export * from './elementSearchFr';
13
14
  export * from './equipmentSearchFr';
14
15
  export * from './equipmentsFr';
@@ -3,6 +3,7 @@ import { commonButtonFr } from "./commonButtonFr.js";
3
3
  import { csvFr } from "./csvFr.js";
4
4
  import { descriptionFr } from "./descriptionFr.js";
5
5
  import { directoryItemsInputFr } from "./directoryItemsInputFr.js";
6
+ import { dndTableFr } from "./dndTableFr.js";
6
7
  import { elementSearchFr } from "./elementSearchFr.js";
7
8
  import { equipmentSearchFr } from "./equipmentSearchFr.js";
8
9
  import { equipmentsFr } from "./equipmentsFr.js";
@@ -28,6 +29,7 @@ export {
28
29
  csvFr,
29
30
  descriptionFr,
30
31
  directoryItemsInputFr,
32
+ dndTableFr,
31
33
  elementSearchFr,
32
34
  equipmentSearchFr,
33
35
  equipmentsFr,