@gridsuite/commons-ui 0.213.0 → 0.215.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/README.md +16 -0
- package/dist/components/composite/agGridTable/BottomRightButtons.js +62 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.d.ts +8 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.js +201 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +183 -0
- package/dist/components/composite/customAGGrid/cell-renderers.js +202 -0
- package/dist/components/composite/customAGGrid/customAggrid.d.ts +12 -0
- package/dist/components/composite/customAGGrid/customAggrid.js +63 -0
- package/dist/components/composite/customAGGrid/separatorCellRenderer.js +21 -0
- package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table/dnd-table.js +436 -0
- package/dist/components/composite/dnd-table/dnd-table.type.d.ts +56 -0
- package/dist/components/composite/dnd-table-v2/deletable-table-row.js +38 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-row.js +184 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.js +376 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.type.d.ts +70 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.d.ts +24 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.js +56 -0
- package/dist/components/composite/elementSearch/hooks/useElementSearch.js +67 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.d.ts +14 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.js +20 -0
- package/dist/components/composite/filter/FilterCreationDialog.d.ts +18 -0
- package/dist/components/composite/filter/FilterCreationDialog.js +127 -0
- package/dist/components/composite/filter/FilterForm.js +45 -0
- package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
- package/dist/components/composite/filter/HeaderFilterForm.js +72 -0
- package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +113 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.js +118 -0
- package/dist/components/composite/filter/expert/expertFilter.type.d.ts +75 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.d.ts +1154 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.js +1454 -0
- package/dist/components/composite/filter/expert/expertFilterUtils.js +374 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +123 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +244 -0
- package/dist/components/composite/filter/filter.type.d.ts +57 -0
- package/dist/components/composite/filter/utils/filterApi.js +111 -0
- package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
- package/dist/components/composite/filter/utils/filterFormUtils.js +60 -0
- package/dist/components/composite/flatParameters/FlatParameters.js +366 -0
- package/dist/components/composite/grid/grid-item.js +9 -0
- package/dist/components/composite/grid/grid-section.d.ts +8 -0
- package/dist/components/composite/index.d.ts +15 -0
- package/dist/components/composite/index.js +146 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.d.ts +3 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.js +10 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.d.ts +6 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.js +16 -0
- package/dist/components/composite/reactQueryBuilder/CombinatorSelector.js +40 -0
- package/dist/components/composite/reactQueryBuilder/CountryValueEditor.js +50 -0
- package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
- package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +47 -0
- package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +102 -0
- package/dist/components/composite/reactQueryBuilder/RemoveButton.js +19 -0
- package/dist/components/composite/reactQueryBuilder/ValueEditor.js +96 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +3 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +8 -0
- package/dist/components/composite/reactQueryBuilder/hooks/useConvertValue.js +19 -0
- package/dist/components/index.d.ts +2 -30
- package/dist/components/index.js +124 -736
- package/dist/components/ui/checkBoxList/CheckBoxListItem.js +74 -0
- package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +45 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +84 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +38 -0
- package/dist/components/ui/checkBoxList/checkBoxList.type.d.ts +74 -0
- package/dist/components/ui/csvDownloader/csv-export.type.d.ts +15 -0
- package/dist/components/ui/csvDownloader/use-csv-export.js +61 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.d.ts +51 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.js +143 -0
- package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +74 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +56 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +273 -0
- package/dist/components/ui/dialogs/elementSaveDialog/utils.d.ts +23 -0
- package/dist/components/ui/dialogs/index.d.ts +12 -0
- package/dist/components/ui/dialogs/index.js +17 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +11 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +95 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.d.ts +8 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js +33 -0
- package/dist/components/ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +24 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +305 -0
- package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
- package/dist/components/ui/directoryItemSelector/utils.js +102 -0
- package/dist/components/ui/index.d.ts +20 -0
- package/dist/components/ui/index.js +163 -0
- package/dist/components/ui/inputs/SelectClearable.js +41 -0
- package/dist/components/ui/inputs/index.d.ts +8 -0
- package/dist/components/ui/inputs/index.js +6 -0
- package/dist/components/ui/menus/custom-nested-menu.d.ts +10 -0
- package/dist/components/ui/menus/custom-nested-menu.js +62 -0
- package/dist/components/ui/overflowableText/OverflowableText.d.ts +11 -0
- package/dist/components/ui/overflowableText/OverflowableText.js +97 -0
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +290 -0
- package/dist/components/ui/reactHookForm/OverflowableChip.js +25 -0
- package/dist/components/ui/reactHookForm/chip-items-input.js +135 -0
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.js +42 -0
- package/dist/components/ui/reactHookForm/expandableInput/ExpandableInput.js +67 -0
- package/dist/components/ui/reactHookForm/index.d.ts +25 -0
- package/dist/components/ui/reactHookForm/index.js +104 -0
- package/dist/components/ui/reactHookForm/selectInputs/InputWithPopupConfirmation.js +61 -0
- package/dist/components/ui/reactHookForm/selectInputs/SelectWithConfirmationInput.js +64 -0
- package/dist/components/ui/reactHookForm/text/DescriptionField.js +62 -0
- package/dist/components/ui/reactHookForm/text/DescriptionInput.js +87 -0
- package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.js +343 -0
- package/dist/components/ui/treeViewFinder/TreeViewUtils.d.ts +2 -0
- package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
- package/dist/features/announcement/AnnouncementBanner.js +88 -0
- package/dist/features/announcement/AnnouncementNotification.d.ts +7 -0
- package/dist/features/announcement/AnnouncementNotification.js +20 -0
- package/dist/features/announcement/useGlobalAnnouncement.d.ts +10 -0
- package/dist/features/announcement/useGlobalAnnouncement.js +48 -0
- package/dist/features/index.d.ts +15 -0
- package/dist/features/index.js +651 -0
- package/dist/features/network-modification-table/renderers/description-cell.js +75 -0
- package/dist/features/network-modification-table/renderers/name-cell.js +221 -0
- package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +114 -0
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +100 -0
- package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +140 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +233 -0
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +83 -0
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +76 -0
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +93 -0
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +57 -0
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +111 -0
- package/dist/features/network-modifications/common/connectivity/PositionForm.js +107 -0
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +159 -0
- package/dist/features/network-modifications/common/index.d.ts +16 -0
- package/dist/features/network-modifications/common/index.js +129 -0
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +67 -0
- package/dist/features/network-modifications/common/properties/PropertiesForm.js +108 -0
- package/dist/features/network-modifications/common/properties/PropertyForm.js +95 -0
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +97 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +96 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +113 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +161 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.d.ts +8 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.js +9 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.d.ts +55 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js +72 -0
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +64 -0
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +63 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +116 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.d.ts +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.js +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.d.ts +52 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +56 -0
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +167 -0
- package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +74 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +42 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +55 -0
- package/dist/features/network-modifications/index.js +279 -0
- package/dist/features/network-modifications/load/common/LoadDialogHeader.js +86 -0
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
- package/dist/features/network-modifications/load/creation/loadCreation.utils.js +94 -0
- package/dist/features/network-modifications/load/modification/loadModification.utils.js +103 -0
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +193 -0
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +77 -0
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +98 -0
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +58 -0
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +82 -0
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +123 -0
- package/dist/features/network-modifications/voltageLevel/creation/index.js +52 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +88 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +59 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +54 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +94 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +95 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +57 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +78 -0
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +246 -0
- package/dist/features/network-modifications/voltageLevel/index.js +59 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +149 -0
- package/dist/features/notifications/NotificationsProvider.js +66 -0
- package/dist/features/parameters/common/ProviderParam.js +52 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.js +107 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.js +141 -0
- package/dist/features/parameters/common/hook/use-parameters-form.js +60 -0
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +59 -0
- package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +65 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +34 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +51 -0
- package/dist/features/parameters/common/parameter-field.js +106 -0
- package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
- package/dist/features/parameters/common/parameter-table/table-cell.js +84 -0
- package/dist/features/parameters/common/parameter-table/table-row.js +41 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +11 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +116 -0
- package/dist/features/parameters/common/parameters-creation-dialog.js +87 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +43 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.js +61 -0
- package/dist/features/parameters/common/widget/parameter-float.js +53 -0
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +60 -0
- package/dist/features/parameters/common/widget/parameter-line-slider.js +72 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +99 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +178 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +29 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +151 -0
- package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +95 -0
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +68 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +130 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +177 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +123 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +125 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +20 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +283 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +16 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +14 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +239 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +187 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +148 -0
- package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +117 -0
- package/dist/features/parameters/loadflow/load-flow-general-parameters.js +181 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-content.js +80 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +107 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-form.js +105 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-header.js +97 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +196 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +108 -0
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +251 -0
- package/dist/features/parameters/network-visualizations/map-parameters.js +113 -0
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +61 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-form.js +105 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +100 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +134 -0
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +103 -0
- package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +155 -0
- package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +59 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +98 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +117 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +163 -0
- package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +135 -0
- package/dist/features/parameters/security-analysis/columns-definitions.js +75 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +116 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +16 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +160 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +188 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +84 -0
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +141 -0
- package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +188 -0
- package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
- package/dist/features/parameters/sensi/columns-definitions.js +345 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +122 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +135 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +192 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +73 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +259 -0
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +380 -0
- package/dist/features/parameters/sensi/utils.d.ts +411 -0
- package/dist/features/parameters/sensi/utils.js +365 -0
- package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +212 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +71 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +36 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.js +60 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.js +49 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.js +43 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +104 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +107 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +67 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +173 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +295 -0
- package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +94 -0
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +142 -0
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +246 -0
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +122 -0
- package/dist/features/parameters/voltage-init/general-parameters.js +115 -0
- package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +213 -0
- package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +214 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +98 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +153 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +172 -0
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +171 -0
- package/dist/features/topBar/AboutDialog.js +349 -0
- package/dist/features/topBar/TopBar.d.ts +25 -0
- package/dist/features/topBar/TopBar.js +537 -0
- package/dist/features/topBar/UserInformationDialog.d.ts +8 -0
- package/dist/features/topBar/UserInformationDialog.js +75 -0
- package/dist/hooks/use-parameters-backend.d.ts +1 -1
- package/dist/hooks/use-parameters-backend.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +288 -275
- package/dist/services/explore.d.ts +1 -1
- package/dist/services/security-analysis.d.ts +1 -1
- package/dist/services/security-analysis.js +1 -1
- package/dist/services/short-circuit-analysis.d.ts +1 -1
- package/dist/services/study-config.d.ts +1 -1
- package/dist/services/study.d.ts +3 -3
- package/dist/services/voltage-init.d.ts +1 -1
- package/dist/translations/en/networkModificationsEn.d.ts +6 -0
- package/dist/translations/en/networkModificationsEn.js +6 -0
- package/dist/translations/fr/networkModificationsFr.d.ts +6 -0
- package/dist/translations/fr/networkModificationsFr.js +6 -0
- package/dist/utils/types/loadflow.type.d.ts +1 -1
- package/dist/utils/types/parameters.type.d.ts +4 -4
- package/package.json +1 -1
- package/dist/components/announcement/AnnouncementBanner.d.ts +0 -15
- package/dist/components/announcement/AnnouncementBanner.js +0 -88
- package/dist/components/announcement/AnnouncementNotification.d.ts +0 -7
- package/dist/components/announcement/AnnouncementNotification.js +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.d.ts +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.js +0 -48
- package/dist/components/checkBoxList/CheckBoxListItem.js +0 -74
- package/dist/components/checkBoxList/CheckBoxListItemContent.js +0 -45
- package/dist/components/checkBoxList/DraggableCheckBoxListItem.js +0 -84
- package/dist/components/checkBoxList/DraggableCheckBoxListItemContent.js +0 -38
- package/dist/components/checkBoxList/checkBoxList.type.d.ts +0 -74
- package/dist/components/csvDownloader/csv-export.type.d.ts +0 -15
- package/dist/components/csvDownloader/use-csv-export.js +0 -61
- package/dist/components/customAGGrid/cell-renderers.js +0 -202
- package/dist/components/customAGGrid/customAggrid.d.ts +0 -12
- package/dist/components/customAGGrid/customAggrid.js +0 -63
- package/dist/components/customAGGrid/separatorCellRenderer.js +0 -21
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.d.ts +0 -51
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.js +0 -143
- package/dist/components/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +0 -74
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +0 -56
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.js +0 -284
- package/dist/components/dialogs/elementSaveDialog/utils.d.ts +0 -23
- package/dist/components/dialogs/index.d.ts +0 -11
- package/dist/components/dialogs/index.js +0 -15
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +0 -11
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.js +0 -95
- package/dist/components/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +0 -24
- package/dist/components/directoryItemSelector/DirectoryItemSelector.d.ts +0 -11
- package/dist/components/directoryItemSelector/DirectoryItemSelector.js +0 -305
- package/dist/components/directoryItemSelector/utils.d.ts +0 -55
- package/dist/components/directoryItemSelector/utils.js +0 -102
- package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table/dnd-table.js +0 -442
- package/dist/components/dnd-table/dnd-table.type.d.ts +0 -56
- package/dist/components/dnd-table-v2/deletable-table-row.js +0 -38
- package/dist/components/dnd-table-v2/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table-v2/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table-v2/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table-v2/dnd-table-row.js +0 -183
- package/dist/components/dnd-table-v2/dnd-table.js +0 -383
- package/dist/components/dnd-table-v2/dnd-table.type.d.ts +0 -70
- package/dist/components/elementSearch/elementItem/EquipmentItem.d.ts +0 -24
- package/dist/components/elementSearch/elementItem/EquipmentItem.js +0 -56
- package/dist/components/elementSearch/hooks/useElementSearch.js +0 -67
- package/dist/components/elementSearch/tagRenderer/TagRenderer.d.ts +0 -14
- package/dist/components/elementSearch/tagRenderer/TagRenderer.js +0 -20
- package/dist/components/filter/FilterCreationDialog.d.ts +0 -18
- package/dist/components/filter/FilterCreationDialog.js +0 -127
- package/dist/components/filter/FilterForm.js +0 -43
- package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
- package/dist/components/filter/HeaderFilterForm.js +0 -78
- package/dist/components/filter/expert/ExpertFilterEditionDialog.js +0 -113
- package/dist/components/filter/expert/ExpertFilterForm.d.ts +0 -21
- package/dist/components/filter/expert/ExpertFilterForm.js +0 -121
- package/dist/components/filter/expert/expertFilter.type.d.ts +0 -75
- package/dist/components/filter/expert/expertFilterConstants.d.ts +0 -1154
- package/dist/components/filter/expert/expertFilterConstants.js +0 -1454
- package/dist/components/filter/expert/expertFilterUtils.js +0 -374
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +0 -123
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +0 -28
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.js +0 -248
- package/dist/components/filter/filter.type.d.ts +0 -57
- package/dist/components/filter/utils/filterApi.js +0 -111
- package/dist/components/filter/utils/filterFormUtils.d.ts +0 -7
- package/dist/components/filter/utils/filterFormUtils.js +0 -60
- package/dist/components/flatParameters/FlatParameters.js +0 -366
- package/dist/components/grid/grid-item.js +0 -9
- package/dist/components/grid/grid-section.d.ts +0 -8
- package/dist/components/inputs/SelectClearable.js +0 -41
- package/dist/components/inputs/index.d.ts +0 -10
- package/dist/components/inputs/index.js +0 -146
- package/dist/components/inputs/reactHookForm/DirectoryItemsInput.js +0 -290
- package/dist/components/inputs/reactHookForm/OverflowableChip.js +0 -25
- package/dist/components/inputs/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
- package/dist/components/inputs/reactHookForm/chip-items-input.js +0 -135
- package/dist/components/inputs/reactHookForm/expandableInput/DeletableRow.js +0 -42
- package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +0 -67
- package/dist/components/inputs/reactHookForm/index.d.ts +0 -26
- package/dist/components/inputs/reactHookForm/index.js +0 -112
- package/dist/components/inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js +0 -61
- package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js +0 -64
- package/dist/components/inputs/reactHookForm/text/DescriptionField.js +0 -62
- package/dist/components/inputs/reactHookForm/text/DescriptionInput.js +0 -87
- package/dist/components/inputs/reactHookForm/utils/HelperPreviousValue.js +0 -39
- package/dist/components/inputs/reactQueryBuilder/CombinatorSelector.js +0 -40
- package/dist/components/inputs/reactQueryBuilder/CountryValueEditor.js +0 -50
- package/dist/components/inputs/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
- package/dist/components/inputs/reactQueryBuilder/ElementValueEditor.js +0 -47
- package/dist/components/inputs/reactQueryBuilder/PropertyValueEditor.js +0 -102
- package/dist/components/inputs/reactQueryBuilder/RemoveButton.js +0 -19
- package/dist/components/inputs/reactQueryBuilder/ValueEditor.js +0 -96
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
- package/dist/components/inputs/reactQueryBuilder/hooks/useConvertValue.js +0 -19
- package/dist/components/menus/custom-nested-menu.d.ts +0 -10
- package/dist/components/menus/custom-nested-menu.js +0 -62
- package/dist/components/muiTable/OverflowableTableCell.d.ts +0 -3
- package/dist/components/muiTable/OverflowableTableCell.js +0 -10
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.d.ts +0 -6
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.js +0 -16
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.d.ts +0 -8
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.js +0 -33
- package/dist/components/network-modification-table/renderers/description-cell.js +0 -73
- package/dist/components/network-modification-table/renderers/name-cell.js +0 -221
- package/dist/components/network-modification-table/renderers/root-network-chip-cell.js +0 -138
- package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -105
- package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -145
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -238
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -90
- package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -81
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -99
- package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -117
- package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -113
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -165
- package/dist/components/network-modifications/common/index.d.ts +0 -14
- package/dist/components/network-modifications/common/index.js +0 -116
- package/dist/components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +0 -31
- package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -73
- package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -114
- package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -101
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -103
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -102
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -119
- package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -70
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -69
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -172
- package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -80
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -61
- package/dist/components/network-modifications/index.js +0 -272
- package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -91
- package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
- package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -100
- package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -108
- package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -199
- package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -82
- package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -103
- package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -63
- package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -87
- package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -128
- package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -57
- package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -94
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -65
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +0 -54
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +0 -100
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -101
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -62
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -84
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -251
- package/dist/components/network-modifications/voltageLevel/index.js +0 -64
- package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -154
- package/dist/components/notifications/NotificationsProvider.js +0 -55
- package/dist/components/overflowableText/OverflowableText.d.ts +0 -11
- package/dist/components/overflowableText/OverflowableText.js +0 -97
- package/dist/components/parameters/common/ProviderParam.js +0 -58
- package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
- package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -114
- package/dist/components/parameters/common/contingency-table/contingency-table.d.ts +0 -8
- package/dist/components/parameters/common/contingency-table/contingency-table.js +0 -133
- package/dist/components/parameters/common/hook/use-parameters-form.js +0 -60
- package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -65
- package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -71
- package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +0 -34
- package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -57
- package/dist/components/parameters/common/parameter-field.js +0 -114
- package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
- package/dist/components/parameters/common/parameter-table/table-cell.js +0 -83
- package/dist/components/parameters/common/parameter-table/table-row.js +0 -41
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.d.ts +0 -11
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.js +0 -122
- package/dist/components/parameters/common/parameters-creation-dialog.js +0 -85
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -49
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table.js +0 -61
- package/dist/components/parameters/common/widget/parameter-float.js +0 -59
- package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -65
- package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -78
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -107
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -184
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +0 -29
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +0 -158
- package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -103
- package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -76
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -137
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.d.ts +0 -11
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.js +0 -177
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-preview.js +0 -123
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +0 -125
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +0 -20
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +0 -283
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +0 -16
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +0 -14
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +0 -239
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.js +0 -194
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +0 -156
- package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -125
- package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -189
- package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -88
- package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -115
- package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -111
- package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -105
- package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -203
- package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -116
- package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -259
- package/dist/components/parameters/network-visualizations/map-parameters.js +0 -121
- package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -67
- package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -113
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -107
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -140
- package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -111
- package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -161
- package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -65
- package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -105
- package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -125
- package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -170
- package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -141
- package/dist/components/parameters/security-analysis/columns-definitions.js +0 -83
- package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -124
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.d.ts +0 -13
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.js +0 -165
- package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -191
- package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -92
- package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -149
- package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -195
- package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
- package/dist/components/parameters/sensi/columns-definitions.js +0 -352
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -130
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -143
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -199
- package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -79
- package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -265
- package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -387
- package/dist/components/parameters/sensi/utils.d.ts +0 -411
- package/dist/components/parameters/sensi/utils.js +0 -372
- package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -220
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -76
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +0 -36
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table.js +0 -60
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table-cell.js +0 -55
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table.js +0 -43
- package/dist/components/parameters/short-circuit/short-circuit-parameters-content.js +0 -112
- package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -115
- package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -73
- package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -180
- package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -303
- package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -102
- package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -150
- package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -254
- package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -130
- package/dist/components/parameters/voltage-init/general-parameters.js +0 -123
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -220
- package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -221
- package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -105
- package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -161
- package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -179
- package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -178
- package/dist/components/topBar/AboutDialog.js +0 -349
- package/dist/components/topBar/TopBar.d.ts +0 -25
- package/dist/components/topBar/TopBar.js +0 -537
- package/dist/components/topBar/UserInformationDialog.d.ts +0 -8
- package/dist/components/topBar/UserInformationDialog.js +0 -72
- package/dist/components/treeViewFinder/TreeViewFinder.d.ts +0 -39
- package/dist/components/treeViewFinder/TreeViewFinder.js +0 -343
- package/dist/components/treeViewFinder/TreeViewUtils.d.ts +0 -2
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/cell-renderers.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/separatorCellRenderer.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/deletable-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/useElementSearch.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/FilterForm.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/ExpertFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilterUtils.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/filter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/utils/filterApi.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.js +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/FlatParameters.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.js +0 -0
- /package/dist/components/{grid → composite/grid}/grid-item.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/grid-section.js +0 -0
- /package/dist/components/{grid → composite/grid}/index.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/index.js +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.d.ts +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/checkBoxList.type.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.type.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/use-csv-export.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/DescriptionModificationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/utils.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.js +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.d.ts +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/PopupConfirmationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.js +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.d.ts +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/index.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/SelectClearable.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.js +0 -0
- /package/dist/components/{menus → ui/menus}/index.d.ts +0 -0
- /package/dist/components/{menus → ui/menus}/index.js +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.d.ts +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/DirectoryItemsInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/chip-items-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/DeletableRow.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/ExpandableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/InputWithPopupConfirmation.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/HelperPreviousValue.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/TreeViewUtils.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.d.ts +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.js +0 -0
- /package/dist/{components → features}/announcement/index.d.ts +0 -0
- /package/dist/{components → features}/announcement/index.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.js +0 -0
- /package/dist/{components → features}/authentication/Login.d.ts +0 -0
- /package/dist/{components → features}/authentication/Login.js +0 -0
- /package/dist/{components → features}/authentication/Logout.d.ts +0 -0
- /package/dist/{components → features}/authentication/Logout.js +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/index.js +0 -0
- /package/dist/{components → features}/authentication/authenticationType.d.ts +0 -0
- /package/dist/{components → features}/authentication/authenticationType.js +0 -0
- /package/dist/{components → features}/authentication/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/authService.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/authService.js +0 -0
- /package/dist/{components → features}/authentication/utils/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.js +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.js +0 -0
- /package/dist/{components → features}/network-modification-table/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/description-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/name-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/root-network-chip-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.js +0 -0
- /package/dist/{components → features}/network-modification-table/utils.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/utils.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/BatteryCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/ConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/PositionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerWithValidityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertiesForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertyForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/SetPointsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.js +0 -0
- /package/dist/{components → features}/network-modifications/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogHeader.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabsContent.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/SubstationCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/SubstationModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.js +0 -0
- /package/dist/{components → features}/node/build-status-chip.d.ts +0 -0
- /package/dist/{components → features}/node/build-status-chip.js +0 -0
- /package/dist/{components → features}/node/constant.d.ts +0 -0
- /package/dist/{components → features}/node/constant.js +0 -0
- /package/dist/{components → features}/node/index.d.ts +0 -0
- /package/dist/{components → features}/node/index.js +0 -0
- /package/dist/{components → features}/notifications/NotificationsProvider.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.js +0 -0
- /package/dist/{components → features}/notifications/index.d.ts +0 -0
- /package/dist/{components → features}/notifications/index.js +0 -0
- /package/dist/{components → features}/parameters/common/ProviderParam.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.js +0 -0
- /package/dist/{components → features}/parameters/common/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.js +0 -0
- /package/dist/{components → features}/parameters/common/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-table-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.js +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-field.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/parameter-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters-creation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters.js +0 -0
- /package/dist/{components → features}/parameters/common/utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/utils.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-float.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-directory-items-input.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-slider.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/contingency-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-preview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-selector.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-header.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/map-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-area-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/single-line-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-violations-hiding.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.js +0 -0
- /package/dist/{components → features}/parameters/sensi/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/index.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-fields.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-general-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-power-electronics-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-study-area-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/equipment-selection-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-limits-parameters.d.ts +0 -0
- /package/dist/{components → features}/topBar/AboutDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.js +0 -0
- /package/dist/{components → features}/topBar/GridLogo.d.ts +0 -0
- /package/dist/{components → features}/topBar/GridLogo.js +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.js +0 -0
- /package/dist/{components → features}/topBar/index.d.ts +0 -0
- /package/dist/{components → features}/topBar/index.js +0 -0
|
@@ -1,239 +0,0 @@
|
|
|
1
|
-
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Grid, Typography, Select, MenuItem, Box } from "@mui/material";
|
|
3
|
-
import { useIntl, FormattedMessage } from "react-intl";
|
|
4
|
-
import { forwardRef, useState, useRef, useCallback, useEffect, useMemo, useImperativeHandle } from "react";
|
|
5
|
-
import { buildExpertFilter, CURVE_EQUIPMENT_TYPES, NOMINAL_VOLTAGE_UNIT } from "./curve-selector-utils.js";
|
|
6
|
-
import { AGGRID_LOCALES } from "../../../../../translations/not-intl/aggrid-locales.js";
|
|
7
|
-
import { useLocalizedCountries } from "../../../../../hooks/useLocalizedCountries.js";
|
|
8
|
-
import { CheckboxAutocomplete } from "../../../../inputs/checkbox-autocomplete/checkbox-autocomplete.js";
|
|
9
|
-
import { CustomAGGrid } from "../../../../customAGGrid/customAggrid.js";
|
|
10
|
-
import "../../../../../utils/conversionUtils.js";
|
|
11
|
-
import { snackWithFallback } from "../../../../../utils/error.js";
|
|
12
|
-
import "../../../../../utils/types/equipmentType.js";
|
|
13
|
-
import "@mui/icons-material";
|
|
14
|
-
import "../../../../../utils/yupConfig.js";
|
|
15
|
-
import { useSnackMessage } from "../../../../../hooks/useSnackMessage.js";
|
|
16
|
-
const styles = {
|
|
17
|
-
grid: {
|
|
18
|
-
width: "100%",
|
|
19
|
-
height: "100%"
|
|
20
|
-
},
|
|
21
|
-
criteria: {
|
|
22
|
-
width: "100%",
|
|
23
|
-
height: "56px"
|
|
24
|
-
},
|
|
25
|
-
equipment: {
|
|
26
|
-
width: "100%",
|
|
27
|
-
flexGrow: 1
|
|
28
|
-
},
|
|
29
|
-
equipmentTitle: (theme) => ({
|
|
30
|
-
marginBottom: theme.spacing(1)
|
|
31
|
-
})
|
|
32
|
-
};
|
|
33
|
-
const EquipmentFilter = forwardRef(
|
|
34
|
-
({
|
|
35
|
-
equipmentType: initialEquipmentType,
|
|
36
|
-
onChangeEquipmentType,
|
|
37
|
-
voltageLevelsFetcher,
|
|
38
|
-
countriesFetcher,
|
|
39
|
-
evaluateFilterFetcher
|
|
40
|
-
}, ref) => {
|
|
41
|
-
const { snackError } = useSnackMessage();
|
|
42
|
-
const [gridReady, setGridReady] = useState(false);
|
|
43
|
-
const [isFetching, setIsFetching] = useState();
|
|
44
|
-
const intl = useIntl();
|
|
45
|
-
const [equipmentRowData, setEquipmentRowData] = useState();
|
|
46
|
-
const equipmentsRef = useRef(null);
|
|
47
|
-
const [equipmentType, setEquipmentType] = useState(initialEquipmentType);
|
|
48
|
-
const handleEquipmentTypeChange = useCallback(
|
|
49
|
-
(event) => {
|
|
50
|
-
const selectedEquipmentType = event.target.value;
|
|
51
|
-
setEquipmentType(selectedEquipmentType);
|
|
52
|
-
onChangeEquipmentType(selectedEquipmentType);
|
|
53
|
-
},
|
|
54
|
-
[onChangeEquipmentType]
|
|
55
|
-
);
|
|
56
|
-
const [voltageLevelsMap, setVoltageLevelsMap] = useState(/* @__PURE__ */ new Map());
|
|
57
|
-
const [voltageLevelIds, setVoltageLevelIds] = useState([]);
|
|
58
|
-
const [selectedVoltageLevelIds, setSelectedVoltageLevelIds] = useState([]);
|
|
59
|
-
const [nominalVoltages, setNominalVoltages] = useState([]);
|
|
60
|
-
const [selectedNominalVoltages, setSelectedNominalVoltages] = useState([]);
|
|
61
|
-
const [countries, setCountries] = useState([]);
|
|
62
|
-
const [selectedCountries, setSelectedCountries] = useState([]);
|
|
63
|
-
const { translate } = useLocalizedCountries(intl.locale);
|
|
64
|
-
useEffect(() => {
|
|
65
|
-
voltageLevelsFetcher?.().then((voltageLevels) => {
|
|
66
|
-
const vlMap = /* @__PURE__ */ new Map();
|
|
67
|
-
const nvSet = /* @__PURE__ */ new Set();
|
|
68
|
-
voltageLevels.forEach((vl) => {
|
|
69
|
-
vlMap.set(vl.id, vl.name);
|
|
70
|
-
nvSet.add(vl.nominalV);
|
|
71
|
-
});
|
|
72
|
-
setVoltageLevelsMap(vlMap);
|
|
73
|
-
setNominalVoltages([...nvSet.values()].sort((nv1, nv2) => nv1 - nv2));
|
|
74
|
-
setVoltageLevelIds([...vlMap.keys()]);
|
|
75
|
-
}).catch((error) => {
|
|
76
|
-
snackWithFallback(snackError, error, { headerId: "FetchVoltageLevelsError" });
|
|
77
|
-
});
|
|
78
|
-
countriesFetcher?.().then((countryCodes) => setCountries(countryCodes)).catch((error) => {
|
|
79
|
-
snackWithFallback(snackError, error, { headerId: "FetchCountryError" });
|
|
80
|
-
});
|
|
81
|
-
}, [voltageLevelsFetcher, countriesFetcher, snackError]);
|
|
82
|
-
const expertFilter = useMemo(() => {
|
|
83
|
-
return buildExpertFilter(
|
|
84
|
-
equipmentType,
|
|
85
|
-
selectedVoltageLevelIds,
|
|
86
|
-
selectedCountries,
|
|
87
|
-
selectedNominalVoltages
|
|
88
|
-
);
|
|
89
|
-
}, [equipmentType, selectedVoltageLevelIds, selectedCountries, selectedNominalVoltages]);
|
|
90
|
-
const [selectedRowsLength, setSelectedRowsLength] = useState(0);
|
|
91
|
-
useEffect(() => {
|
|
92
|
-
let ignore = false;
|
|
93
|
-
if (gridReady && evaluateFilterFetcher) {
|
|
94
|
-
setIsFetching(true);
|
|
95
|
-
setEquipmentRowData([]);
|
|
96
|
-
setSelectedRowsLength(0);
|
|
97
|
-
evaluateFilterFetcher(expertFilter).then((equipments) => {
|
|
98
|
-
if (!ignore) {
|
|
99
|
-
setEquipmentRowData(equipments);
|
|
100
|
-
}
|
|
101
|
-
}).catch((error) => {
|
|
102
|
-
if (!ignore) {
|
|
103
|
-
snackWithFallback(snackError, error, { headerId: "FilterEvaluationError" });
|
|
104
|
-
}
|
|
105
|
-
}).finally(() => {
|
|
106
|
-
if (!ignore) {
|
|
107
|
-
setIsFetching(false);
|
|
108
|
-
}
|
|
109
|
-
});
|
|
110
|
-
}
|
|
111
|
-
return () => {
|
|
112
|
-
ignore = true;
|
|
113
|
-
};
|
|
114
|
-
}, [evaluateFilterFetcher, expertFilter, gridReady, snackError]);
|
|
115
|
-
const columnDefs = useMemo(() => {
|
|
116
|
-
return [
|
|
117
|
-
{
|
|
118
|
-
field: "id",
|
|
119
|
-
checkboxSelection: true,
|
|
120
|
-
headerCheckboxSelection: true,
|
|
121
|
-
headerCheckboxSelectionFilteredOnly: true,
|
|
122
|
-
minWidth: 80,
|
|
123
|
-
headerName: intl.formatMessage({
|
|
124
|
-
id: "DynamicSimulationCurveDynamicModelHeader"
|
|
125
|
-
})
|
|
126
|
-
}
|
|
127
|
-
];
|
|
128
|
-
}, [intl]);
|
|
129
|
-
const defaultColDef = useMemo(() => {
|
|
130
|
-
return {
|
|
131
|
-
flex: 1,
|
|
132
|
-
minWidth: 100,
|
|
133
|
-
filter: true,
|
|
134
|
-
sortable: true,
|
|
135
|
-
resizable: true,
|
|
136
|
-
lockPinned: true,
|
|
137
|
-
wrapHeaderText: true,
|
|
138
|
-
autoHeaderHeight: true
|
|
139
|
-
};
|
|
140
|
-
}, []);
|
|
141
|
-
const onGridReady = useCallback(() => {
|
|
142
|
-
setGridReady(true);
|
|
143
|
-
}, []);
|
|
144
|
-
const handleEquipmentSelectionChanged = useCallback(() => {
|
|
145
|
-
const selectedRows = equipmentsRef.current?.api.getSelectedRows();
|
|
146
|
-
setSelectedRowsLength(selectedRows?.length ?? 0);
|
|
147
|
-
}, []);
|
|
148
|
-
useImperativeHandle(
|
|
149
|
-
ref,
|
|
150
|
-
() => ({
|
|
151
|
-
getSelectedEquipments: () => {
|
|
152
|
-
return equipmentsRef.current?.api.getSelectedRows() ?? [];
|
|
153
|
-
}
|
|
154
|
-
}),
|
|
155
|
-
[]
|
|
156
|
-
);
|
|
157
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
158
|
-
/* @__PURE__ */ jsxs(Grid, { item: true, container: true, sx: styles.criteria, children: [
|
|
159
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(Typography, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurveEquipmentType" }) }) }),
|
|
160
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 8, children: /* @__PURE__ */ jsx(
|
|
161
|
-
Select,
|
|
162
|
-
{
|
|
163
|
-
labelId: "DynamicSimulationCurveEquipmentType",
|
|
164
|
-
value: equipmentType,
|
|
165
|
-
onChange: handleEquipmentTypeChange,
|
|
166
|
-
size: "small",
|
|
167
|
-
sx: { width: "100%" },
|
|
168
|
-
children: CURVE_EQUIPMENT_TYPES.map((type) => /* @__PURE__ */ jsx(MenuItem, { value: type, children: intl.formatMessage({ id: type }) }, type))
|
|
169
|
-
}
|
|
170
|
-
) })
|
|
171
|
-
] }),
|
|
172
|
-
/* @__PURE__ */ jsxs(Grid, { item: true, container: true, sx: styles.criteria, children: [
|
|
173
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(Typography, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurvePost" }) }) }),
|
|
174
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 8, children: /* @__PURE__ */ jsx(
|
|
175
|
-
CheckboxAutocomplete,
|
|
176
|
-
{
|
|
177
|
-
id: "voltage-level",
|
|
178
|
-
virtualize: true,
|
|
179
|
-
maxSelection: 10,
|
|
180
|
-
options: voltageLevelIds,
|
|
181
|
-
value: selectedVoltageLevelIds,
|
|
182
|
-
getOptionLabel: (value) => voltageLevelsMap.get(value) ?? value,
|
|
183
|
-
onChange: setSelectedVoltageLevelIds
|
|
184
|
-
}
|
|
185
|
-
) })
|
|
186
|
-
] }),
|
|
187
|
-
/* @__PURE__ */ jsxs(Grid, { item: true, container: true, sx: styles.criteria, children: [
|
|
188
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(Typography, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurveCountry" }) }) }),
|
|
189
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 8, children: /* @__PURE__ */ jsx(
|
|
190
|
-
CheckboxAutocomplete,
|
|
191
|
-
{
|
|
192
|
-
id: "country",
|
|
193
|
-
options: countries,
|
|
194
|
-
value: selectedCountries,
|
|
195
|
-
getOptionLabel: (value) => translate(value),
|
|
196
|
-
onChange: setSelectedCountries
|
|
197
|
-
}
|
|
198
|
-
) })
|
|
199
|
-
] }),
|
|
200
|
-
/* @__PURE__ */ jsxs(Grid, { item: true, container: true, sx: styles.criteria, children: [
|
|
201
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(Typography, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurveTension" }) }) }),
|
|
202
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 8, children: /* @__PURE__ */ jsx(
|
|
203
|
-
CheckboxAutocomplete,
|
|
204
|
-
{
|
|
205
|
-
id: "nominal-voltage",
|
|
206
|
-
options: nominalVoltages,
|
|
207
|
-
value: selectedNominalVoltages,
|
|
208
|
-
getOptionLabel: (value) => `${value} ${NOMINAL_VOLTAGE_UNIT}`,
|
|
209
|
-
onChange: setSelectedNominalVoltages
|
|
210
|
-
}
|
|
211
|
-
) })
|
|
212
|
-
] }),
|
|
213
|
-
/* @__PURE__ */ jsxs(Grid, { item: true, container: true, sx: styles.equipment, direction: "column", children: [
|
|
214
|
-
/* @__PURE__ */ jsx(Grid, { item: true, children: /* @__PURE__ */ jsxs(Typography, { sx: styles.equipmentTitle, variant: "subtitle1", children: [
|
|
215
|
-
/* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurveEquipment" }),
|
|
216
|
-
` (${selectedRowsLength} / ${equipmentRowData?.length ?? 0})`
|
|
217
|
-
] }) }),
|
|
218
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: true, children: /* @__PURE__ */ jsx(Box, { sx: styles.grid, children: /* @__PURE__ */ jsx(
|
|
219
|
-
CustomAGGrid,
|
|
220
|
-
{
|
|
221
|
-
ref: equipmentsRef,
|
|
222
|
-
rowData: equipmentRowData,
|
|
223
|
-
columnDefs,
|
|
224
|
-
defaultColDef,
|
|
225
|
-
rowSelection: "multiple",
|
|
226
|
-
onGridReady,
|
|
227
|
-
onSelectionChanged: handleEquipmentSelectionChanged,
|
|
228
|
-
loading: isFetching,
|
|
229
|
-
overlayLoadingTemplate: intl.formatMessage({ id: "LoadingRemoteData" }),
|
|
230
|
-
overrideLocales: AGGRID_LOCALES
|
|
231
|
-
}
|
|
232
|
-
) }) })
|
|
233
|
-
] })
|
|
234
|
-
] });
|
|
235
|
-
}
|
|
236
|
-
);
|
|
237
|
-
export {
|
|
238
|
-
EquipmentFilter as default
|
|
239
|
-
};
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { UUID } from 'node:crypto';
|
|
2
|
-
import { VoltageLevelInfos } from '../../../utils';
|
|
3
|
-
import { UseParametersBackendReturnProps } from '../../../utils/types/parameters.type';
|
|
4
|
-
import { ComputingType } from '../common';
|
|
5
|
-
import { ExpertFilter, IdentifiableAttributes } from '../../filter';
|
|
6
|
-
type DynamicSimulationInlineProps = {
|
|
7
|
-
studyUuid: UUID | null;
|
|
8
|
-
parametersBackend: UseParametersBackendReturnProps<ComputingType.DYNAMIC_SIMULATION>;
|
|
9
|
-
setHaveDirtyFields: (isDirty: boolean) => void;
|
|
10
|
-
voltageLevelsFetcher: () => Promise<VoltageLevelInfos[]>;
|
|
11
|
-
countriesFetcher: () => Promise<string[]>;
|
|
12
|
-
evaluateFilterFetcher: (filter: ExpertFilter) => Promise<IdentifiableAttributes[]>;
|
|
13
|
-
};
|
|
14
|
-
export declare function DynamicSimulationInline({ studyUuid, parametersBackend, setHaveDirtyFields, voltageLevelsFetcher, countriesFetcher, evaluateFilterFetcher, }: Readonly<DynamicSimulationInlineProps>): import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
export {};
|
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { useIntl, FormattedMessage } from "react-intl";
|
|
3
|
-
import { useState, useCallback, useEffect } from "react";
|
|
4
|
-
import { Grid } from "@mui/material";
|
|
5
|
-
import "../../../utils/conversionUtils.js";
|
|
6
|
-
import { snackWithFallback } from "../../../utils/error.js";
|
|
7
|
-
import { ElementType } from "../../../utils/types/elementType.js";
|
|
8
|
-
import "../../../utils/types/equipmentType.js";
|
|
9
|
-
import "@mui/icons-material";
|
|
10
|
-
import { mergeSx } from "../../../utils/styles.js";
|
|
11
|
-
import "../../../utils/yupConfig.js";
|
|
12
|
-
import { LabelledButton } from "../common/parameters.js";
|
|
13
|
-
import { CreateParameterDialog } from "../common/parameters-creation-dialog.js";
|
|
14
|
-
import { parametersStyles } from "../parameters-style.js";
|
|
15
|
-
import "../../overflowableText/OverflowableText.js";
|
|
16
|
-
import "react-hook-form";
|
|
17
|
-
import { fetchDynamicSimulationParameters } from "../../../services/dynamic-simulation.js";
|
|
18
|
-
import "localized-countries";
|
|
19
|
-
import "localized-countries/data/fr";
|
|
20
|
-
import "localized-countries/data/en";
|
|
21
|
-
import { useSnackMessage } from "../../../hooks/useSnackMessage.js";
|
|
22
|
-
import { CustomFormProvider } from "../../inputs/reactHookForm/provider/CustomFormProvider.js";
|
|
23
|
-
import { SubmitButton } from "../../inputs/reactHookForm/utils/SubmitButton.js";
|
|
24
|
-
import "yup";
|
|
25
|
-
import { DirectoryItemSelector } from "../../directoryItemSelector/DirectoryItemSelector.js";
|
|
26
|
-
import "../../inputs/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
27
|
-
import "../../customAGGrid/customAggrid.js";
|
|
28
|
-
import "ag-grid-community";
|
|
29
|
-
import "react-papaparse";
|
|
30
|
-
import "react-csv-downloader";
|
|
31
|
-
import "../../inputs/reactHookForm/numbers/RangeInput.js";
|
|
32
|
-
import { PopupConfirmationDialog } from "../../dialogs/popupConfirmationDialog/PopupConfirmationDialog.js";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
34
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
35
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
36
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
37
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
38
|
-
import "../../dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
39
|
-
import "../../inputs/reactHookForm/expandableInput/ExpandableInput.js";
|
|
40
|
-
import "@react-querybuilder/material";
|
|
41
|
-
import "../../filter/expert/expertFilterConstants.js";
|
|
42
|
-
import "../../inputs/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
43
|
-
import "uuid";
|
|
44
|
-
import "../../inputs/reactQueryBuilder/PropertyValueEditor.js";
|
|
45
|
-
import "react-querybuilder";
|
|
46
|
-
import "../common/widget/parameter-line-slider.js";
|
|
47
|
-
import "../common/limitreductions/columns-definitions.js";
|
|
48
|
-
import "react-dom";
|
|
49
|
-
import "@hello-pangea/dnd";
|
|
50
|
-
import "../common/contingency-table/columns-definitions.js";
|
|
51
|
-
import "@hookform/resolvers/yup";
|
|
52
|
-
import "../../filter/HeaderFilterForm.js";
|
|
53
|
-
import "../../dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
54
|
-
import { useDynamicSimulationParametersForm, toParamsInfos, toFormValues } from "./use-dynamic-simulation-parameters-form.js";
|
|
55
|
-
import { DynamicSimulationForm } from "./dynamic-simulation-parameters-form.js";
|
|
56
|
-
import useDefaultParams from "./hook/use-default-params.js";
|
|
57
|
-
function DynamicSimulationInline({
|
|
58
|
-
studyUuid,
|
|
59
|
-
parametersBackend,
|
|
60
|
-
setHaveDirtyFields,
|
|
61
|
-
voltageLevelsFetcher,
|
|
62
|
-
countriesFetcher,
|
|
63
|
-
evaluateFilterFetcher
|
|
64
|
-
}) {
|
|
65
|
-
const { providers, params, updateParameters, resetParameters } = parametersBackend;
|
|
66
|
-
const dynamicSimulationMethods = useDynamicSimulationParametersForm({
|
|
67
|
-
providers,
|
|
68
|
-
params,
|
|
69
|
-
name: null,
|
|
70
|
-
description: null
|
|
71
|
-
});
|
|
72
|
-
const intl = useIntl();
|
|
73
|
-
const { snackError } = useSnackMessage();
|
|
74
|
-
const { getDefaultParams, setDefaultParams } = useDefaultParams(params);
|
|
75
|
-
const [openCreateParameterDialog, setOpenCreateParameterDialog] = useState(false);
|
|
76
|
-
const [openSelectParameterDialog, setOpenSelectParameterDialog] = useState(false);
|
|
77
|
-
const [openResetConfirmation, setOpenResetConfirmation] = useState(false);
|
|
78
|
-
const { formSchema, formMethods } = dynamicSimulationMethods;
|
|
79
|
-
const { reset, handleSubmit, getValues, formState } = formMethods;
|
|
80
|
-
const handleResetClick = useCallback(() => {
|
|
81
|
-
setOpenResetConfirmation(true);
|
|
82
|
-
}, []);
|
|
83
|
-
const handleCancelReset = useCallback(() => {
|
|
84
|
-
setOpenResetConfirmation(false);
|
|
85
|
-
}, []);
|
|
86
|
-
const handleReset = useCallback(() => {
|
|
87
|
-
resetParameters();
|
|
88
|
-
setOpenResetConfirmation(false);
|
|
89
|
-
}, [resetParameters]);
|
|
90
|
-
const onSubmit = useCallback(
|
|
91
|
-
(formData) => {
|
|
92
|
-
updateParameters(toParamsInfos(formData, getDefaultParams()));
|
|
93
|
-
},
|
|
94
|
-
[updateParameters, getDefaultParams]
|
|
95
|
-
);
|
|
96
|
-
const handleLoadParameter = useCallback(
|
|
97
|
-
(newParams) => {
|
|
98
|
-
if (newParams?.length) {
|
|
99
|
-
setOpenSelectParameterDialog(false);
|
|
100
|
-
const parametersUuid = newParams[0].id;
|
|
101
|
-
fetchDynamicSimulationParameters(parametersUuid).then((_params) => {
|
|
102
|
-
reset(toFormValues(_params), {
|
|
103
|
-
keepDefaultValues: true
|
|
104
|
-
});
|
|
105
|
-
setDefaultParams(_params);
|
|
106
|
-
}).catch((error) => {
|
|
107
|
-
snackWithFallback(snackError, error, { headerId: "paramsRetrievingError" });
|
|
108
|
-
});
|
|
109
|
-
}
|
|
110
|
-
setOpenSelectParameterDialog(false);
|
|
111
|
-
},
|
|
112
|
-
[reset, setDefaultParams, snackError]
|
|
113
|
-
);
|
|
114
|
-
useEffect(() => {
|
|
115
|
-
setHaveDirtyFields(!!Object.keys(formState.dirtyFields).length);
|
|
116
|
-
}, [formState, setHaveDirtyFields]);
|
|
117
|
-
const renderActions = (onSubmitError) => {
|
|
118
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
119
|
-
/* @__PURE__ */ jsx(Grid, { container: true, item: true, children: /* @__PURE__ */ jsxs(
|
|
120
|
-
Grid,
|
|
121
|
-
{
|
|
122
|
-
sx: mergeSx(parametersStyles.controlParametersItem, {
|
|
123
|
-
paddingTop: 1,
|
|
124
|
-
paddingBottom: 2,
|
|
125
|
-
paddingLeft: 0
|
|
126
|
-
}),
|
|
127
|
-
children: [
|
|
128
|
-
/* @__PURE__ */ jsx(
|
|
129
|
-
LabelledButton,
|
|
130
|
-
{
|
|
131
|
-
disabled: true,
|
|
132
|
-
callback: () => setOpenSelectParameterDialog(true),
|
|
133
|
-
label: "settings.button.chooseSettings"
|
|
134
|
-
}
|
|
135
|
-
),
|
|
136
|
-
/* @__PURE__ */ jsx(LabelledButton, { disabled: true, callback: () => setOpenCreateParameterDialog(true), label: "save" }),
|
|
137
|
-
/* @__PURE__ */ jsx(LabelledButton, { callback: handleResetClick, label: "resetToDefault" }),
|
|
138
|
-
/* @__PURE__ */ jsx(SubmitButton, { variant: "outlined", onClick: handleSubmit(onSubmit, onSubmitError), children: /* @__PURE__ */ jsx(FormattedMessage, { id: "validate" }) })
|
|
139
|
-
]
|
|
140
|
-
}
|
|
141
|
-
) }),
|
|
142
|
-
openCreateParameterDialog && /* @__PURE__ */ jsx(
|
|
143
|
-
CreateParameterDialog,
|
|
144
|
-
{
|
|
145
|
-
studyUuid,
|
|
146
|
-
open: openCreateParameterDialog,
|
|
147
|
-
onClose: () => setOpenCreateParameterDialog(false),
|
|
148
|
-
parameterValues: getValues,
|
|
149
|
-
parameterFormatter: (formData) => toParamsInfos(formData, getDefaultParams()),
|
|
150
|
-
parameterType: ElementType.DYNAMIC_SIMULATION_PARAMETERS
|
|
151
|
-
}
|
|
152
|
-
),
|
|
153
|
-
openSelectParameterDialog && /* @__PURE__ */ jsx(
|
|
154
|
-
DirectoryItemSelector,
|
|
155
|
-
{
|
|
156
|
-
open: openSelectParameterDialog,
|
|
157
|
-
onClose: handleLoadParameter,
|
|
158
|
-
types: [ElementType.DYNAMIC_SIMULATION_PARAMETERS],
|
|
159
|
-
title: intl.formatMessage({
|
|
160
|
-
id: "showSelectParameterDialog"
|
|
161
|
-
}),
|
|
162
|
-
onlyLeaves: true,
|
|
163
|
-
multiSelect: false,
|
|
164
|
-
validationButtonText: intl.formatMessage({
|
|
165
|
-
id: "validate"
|
|
166
|
-
})
|
|
167
|
-
}
|
|
168
|
-
),
|
|
169
|
-
openResetConfirmation && /* @__PURE__ */ jsx(
|
|
170
|
-
PopupConfirmationDialog,
|
|
171
|
-
{
|
|
172
|
-
message: "resetParamsConfirmation",
|
|
173
|
-
validateButtonLabel: "validate",
|
|
174
|
-
openConfirmationPopup: openResetConfirmation,
|
|
175
|
-
setOpenConfirmationPopup: handleCancelReset,
|
|
176
|
-
handlePopupConfirmation: handleReset
|
|
177
|
-
}
|
|
178
|
-
)
|
|
179
|
-
] });
|
|
180
|
-
};
|
|
181
|
-
return /* @__PURE__ */ jsx(CustomFormProvider, { validationSchema: formSchema, ...formMethods, children: /* @__PURE__ */ jsx(
|
|
182
|
-
DynamicSimulationForm,
|
|
183
|
-
{
|
|
184
|
-
dynamicSimulationMethods,
|
|
185
|
-
renderActions,
|
|
186
|
-
voltageLevelsFetcher,
|
|
187
|
-
countriesFetcher,
|
|
188
|
-
evaluateFilterFetcher
|
|
189
|
-
}
|
|
190
|
-
) });
|
|
191
|
-
}
|
|
192
|
-
export {
|
|
193
|
-
DynamicSimulationInline
|
|
194
|
-
};
|
package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
2
|
-
import { FieldErrors } from 'react-hook-form';
|
|
3
|
-
import { VoltageLevelInfos } from '../../../utils/types/equipmentType';
|
|
4
|
-
import { ExpertFilter, IdentifiableAttributes } from '../../filter';
|
|
5
|
-
import { UseComputationParametersFormReturn } from '../common/utils';
|
|
6
|
-
type DynamicSimulationFormProps = {
|
|
7
|
-
dynamicSimulationMethods: UseComputationParametersFormReturn;
|
|
8
|
-
renderTitleFields?: () => ReactNode;
|
|
9
|
-
renderActions?: (onSubmitError: (errors: FieldErrors) => void) => ReactNode;
|
|
10
|
-
voltageLevelsFetcher?: () => Promise<VoltageLevelInfos[]>;
|
|
11
|
-
countriesFetcher?: () => Promise<string[]>;
|
|
12
|
-
evaluateFilterFetcher?: (filter: ExpertFilter) => Promise<IdentifiableAttributes[]>;
|
|
13
|
-
};
|
|
14
|
-
export declare function DynamicSimulationForm({ dynamicSimulationMethods, renderTitleFields, renderActions, voltageLevelsFetcher, countriesFetcher, evaluateFilterFetcher, }: Readonly<DynamicSimulationFormProps>): import("react/jsx-runtime").JSX.Element;
|
|
15
|
-
export {};
|
|
@@ -1,156 +0,0 @@
|
|
|
1
|
-
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Grid, Tabs, Tab, LinearProgress } from "@mui/material";
|
|
3
|
-
import { FormattedMessage } from "react-intl";
|
|
4
|
-
import { TabPanel } from "../common/parameters.js";
|
|
5
|
-
import "react";
|
|
6
|
-
import "../../../utils/conversionUtils.js";
|
|
7
|
-
import "../../../utils/types/equipmentType.js";
|
|
8
|
-
import "@mui/icons-material";
|
|
9
|
-
import { mergeSx } from "../../../utils/styles.js";
|
|
10
|
-
import "../../../utils/yupConfig.js";
|
|
11
|
-
import "localized-countries";
|
|
12
|
-
import "localized-countries/data/fr";
|
|
13
|
-
import "localized-countries/data/en";
|
|
14
|
-
import "notistack";
|
|
15
|
-
import "react-hook-form";
|
|
16
|
-
import "../../inputs/reactHookForm/provider/CustomFormProvider.js";
|
|
17
|
-
import "../../dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
18
|
-
import "../../dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
19
|
-
import "../../treeViewFinder/TreeViewFinder.js";
|
|
20
|
-
import { ProviderParam } from "../common/ProviderParam.js";
|
|
21
|
-
import "../../overflowableText/OverflowableText.js";
|
|
22
|
-
import "yup";
|
|
23
|
-
import "../../inputs/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
24
|
-
import "../../customAGGrid/customAggrid.js";
|
|
25
|
-
import "ag-grid-community";
|
|
26
|
-
import "react-papaparse";
|
|
27
|
-
import "react-csv-downloader";
|
|
28
|
-
import "../../inputs/reactHookForm/numbers/RangeInput.js";
|
|
29
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
30
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
31
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
32
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
34
|
-
import "../../inputs/reactHookForm/expandableInput/ExpandableInput.js";
|
|
35
|
-
import "@react-querybuilder/material";
|
|
36
|
-
import "../../filter/expert/expertFilterConstants.js";
|
|
37
|
-
import "../../inputs/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
38
|
-
import "uuid";
|
|
39
|
-
import "../../inputs/reactQueryBuilder/PropertyValueEditor.js";
|
|
40
|
-
import "react-querybuilder";
|
|
41
|
-
import { getTabStyle, parametersStyles } from "../parameters-style.js";
|
|
42
|
-
import "../common/widget/parameter-line-slider.js";
|
|
43
|
-
import "../common/limitreductions/columns-definitions.js";
|
|
44
|
-
import "react-dom";
|
|
45
|
-
import "@hello-pangea/dnd";
|
|
46
|
-
import "../common/contingency-table/columns-definitions.js";
|
|
47
|
-
import { useTabs } from "../common/hook/use-tabs.js";
|
|
48
|
-
import "@hookform/resolvers/yup";
|
|
49
|
-
import "../../filter/HeaderFilterForm.js";
|
|
50
|
-
import { TabValues } from "./dynamic-simulation.type.js";
|
|
51
|
-
import "./time-delay/time-delay-parameters-utils.js";
|
|
52
|
-
import { TimeDelayParameters } from "./time-delay/time-delay-parameters.js";
|
|
53
|
-
import "./solver/solver-parameters-utils.js";
|
|
54
|
-
import { SolverParameters } from "./solver/solver-parameters.js";
|
|
55
|
-
import { MAPPING } from "./mapping/mapping-parameters-constants.js";
|
|
56
|
-
import "./mapping/mapping-parameters-utils.js";
|
|
57
|
-
import { MappingParameters } from "./mapping/mapping-parameters.js";
|
|
58
|
-
import "./network/network-parameters-utils.js";
|
|
59
|
-
import { NetworkParameters } from "./network/network-parameters.js";
|
|
60
|
-
import CurveParameters from "./curve/curve-parameters.js";
|
|
61
|
-
function DynamicSimulationForm({
|
|
62
|
-
dynamicSimulationMethods,
|
|
63
|
-
renderTitleFields,
|
|
64
|
-
renderActions,
|
|
65
|
-
// fetchers for curve parameters
|
|
66
|
-
voltageLevelsFetcher,
|
|
67
|
-
countriesFetcher,
|
|
68
|
-
evaluateFilterFetcher
|
|
69
|
-
}) {
|
|
70
|
-
const { paramsLoaded, formattedProviders } = dynamicSimulationMethods;
|
|
71
|
-
const { selectedTab, tabsWithError, onTabChange, onError } = useTabs({
|
|
72
|
-
defaultTab: TabValues.TAB_TIME_DELAY,
|
|
73
|
-
tabEnum: TabValues
|
|
74
|
-
});
|
|
75
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
76
|
-
renderTitleFields?.(),
|
|
77
|
-
paramsLoaded ? /* @__PURE__ */ jsxs(Grid, { container: true, sx: { height: "100%" }, direction: "column", children: [
|
|
78
|
-
/* @__PURE__ */ jsx(Grid, { container: true, children: /* @__PURE__ */ jsx(ProviderParam, { options: formattedProviders }) }),
|
|
79
|
-
/* @__PURE__ */ jsx(Grid, { children: /* @__PURE__ */ jsxs(Tabs, { value: selectedTab, variant: "scrollable", onChange: onTabChange, "aria-label": "parameters", children: [
|
|
80
|
-
/* @__PURE__ */ jsx(
|
|
81
|
-
Tab,
|
|
82
|
-
{
|
|
83
|
-
label: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationTimeDelay" }),
|
|
84
|
-
value: TabValues.TAB_TIME_DELAY,
|
|
85
|
-
sx: getTabStyle(tabsWithError, TabValues.TAB_TIME_DELAY)
|
|
86
|
-
}
|
|
87
|
-
),
|
|
88
|
-
/* @__PURE__ */ jsx(
|
|
89
|
-
Tab,
|
|
90
|
-
{
|
|
91
|
-
label: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationSolver" }),
|
|
92
|
-
value: TabValues.TAB_SOLVER,
|
|
93
|
-
sx: getTabStyle(tabsWithError, TabValues.TAB_SOLVER)
|
|
94
|
-
}
|
|
95
|
-
),
|
|
96
|
-
/* @__PURE__ */ jsx(
|
|
97
|
-
Tab,
|
|
98
|
-
{
|
|
99
|
-
label: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationMapping" }),
|
|
100
|
-
value: TabValues.TAB_MAPPING,
|
|
101
|
-
sx: getTabStyle(tabsWithError, TabValues.TAB_MAPPING)
|
|
102
|
-
}
|
|
103
|
-
),
|
|
104
|
-
/* @__PURE__ */ jsx(
|
|
105
|
-
Tab,
|
|
106
|
-
{
|
|
107
|
-
label: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationNetwork" }),
|
|
108
|
-
value: TabValues.TAB_NETWORK,
|
|
109
|
-
sx: getTabStyle(tabsWithError, TabValues.TAB_NETWORK)
|
|
110
|
-
}
|
|
111
|
-
),
|
|
112
|
-
/* @__PURE__ */ jsx(
|
|
113
|
-
Tab,
|
|
114
|
-
{
|
|
115
|
-
label: /* @__PURE__ */ jsx(FormattedMessage, { id: "DynamicSimulationCurve" }),
|
|
116
|
-
value: TabValues.TAB_CURVE,
|
|
117
|
-
sx: getTabStyle(tabsWithError, TabValues.TAB_CURVE)
|
|
118
|
-
}
|
|
119
|
-
)
|
|
120
|
-
] }) }),
|
|
121
|
-
/* @__PURE__ */ jsxs(
|
|
122
|
-
Grid,
|
|
123
|
-
{
|
|
124
|
-
container: true,
|
|
125
|
-
item: true,
|
|
126
|
-
xs: true,
|
|
127
|
-
sx: mergeSx(parametersStyles.scrollableGrid, {
|
|
128
|
-
paddingTop: 0,
|
|
129
|
-
width: "100%"
|
|
130
|
-
}),
|
|
131
|
-
children: [
|
|
132
|
-
/* @__PURE__ */ jsx(TabPanel, { value: selectedTab, index: TabValues.TAB_TIME_DELAY, children: /* @__PURE__ */ jsx(TimeDelayParameters, { path: TabValues.TAB_TIME_DELAY }) }),
|
|
133
|
-
/* @__PURE__ */ jsx(TabPanel, { value: selectedTab, index: TabValues.TAB_SOLVER, children: /* @__PURE__ */ jsx(SolverParameters, { path: TabValues.TAB_SOLVER }) }),
|
|
134
|
-
/* @__PURE__ */ jsx(TabPanel, { value: selectedTab, index: TabValues.TAB_MAPPING, children: /* @__PURE__ */ jsx(MappingParameters, { path: TabValues.TAB_MAPPING }) }),
|
|
135
|
-
/* @__PURE__ */ jsx(TabPanel, { value: selectedTab, index: TabValues.TAB_NETWORK, children: /* @__PURE__ */ jsx(NetworkParameters, { path: TabValues.TAB_NETWORK }) }),
|
|
136
|
-
/* @__PURE__ */ jsx(TabPanel, { value: selectedTab, index: TabValues.TAB_CURVE, children: /* @__PURE__ */ jsx(
|
|
137
|
-
CurveParameters,
|
|
138
|
-
{
|
|
139
|
-
path: TabValues.TAB_CURVE,
|
|
140
|
-
mappingPath: `${TabValues.TAB_MAPPING}.${MAPPING}`,
|
|
141
|
-
voltageLevelsFetcher,
|
|
142
|
-
countriesFetcher,
|
|
143
|
-
evaluateFilterFetcher
|
|
144
|
-
}
|
|
145
|
-
) })
|
|
146
|
-
]
|
|
147
|
-
},
|
|
148
|
-
"dsParameters"
|
|
149
|
-
),
|
|
150
|
-
renderActions?.(onError)
|
|
151
|
-
] }) : /* @__PURE__ */ jsx(LinearProgress, {})
|
|
152
|
-
] });
|
|
153
|
-
}
|
|
154
|
-
export {
|
|
155
|
-
DynamicSimulationForm
|
|
156
|
-
};
|