@gridsuite/commons-ui 0.64.1 → 0.64.2
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useCallback } from "react";
|
|
3
3
|
import { useForm } from "react-hook-form";
|
|
4
4
|
import { yupResolver } from "@hookform/resolvers/yup";
|
|
@@ -47,7 +47,7 @@ function DescriptionModificationDialog({
|
|
|
47
47
|
},
|
|
48
48
|
[elementUuid, updateElement, snackError]
|
|
49
49
|
);
|
|
50
|
-
return /* @__PURE__ */
|
|
50
|
+
return /* @__PURE__ */ jsx(
|
|
51
51
|
CustomMuiDialog,
|
|
52
52
|
{
|
|
53
53
|
open,
|
|
@@ -57,18 +57,15 @@ function DescriptionModificationDialog({
|
|
|
57
57
|
formMethods: methods,
|
|
58
58
|
titleId: "description",
|
|
59
59
|
removeOptional: true,
|
|
60
|
-
children:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
) }),
|
|
70
|
-
" "
|
|
71
|
-
]
|
|
60
|
+
children: /* @__PURE__ */ jsx(Box, { paddingTop: 1, children: /* @__PURE__ */ jsx(
|
|
61
|
+
ExpandingTextField,
|
|
62
|
+
{
|
|
63
|
+
name: FieldConstants.DESCRIPTION,
|
|
64
|
+
label: "descriptionProperty",
|
|
65
|
+
minRows: 3,
|
|
66
|
+
rows: 3
|
|
67
|
+
}
|
|
68
|
+
) })
|
|
72
69
|
}
|
|
73
70
|
);
|
|
74
71
|
}
|
|
@@ -147,8 +147,8 @@ const filterExpertEn = {
|
|
|
147
147
|
converterStationId1: "Converter station 1 ID",
|
|
148
148
|
converterStationId2: "Converter station 2 ID",
|
|
149
149
|
convertersMode: "Converters mode",
|
|
150
|
-
side1RectifierSide2Inverter: "
|
|
151
|
-
side1InverterSide2Rectifier: "
|
|
150
|
+
side1RectifierSide2Inverter: "Flow (Side1->Side2)",
|
|
151
|
+
side1InverterSide2Rectifier: "Flow (Side2->Side1)",
|
|
152
152
|
dcNominalVoltage: "DC nominal voltage (kV)",
|
|
153
153
|
converterStationNominalVoltage1: "Converter station 1 nominal voltage (kV)",
|
|
154
154
|
converterStationNominalVoltage2: "Converter station 2 nominal voltage (kV)",
|
|
@@ -147,8 +147,8 @@ const filterExpertFr = {
|
|
|
147
147
|
converterStationId1: "ID de la station de conversion 1",
|
|
148
148
|
converterStationId2: "ID de la station de conversion 2",
|
|
149
149
|
convertersMode: "Mode de conversion",
|
|
150
|
-
side1RectifierSide2Inverter: "
|
|
151
|
-
side1InverterSide2Rectifier: "
|
|
150
|
+
side1RectifierSide2Inverter: "Flux (1->2)",
|
|
151
|
+
side1InverterSide2Rectifier: "Flux (2->1)",
|
|
152
152
|
dcNominalVoltage: "Tension nominale DC (kV)",
|
|
153
153
|
converterStationNominalVoltage1: "Tension nominale de la station de conversion 1 (kV)",
|
|
154
154
|
converterStationNominalVoltage2: "Tension nominale de la station de conversion 2 (kV)",
|