@gridsuite/commons-ui 0.63.5 → 0.64.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.
|
@@ -7,11 +7,10 @@ import CriteriaBasedFilterForm from "./criteria-based/criteria-based-filter-form
|
|
|
7
7
|
import ExplicitNamingFilterForm from "./explicit-naming/explicit-naming-filter-form.js";
|
|
8
8
|
import ExpertFilterForm from "./expert/expert-filter-form.js";
|
|
9
9
|
import { FilterType } from "./constants/filter-constants.js";
|
|
10
|
-
import ExpandableGroup from "../ExpandableGroup/expandable-group.js";
|
|
11
10
|
import RadioInput from "../inputs/react-hook-form/radio-input.js";
|
|
12
11
|
import { ElementType } from "../../utils/ElementType.js";
|
|
13
|
-
import ExpandingTextField from "../inputs/react-hook-form/ExpandingTextField.js";
|
|
14
12
|
import UniqueNameInput from "../inputs/react-hook-form/unique-name-input.js";
|
|
13
|
+
import DescriptionField from "../inputs/react-hook-form/description-field.js";
|
|
15
14
|
function FilterForm(props) {
|
|
16
15
|
const { sourceFilterForExplicitNamingConversion, creation, activeDirectory, elementExists } = props;
|
|
17
16
|
const { setValue } = useFormContext();
|
|
@@ -37,15 +36,7 @@ function FilterForm(props) {
|
|
|
37
36
|
}
|
|
38
37
|
) }),
|
|
39
38
|
creation && /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
40
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 12, children: /* @__PURE__ */ jsx(
|
|
41
|
-
ExpandingTextField,
|
|
42
|
-
{
|
|
43
|
-
name: FieldConstants.DESCRIPTION,
|
|
44
|
-
label: "descriptionProperty",
|
|
45
|
-
minRows: 3,
|
|
46
|
-
rows: 5
|
|
47
|
-
}
|
|
48
|
-
) }) }),
|
|
39
|
+
/* @__PURE__ */ jsx(Grid, { item: true, xs: 12, children: /* @__PURE__ */ jsx(DescriptionField, {}) }),
|
|
49
40
|
!sourceFilterForExplicitNamingConversion && /* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsx(
|
|
50
41
|
RadioInput,
|
|
51
42
|
{
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2024, 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
|
+
declare function DescriptionField(): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default DescriptionField;
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
+
import { useState } from "react";
|
|
3
|
+
import { FormattedMessage } from "react-intl";
|
|
4
|
+
import { Box, Button } from "@mui/material";
|
|
5
|
+
import AddIcon from "@mui/icons-material/Add";
|
|
6
|
+
import DeleteIcon from "@mui/icons-material/Delete";
|
|
7
|
+
import { useFormContext } from "react-hook-form";
|
|
8
|
+
import FieldConstants from "../../../utils/field-constants.js";
|
|
9
|
+
import ExpandingTextField from "./ExpandingTextField.js";
|
|
10
|
+
function DescriptionField() {
|
|
11
|
+
const [isDescriptionFieldVisible, setIsDescriptionFieldVisible] = useState(false);
|
|
12
|
+
const { setValue } = useFormContext();
|
|
13
|
+
const handleOpenDescription = () => {
|
|
14
|
+
setIsDescriptionFieldVisible(true);
|
|
15
|
+
setValue(FieldConstants.DESCRIPTION, "");
|
|
16
|
+
};
|
|
17
|
+
const handleCloseDescription = () => {
|
|
18
|
+
setIsDescriptionFieldVisible(false);
|
|
19
|
+
};
|
|
20
|
+
return /* @__PURE__ */ jsx(Box, { children: !isDescriptionFieldVisible ? /* @__PURE__ */ jsx(Button, { startIcon: /* @__PURE__ */ jsx(AddIcon, {}), onClick: handleOpenDescription, children: /* @__PURE__ */ jsx(FormattedMessage, { id: "AddDescription" }) }) : /* @__PURE__ */ jsxs(Box, { sx: { display: "flex", alignItems: "flex-start" }, children: [
|
|
21
|
+
/* @__PURE__ */ jsx(
|
|
22
|
+
ExpandingTextField,
|
|
23
|
+
{
|
|
24
|
+
name: FieldConstants.DESCRIPTION,
|
|
25
|
+
label: "descriptionProperty",
|
|
26
|
+
minRows: 3,
|
|
27
|
+
rows: 3,
|
|
28
|
+
sx: { flexGrow: 1 }
|
|
29
|
+
}
|
|
30
|
+
),
|
|
31
|
+
/* @__PURE__ */ jsx(
|
|
32
|
+
Button,
|
|
33
|
+
{
|
|
34
|
+
sx: {
|
|
35
|
+
alignSelf: "flex-end",
|
|
36
|
+
marginLeft: 1,
|
|
37
|
+
padding: 1,
|
|
38
|
+
marginBottom: 2
|
|
39
|
+
},
|
|
40
|
+
onClick: handleCloseDescription,
|
|
41
|
+
children: /* @__PURE__ */ jsx(DeleteIcon, {})
|
|
42
|
+
}
|
|
43
|
+
)
|
|
44
|
+
] }) });
|
|
45
|
+
}
|
|
46
|
+
export {
|
|
47
|
+
DescriptionField as default
|
|
48
|
+
};
|
package/dist/index.d.ts
CHANGED
|
@@ -22,6 +22,7 @@ export { default as ExpandableGroup } from './components/ExpandableGroup';
|
|
|
22
22
|
export { default as MultipleSelectionDialog } from './components/MultipleSelectionDialog';
|
|
23
23
|
export { default as CustomMuiDialog } from './components/dialogs/custom-mui-dialog';
|
|
24
24
|
export { default as DescriptionModificationDialog } from './components/dialogs/description-modification-dialog';
|
|
25
|
+
export { default as DescriptionField } from './components/inputs/react-hook-form/description-field';
|
|
25
26
|
export { default as ModifyElementSelection } from './components/dialogs/modify-element-selection';
|
|
26
27
|
export { default as CriteriaBasedForm } from './components/filter/criteria-based/criteria-based-form';
|
|
27
28
|
export { default as PopupConfirmationDialog } from './components/dialogs/popup-confirmation-dialog';
|
package/dist/index.js
CHANGED
|
@@ -21,15 +21,16 @@ import { default as default12 } from "./components/ExpandableGroup/expandable-gr
|
|
|
21
21
|
import { default as default13 } from "./components/MultipleSelectionDialog/MultipleSelectionDialog.js";
|
|
22
22
|
import { default as default14 } from "./components/dialogs/custom-mui-dialog.js";
|
|
23
23
|
import { default as default15 } from "./components/dialogs/description-modification-dialog.js";
|
|
24
|
-
import { default as default16 } from "./components/
|
|
25
|
-
import { default as default17 } from "./components/
|
|
26
|
-
import { default as default18 } from "./components/
|
|
27
|
-
import { default as default19 } from "./components/
|
|
28
|
-
import { default as default20
|
|
24
|
+
import { default as default16 } from "./components/inputs/react-hook-form/description-field.js";
|
|
25
|
+
import { default as default17 } from "./components/dialogs/modify-element-selection.js";
|
|
26
|
+
import { default as default18 } from "./components/filter/criteria-based/criteria-based-form.js";
|
|
27
|
+
import { default as default19 } from "./components/dialogs/popup-confirmation-dialog.js";
|
|
28
|
+
import { default as default20 } from "./components/inputs/react-hook-form/ag-grid-table/bottom-right-buttons.js";
|
|
29
|
+
import { default as default21, ROW_DRAGGING_SELECTION_COLUMN_DEF } from "./components/inputs/react-hook-form/ag-grid-table/custom-ag-grid-table.js";
|
|
29
30
|
import { Battery, BusBar, DanglingLine, Generator, Hvdc, LCC, Line, Load, SVC, ShuntCompensator, Substation, ThreeWindingTransfo, TwoWindingTransfo, VSC, VoltageLevel, noSelectionForCopy } from "./utils/equipment-types.js";
|
|
30
|
-
import { default as
|
|
31
|
+
import { default as default22 } from "./utils/field-constants.js";
|
|
31
32
|
import { fields } from "./components/filter/expert/expert-filter-constants.js";
|
|
32
|
-
import { default as
|
|
33
|
+
import { default as default23 } from "./components/inputs/react-query-builder/custom-react-query-builder.js";
|
|
33
34
|
import { EXPERT_FILTER_QUERY, getExpertFilterEmptyFormData, rqbQuerySchemaValidator } from "./components/filter/expert/expert-filter-form.js";
|
|
34
35
|
import { exportExpertRules, importExpertRules } from "./components/filter/expert/expert-filter-utils.js";
|
|
35
36
|
import { formatQuery } from "react-querybuilder";
|
|
@@ -38,83 +39,83 @@ import { GRIDSUITE_DEFAULT_PRECISION, isBlankOrEmpty, microUnitToUnit, roundToDe
|
|
|
38
39
|
import { ElementType } from "./utils/ElementType.js";
|
|
39
40
|
import { EQUIPMENT_TYPE, EquipmentType, equipmentStyles, getEquipmentsInfosForSearchBar } from "./utils/EquipmentType.js";
|
|
40
41
|
import { dispatchUser, getPreLoginPath, initializeAuthenticationDev, initializeAuthenticationProd, logout } from "./utils/AuthService.js";
|
|
41
|
-
import { default as
|
|
42
|
+
import { default as default24 } from "./utils/ElementIcon.js";
|
|
42
43
|
import { LOGOUT_ERROR, RESET_AUTHENTICATION_ROUTER_ERROR, SHOW_AUTH_INFO_LOGIN, SIGNIN_CALLBACK_ERROR, UNAUTHORIZED_USER_INFO, USER, USER_VALIDATION_ERROR, setLoggedUser, setSignInCallbackError } from "./redux/authActions.js";
|
|
43
|
-
import { default as
|
|
44
|
-
import { default as
|
|
45
|
-
import { default as
|
|
46
|
-
import { default as
|
|
47
|
-
import { default as
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import { default as
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
54
|
-
import { default as
|
|
55
|
-
import { default as
|
|
56
|
-
import { default as
|
|
57
|
-
import { default as
|
|
58
|
-
import { default as
|
|
59
|
-
import { default as
|
|
60
|
-
import { default as
|
|
61
|
-
import { default as
|
|
62
|
-
import { default as
|
|
63
|
-
import { default as
|
|
64
|
-
import { default as
|
|
65
|
-
import { default as
|
|
66
|
-
import { default as
|
|
67
|
-
import { default as
|
|
68
|
-
import { default as
|
|
69
|
-
import { default as
|
|
70
|
-
import { default as
|
|
44
|
+
import { default as default25 } from "./components/translations/report-viewer-en.js";
|
|
45
|
+
import { default as default26 } from "./components/translations/report-viewer-fr.js";
|
|
46
|
+
import { default as default27 } from "./components/translations/login-en.js";
|
|
47
|
+
import { default as default28 } from "./components/translations/login-fr.js";
|
|
48
|
+
import { default as default29 } from "./components/translations/top-bar-en.js";
|
|
49
|
+
import { default as default30 } from "./components/translations/top-bar-fr.js";
|
|
50
|
+
import { default as default31 } from "./components/translations/table-en.js";
|
|
51
|
+
import { default as default32 } from "./components/translations/table-fr.js";
|
|
52
|
+
import { default as default33 } from "./components/translations/treeview-finder-en.js";
|
|
53
|
+
import { default as default34 } from "./components/translations/treeview-finder-fr.js";
|
|
54
|
+
import { default as default35 } from "./components/translations/element-search-en.js";
|
|
55
|
+
import { default as default36 } from "./components/translations/element-search-fr.js";
|
|
56
|
+
import { default as default37 } from "./components/translations/equipment-search-en.js";
|
|
57
|
+
import { default as default38 } from "./components/translations/equipment-search-fr.js";
|
|
58
|
+
import { default as default39 } from "./components/translations/filter-en.js";
|
|
59
|
+
import { default as default40 } from "./components/translations/filter-fr.js";
|
|
60
|
+
import { default as default41 } from "./components/translations/filter-expert-en.js";
|
|
61
|
+
import { default as default42 } from "./components/translations/filter-expert-fr.js";
|
|
62
|
+
import { default as default43 } from "./components/translations/card-error-boundary-en.js";
|
|
63
|
+
import { default as default44 } from "./components/translations/card-error-boundary-fr.js";
|
|
64
|
+
import { default as default45 } from "./components/translations/flat-parameters-en.js";
|
|
65
|
+
import { default as default46 } from "./components/translations/flat-parameters-fr.js";
|
|
66
|
+
import { default as default47 } from "./components/translations/multiple-selection-dialog-en.js";
|
|
67
|
+
import { default as default48 } from "./components/translations/multiple-selection-dialog-fr.js";
|
|
68
|
+
import { default as default49 } from "./components/translations/common-button-en.js";
|
|
69
|
+
import { default as default50 } from "./components/translations/common-button-fr.js";
|
|
70
|
+
import { default as default51 } from "./components/translations/directory-items-input-en.js";
|
|
71
|
+
import { default as default52 } from "./components/translations/directory-items-input-fr.js";
|
|
71
72
|
import { EquipmentItem } from "./components/ElementSearchDialog/equipment-item.js";
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as
|
|
73
|
+
import { default as default53 } from "./components/CardErrorBoundary/card-error-boundary.js";
|
|
74
|
+
import { default as default54 } from "./hooks/useIntlRef.js";
|
|
74
75
|
import { useSnackMessage } from "./hooks/useSnackMessage.js";
|
|
75
|
-
import { default as
|
|
76
|
+
import { default as default55 } from "./hooks/useDebounce.js";
|
|
76
77
|
import { usePrevious } from "./hooks/usePrevious.js";
|
|
77
|
-
import { default as
|
|
78
|
-
import { default as
|
|
79
|
-
import { default as
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as
|
|
83
|
-
import { default as
|
|
84
|
-
import { default as
|
|
85
|
-
import { default as
|
|
86
|
-
import { default as
|
|
87
|
-
import { default as
|
|
88
|
-
import { default as
|
|
89
|
-
import { default as
|
|
90
|
-
import { default as
|
|
91
|
-
import { default as
|
|
92
|
-
import { default as
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as
|
|
96
|
-
import { default as
|
|
97
|
-
import { default as
|
|
78
|
+
import { default as default56 } from "./hooks/useConfidentialityWarning.js";
|
|
79
|
+
import { default as default57 } from "./components/inputs/select-clearable.js";
|
|
80
|
+
import { default as default58 } from "./components/inputs/react-hook-form/provider/use-custom-form-context.js";
|
|
81
|
+
import { default as default59 } from "./components/inputs/react-hook-form/provider/custom-form-provider.js";
|
|
82
|
+
import { default as default60 } from "./components/inputs/react-hook-form/autocomplete-inputs/autocomplete-input.js";
|
|
83
|
+
import { default as default61 } from "./components/inputs/react-hook-form/text-input.js";
|
|
84
|
+
import { default as default62 } from "./components/inputs/react-hook-form/ExpandingTextField.js";
|
|
85
|
+
import { default as default63 } from "./components/inputs/react-hook-form/radio-input.js";
|
|
86
|
+
import { default as default64 } from "./components/inputs/react-hook-form/slider-input.js";
|
|
87
|
+
import { default as default65 } from "./components/inputs/react-hook-form/numbers/float-input.js";
|
|
88
|
+
import { default as default66 } from "./components/inputs/react-hook-form/numbers/integer-input.js";
|
|
89
|
+
import { default as default67 } from "./components/inputs/react-hook-form/select-inputs/select-input.js";
|
|
90
|
+
import { default as default68 } from "./components/inputs/react-hook-form/booleans/checkbox-input.js";
|
|
91
|
+
import { default as default69 } from "./components/inputs/react-hook-form/booleans/switch-input.js";
|
|
92
|
+
import { default as default70 } from "./components/inputs/react-hook-form/error-management/error-input.js";
|
|
93
|
+
import { default as default71 } from "./components/inputs/react-hook-form/error-management/field-error-alert.js";
|
|
94
|
+
import { default as default72 } from "./components/inputs/react-hook-form/error-management/mid-form-error.js";
|
|
95
|
+
import { default as default73 } from "./components/inputs/react-hook-form/utils/text-field-with-adornment.js";
|
|
96
|
+
import { default as default74 } from "./components/inputs/react-hook-form/utils/field-label.js";
|
|
97
|
+
import { default as default75 } from "./components/inputs/react-hook-form/utils/submit-button.js";
|
|
98
|
+
import { default as default76 } from "./components/inputs/react-hook-form/utils/cancel-button.js";
|
|
98
99
|
import { genHelperError, genHelperPreviousValue, gridItem, identity, isFieldRequired, isFloatNumber, toFloatOrNullValue } from "./components/inputs/react-hook-form/utils/functions.js";
|
|
99
100
|
import { areArrayElementsUnique, isObjectEmpty, keyGenerator } from "./utils/functions.js";
|
|
100
|
-
import { default as
|
|
101
|
-
import { default as
|
|
102
|
-
import { default as
|
|
103
|
-
import { default as
|
|
104
|
-
import { default as
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as
|
|
107
|
-
import { default as
|
|
101
|
+
import { default as default77 } from "./components/inputs/react-hook-form/directory-items-input.js";
|
|
102
|
+
import { default as default78 } from "./components/DirectoryItemSelector/directory-item-selector.js";
|
|
103
|
+
import { default as default79 } from "./components/CustomAGGrid/custom-aggrid.js";
|
|
104
|
+
import { default as default80 } from "./components/inputs/react-hook-form/raw-read-only-input.js";
|
|
105
|
+
import { default as default81 } from "./components/filter/filter-creation-dialog.js";
|
|
106
|
+
import { default as default82 } from "./components/filter/expert/expert-filter-edition-dialog.js";
|
|
107
|
+
import { default as default83 } from "./components/filter/explicit-naming/explicit-naming-filter-edition-dialog.js";
|
|
108
|
+
import { default as default84 } from "./components/filter/criteria-based/criteria-based-filter-edition-dialog.js";
|
|
108
109
|
import { saveCriteriaBasedFilter, saveExpertFilter, saveExplicitNamingFilter } from "./components/filter/utils/filter-api.js";
|
|
109
|
-
import { DEFAULT_RANGE_VALUE, default as
|
|
110
|
-
import { default as
|
|
111
|
-
import { default as
|
|
112
|
-
import { default as
|
|
110
|
+
import { DEFAULT_RANGE_VALUE, default as default85, getRangeInputDataForm, getRangeInputSchema } from "./components/inputs/react-hook-form/range-input.js";
|
|
111
|
+
import { default as default86 } from "./components/inputs/react-hook-form/select-inputs/input-with-popup-confirmation.js";
|
|
112
|
+
import { default as default87 } from "./components/inputs/react-hook-form/select-inputs/mui-select-input.js";
|
|
113
|
+
import { default as default88 } from "./components/inputs/react-hook-form/select-inputs/countries-input.js";
|
|
113
114
|
import { getComputedLanguage, getSystemLanguage, useLocalizedCountries } from "./hooks/localized-countries-hook.js";
|
|
114
|
-
import { default as
|
|
115
|
-
import { default as
|
|
116
|
-
import { default as
|
|
117
|
-
import { default as
|
|
115
|
+
import { default as default89 } from "./components/inputs/react-hook-form/autocomplete-inputs/multiple-autocomplete-input.js";
|
|
116
|
+
import { default as default90 } from "./components/inputs/react-hook-form/ag-grid-table/csv-uploader/csv-uploader.js";
|
|
117
|
+
import { default as default91 } from "./components/inputs/react-hook-form/unique-name-input.js";
|
|
118
|
+
import { default as default92 } from "./utils/UserManagerMock.js";
|
|
118
119
|
import { CONTINGENCY_LIST_EQUIPMENTS, FILTER_EQUIPMENTS } from "./components/filter/utils/filter-form-utils.js";
|
|
119
120
|
import { getCriteriaBasedFormData, getCriteriaBasedSchema } from "./components/filter/criteria-based/criteria-based-filter-utils.js";
|
|
120
121
|
import { setCommonStore } from "./redux/commonStore.js";
|
|
@@ -127,33 +128,34 @@ import * as yup from "yup";
|
|
|
127
128
|
export {
|
|
128
129
|
default4 as AboutDialog,
|
|
129
130
|
default6 as AuthenticationRouter,
|
|
130
|
-
|
|
131
|
+
default60 as AutocompleteInput,
|
|
131
132
|
Battery,
|
|
132
|
-
|
|
133
|
+
default20 as BottomRightButtons,
|
|
133
134
|
BusBar,
|
|
134
135
|
CONTINGENCY_LIST_EQUIPMENTS,
|
|
135
|
-
|
|
136
|
-
|
|
136
|
+
default76 as CancelButton,
|
|
137
|
+
default53 as CardErrorBoundary,
|
|
137
138
|
ChangeWays,
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
139
|
+
default68 as CheckboxInput,
|
|
140
|
+
default88 as CountriesInput,
|
|
141
|
+
default84 as CriteriaBasedFilterEditionDialog,
|
|
142
|
+
default18 as CriteriaBasedForm,
|
|
143
|
+
default90 as CsvUploader,
|
|
144
|
+
default79 as CustomAGGrid,
|
|
145
|
+
default21 as CustomAgGridTable,
|
|
146
|
+
default59 as CustomFormProvider,
|
|
146
147
|
default14 as CustomMuiDialog,
|
|
147
|
-
|
|
148
|
+
default23 as CustomReactQueryBuilder,
|
|
148
149
|
DARK_THEME,
|
|
149
150
|
DEFAULT_CELL_PADDING,
|
|
150
151
|
DEFAULT_HEADER_HEIGHT,
|
|
151
152
|
DEFAULT_RANGE_VALUE,
|
|
152
153
|
DEFAULT_ROW_HEIGHT,
|
|
153
154
|
DanglingLine,
|
|
155
|
+
default16 as DescriptionField,
|
|
154
156
|
default15 as DescriptionModificationDialog,
|
|
155
|
-
|
|
156
|
-
|
|
157
|
+
default78 as DirectoryItemSelector,
|
|
158
|
+
default77 as DirectoryItemsInput,
|
|
157
159
|
EQUIPMENT_TYPE,
|
|
158
160
|
fields as EXPERT_FILTER_FIELDS,
|
|
159
161
|
EXPERT_FILTER_QUERY,
|
|
@@ -162,23 +164,23 @@ export {
|
|
|
162
164
|
ElementType,
|
|
163
165
|
EquipmentItem,
|
|
164
166
|
EquipmentType,
|
|
165
|
-
|
|
167
|
+
default70 as ErrorInput,
|
|
166
168
|
default12 as ExpandableGroup,
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
169
|
+
default62 as ExpandingTextField,
|
|
170
|
+
default82 as ExpertFilterEditionDialog,
|
|
171
|
+
default83 as ExplicitNamingFilterEditionDialog,
|
|
170
172
|
FILTER_EQUIPMENTS,
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
173
|
+
default22 as FieldConstants,
|
|
174
|
+
default71 as FieldErrorAlert,
|
|
175
|
+
default74 as FieldLabel,
|
|
176
|
+
default81 as FilterCreationDialog,
|
|
175
177
|
FlatParameters,
|
|
176
|
-
|
|
178
|
+
default65 as FloatInput,
|
|
177
179
|
GRIDSUITE_DEFAULT_PRECISION,
|
|
178
180
|
Generator,
|
|
179
181
|
Hvdc,
|
|
180
|
-
|
|
181
|
-
|
|
182
|
+
default86 as InputWithPopupConfirmation,
|
|
183
|
+
default66 as IntegerInput,
|
|
182
184
|
KeyedColumnsRowIndexer,
|
|
183
185
|
LANG_ENGLISH,
|
|
184
186
|
LANG_FRENCH,
|
|
@@ -188,35 +190,35 @@ export {
|
|
|
188
190
|
LOGOUT_ERROR,
|
|
189
191
|
Line,
|
|
190
192
|
Load,
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
193
|
+
default72 as MidFormError,
|
|
194
|
+
default17 as ModifyElementSelection,
|
|
195
|
+
default87 as MuiSelectInput,
|
|
194
196
|
default7 as MuiVirtualizedTable,
|
|
195
|
-
|
|
197
|
+
default89 as MultipleAutocompleteInput,
|
|
196
198
|
default13 as MultipleSelectionDialog,
|
|
197
199
|
OverflowableText,
|
|
198
|
-
|
|
200
|
+
default19 as PopupConfirmationDialog,
|
|
199
201
|
RESET_AUTHENTICATION_ROUTER_ERROR,
|
|
200
202
|
ROW_DRAGGING_SELECTION_COLUMN_DEF,
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
203
|
+
default63 as RadioInput,
|
|
204
|
+
default85 as RangeInput,
|
|
205
|
+
default80 as RawReadOnlyInput,
|
|
204
206
|
default8 as ReportViewer,
|
|
205
207
|
default9 as ReportViewerDialog,
|
|
206
208
|
SHOW_AUTH_INFO_LOGIN,
|
|
207
209
|
SIGNIN_CALLBACK_ERROR,
|
|
208
210
|
SVC,
|
|
209
|
-
|
|
210
|
-
|
|
211
|
+
default57 as SelectClearable,
|
|
212
|
+
default67 as SelectInput,
|
|
211
213
|
ShuntCompensator,
|
|
212
|
-
|
|
214
|
+
default64 as SliderInput,
|
|
213
215
|
default5 as SnackbarProvider,
|
|
214
|
-
|
|
216
|
+
default75 as SubmitButton,
|
|
215
217
|
Substation,
|
|
216
|
-
|
|
218
|
+
default69 as SwitchInput,
|
|
217
219
|
default10 as TagRenderer,
|
|
218
|
-
|
|
219
|
-
|
|
220
|
+
default73 as TextFieldWithAdornment,
|
|
221
|
+
default61 as TextInput,
|
|
220
222
|
ThreeWindingTransfo,
|
|
221
223
|
default3 as TopBar,
|
|
222
224
|
default2 as TreeViewFinder,
|
|
@@ -224,26 +226,26 @@ export {
|
|
|
224
226
|
UNAUTHORIZED_USER_INFO,
|
|
225
227
|
USER,
|
|
226
228
|
USER_VALIDATION_ERROR,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
+
default91 as UniqueNameInput,
|
|
230
|
+
default92 as UserManagerMock,
|
|
229
231
|
VSC,
|
|
230
232
|
VoltageLevel,
|
|
231
233
|
areArrayElementsUnique,
|
|
232
234
|
backendFetch,
|
|
233
235
|
backendFetchJson,
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
236
|
+
default43 as card_error_boundary_en,
|
|
237
|
+
default44 as card_error_boundary_fr,
|
|
238
|
+
default49 as common_button_en,
|
|
239
|
+
default50 as common_button_fr,
|
|
238
240
|
createFilter,
|
|
239
|
-
|
|
240
|
-
|
|
241
|
+
default51 as directory_items_input_en,
|
|
242
|
+
default52 as directory_items_input_fr,
|
|
241
243
|
dispatchUser,
|
|
242
|
-
|
|
243
|
-
|
|
244
|
+
default35 as element_search_en,
|
|
245
|
+
default36 as element_search_fr,
|
|
244
246
|
equipmentStyles,
|
|
245
|
-
|
|
246
|
-
|
|
247
|
+
default37 as equipment_search_en,
|
|
248
|
+
default38 as equipment_search_fr,
|
|
247
249
|
exportExpertRules,
|
|
248
250
|
exportFilter,
|
|
249
251
|
fetchAppsMetadata,
|
|
@@ -255,12 +257,12 @@ export {
|
|
|
255
257
|
fetchFavoriteAndDefaultCountries,
|
|
256
258
|
fetchRootFolders,
|
|
257
259
|
fetchStudyMetadata,
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
260
|
+
default39 as filter_en,
|
|
261
|
+
default41 as filter_expert_en,
|
|
262
|
+
default42 as filter_expert_fr,
|
|
263
|
+
default40 as filter_fr,
|
|
264
|
+
default45 as flat_parameters_en,
|
|
265
|
+
default46 as flat_parameters_fr,
|
|
264
266
|
formatQuery,
|
|
265
267
|
genHelperError,
|
|
266
268
|
genHelperPreviousValue,
|
|
@@ -269,7 +271,7 @@ export {
|
|
|
269
271
|
getCriteriaBasedSchema,
|
|
270
272
|
getEquipmentsInfosForSearchBar,
|
|
271
273
|
getExpertFilterEmptyFormData,
|
|
272
|
-
|
|
274
|
+
default24 as getFileIcon,
|
|
273
275
|
getPreLoginPath,
|
|
274
276
|
getRangeInputDataForm,
|
|
275
277
|
getRangeInputSchema,
|
|
@@ -285,16 +287,16 @@ export {
|
|
|
285
287
|
isFloatNumber,
|
|
286
288
|
isObjectEmpty,
|
|
287
289
|
keyGenerator,
|
|
288
|
-
|
|
289
|
-
|
|
290
|
+
default27 as login_en,
|
|
291
|
+
default28 as login_fr,
|
|
290
292
|
logout,
|
|
291
293
|
mergeSx,
|
|
292
294
|
microUnitToUnit,
|
|
293
|
-
|
|
294
|
-
|
|
295
|
+
default47 as multiple_selection_dialog_en,
|
|
296
|
+
default48 as multiple_selection_dialog_fr,
|
|
295
297
|
noSelectionForCopy,
|
|
296
|
-
|
|
297
|
-
|
|
298
|
+
default25 as report_viewer_en,
|
|
299
|
+
default26 as report_viewer_fr,
|
|
298
300
|
roundToDefaultPrecision,
|
|
299
301
|
roundToPrecision,
|
|
300
302
|
rqbQuerySchemaValidator,
|
|
@@ -305,19 +307,19 @@ export {
|
|
|
305
307
|
setCommonStore,
|
|
306
308
|
setLoggedUser,
|
|
307
309
|
setSignInCallbackError,
|
|
308
|
-
|
|
309
|
-
|
|
310
|
+
default31 as table_en,
|
|
311
|
+
default32 as table_fr,
|
|
310
312
|
toFloatOrNullValue,
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
313
|
+
default29 as top_bar_en,
|
|
314
|
+
default30 as top_bar_fr,
|
|
315
|
+
default33 as treeview_finder_en,
|
|
316
|
+
default34 as treeview_finder_fr,
|
|
315
317
|
unitToMicroUnit,
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
318
|
+
default56 as useConfidentialityWarning,
|
|
319
|
+
default58 as useCustomFormContext,
|
|
320
|
+
default55 as useDebounce,
|
|
319
321
|
default11 as useElementSearch,
|
|
320
|
-
|
|
322
|
+
default54 as useIntlRef,
|
|
321
323
|
useLocalizedCountries,
|
|
322
324
|
usePrevious,
|
|
323
325
|
useSnackMessage,
|