@gridsuite/commons-ui 0.189.0 → 0.190.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/customAGGrid/cell-renderers.js +28 -26
- package/dist/components/dnd-table/dnd-table.js +71 -34
- package/dist/components/index.js +16 -6
- package/dist/components/inputs/index.js +2 -0
- package/dist/components/inputs/reactHookForm/index.js +2 -0
- package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +9 -0
- package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js +64 -0
- package/dist/components/inputs/reactHookForm/selectInputs/index.d.ts +1 -0
- package/dist/components/inputs/reactHookForm/selectInputs/index.js +3 -1
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +16 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-constants.js +402 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +12 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +217 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +21 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.js +89 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +28 -0
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment.type.js +12 -0
- package/dist/components/network-modifications/by-filter/assignment/index.d.ts +10 -0
- package/dist/components/network-modifications/by-filter/assignment/index.js +11 -0
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +7 -0
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +89 -0
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +7 -0
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.types.js +1 -0
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +22 -0
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +55 -0
- package/dist/components/network-modifications/by-filter/index.d.ts +1 -0
- package/dist/components/network-modifications/by-filter/index.js +10 -1
- package/dist/components/network-modifications/hooks/index.d.ts +7 -0
- package/dist/components/network-modifications/hooks/index.js +4 -0
- package/dist/components/network-modifications/hooks/useTabsWithError.d.ts +15 -0
- package/dist/components/network-modifications/hooks/useTabsWithError.js +28 -0
- package/dist/components/network-modifications/index.d.ts +1 -0
- package/dist/components/network-modifications/index.js +14 -6
- package/dist/components/network-modifications/load/common/LoadForm.d.ts +1 -1
- package/dist/components/network-modifications/load/common/LoadForm.js +7 -27
- package/dist/components/network-modifications/load/common/index.js +2 -1
- package/dist/components/network-modifications/load/common/load.utils.d.ts +7 -11
- package/dist/components/network-modifications/load/common/load.utils.js +30 -4
- package/dist/components/network-modifications/load/index.js +2 -1
- package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +9 -29
- package/dist/components/network-modifications/voltageLevel/creation/index.js +1 -5
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +8 -12
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevel.constants.js +53 -5
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -4
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -16
- package/dist/components/network-modifications/voltageLevel/index.js +1 -5
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +1 -0
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +1 -0
- package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +1 -0
- package/dist/index.js +16 -6
- package/dist/translations/en/networkModificationsEn.d.ts +51 -0
- package/dist/translations/en/networkModificationsEn.js +51 -0
- package/dist/translations/fr/networkModificationsFr.d.ts +51 -0
- package/dist/translations/fr/networkModificationsFr.js +51 -0
- package/dist/utils/constants/fieldConstants.d.ts +2 -0
- package/dist/utils/constants/fieldConstants.js +2 -0
- package/package.json +1 -1
|
@@ -75,6 +75,7 @@ const networkModificationsFr = {
|
|
|
75
75
|
ModificationReadError: "Une erreur est survenue lors de la récupération de la modification",
|
|
76
76
|
CreateSubstation: "Créer un site",
|
|
77
77
|
DeleteEquipmentByFilter: "Supprimer des ouvrages par filtre",
|
|
78
|
+
ModifyByAssignment: "Modification par filtre",
|
|
78
79
|
SubstationCreationError: "Erreur lors de la création d'un site'",
|
|
79
80
|
ModifySubstation: "Modifier un site",
|
|
80
81
|
SubstationModificationError: "Erreur lors de la modification d'un site",
|
|
@@ -148,6 +149,56 @@ const networkModificationsFr = {
|
|
|
148
149
|
LCCConverterStationShuntCompensators: "Moyens de compensation liés à la LCC",
|
|
149
150
|
Side1: "Côté 1",
|
|
150
151
|
Side2: "Côté 2",
|
|
152
|
+
EquipmentType: "Type d'ouvrage",
|
|
153
|
+
EditedField: "Champ modifié",
|
|
154
|
+
Property: "Propriété",
|
|
155
|
+
RatedNominalPowerText: "Puissance nominale",
|
|
156
|
+
MinimumActivePowerText: "Puissance active min",
|
|
157
|
+
MaximumActivePowerText: "Puissance active max",
|
|
158
|
+
ActivePowerSetPointText: "Consigne de puissance active",
|
|
159
|
+
ReactivePowerSetPointText: "Consigne de puissance réactive",
|
|
160
|
+
GeneratorTargetV: "Consigne tension",
|
|
161
|
+
PlannedActivePowerSetPointForm: "Puissance imposée",
|
|
162
|
+
MarginalCost: "Coût de démarrage",
|
|
163
|
+
plannedOutageRate: "Indisponibilité programmée",
|
|
164
|
+
forcedOutageRate: "Indisponibilité fortuite",
|
|
165
|
+
ActivePowerRegulationDroop: "Cœfficient de participation à la compensation",
|
|
166
|
+
TransientReactanceForm: "Réactance transitoire",
|
|
167
|
+
TransformerReactanceForm: "Réactance du transformateur",
|
|
168
|
+
ReactivePercentageVoltageRegulation: "Cœfficient de participation au réglage de tension",
|
|
169
|
+
voltageRegulationOn: "Réglage de tension",
|
|
170
|
+
maximumSectionCount: "Nombre de gradins",
|
|
171
|
+
sectionCount: "Gradin courant",
|
|
172
|
+
maxSusceptance: "Susceptance installée",
|
|
173
|
+
maxQAtNominalV: "Q installée à tension nominale",
|
|
174
|
+
SeriesResistanceText: "Résistance série",
|
|
175
|
+
SeriesReactanceText: "Réactance série",
|
|
176
|
+
ShuntConductanceText: "Conductance parallèle",
|
|
177
|
+
ShuntConductanceText1: "Conductance parallèle côté 1",
|
|
178
|
+
ShuntConductanceText2: "Conductance parallèle côté 2",
|
|
179
|
+
ShuntSusceptanceText: "Susceptance parallèle",
|
|
180
|
+
ShuntSusceptanceText1: "Susceptance parallèle côté 1",
|
|
181
|
+
ShuntSusceptanceText2: "Susceptance parallèle côté 2",
|
|
182
|
+
RatedU1: "Tension d'enroulement 1",
|
|
183
|
+
RatedU2: "Tension d'enroulement 2",
|
|
184
|
+
RatioTargetV: "Tension de consigne du régleur",
|
|
185
|
+
RatioLowTapPosition: "Prise min régleur",
|
|
186
|
+
RatioTapPosition: "Prise courante du régleur",
|
|
187
|
+
RatioDeadBand: "Bande morte du régleur",
|
|
188
|
+
PhaseRegulatingValue: "Valeur de réglage de déphaseur",
|
|
189
|
+
PhaseLowTapPosition: "Prise min déphaseur",
|
|
190
|
+
PhaseTapPosition: "Prise courante du déphaseur",
|
|
191
|
+
PhaseDeadBand: "Bande morte du déphaseur",
|
|
192
|
+
selectedOperationalLimitsGroup1: "Jeu de limites actif côté 1",
|
|
193
|
+
selectedOperationalLimitsGroup2: "Jeu de limites actif côté 2",
|
|
194
|
+
operationalLimitsGroup1WithProperties: "Jeu de limites actif côté 1 ayant la propriété",
|
|
195
|
+
operationalLimitsGroup2WithProperties: "Jeu de limites actif côté 2 ayant la propriété",
|
|
196
|
+
Value: "Valeur",
|
|
197
|
+
EmptyField: "Vider le champ",
|
|
198
|
+
NumericValueOrEmptyField: "Valeur numérique ou Vider le champ",
|
|
199
|
+
ValueOrEmptyField: "Valeur ou Vider le champ",
|
|
200
|
+
addNewAssignment: "Modifier un autre champ",
|
|
201
|
+
changeTypeConfirmation: "Le type va être modifié. Toutes les valeurs des champs seront effacées.",
|
|
151
202
|
Or: "ou",
|
|
152
203
|
// Tabs
|
|
153
204
|
SubstationTab: "Site",
|
|
@@ -10,6 +10,7 @@ export declare enum FieldConstants {
|
|
|
10
10
|
ADDITIONAL_PROPERTIES = "AdditionalProperties",
|
|
11
11
|
AG_GRID_ROW_UUID = "agGridRowUuid",
|
|
12
12
|
API_CALL = "apiCall",
|
|
13
|
+
ASSIGNMENTS = "assignments",
|
|
13
14
|
BUS_OR_BUSBAR_SECTION = "busOrBusbarSection",
|
|
14
15
|
CASE_FILE = "caseFile",
|
|
15
16
|
CASE_FORMAT = "caseFormat",
|
|
@@ -34,6 +35,7 @@ export declare enum FieldConstants {
|
|
|
34
35
|
DELETION_SPECIFIC_TYPE = "specificType",
|
|
35
36
|
DESCRIPTION = "description",
|
|
36
37
|
DIRECTORY = "directory",
|
|
38
|
+
EDITED_FIELD = "editedField",
|
|
37
39
|
ENERGY_SOURCE = "energySource",
|
|
38
40
|
EQUIPMENT_ID = "equipmentID",
|
|
39
41
|
EQUIPMENT_NAME = "equipmentName",
|
|
@@ -4,6 +4,7 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
|
|
|
4
4
|
FieldConstants2["ADDITIONAL_PROPERTIES"] = "AdditionalProperties";
|
|
5
5
|
FieldConstants2["AG_GRID_ROW_UUID"] = "agGridRowUuid";
|
|
6
6
|
FieldConstants2["API_CALL"] = "apiCall";
|
|
7
|
+
FieldConstants2["ASSIGNMENTS"] = "assignments";
|
|
7
8
|
FieldConstants2["BUS_OR_BUSBAR_SECTION"] = "busOrBusbarSection";
|
|
8
9
|
FieldConstants2["CASE_FILE"] = "caseFile";
|
|
9
10
|
FieldConstants2["CASE_FORMAT"] = "caseFormat";
|
|
@@ -28,6 +29,7 @@ var FieldConstants = /* @__PURE__ */ ((FieldConstants2) => {
|
|
|
28
29
|
FieldConstants2["DELETION_SPECIFIC_TYPE"] = "specificType";
|
|
29
30
|
FieldConstants2["DESCRIPTION"] = "description";
|
|
30
31
|
FieldConstants2["DIRECTORY"] = "directory";
|
|
32
|
+
FieldConstants2["EDITED_FIELD"] = "editedField";
|
|
31
33
|
FieldConstants2["ENERGY_SOURCE"] = "energySource";
|
|
32
34
|
FieldConstants2["EQUIPMENT_ID"] = "equipmentID";
|
|
33
35
|
FieldConstants2["EQUIPMENT_NAME"] = "equipmentName";
|