@gridsuite/commons-ui 0.266.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.
- package/dist/components/composite/grid/grid-section.d.ts +5 -2
- package/dist/components/composite/grid/grid-section.js +56 -4
- package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-autocomplete.js +2 -1
- package/dist/components/ui/reactHookForm/CheckboxNullableInput.js +4 -2
- package/dist/components/ui/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js +3 -2
- package/dist/components/ui/reactHookForm/booleans/BooleanInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/booleans/BooleanInput.js +5 -7
- package/dist/components/ui/reactHookForm/tableInputs/table-numerical-input.js +4 -2
- package/dist/components/ui/reactHookForm/tableInputs/table-text-input.d.ts +1 -1
- package/dist/components/ui/reactHookForm/tableInputs/table-text-input.js +2 -3
- package/dist/components/ui/reactHookForm/text/ExpandingTextField.js +15 -13
- package/dist/components/ui/reactHookForm/text/TextInput.js +4 -2
- package/dist/components/ui/reactHookForm/text/UniqueNameInput.js +4 -2
- package/dist/components/ui/reactHookForm/utils/TextFieldWithAdornment.js +2 -1
- package/dist/features/common/index.d.ts +7 -0
- package/dist/features/common/index.js +4 -0
- package/dist/features/common/renderTable-ExportCsv.d.ts +18 -0
- package/dist/features/common/renderTable-ExportCsv.js +136 -0
- package/dist/features/index.d.ts +5 -0
- package/dist/features/index.js +50 -2
- package/dist/features/network-modifications/common/connectivity/connectivity.type.d.ts +1 -1
- package/dist/features/network-modifications/index.d.ts +1 -0
- package/dist/features/network-modifications/index.js +40 -1
- package/dist/features/network-modifications/static-var-compensator/common/constants.d.ts +20 -0
- package/dist/features/network-modifications/static-var-compensator/common/constants.js +9 -0
- package/dist/features/network-modifications/static-var-compensator/common/index.d.ts +13 -0
- package/dist/features/network-modifications/static-var-compensator/common/index.js +20 -0
- package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.d.ts +91 -0
- package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form-utils.js +166 -0
- package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.d.ts +8 -0
- package/dist/features/network-modifications/static-var-compensator/common/set-points-limits-form.js +200 -0
- package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.d.ts +66 -0
- package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form-utils.js +149 -0
- package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.d.ts +7 -0
- package/dist/features/network-modifications/static-var-compensator/common/standby-automaton-form.js +153 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.d.ts +7 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-header.js +72 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.d.ts +7 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-dialog-tabs.js +44 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.d.ts +8 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tab-utils.js +34 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.d.ts +9 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator-tabs-content.js +100 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.d.ts +68 -0
- package/dist/features/network-modifications/static-var-compensator/common/static-var-compensator.types.js +1 -0
- package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.d.ts +7 -0
- package/dist/features/network-modifications/static-var-compensator/common/susceptance-area.js +161 -0
- package/dist/features/network-modifications/static-var-compensator/creation/index.d.ts +9 -0
- package/dist/features/network-modifications/static-var-compensator/creation/index.js +9 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.d.ts +8 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-form.js +105 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.d.ts +114 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation-utils.js +189 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.d.ts +34 -0
- package/dist/features/network-modifications/static-var-compensator/creation/static-var-compensator-creation.types.js +1 -0
- package/dist/features/network-modifications/static-var-compensator/index.d.ts +8 -0
- package/dist/features/network-modifications/static-var-compensator/index.js +27 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.d.ts +8 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-form.js +153 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.d.ts +20 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation-utils.js +40 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.d.ts +11 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/coupling-device-creation.types.js +1 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/index.d.ts +3 -0
- package/dist/features/network-modifications/voltageLevel/coupling-device/index.js +9 -0
- package/dist/features/network-modifications/voltageLevel/creation/index.js +1 -1
- package/dist/features/network-modifications/voltageLevel/index.d.ts +2 -0
- package/dist/features/network-modifications/voltageLevel/index.js +15 -1
- package/dist/features/network-modifications/voltageLevel/topology/CreateVoltageLevelTopologyForm.d.ts +6 -0
- package/dist/features/network-modifications/voltageLevel/topology/CreateVoltageLevelTopologyForm.js +145 -0
- package/dist/features/network-modifications/voltageLevel/topology/index.d.ts +9 -0
- package/dist/features/network-modifications/voltageLevel/topology/index.js +9 -0
- package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.types.d.ts +8 -0
- package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.types.js +1 -0
- package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.utils.d.ts +25 -0
- package/dist/features/network-modifications/voltageLevel/topology/voltageLevelTopologyCreation.utils.js +48 -0
- package/dist/features/results/constants.d.ts +7 -0
- package/dist/features/results/constants.js +4 -0
- package/dist/features/results/hooks/index.d.ts +7 -0
- package/dist/features/results/hooks/index.js +4 -0
- package/dist/features/results/hooks/useIntlResultStatusMessages.d.ts +19 -0
- package/dist/features/results/hooks/useIntlResultStatusMessages.js +23 -0
- package/dist/features/results/loadflow/index.d.ts +8 -0
- package/dist/features/results/loadflow/index.js +4 -0
- package/dist/features/results/loadflow/limit-violation-result.d.ts +2 -0
- package/dist/features/results/loadflow/limit-violation-result.js +134 -0
- package/dist/features/results/loadflow/load-flow-result.type.d.ts +29 -0
- package/dist/features/results/loadflow/load-flow-result.type.js +1 -0
- package/dist/features/results/securityanalysis/index.js +1 -2
- package/dist/features/results/securityanalysis/security-analysis-result-nmk.js +2 -1
- package/dist/features/results/securityanalysis/utils.d.ts +0 -2
- package/dist/features/results/securityanalysis/utils.js +0 -22
- package/dist/features/results/utils/index.d.ts +7 -0
- package/dist/features/results/utils/index.js +4 -0
- package/dist/features/results/utils/no-rows-message.d.ts +2 -0
- package/dist/features/results/utils/no-rows-message.js +24 -0
- package/dist/hooks/index.d.ts +1 -0
- package/dist/hooks/index.js +2 -0
- package/dist/hooks/useOpenLoaderShortWait.d.ts +18 -0
- package/dist/hooks/useOpenLoaderShortWait.js +19 -0
- package/dist/index.js +53 -1
- package/dist/translations/en/networkModificationsEn.d.ts +35 -0
- package/dist/translations/en/networkModificationsEn.js +38 -1
- package/dist/translations/fr/networkModificationsFr.d.ts +35 -0
- package/dist/translations/fr/networkModificationsFr.js +38 -1
- package/dist/utils/constants/fieldConstants.d.ts +28 -1
- package/dist/utils/constants/fieldConstants.js +27 -0
- package/dist/utils/index.d.ts +1 -0
- package/dist/utils/index.js +2 -0
- 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;
|
|
@@ -300,4 +325,14 @@ export declare const networkModificationsEn: {
|
|
|
300
325
|
copyLink: string;
|
|
301
326
|
linkCopied: string;
|
|
302
327
|
linkCopyError: string;
|
|
328
|
+
CreateVoltageLevelTopology: string;
|
|
329
|
+
CreateVoltageLevelTopologyError: string;
|
|
330
|
+
CreateCouplingDeviceDiagramButton: string;
|
|
331
|
+
builtNodeTooltipForDiagram: string;
|
|
332
|
+
AtLeastOneSectionAdded: string;
|
|
333
|
+
SectionCount: string;
|
|
334
|
+
VoltageLevelId: string;
|
|
335
|
+
CreateCouplingDevice: string;
|
|
336
|
+
CouplingDeviceText: string;
|
|
337
|
+
CouplingDeviceBusBarSectionToolTipText: string;
|
|
303
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",
|
|
@@ -294,7 +319,19 @@ const networkModificationsEn = {
|
|
|
294
319
|
StateEstimationTab: "State estimation",
|
|
295
320
|
copyLink: "Copy link",
|
|
296
321
|
linkCopied: "Link copied",
|
|
297
|
-
linkCopyError: "Error while attempting to copy link"
|
|
322
|
+
linkCopyError: "Error while attempting to copy link",
|
|
323
|
+
// Voltage level topology creation
|
|
324
|
+
CreateVoltageLevelTopology: "Adding a busbar",
|
|
325
|
+
CreateVoltageLevelTopologyError: "Error while creating a voltage level topology",
|
|
326
|
+
CreateCouplingDeviceDiagramButton: "Show voltage level",
|
|
327
|
+
builtNodeTooltipForDiagram: "Current diagram taking into account all applied modifications",
|
|
328
|
+
AtLeastOneSectionAdded: "At least one busbar section must be added",
|
|
329
|
+
SectionCount: "Section count",
|
|
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"
|
|
298
335
|
};
|
|
299
336
|
export {
|
|
300
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;
|
|
@@ -300,4 +325,14 @@ export declare const networkModificationsFr: {
|
|
|
300
325
|
copyLink: string;
|
|
301
326
|
linkCopied: string;
|
|
302
327
|
linkCopyError: string;
|
|
328
|
+
CreateVoltageLevelTopology: string;
|
|
329
|
+
CreateVoltageLevelTopologyError: string;
|
|
330
|
+
CreateCouplingDeviceDiagramButton: string;
|
|
331
|
+
builtNodeTooltipForDiagram: string;
|
|
332
|
+
AtLeastOneSectionAdded: string;
|
|
333
|
+
SectionCount: string;
|
|
334
|
+
VoltageLevelId: string;
|
|
335
|
+
CreateCouplingDevice: string;
|
|
336
|
+
CouplingDeviceText: string;
|
|
337
|
+
CouplingDeviceBusBarSectionToolTipText: string;
|
|
303
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é",
|
|
@@ -294,7 +319,19 @@ const networkModificationsFr = {
|
|
|
294
319
|
StateEstimationTab: "Estimation d'état",
|
|
295
320
|
copyLink: "Copier le lien",
|
|
296
321
|
linkCopied: "Lien copié",
|
|
297
|
-
linkCopyError: "Erreur lors de la copie du lien"
|
|
322
|
+
linkCopyError: "Erreur lors de la copie du lien",
|
|
323
|
+
// Voltage level topology creation
|
|
324
|
+
CreateVoltageLevelTopology: "Ajouter un jeu de barre",
|
|
325
|
+
CreateVoltageLevelTopologyError: "Erreur lors de la création d'une topologie de poste",
|
|
326
|
+
CreateCouplingDeviceDiagramButton: "Voir le poste",
|
|
327
|
+
builtNodeTooltipForDiagram: "Diagramme courant prenant en compte toutes les modifications réalisées",
|
|
328
|
+
AtLeastOneSectionAdded: "Il faut ajouter au moins une section de jeu de barre",
|
|
329
|
+
SectionCount: "Nombre de sections",
|
|
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"
|
|
298
335
|
};
|
|
299
336
|
export {
|
|
300
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",
|
|
@@ -113,10 +115,19 @@ export declare enum FieldConstants {
|
|
|
113
115
|
SWITCH_KINDS = "switchKinds",
|
|
114
116
|
SWITCH_KIND = "switchKind",
|
|
115
117
|
ADD_SUBSTATION_CREATION = "addSubstationCreationId",
|
|
118
|
+
ALL_BUS_BAR_SECTIONS = "allBusbarSections",
|
|
116
119
|
BUS_BAR_COUNT = "busbarCount",
|
|
120
|
+
BUS_BAR_INDEX = "busbarIndex",
|
|
117
121
|
BUS_BAR_SECTION_ID1 = "busbarSectionId1",
|
|
118
122
|
BUS_BAR_SECTION_ID2 = "busbarSectionId2",
|
|
123
|
+
BUSBAR_SECTION_ID = "busbarSectionId",
|
|
119
124
|
COUPLING_OMNIBUS = "couplingOmnibus",
|
|
125
|
+
IS_AFTER_BUSBAR_SECTION_ID = "isAfterBusBarSectionId",
|
|
126
|
+
NEW_SWITCH_STATES = "newSwitchStates",
|
|
127
|
+
SWITCH_AFTER_NOT_REQUIRED = "switchAfterNotRequired",
|
|
128
|
+
SWITCH_BEFORE_NOT_REQUIRED = "switchBeforeNotRequired",
|
|
129
|
+
SWITCHES_AFTER_SECTIONS = "switchesAfterSections",
|
|
130
|
+
SWITCHES_BEFORE_SECTIONS = "switchesBeforeSections",
|
|
120
131
|
ENABLE_OLG_MODIFICATION = "enableOLGModification",
|
|
121
132
|
HIDE_BUS_BAR_SECTION = "hideBusBarSection",
|
|
122
133
|
HIDE_NOMINAL_VOLTAGE = "hideNominalVoltage",
|
|
@@ -182,5 +193,21 @@ export declare enum FieldConstants {
|
|
|
182
193
|
TRANSIENT_REACTANCE = "directTransX",
|
|
183
194
|
VOLTAGE_REGULATION_TYPE = "voltageRegulationType",
|
|
184
195
|
VOLTAGE_SET_POINT = "voltageSetpoint",
|
|
185
|
-
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"
|
|
186
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";
|
|
@@ -107,10 +109,19 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
|
|
|
107
109
|
FieldConstants2["SWITCH_KINDS"] = "switchKinds";
|
|
108
110
|
FieldConstants2["SWITCH_KIND"] = "switchKind";
|
|
109
111
|
FieldConstants2["ADD_SUBSTATION_CREATION"] = "addSubstationCreationId";
|
|
112
|
+
FieldConstants2["ALL_BUS_BAR_SECTIONS"] = "allBusbarSections";
|
|
110
113
|
FieldConstants2["BUS_BAR_COUNT"] = "busbarCount";
|
|
114
|
+
FieldConstants2["BUS_BAR_INDEX"] = "busbarIndex";
|
|
111
115
|
FieldConstants2["BUS_BAR_SECTION_ID1"] = "busbarSectionId1";
|
|
112
116
|
FieldConstants2["BUS_BAR_SECTION_ID2"] = "busbarSectionId2";
|
|
117
|
+
FieldConstants2["BUSBAR_SECTION_ID"] = "busbarSectionId";
|
|
113
118
|
FieldConstants2["COUPLING_OMNIBUS"] = "couplingOmnibus";
|
|
119
|
+
FieldConstants2["IS_AFTER_BUSBAR_SECTION_ID"] = "isAfterBusBarSectionId";
|
|
120
|
+
FieldConstants2["NEW_SWITCH_STATES"] = "newSwitchStates";
|
|
121
|
+
FieldConstants2["SWITCH_AFTER_NOT_REQUIRED"] = "switchAfterNotRequired";
|
|
122
|
+
FieldConstants2["SWITCH_BEFORE_NOT_REQUIRED"] = "switchBeforeNotRequired";
|
|
123
|
+
FieldConstants2["SWITCHES_AFTER_SECTIONS"] = "switchesAfterSections";
|
|
124
|
+
FieldConstants2["SWITCHES_BEFORE_SECTIONS"] = "switchesBeforeSections";
|
|
114
125
|
FieldConstants2["ENABLE_OLG_MODIFICATION"] = "enableOLGModification";
|
|
115
126
|
FieldConstants2["HIDE_BUS_BAR_SECTION"] = "hideBusBarSection";
|
|
116
127
|
FieldConstants2["HIDE_NOMINAL_VOLTAGE"] = "hideNominalVoltage";
|
|
@@ -177,6 +188,22 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
|
|
|
177
188
|
FieldConstants2["VOLTAGE_REGULATION_TYPE"] = "voltageRegulationType";
|
|
178
189
|
FieldConstants2["VOLTAGE_SET_POINT"] = "voltageSetpoint";
|
|
179
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";
|
|
180
207
|
return FieldConstants2;
|
|
181
208
|
})(FieldConstants || {});
|
|
182
209
|
export {
|
package/dist/utils/index.d.ts
CHANGED
package/dist/utils/index.js
CHANGED
|
@@ -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,
|