@gridsuite/commons-ui 0.267.0 → 0.268.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 (93) hide show
  1. package/dist/components/composite/grid/grid-section.d.ts +5 -2
  2. package/dist/components/composite/grid/grid-section.js +56 -4
  3. package/dist/components/ui/reactHookForm/booleans/BooleanInput.js +1 -1
  4. package/dist/features/common/index.d.ts +7 -0
  5. package/dist/features/common/index.js +4 -0
  6. package/dist/features/common/renderTable-ExportCsv.d.ts +18 -0
  7. package/dist/features/common/renderTable-ExportCsv.js +136 -0
  8. package/dist/features/index.d.ts +5 -0
  9. package/dist/features/index.js +43 -2
  10. package/dist/features/network-modifications/index.d.ts +1 -0
  11. package/dist/features/network-modifications/index.js +33 -1
  12. package/dist/features/network-modifications/static-var-compensator/common/constants.d.ts +20 -0
  13. package/dist/features/network-modifications/static-var-compensator/common/constants.js +9 -0
  14. package/dist/features/network-modifications/static-var-compensator/common/index.d.ts +13 -0
  15. package/dist/features/network-modifications/static-var-compensator/common/index.js +20 -0
  16. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.d.ts +91 -0
  17. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.js +166 -0
  18. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.d.ts +8 -0
  19. package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.js +200 -0
  20. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.d.ts +66 -0
  21. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.js +149 -0
  22. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.d.ts +7 -0
  23. package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.js +153 -0
  24. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.d.ts +7 -0
  25. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.js +72 -0
  26. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.d.ts +7 -0
  27. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +44 -0
  28. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.d.ts +8 -0
  29. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.js +34 -0
  30. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.d.ts +9 -0
  31. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.js +100 -0
  32. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.d.ts +68 -0
  33. package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.js +1 -0
  34. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.d.ts +7 -0
  35. package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.js +161 -0
  36. package/dist/features/network-modifications/static-var-compensator/creation/index.d.ts +9 -0
  37. package/dist/features/network-modifications/static-var-compensator/creation/index.js +9 -0
  38. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.d.ts +8 -0
  39. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.js +105 -0
  40. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.d.ts +114 -0
  41. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.js +189 -0
  42. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.d.ts +34 -0
  43. package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.js +1 -0
  44. package/dist/features/network-modifications/static-var-compensator/index.d.ts +8 -0
  45. package/dist/features/network-modifications/static-var-compensator/index.js +27 -0
  46. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.d.ts +8 -0
  47. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.js +153 -0
  48. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.d.ts +20 -0
  49. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.js +40 -0
  50. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.d.ts +11 -0
  51. package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.js +1 -0
  52. package/dist/features/network-modifications/voltageLevel/coupling-device/index.d.ts +3 -0
  53. package/dist/features/network-modifications/voltageLevel/coupling-device/index.js +9 -0
  54. package/dist/features/network-modifications/voltageLevel/creation/index.js +1 -1
  55. package/dist/features/network-modifications/voltageLevel/index.d.ts +1 -0
  56. package/dist/features/network-modifications/voltageLevel/index.js +8 -1
  57. package/dist/features/network-modifications/voltageLevel/topology/CreateVoltageLevelTopologyForm.js +12 -2
  58. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.types.d.ts +1 -1
  59. package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.utils.d.ts +3 -3
  60. package/dist/features/results/constants.d.ts +7 -0
  61. package/dist/features/results/constants.js +4 -0
  62. package/dist/features/results/hooks/index.d.ts +7 -0
  63. package/dist/features/results/hooks/index.js +4 -0
  64. package/dist/features/results/hooks/useIntlResultStatusMessages.d.ts +19 -0
  65. package/dist/features/results/hooks/useIntlResultStatusMessages.js +23 -0
  66. package/dist/features/results/loadflow/index.d.ts +8 -0
  67. package/dist/features/results/loadflow/index.js +4 -0
  68. package/dist/features/results/loadflow/limit-violation-result.d.ts +2 -0
  69. package/dist/features/results/loadflow/limit-violation-result.js +134 -0
  70. package/dist/features/results/loadflow/load-flow-result.type.d.ts +29 -0
  71. package/dist/features/results/loadflow/load-flow-result.type.js +1 -0
  72. package/dist/features/results/securityanalysis/index.js +1 -2
  73. package/dist/features/results/securityanalysis/security-analysis-result-nmk.js +2 -1
  74. package/dist/features/results/securityanalysis/utils.d.ts +0 -2
  75. package/dist/features/results/securityanalysis/utils.js +0 -22
  76. package/dist/features/results/utils/index.d.ts +7 -0
  77. package/dist/features/results/utils/index.js +4 -0
  78. package/dist/features/results/utils/no-rows-message.d.ts +2 -0
  79. package/dist/features/results/utils/no-rows-message.js +24 -0
  80. package/dist/hooks/index.d.ts +1 -0
  81. package/dist/hooks/index.js +2 -0
  82. package/dist/hooks/useOpenLoaderShortWait.d.ts +18 -0
  83. package/dist/hooks/useOpenLoaderShortWait.js +19 -0
  84. package/dist/index.js +46 -1
  85. package/dist/translations/en/networkModificationsEn.d.ts +28 -0
  86. package/dist/translations/en/networkModificationsEn.js +30 -1
  87. package/dist/translations/fr/networkModificationsFr.d.ts +28 -0
  88. package/dist/translations/fr/networkModificationsFr.js +30 -1
  89. package/dist/utils/constants/fieldConstants.d.ts +19 -1
  90. package/dist/utils/constants/fieldConstants.js +18 -0
  91. package/dist/utils/index.d.ts +1 -0
  92. package/dist/utils/index.js +2 -0
  93. package/package.json +1 -1
@@ -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
@@ -143,6 +143,7 @@ export declare const networkModificationsFr: {
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 networkModificationsFr: {
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 networkModificationsFr: {
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 networkModificationsFr = {
137
137
  Setpoints: "Consignes",
138
138
  ActivePowerText: "Puissance active",
139
139
  ReactivePowerText: "Puissance réactive",
140
+ ReactivePowerRegulationText: "Réglage de réactif",
140
141
  RegulationTypeText: "Type de réglage",
141
142
  QPercentText: "Cœfficient de participation",
142
143
  RegulatingTerminalGenerator: "Terminal distant réglé",
@@ -282,6 +283,30 @@ const networkModificationsFr = {
282
283
  filter: "Filtre",
283
284
  G: "Conductance magnétisante",
284
285
  B: "Susceptance magnétisante",
286
+ maximumSusceptance: "Susceptance max",
287
+ minSusceptance: "Susceptance min",
288
+ maxQAtVnominal: "Q max à tension nominale",
289
+ minQAtNominalV: "Q min à tension nominale",
290
+ ModeAutomaton: "Mode",
291
+ StandbyAutomaton: "En veille",
292
+ StandbyNotAvailable: "La mise en veille n'est possible qu'en mode de réglage de tension",
293
+ LowVoltageSetpoint: "U consigne bas",
294
+ HighVoltageSetpoint: "U consigne haut",
295
+ LowVoltageThreshold: "U activation bas",
296
+ HighVoltageThreshold: "U activation haut",
297
+ AddAutomaton: "Ajouter un automate",
298
+ CreateStaticVarCompensator: "Créer un CSPR",
299
+ StaticVarCompensatorCreationError: "Erreur lors de la création d'un cspr",
300
+ StaticVarCompensatorErrorQFixGreaterThanQMax: "La valeur de Q Fixe doit être inférieure à la valeur de Q maximum",
301
+ StaticVarCompensatorErrorQFixLessThanQMin: "La valeur de Q Fixe doit être supérieure à la valeur de Q minimum",
302
+ StaticVarCompensatorErrorSFixGreaterThanSMax: "La valeur de Susceptance Fixe doit être inférieure à la valeur de susceptance maximum",
303
+ StaticVarCompensatorErrorSFixLessThanSMin: "La valeur de Susceptance Fixe doit être supérieure à la valeur de susceptance minimum",
304
+ StaticVarCompensatorConnectivityTab: "Connectivité",
305
+ StaticVarCompensatorSetPointsAndLimitsTab: "Consignes & Limites",
306
+ StaticVarCompensatorAutomatonTab: "Automate",
307
+ StaticVarCompensatorAdditionalInfosTab: "Compléments",
308
+ b0: "Susceptance fixe",
309
+ fixQAtNominalV: "Q fixe",
285
310
  // Tabs
286
311
  SubstationTab: "Site",
287
312
  ConnectivityTab: "Connectivité",
@@ -302,7 +327,11 @@ const networkModificationsFr = {
302
327
  builtNodeTooltipForDiagram: "Diagramme courant prenant en compte toutes les modifications réalisées",
303
328
  AtLeastOneSectionAdded: "Il faut ajouter au moins une section de jeu de barre",
304
329
  SectionCount: "Nombre de sections",
305
- VoltageLevelId: "ID Poste"
330
+ VoltageLevelId: "ID Poste",
331
+ // Voltage level coupling device creation
332
+ CreateCouplingDevice: "Ajouter un couplage ou un omnibus",
333
+ CouplingDeviceText: "Sections de jeu de barre",
334
+ CouplingDeviceBusBarSectionToolTipText: "Si les deux sections de barre sélectionnées ont des numéros de tronçon/section différents la modification crée un omnibus, autrement elle crée un couplage"
306
335
  };
307
336
  export {
308
337
  networkModificationsFr
@@ -65,7 +65,9 @@ export declare enum FieldConstants {
65
65
  LOADFLOW_PARAMETERS = "loadflowParameters",
66
66
  LOAD_TYPE = "loadType",
67
67
  MARGINAL_COST = "marginalCost",
68
+ MIN_Q_AT_NOMINAL_V = "minQAtNominalV",
68
69
  MAX_Q_AT_NOMINAL_V = "maxQAtNominalV",
70
+ MIN_SUSCEPTANCE = "minSusceptance",
69
71
  MAX_SUSCEPTANCE = "maxSusceptance",
70
72
  MAXIMUM_ACTIVE_POWER = "maximumActivePower",
71
73
  MAXIMUM_SECTION_COUNT = "maximumSectionCount",
@@ -191,5 +193,21 @@ export declare enum FieldConstants {
191
193
  TRANSIENT_REACTANCE = "directTransX",
192
194
  VOLTAGE_REGULATION_TYPE = "voltageRegulationType",
193
195
  VOLTAGE_SET_POINT = "voltageSetpoint",
194
- X = "x"
196
+ X = "x",
197
+ ADD_STAND_BY_AUTOMATON = "addStandbyAutomaton",
198
+ LOW_VOLTAGE_SET_POINT = "lowVoltageSetpoint",
199
+ HIGH_VOLTAGE_SET_POINT = "highVoltageSetpoint",
200
+ LOW_VOLTAGE_THRESHOLD = "lowVoltageThreshold",
201
+ HIGH_VOLTAGE_THRESHOLD = "highVoltageThreshold",
202
+ CHARACTERISTICS_CHOICE_AUTOMATON = "characteristicsChoiceAutomaton",
203
+ MIN_Q_AUTOMATON = "minQAutomaton",
204
+ MAX_Q_AUTOMATON = "maxQAutomaton",
205
+ MIN_S_AUTOMATON = "minSAutomaton",
206
+ MAX_S_AUTOMATON = "maxSAutomaton",
207
+ STAND_BY_AUTOMATON = "StandbyAutomaton",
208
+ AUTOMATON = "automaton",
209
+ SETPOINTS_LIMITS = "setpointsLimits",
210
+ VOLTAGE_REGULATION_MODE = "voltageRegulationMode",
211
+ B0 = "b0",
212
+ Q0 = "q0"
195
213
  }
@@ -59,7 +59,9 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
59
59
  FieldConstants2["LOADFLOW_PARAMETERS"] = "loadflowParameters";
60
60
  FieldConstants2["LOAD_TYPE"] = "loadType";
61
61
  FieldConstants2["MARGINAL_COST"] = "marginalCost";
62
+ FieldConstants2["MIN_Q_AT_NOMINAL_V"] = "minQAtNominalV";
62
63
  FieldConstants2["MAX_Q_AT_NOMINAL_V"] = "maxQAtNominalV";
64
+ FieldConstants2["MIN_SUSCEPTANCE"] = "minSusceptance";
63
65
  FieldConstants2["MAX_SUSCEPTANCE"] = "maxSusceptance";
64
66
  FieldConstants2["MAXIMUM_ACTIVE_POWER"] = "maximumActivePower";
65
67
  FieldConstants2["MAXIMUM_SECTION_COUNT"] = "maximumSectionCount";
@@ -186,6 +188,22 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
186
188
  FieldConstants2["VOLTAGE_REGULATION_TYPE"] = "voltageRegulationType";
187
189
  FieldConstants2["VOLTAGE_SET_POINT"] = "voltageSetpoint";
188
190
  FieldConstants2["X"] = "x";
191
+ FieldConstants2["ADD_STAND_BY_AUTOMATON"] = "addStandbyAutomaton";
192
+ FieldConstants2["LOW_VOLTAGE_SET_POINT"] = "lowVoltageSetpoint";
193
+ FieldConstants2["HIGH_VOLTAGE_SET_POINT"] = "highVoltageSetpoint";
194
+ FieldConstants2["LOW_VOLTAGE_THRESHOLD"] = "lowVoltageThreshold";
195
+ FieldConstants2["HIGH_VOLTAGE_THRESHOLD"] = "highVoltageThreshold";
196
+ FieldConstants2["CHARACTERISTICS_CHOICE_AUTOMATON"] = "characteristicsChoiceAutomaton";
197
+ FieldConstants2["MIN_Q_AUTOMATON"] = "minQAutomaton";
198
+ FieldConstants2["MAX_Q_AUTOMATON"] = "maxQAutomaton";
199
+ FieldConstants2["MIN_S_AUTOMATON"] = "minSAutomaton";
200
+ FieldConstants2["MAX_S_AUTOMATON"] = "maxSAutomaton";
201
+ FieldConstants2["STAND_BY_AUTOMATON"] = "StandbyAutomaton";
202
+ FieldConstants2["AUTOMATON"] = "automaton";
203
+ FieldConstants2["SETPOINTS_LIMITS"] = "setpointsLimits";
204
+ FieldConstants2["VOLTAGE_REGULATION_MODE"] = "voltageRegulationMode";
205
+ FieldConstants2["B0"] = "b0";
206
+ FieldConstants2["Q0"] = "q0";
189
207
  return FieldConstants2;
190
208
  })(FieldConstants || {});
191
209
  export {
@@ -20,3 +20,4 @@ export * from './types';
20
20
  export * from './ts-utils';
21
21
  export * from './validation-functions';
22
22
  export * from './directory-utils';
23
+ export * from './running-status';
@@ -38,6 +38,7 @@ import { ComputingType } from "./types/computing-type.js";
38
38
  import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./ts-utils.js";
39
39
  import { toNumber, validateValueIsANumber } from "./validation-functions.js";
40
40
  import { NO_ITEM_SELECTION_FOR_COPY } from "./directory-utils.js";
41
+ import { RunningStatus } from "./running-status.js";
41
42
  export {
42
43
  ACTIVE_LIMITS_MIN_MAX_INVALID,
43
44
  ALL_EQUIPMENTS,
@@ -136,6 +137,7 @@ export {
136
137
  REAL_PERCENTAGE,
137
138
  ReactivePowerAdornment,
138
139
  ReferenceType,
140
+ RunningStatus,
139
141
  SEARCH_EQUIPMENTS,
140
142
  SECTION_COUNT_MUST_BE_BETWEEN_ZERO_AND_MAXIMUM_SECTION_COUNT,
141
143
  SHORT_CIRCUIT_CURRENT_LIMIT_MUST_BE_GREATER_OR_EQUAL_TO_ZERO,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gridsuite/commons-ui",
3
- "version": "0.267.0",
3
+ "version": "0.268.0",
4
4
  "description": "common react components for gridsuite applications",
5
5
  "author": "gridsuite team",
6
6
  "homepage": "https://github.com/gridsuite",