@gridsuite/commons-ui 0.214.0 → 0.216.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 +200 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +182 -0
- package/dist/components/composite/customAGGrid/cell-renderers.js +201 -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 +20 -0
- package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +69 -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 +435 -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 +69 -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 +183 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.js +375 -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 +126 -0
- package/dist/components/composite/filter/FilterForm.js +44 -0
- package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
- package/dist/components/composite/filter/HeaderFilterForm.js +71 -0
- package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +112 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.js +117 -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 +1453 -0
- package/dist/components/composite/filter/expert/expertFilterUtils.js +373 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +122 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +243 -0
- package/dist/components/composite/filter/filter.type.d.ts +57 -0
- package/dist/components/composite/filter/utils/filterApi.js +110 -0
- package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
- package/dist/components/composite/filter/utils/filterFormUtils.js +59 -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 +49 -0
- package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
- package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +46 -0
- package/dist/components/composite/reactQueryBuilder/OperatorSelector.js +24 -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 +1 -17
- package/dist/components/index.js +58 -670
- package/dist/components/ui/checkBoxList/CheckBoxListItem.js +0 -1
- package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +0 -1
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +0 -1
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +0 -1
- package/dist/components/ui/csvDownloader/use-csv-export.js +0 -1
- package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +1 -2
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +2 -8
- package/dist/components/ui/dialogs/elementSaveDialog/utils.js +1 -1
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +1 -2
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +304 -0
- package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
- package/dist/components/ui/directoryItemSelector/utils.js +101 -0
- package/dist/components/ui/index.d.ts +2 -2
- package/dist/components/ui/index.js +8 -45
- package/dist/components/ui/overflowableText/OverflowableText.js +0 -1
- package/dist/components/ui/reactHookForm/CountrySelectionInput.js +0 -1
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +1 -2
- package/dist/components/ui/reactHookForm/OverflowableChipWithHelperText.js +0 -1
- package/dist/components/ui/reactHookForm/chip-items-input.js +0 -1
- package/dist/components/ui/reactHookForm/index.d.ts +0 -1
- package/dist/components/ui/reactHookForm/index.js +0 -8
- package/dist/components/ui/reactHookForm/numbers/RangeInput.d.ts +2 -2
- package/dist/components/ui/reactHookForm/numbers/RangeInput.js +1 -2
- package/dist/components/ui/reactHookForm/tableInputs/table-numerical-input.js +0 -1
- package/dist/components/ui/reactHookForm/text/DescriptionField.js +0 -1
- 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/configureYup.d.ts +1 -0
- package/dist/configureYup.js +22 -0
- package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
- package/dist/features/announcement/AnnouncementBanner.js +88 -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 +655 -0
- package/dist/features/network-modification-table/network-modifications-table.js +216 -0
- package/dist/features/network-modification-table/renderers/description-cell.js +74 -0
- package/dist/features/network-modification-table/renderers/name-cell.js +220 -0
- package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +113 -0
- package/dist/features/network-modification-table/renderers/switch-cell.js +62 -0
- package/dist/features/network-modification-table/row/drag-row-clone.js +34 -0
- package/dist/features/network-modification-table/row/modification-row.js +106 -0
- package/dist/features/network-modification-table/use-modifications-drag-and-drop.js +192 -0
- package/dist/features/network-modification-table/utils.js +165 -0
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +121 -0
- package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +160 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-constants.js +401 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +232 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +28 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-utils.js +91 -0
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +82 -0
- package/dist/features/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +28 -0
- package/dist/features/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +53 -0
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +75 -0
- package/dist/features/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +24 -0
- package/dist/features/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +51 -0
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +92 -0
- package/dist/features/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +24 -0
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +56 -0
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +110 -0
- package/dist/features/network-modifications/common/connectivity/PositionForm.js +106 -0
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +158 -0
- package/dist/features/network-modifications/common/connectivity/connectivityForm.utils.js +195 -0
- package/dist/features/network-modifications/common/index.d.ts +16 -0
- package/dist/features/network-modifications/common/index.js +131 -0
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.d.ts +10 -0
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js +99 -0
- package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.js +50 -0
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +66 -0
- package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +68 -0
- package/dist/features/network-modifications/common/measurements/index.d.ts +14 -0
- package/dist/features/network-modifications/common/measurements/index.js +28 -0
- package/dist/features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +54 -0
- package/dist/features/network-modifications/common/measurements/powerWithValidity.utils.js +35 -0
- package/dist/features/network-modifications/common/properties/PropertiesForm.js +107 -0
- package/dist/features/network-modifications/common/properties/PropertyForm.js +94 -0
- package/dist/features/network-modifications/common/properties/propertyUtils.js +160 -0
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +96 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +95 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +112 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +153 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +98 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +160 -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 +71 -0
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +63 -0
- package/dist/features/network-modifications/common/setpoints/setPoints.utils.js +62 -0
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +62 -0
- package/dist/features/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +35 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +115 -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 +54 -0
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +188 -0
- package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +72 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +41 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +54 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +20 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +84 -0
- package/dist/features/network-modifications/index.js +283 -0
- package/dist/features/network-modifications/load/common/LoadDialogHeader.js +107 -0
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
- package/dist/features/network-modifications/load/common/load.utils.js +33 -0
- package/dist/features/network-modifications/load/creation/loadCreation.utils.js +92 -0
- package/dist/features/network-modifications/load/modification/loadModification.utils.js +124 -0
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +192 -0
- package/dist/features/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +88 -0
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +98 -0
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +118 -0
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +79 -0
- package/dist/features/network-modifications/substation/creation/substationCreation.utils.js +43 -0
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +103 -0
- package/dist/features/network-modifications/substation/modification/substationModification.utils.d.ts +30 -0
- package/dist/features/network-modifications/substation/modification/substationModification.utils.js +41 -0
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +144 -0
- package/dist/features/network-modifications/voltageLevel/creation/index.js +73 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +87 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +58 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +53 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +93 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +94 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +78 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +77 -0
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevel.constants.js +58 -0
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +266 -0
- package/dist/features/network-modifications/voltageLevel/index.js +83 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +7 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +220 -0
- package/dist/features/network-modifications/voltageLevel/modification/index.js +12 -0
- package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +41 -0
- package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +82 -0
- package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +105 -0
- package/dist/features/node/build-status-chip.js +84 -0
- package/dist/features/parameters/common/ProviderParam.js +51 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.js +106 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.js +140 -0
- package/dist/features/parameters/common/hook/use-parameters-form.js +59 -0
- package/dist/features/parameters/common/limitreductions/columns-definitions.d.ts +62 -0
- package/dist/features/parameters/common/limitreductions/columns-definitions.js +72 -0
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +58 -0
- package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +64 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +33 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.d.ts +18 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +50 -0
- package/dist/features/parameters/common/parameter-field.js +105 -0
- package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
- package/dist/features/parameters/common/parameter-table/table-cell.js +83 -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 +115 -0
- package/dist/features/parameters/common/parameters-creation-dialog.js +86 -0
- package/dist/features/parameters/common/utils.d.ts +23 -0
- package/dist/features/parameters/common/utils.js +88 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +42 -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 +52 -0
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +59 -0
- package/dist/features/parameters/common/widget/parameter-line-slider.js +71 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +98 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +177 -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 +150 -0
- package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +30 -0
- package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.js +61 -0
- package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +94 -0
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +67 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +129 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +99 -0
- package/dist/features/parameters/dynamic-security-analysis/scenario-parameters.js +24 -0
- package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +46 -0
- package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +99 -0
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +18 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters-utils.js +17 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +176 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +122 -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 +238 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +186 -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 +147 -0
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +12 -0
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters.js +51 -0
- package/dist/features/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +72 -0
- package/dist/features/parameters/dynamic-simulation/network/network-parameters-utils.js +50 -0
- package/dist/features/parameters/dynamic-simulation/network/network-parameters.js +119 -0
- package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +32 -0
- package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +32 -0
- package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +133 -0
- package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +68 -0
- package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +16 -0
- package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +53 -0
- package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +92 -0
- package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +30 -0
- package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +113 -0
- package/dist/features/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +18 -0
- package/dist/features/parameters/dynamic-simulation/solver/solver-parameters-utils.js +37 -0
- package/dist/features/parameters/dynamic-simulation/solver/solver-parameters.js +52 -0
- package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +18 -0
- package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +20 -0
- package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +29 -0
- package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +116 -0
- package/dist/features/parameters/loadflow/load-flow-general-parameters.js +180 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-content.js +79 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +106 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-form.js +104 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-header.js +96 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +195 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.d.ts +82 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +107 -0
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.d.ts +31 -0
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +250 -0
- package/dist/features/parameters/network-visualizations/map-parameters.js +112 -0
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +60 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-form.js +104 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +99 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +133 -0
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +102 -0
- package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +30 -0
- package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +154 -0
- package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +58 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +97 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +116 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +162 -0
- package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +26 -0
- package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +134 -0
- package/dist/features/parameters/security-analysis/columns-definitions.d.ts +69 -0
- package/dist/features/parameters/security-analysis/columns-definitions.js +74 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +115 -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 +159 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +187 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +83 -0
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +140 -0
- package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +187 -0
- package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
- package/dist/features/parameters/sensi/columns-definitions.js +344 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +121 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +134 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +191 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +72 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +258 -0
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +379 -0
- package/dist/features/parameters/sensi/utils.d.ts +411 -0
- package/dist/features/parameters/sensi/utils.js +364 -0
- package/dist/features/parameters/short-circuit/columns-definition.js +126 -0
- package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +211 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +70 -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 +48 -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 +103 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +106 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +66 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +172 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.d.ts +46 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +294 -0
- package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +93 -0
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +141 -0
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +33 -0
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +245 -0
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +121 -0
- package/dist/features/parameters/voltage-init/general-parameters.js +114 -0
- package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +32 -0
- package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +212 -0
- package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +213 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +97 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +152 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +171 -0
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +170 -0
- package/dist/features/topBar/AboutDialog.js +349 -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/hooks/use-unique-name-validation.js +0 -1
- package/dist/hooks/useConfidentialityWarning.js +0 -1
- package/dist/hooks/useGetLabelEquipmentTypes.js +0 -1
- package/dist/hooks/useModificationLabelComputer.js +0 -1
- package/dist/hooks/usePredefinedProperties.js +0 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +229 -214
- package/dist/services/config.js +0 -1
- 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/sensitivity-analysis.js +0 -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 +7 -0
- package/dist/translations/en/networkModificationsEn.js +7 -1
- package/dist/translations/fr/networkModificationsFr.d.ts +7 -0
- package/dist/translations/fr/networkModificationsFr.js +7 -1
- package/dist/utils/index.d.ts +0 -1
- package/dist/utils/index.js +1 -4
- package/dist/utils/types/loadflow.type.d.ts +1 -1
- package/dist/utils/types/parameters.type.d.ts +4 -4
- package/package.json +13 -5
- 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/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 -82
- 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 -448
- 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 -82
- 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 -196
- package/dist/components/dnd-table-v2/dnd-table.js +0 -388
- 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 -45
- package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
- package/dist/components/filter/HeaderFilterForm.js +0 -84
- 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 -126
- 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 -253
- 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/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/network-modification-table/network-modifications-table.js +0 -217
- package/dist/components/network-modification-table/renderers/description-cell.js +0 -75
- 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 -114
- package/dist/components/network-modification-table/renderers/switch-cell.js +0 -63
- package/dist/components/network-modification-table/row/drag-row-clone.js +0 -35
- package/dist/components/network-modification-table/row/modification-row.js +0 -107
- package/dist/components/network-modification-table/use-modifications-drag-and-drop.js +0 -193
- package/dist/components/network-modification-table/utils.js +0 -166
- package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -111
- package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -151
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -402
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -245
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -22
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -92
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -95
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -22
- package/dist/components/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -55
- package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -88
- package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -18
- package/dist/components/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -52
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -105
- package/dist/components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -26
- package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -123
- package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -119
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -171
- package/dist/components/network-modifications/common/connectivity/connectivityForm.utils.js +0 -197
- 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/PowerMeasurementsForm.js +0 -51
- package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -79
- package/dist/components/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -69
- package/dist/components/network-modifications/common/measurements/index.d.ts +0 -13
- package/dist/components/network-modifications/common/measurements/index.js +0 -26
- package/dist/components/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -55
- package/dist/components/network-modifications/common/measurements/powerWithValidity.utils.js +0 -37
- package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -120
- package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -107
- package/dist/components/network-modifications/common/properties/propertyUtils.js +0 -161
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -109
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -108
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -125
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -155
- package/dist/components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -100
- package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -76
- package/dist/components/network-modifications/common/setpoints/setPoints.utils.js +0 -63
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -75
- package/dist/components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -37
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -178
- package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -86
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -67
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -22
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -85
- package/dist/components/network-modifications/index.js +0 -278
- package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -97
- package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
- package/dist/components/network-modifications/load/common/load.utils.js +0 -34
- package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -106
- package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -114
- package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -205
- package/dist/components/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -90
- package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -88
- package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -109
- package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -69
- package/dist/components/network-modifications/substation/creation/substationCreation.utils.js +0 -45
- package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -93
- package/dist/components/network-modifications/substation/modification/substationModification.utils.d.ts +0 -24
- package/dist/components/network-modifications/substation/modification/substationModification.utils.js +0 -42
- package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -134
- package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -63
- package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -100
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -71
- 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 -106
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -107
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -68
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -90
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -59
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -257
- package/dist/components/network-modifications/voltageLevel/index.js +0 -70
- package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -5
- package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -160
- package/dist/components/network-modifications/voltageLevel/modification/index.js +0 -9
- package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -35
- package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -36
- package/dist/components/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -75
- package/dist/components/node/build-status-chip.js +0 -85
- package/dist/components/parameters/common/ProviderParam.js +0 -64
- package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
- package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -119
- 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/columns-definitions.d.ts +0 -56
- package/dist/components/parameters/common/limitreductions/columns-definitions.js +0 -73
- package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -71
- package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -77
- 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.d.ts +0 -12
- package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -63
- package/dist/components/parameters/common/parameter-field.js +0 -118
- package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
- package/dist/components/parameters/common/parameter-table/table-cell.js +0 -96
- 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 -128
- package/dist/components/parameters/common/parameters-creation-dialog.js +0 -87
- package/dist/components/parameters/common/utils.d.ts +0 -24
- package/dist/components/parameters/common/utils.js +0 -89
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -55
- 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 -65
- package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -72
- package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -84
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -111
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -189
- 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 -163
- package/dist/components/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -24
- package/dist/components/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -62
- package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -107
- package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -80
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -142
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -112
- package/dist/components/parameters/dynamic-security-analysis/scenario-parameters.js +0 -25
- package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -46
- package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -112
- package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -12
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -18
- 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 -198
- 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 -160
- package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -9
- package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -13
- package/dist/components/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -52
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -66
- package/dist/components/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -51
- package/dist/components/parameters/dynamic-simulation/network/network-parameters.js +0 -120
- package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -26
- package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -33
- package/dist/components/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -134
- package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -62
- package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -17
- package/dist/components/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -53
- package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -86
- package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -31
- package/dist/components/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -113
- package/dist/components/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -12
- package/dist/components/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -38
- package/dist/components/parameters/dynamic-simulation/solver/solver-parameters.js +0 -52
- package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -12
- package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -21
- package/dist/components/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -30
- package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -129
- package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -193
- package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -92
- package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -119
- package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -117
- package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -109
- package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -207
- package/dist/components/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -82
- package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -120
- package/dist/components/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -31
- package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -263
- package/dist/components/parameters/network-visualizations/map-parameters.js +0 -125
- package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -73
- package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -117
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -112
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -145
- package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -115
- package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -30
- package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -167
- package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -71
- package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -110
- package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -129
- package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -174
- package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -26
- package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -147
- package/dist/components/parameters/security-analysis/columns-definitions.d.ts +0 -63
- package/dist/components/parameters/security-analysis/columns-definitions.js +0 -87
- package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -128
- 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 -170
- package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -195
- package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -96
- package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -153
- package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -199
- package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
- package/dist/components/parameters/sensi/columns-definitions.js +0 -356
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -134
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -147
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -203
- package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -85
- package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -270
- package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -392
- package/dist/components/parameters/sensi/utils.d.ts +0 -411
- package/dist/components/parameters/sensi/utils.js +0 -376
- package/dist/components/parameters/short-circuit/columns-definition.js +0 -127
- package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -224
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -83
- 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 -61
- 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 -116
- package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -119
- package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -79
- package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -184
- package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -40
- package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -307
- package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -106
- package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -154
- package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -33
- package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -258
- package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -134
- package/dist/components/parameters/voltage-init/general-parameters.js +0 -127
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -32
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -225
- package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -226
- package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -110
- package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -165
- package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -183
- package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -183
- package/dist/components/topBar/AboutDialog.js +0 -349
- package/dist/components/topBar/UserInformationDialog.js +0 -75
- 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/ui/announcement/AnnouncementBanner.d.ts +0 -15
- package/dist/components/ui/announcement/AnnouncementBanner.js +0 -88
- package/dist/components/ui/announcement/useGlobalAnnouncement.d.ts +0 -10
- package/dist/components/ui/announcement/useGlobalAnnouncement.js +0 -48
- package/dist/components/ui/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
- package/dist/components/ui/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
- package/dist/components/ui/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
- package/dist/components/ui/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
- package/dist/components/ui/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
- package/dist/components/ui/reactQueryBuilder/CombinatorSelector.js +0 -40
- package/dist/components/ui/reactQueryBuilder/CountryValueEditor.js +0 -50
- package/dist/components/ui/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
- package/dist/components/ui/reactQueryBuilder/ElementValueEditor.js +0 -47
- package/dist/components/ui/reactQueryBuilder/OperatorSelector.js +0 -25
- package/dist/components/ui/reactQueryBuilder/PropertyValueEditor.js +0 -102
- package/dist/components/ui/reactQueryBuilder/RemoveButton.js +0 -19
- package/dist/components/ui/reactQueryBuilder/ValueEditor.js +0 -96
- package/dist/components/ui/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
- package/dist/components/ui/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
- package/dist/components/ui/reactQueryBuilder/hooks/useConvertValue.js +0 -19
- package/dist/utils/yupConfig.d.ts +0 -8
- package/dist/utils/yupConfig.js +0 -15
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
- /package/dist/components/{ui/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
- /package/dist/components/{ui/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/{ui → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/AddButton.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/FieldSelector.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/ValueSelector.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/index.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/index.d.ts +0 -0
- /package/dist/components/{ui → composite}/reactQueryBuilder/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/{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/ui → features}/announcement/AnnouncementNotification.d.ts +0 -0
- /package/dist/{components/ui → features}/announcement/AnnouncementNotification.js +0 -0
- /package/dist/{components/ui → features}/announcement/index.d.ts +0 -0
- /package/dist/{components/ui → 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/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/row/drag-row-clone.d.ts +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/use-modifications-drag-and-drop.d.ts +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-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-form.d.ts +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/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/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/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/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/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/injectionActiveReactivePowerForm.utils.d.ts +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/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/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/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/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/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/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/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/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/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/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/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/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/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/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.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/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/NotificationsProvider.js +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/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/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/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/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-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.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.d.ts +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.d.ts +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.d.ts +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.d.ts +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.d.ts +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.d.ts +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.d.ts +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/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/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/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/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/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.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/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/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/TopBar.d.ts +0 -0
- /package/dist/{components → features}/topBar/TopBar.js +0 -0
- /package/dist/{components → features}/topBar/UserInformationDialog.d.ts +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
package/dist/index.js
CHANGED
|
@@ -1,162 +1,10 @@
|
|
|
1
1
|
import { default as default2 } from "./_mocks_/svg.js";
|
|
2
|
-
import { AuthenticationRouter } from "./components/authentication/AuthenticationRouter.js";
|
|
3
|
-
import { default as default3 } from "./components/authentication/AuthenticationRouterErrorDisplay.js";
|
|
4
|
-
import { Login } from "./components/authentication/Login.js";
|
|
5
|
-
import { Logout } from "./components/authentication/Logout.js";
|
|
6
|
-
import { SignInCallbackHandler } from "./components/authentication/SignInCallbackHandler.js";
|
|
7
|
-
import { SilentRenewCallbackHandler } from "./components/authentication/SilentRenewCallbackHandler.js";
|
|
8
|
-
import { ErrorInLogoutAlert } from "./components/authentication/alert/ErrorInLogoutAlert.js";
|
|
9
|
-
import { ErrorInUserValidationAlert } from "./components/authentication/alert/ErrorInUserValidationAlert.js";
|
|
10
|
-
import { UnauthorizedAccessAlert } from "./components/authentication/alert/UnauthorizedAccessAlert.js";
|
|
11
|
-
import { dispatchUser, getPreLoginPath, handleSigninCallback, handleSilentRenewCallback, initializeAuthenticationDev, initializeAuthenticationProd, login, logout } from "./components/authentication/utils/authService.js";
|
|
12
|
-
import { UserManagerMock } from "./components/authentication/utils/userManagerMock.js";
|
|
13
|
-
import { CardErrorBoundary } from "./components/cardErrorBoundary/CardErrorBoundary.js";
|
|
14
|
-
import { CUSTOM_AGGRID_THEME, styles } from "./components/customAGGrid/customAggrid.style.js";
|
|
15
|
-
import { CustomAGGrid } from "./components/customAGGrid/customAggrid.js";
|
|
16
|
-
import { SeparatorCellRenderer } from "./components/customAGGrid/separatorCellRenderer.js";
|
|
17
|
-
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./components/customAGGrid/cell-renderers.js";
|
|
18
|
-
import { DirectoryItemSelector } from "./components/directoryItemSelector/DirectoryItemSelector.js";
|
|
19
|
-
import { DndTable } from "./components/dnd-table-v2/dnd-table.js";
|
|
20
|
-
import { DndColumnType, MAX_ROWS_NUMBER, SELECTED } from "./components/dnd-table-v2/dnd-table.type.js";
|
|
21
|
-
import { getDefaultRowData } from "./components/dnd-table-v2/dnd-table-utils.js";
|
|
22
|
-
import { DndTableAddRowsDialog } from "./components/dnd-table-v2/dnd-table-add-rows-dialog.js";
|
|
23
|
-
import { DndTableBottomLeftButtons } from "./components/dnd-table-v2/dnd-table-bottom-left-buttons.js";
|
|
24
|
-
import { DndTableBottomRightButtons } from "./components/dnd-table-v2/dnd-table-bottom-right-buttons.js";
|
|
25
|
-
import { EquipmentItem } from "./components/elementSearch/elementItem/EquipmentItem.js";
|
|
26
|
-
import { ElementSearchDialog } from "./components/elementSearch/elementSearchDialog/ElementSearchDialog.js";
|
|
27
|
-
import { ElementSearchInput } from "./components/elementSearch/elementSearchInput/ElementSearchInput.js";
|
|
28
|
-
import { useElementSearch } from "./components/elementSearch/hooks/useElementSearch.js";
|
|
29
|
-
import { TagRenderer } from "./components/elementSearch/tagRenderer/TagRenderer.js";
|
|
30
|
-
import { FilterCreationDialog } from "./components/filter/FilterCreationDialog.js";
|
|
31
|
-
import { FilterForm } from "./components/filter/FilterForm.js";
|
|
32
|
-
import { DISTRIBUTION_KEY, FilterType } from "./components/filter/constants/FilterConstants.js";
|
|
33
|
-
import { ExpertFilterEditionDialog } from "./components/filter/expert/ExpertFilterEditionDialog.js";
|
|
34
|
-
import { ExpertFilterForm, expertFilterSchema, getExpertFilterEmptyFormData } from "./components/filter/expert/ExpertFilterForm.js";
|
|
35
|
-
import { CombinatorType, DataType, OperatorType } from "./components/filter/expert/expertFilter.type.js";
|
|
36
|
-
import { COMBINATOR_OPTIONS, CONVERTERS_MODE_OPTIONS, ENERGY_SOURCE_OPTIONS, EXPERT_FILTER_EQUIPMENTS, EXPERT_FILTER_FIELDS, EXPERT_FILTER_QUERY, FIELDS_OPTIONS, LOAD_TYPE_OPTIONS, OPERATOR_OPTIONS, PHASE_REGULATION_MODE_OPTIONS, RATIO_REGULATION_MODE_OPTIONS, REGULATION_TYPE_OPTIONS, RULES, SHUNT_COMPENSATOR_TYPE_OPTIONS, SVAR_REGULATION_MODE_OPTIONS } from "./components/filter/expert/expertFilterConstants.js";
|
|
37
|
-
import { countRules, exportExpertRules, getNumberOfSiblings, getOperators, importExpertRules, queryValidator, recursiveRemove, testQuery } from "./components/filter/expert/expertFilterUtils.js";
|
|
38
|
-
import { ExplicitNamingFilterEditionDialog } from "./components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js";
|
|
39
|
-
import { ExplicitNamingFilterForm, explicitNamingFilterSchema, getExplicitNamingFilterEmptyFormData } from "./components/filter/explicitNaming/ExplicitNamingFilterForm.js";
|
|
40
|
-
import { FILTER_EQUIPMENTS_ATTRIBUTES } from "./components/filter/explicitNaming/ExplicitNamingFilterConstants.js";
|
|
41
|
-
import { saveExpertFilter, saveExplicitNamingFilter } from "./components/filter/utils/filterApi.js";
|
|
42
|
-
import { CONTINGENCY_LIST_EQUIPMENTS, FILTER_EQUIPMENTS } from "./components/filter/utils/filterFormUtils.js";
|
|
43
|
-
import { FlatParameters, extractDefault } from "./components/flatParameters/FlatParameters.js";
|
|
44
|
-
import "react/jsx-runtime";
|
|
45
|
-
import "@mui/material";
|
|
46
|
-
import { CustomTooltip } from "./components/ui/tooltip/CustomTooltip.js";
|
|
47
|
-
import "react-intl";
|
|
48
|
-
import { AboutDialog } from "./components/topBar/AboutDialog.js";
|
|
49
|
-
import { GridLogo, LogoText } from "./components/topBar/GridLogo.js";
|
|
50
|
-
import { DevModeBanner } from "./components/topBar/DevModeBanner.js";
|
|
51
|
-
import { TopBar } from "./components/topBar/TopBar.js";
|
|
52
|
-
import { TreeViewFinder, generateTreeViewFinderClass } from "./components/treeViewFinder/TreeViewFinder.js";
|
|
53
|
-
import { doesNodeHasChildren } from "./components/treeViewFinder/TreeViewUtils.js";
|
|
54
|
-
import { NotificationsProvider } from "./components/notifications/NotificationsProvider.js";
|
|
55
|
-
import { NotificationsContext } from "./components/notifications/contexts/NotificationsContext.js";
|
|
56
|
-
import { useNotificationsListener } from "./components/notifications/hooks/useNotificationsListener.js";
|
|
57
|
-
import { useListenerManager } from "./components/notifications/hooks/useListenerManager.js";
|
|
58
|
-
import { ComputingType, formatComputingTypeLabel, isValidComputingType } from "./components/parameters/common/computing-type.js";
|
|
59
|
-
import { COMMON_PARAMETERS, CONTINGENCIES, CONTINGENCY_LISTS, CONTINGENCY_LISTS_INFOS, PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, SPECIFIC_PARAMETERS, VERSION_PARAMETER, VOLTAGE_LEVEL } from "./components/parameters/common/constants.js";
|
|
60
|
-
import { LineSeparator } from "./components/parameters/common/line-separator.js";
|
|
61
|
-
import { LabelledButton, SwitchWithLabel, TabPanel } from "./components/parameters/common/parameters.js";
|
|
62
|
-
import { CreateParameterDialog } from "./components/parameters/common/parameters-creation-dialog.js";
|
|
63
|
-
import { ProviderParam } from "./components/parameters/common/ProviderParam.js";
|
|
64
|
-
import { ParameterFloat } from "./components/parameters/common/widget/parameter-float.js";
|
|
65
|
-
import { ParameterGroup } from "./components/parameters/common/widget/parameter-group.js";
|
|
66
|
-
import { ParameterLineDirectoryItemsInput } from "./components/parameters/common/widget/parameter-line-directory-items-input.js";
|
|
67
|
-
import { ParameterLineSlider, sanitizePercentageValue } from "./components/parameters/common/widget/parameter-line-slider.js";
|
|
68
|
-
import { ParameterSwitch } from "./components/parameters/common/widget/parameter-switch.js";
|
|
69
|
-
import { CustomVoltageLevelTable } from "./components/parameters/common/voltage-level-table/custom-voltage-level-table.js";
|
|
70
|
-
import { CustomVoltageLevelTableCell } from "./components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js";
|
|
71
|
-
import { CustomVoltageLevelTableRow } from "./components/parameters/common/voltage-level-table/custom-voltage-level-table-row.js";
|
|
72
|
-
import { COLUMNS_DEFINITIONS_LIMIT_REDUCTIONS, IST_FORM, LIMIT_DURATION_FORM, LIMIT_REDUCTIONS_FORM, TAB_INFO, TabValues, VOLTAGE_LEVELS_FORM, getLimitReductionsFormSchema, toFormValuesLimitReductions } from "./components/parameters/common/limitreductions/columns-definitions.js";
|
|
73
|
-
import { LimitReductionsTableForm } from "./components/parameters/common/limitreductions/limit-reductions-table-form.js";
|
|
74
|
-
import { LimitReductionTableRow } from "./components/parameters/common/limitreductions/limit-reduction-table-row.js";
|
|
75
|
-
import { LimitReductionTableCell } from "./components/parameters/common/limitreductions/limit-reduction-table-cell.js";
|
|
76
|
-
import { ContingencyTable } from "./components/parameters/common/contingency-table/contingency-table.js";
|
|
77
|
-
import { COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS, getContingencyListsInfosFormSchema, isValidContingencyRow, toFormValuesContingencyListsInfos } from "./components/parameters/common/contingency-table/columns-definitions.js";
|
|
78
|
-
import { useTabs } from "./components/parameters/common/hook/use-tabs.js";
|
|
79
|
-
import { useParametersForm } from "./components/parameters/common/hook/use-parameters-form.js";
|
|
80
|
-
import { CENTER_LABEL, COMPONENT_LIBRARY, DIAGONAL_LABEL, INTL_LINE_FLOW_MODE_OPTIONS, INTL_SUBSTATION_LAYOUT_OPTIONS, LINE_FLOW_MODE, LineFlowMode, MAP_BASE_MAP, MAP_MANUAL_REFRESH, NAD_POSITIONS_GENERATION_MODE, NAD_POSITIONS_GENERATION_MODE_LABEL, NetworkVisualizationTabValues, PARAM_CENTER_LABEL, PARAM_COMPONENT_LIBRARY, PARAM_DIAGONAL_LABEL, PARAM_LINE_FLOW_MODE, PARAM_LINE_FULL_PATH, PARAM_LINE_PARALLEL_PATH, PARAM_MAP_BASEMAP, PARAM_MAP_MANUAL_REFRESH, PARAM_NAD_POSITIONS_GENERATION_MODE, PARAM_SUBSTATION_LAYOUT, SUBSTATION_LAYOUT } from "./components/parameters/network-visualizations/constants.js";
|
|
81
|
-
import { MAP_BASEMAP_CARTO, MAP_BASEMAP_CARTO_NOLABEL, MAP_BASEMAP_ETALAB, MAP_BASEMAP_MAPBOX, NadPositionsGenerationMode, SubstationLayout } from "./components/parameters/network-visualizations/network-visualizations.types.js";
|
|
82
|
-
import { NetworkVisualizationParametersInline } from "./components/parameters/network-visualizations/network-visualizations-parameters-inline.js";
|
|
83
|
-
import { NetworkVisualizationsParametersEditionDialog } from "./components/parameters/network-visualizations/network-visualizations-parameters-dialog.js";
|
|
84
|
-
import { BALANCE_TYPE, CONNECTED_MODE, COUNTRIES_TO_BALANCE, DC, DC_POWER_FACTOR, DC_USE_TRANSFORMER_RATIO, DEFAULT_LIMIT_REDUCTION_VALUE, DISTRIBUTED_SLACK, HVDC_AC_EMULATION, MAX_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, MIN_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, PARAM_LIMIT_REDUCTION, PARAM_PROVIDER_OPENLOADFLOW, PHASE_SHIFTER_REGULATION_ON, READ_SLACK_BUS, SHUNT_COMPENSATOR_VOLTAGE_CONTROL_ON, TWT_SPLIT_SHUNT_ADMITTANCE, USE_REACTIVE_LIMITS, VOLTAGE_INIT_MODE, WRITE_SLACK_BUS, alertThresholdMarks } from "./components/parameters/loadflow/constants.js";
|
|
85
|
-
import { LoadFlowParametersInline } from "./components/parameters/loadflow/load-flow-parameters-inline.js";
|
|
86
|
-
import { LoadFlowParametersEditionDialog } from "./components/parameters/loadflow/load-flow-parameters-dialog.js";
|
|
87
|
-
import { InitialVoltage, NODE_CLUSTER, NODE_CLUSTER_FILTER_IDS, PredefinedParameters, SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE, SHORT_CIRCUIT_MODEL_POWER_ELECTRONICS, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_IN_CALCULATION_CLUSTER, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER, SHORT_CIRCUIT_POWER_ELECTRONICS_CLUSTERS, SHORT_CIRCUIT_POWER_ELECTRONICS_MATERIALS, SHORT_CIRCUIT_PREDEFINED_PARAMS, SHORT_CIRCUIT_VOLTAGE_RANGES, SHORT_CIRCUIT_WITH_FEEDER_RESULT, SHORT_CIRCUIT_WITH_LOADS, SHORT_CIRCUIT_WITH_NEUTRAL_POSITION, SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS, SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS, STARTED_GENERATORS_IN_CALCULATION_CLUSTER_THRESHOLD, STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER_THRESHOLD, intlInitialVoltageProfileMode, intlPredefinedParametersOptions, onlyStartedGeneratorsOptions } from "./components/parameters/short-circuit/constants.js";
|
|
88
|
-
import { ShortCircuitParametersInLine } from "./components/parameters/short-circuit/short-circuit-parameters-inline.js";
|
|
89
|
-
import { ShortCircuitParametersEditionDialog } from "./components/parameters/short-circuit/short-circuit-parameters-dialog.js";
|
|
90
|
-
import { DEFAULT_GENERAL_APPLY_MODIFICATIONS, DEFAULT_REACTIVE_SLACKS_THRESHOLD, DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, DEFAULT_UPDATE_BUS_VOLTAGE, GENERAL, GENERAL_APPLY_MODIFICATIONS, GENERATORS_SELECTION_TYPE, HIGH_VOLTAGE_LIMIT, LEG_SIDE, LOW_VOLTAGE_LIMIT, PRIORITY, RATIO_TAP_CHANGER_POSITION, RATIO_TAP_CHANGER_TARGET_V, REACTIVE_SLACKS_THRESHOLD, SELECTION_TYPE, SHUNT_COMPENSATORS_SELECTION_TYPE, SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, TRANSFORMERS_SELECTION_TYPE, UPDATE_BUS_VOLTAGE, VARIABLE_Q_GENERATORS, VARIABLE_SHUNT_COMPENSATORS, VARIABLE_TRANSFORMERS, VOLTAGE_LIMITS_DEFAULT, VOLTAGE_LIMITS_MODIFICATION, VoltageInitTabValues } from "./components/parameters/voltage-init/constants.js";
|
|
91
|
-
import { EquipmentsSelectionType } from "./components/parameters/voltage-init/voltage-init.type.js";
|
|
92
|
-
import { VoltageInitParametersEditionDialog } from "./components/parameters/voltage-init/voltage-init-parameters-dialog.js";
|
|
93
|
-
import { VoltageInitParametersInLine } from "./components/parameters/voltage-init/voltage-init-parameters-inline.js";
|
|
94
|
-
import { PccMinParametersInLine } from "./components/parameters/pcc-min/pcc-min-parameters-inline.js";
|
|
95
|
-
import { PccMinParametersEditionDialog } from "./components/parameters/pcc-min/pcc-min-parameters-dialog.js";
|
|
96
|
-
import { SecurityAnalysisParametersInline } from "./components/parameters/security-analysis/security-analysis-parameters-inline.js";
|
|
97
|
-
import { SecurityAnalysisParametersDialog } from "./components/parameters/security-analysis/security-analysis-parameters-dialog.js";
|
|
98
|
-
import { SensitivityAnalysisParametersInline } from "./components/parameters/sensi/sensitivity-analysis-parameters-inline.js";
|
|
99
|
-
import { SensitivityAnalysisParametersDialog } from "./components/parameters/sensi/sensitivity-analysis-parameters-dialog.js";
|
|
100
|
-
import { COLUMNS_DEFINITIONS_HVDCS, COLUMNS_DEFINITIONS_INJECTIONS, COLUMNS_DEFINITIONS_INJECTIONS_SET, COLUMNS_DEFINITIONS_NODES, COLUMNS_DEFINITIONS_PSTS, EQUIPMENTS_IN_VOLTAGE_REGULATION_TYPES, HVDC_EQUIPMENT_TYPES, INJECTIONS_EQUIPMENT_TYPES, INJECTION_DISTRIBUTION_TYPES, MONITORED_BRANCHES_EQUIPMENT_TYPES, MONITORED_VOLTAGE_LEVELS_EQUIPMENT_TYPES, PSTS_EQUIPMENT_TYPES, SENSITIVITY_TYPES, SensiBranchesTabValues, SensiTabValues } from "./components/parameters/sensi/columns-definitions.js";
|
|
101
|
-
import { DynamicSimulationInline } from "./components/parameters/dynamic-simulation/dynamic-simulation-inline.js";
|
|
102
|
-
import { CONTINGENCIES_LIST_INFOS, CONTINGENCIES_START_TIME, SCENARIO_DURATION } from "./components/parameters/dynamic-security-analysis/constants.js";
|
|
103
|
-
import { DynamicSecurityAnalysisInline } from "./components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js";
|
|
104
|
-
import { ACCURACY, ACTIVE, CALCULATION_TYPE, LOADS_VARIATIONS, LOAD_FILTERS, LOAD_INCREASE_START_TIME, LOAD_INCREASE_STOP_TIME, LOAD_MODELS_RULE, MARGIN_CALCULATION_START_TIME, START_TIME, STOP_TIME, VARIATION } from "./components/parameters/dynamic-margin-calculation/constants.js";
|
|
105
|
-
import { DynamicMarginCalculationInline } from "./components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js";
|
|
106
|
-
import { OverflowableTableCell } from "./components/muiTable/OverflowableTableCell.js";
|
|
107
|
-
import { OverflowableTableCellWithCheckbox } from "./components/muiTable/OverflowableTableCellWithCheckbox.js";
|
|
108
|
-
import { filledTextField, italicFontTextField, standardTextField } from "./components/network-modifications/common/form.utils.js";
|
|
109
|
-
import { PropertiesForm } from "./components/network-modifications/common/properties/PropertiesForm.js";
|
|
110
|
-
import { PropertyForm } from "./components/network-modifications/common/properties/PropertyForm.js";
|
|
111
|
-
import { copyEquipmentPropertiesForCreation, createPropertyModification, creationPropertiesSchema, emptyProperties, fetchPredefinedProperties, getConcatenatedProperties, getFilledPropertiesFromModification, getPropertiesFromModification, getPropertyValue, initializedProperty, mergeModificationAndEquipmentProperties, modificationPropertiesSchema, toModificationProperties } from "./components/network-modifications/common/properties/propertyUtils.js";
|
|
112
|
-
import { getPowerWithValidityEditData, getPowerWithValidityEmptyFormData, getPowerWithValidityValidationSchema } from "./components/network-modifications/common/measurements/powerWithValidity.utils.js";
|
|
113
|
-
import { getInjectionActiveReactivePowerEditData, getInjectionActiveReactivePowerEditDataProperties, getInjectionActiveReactivePowerEmptyFormData, getInjectionActiveReactivePowerEmptyFormDataProperties, getInjectionActiveReactivePowerValidationSchema, getInjectionActiveReactivePowerValidationSchemaProperties } from "./components/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js";
|
|
114
|
-
import { getBranchActiveReactivePowerEditData, getBranchActiveReactivePowerEditDataProperties, getBranchActiveReactivePowerEmptyFormData, getBranchActiveReactivePowerEmptyFormDataProperties, getBranchActiveReactivePowerValidationSchema, getBranchActiveReactivePowerValidationSchemaProperties } from "./components/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js";
|
|
115
|
-
import { PowerWithValidityForm } from "./components/network-modifications/common/measurements/PowerWithValidityForm.js";
|
|
116
|
-
import { PowerMeasurementsForm } from "./components/network-modifications/common/measurements/PowerMeasurementsForm.js";
|
|
117
|
-
import { BranchActiveReactivePowerMeasurementsForm } from "./components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js";
|
|
118
|
-
import { getActivePowerSetPointSchema, getReactivePowerSetPointSchema, getSetPointsEmptyFormData, getSetPointsSchema, testValueWithinPowerInterval } from "./components/network-modifications/common/setpoints/setPoints.utils.js";
|
|
119
|
-
import { SetPointsForm } from "./components/network-modifications/common/setpoints/SetPointsForm.js";
|
|
120
|
-
import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./components/network-modifications/common/connectivity/connectivityForm.utils.js";
|
|
121
|
-
import { ConnectivityForm } from "./components/network-modifications/common/connectivity/ConnectivityForm.js";
|
|
122
|
-
import { BranchConnectivityForm } from "./components/network-modifications/common/connectivity/BranchConnectivityForm.js";
|
|
123
|
-
import { VoltageLevelConnectivityForm } from "./components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js";
|
|
124
|
-
import { getActivePowerControlEmptyFormData, getActivePowerControlSchema } from "./components/network-modifications/common/activePowerControl/activePowerControlForm.utils.js";
|
|
125
|
-
import { ActivePowerControlForm } from "./components/network-modifications/common/activePowerControl/ActivePowerControlForm.js";
|
|
126
|
-
import { getShortCircuitEmptyFormData, getShortCircuitFormData, getShortCircuitFormSchema } from "./components/network-modifications/common/shortCircuit/shortCircuitForm.utils.js";
|
|
127
|
-
import { ShortCircuitForm } from "./components/network-modifications/common/shortCircuit/ShortCircuitForm.js";
|
|
128
|
-
import { INSERT, REMOVE, getReactiveCapabilityCurveValidationSchema, getReactiveCapabilityCurveValidationSchemaArray, getRowEmptyFormData, setCurrentReactiveCapabilityCurveTable, setSelectedReactiveLimits, toReactiveCapabilityCurveChoiceForGeneratorCreation, toReactiveCapabilityCurveChoiceForGeneratorModification } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js";
|
|
129
|
-
import { ReactiveCapabilityCurveRowForm } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js";
|
|
130
|
-
import { ReactiveCapabilityCurveTableForm } from "./components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
131
|
-
import { REACTIVE_LIMIT_TYPES, getReactiveLimitsEmptyFormData, getReactiveLimitsEmptyFormDataProps, getReactiveLimitsFormData, getReactiveLimitsFormDataProps, getReactiveLimitsSchema, getReactiveLimitsValidationSchema } from "./components/network-modifications/common/reactiveLimits/reactiveLimits.utils.js";
|
|
132
|
-
import { ReactiveLimitsForm } from "./components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js";
|
|
133
|
-
import { getHvdcLccDeletionSchema } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
|
|
134
|
-
import { ShuntCompensatorSelectionForm } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
|
|
135
|
-
import { useHvdcLccDeletion } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
|
|
136
|
-
import { HvdcLccDeletionSpecificForm } from "./components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js";
|
|
137
|
-
import { equipmentDeletionDtoToForm, equipmentDeletionEmptyFormData, equipmentDeletionFormSchema, equipmentDeletionFormToDto, newEquipmentDeletionDto } from "./components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js";
|
|
138
|
-
import { EquipmentDeletionForm } from "./components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js";
|
|
139
|
-
import { useTabsWithError } from "./components/network-modifications/hooks/useTabsWithError.js";
|
|
140
|
-
import { SubstationCreationForm } from "./components/network-modifications/substation/creation/SubstationCreationForm.js";
|
|
141
|
-
import { substationCreationDtoToForm, substationCreationEmptyFormData, substationCreationFormSchema, substationCreationFormToDto } from "./components/network-modifications/substation/creation/substationCreation.utils.js";
|
|
142
|
-
import { SubstationModificationForm } from "./components/network-modifications/substation/modification/SubstationModificationForm.js";
|
|
143
|
-
import { substationModificationDtoToForm, substationModificationEmptyFormData, substationModificationFormSchema, substationModificationFormToDto } from "./components/network-modifications/substation/modification/substationModification.utils.js";
|
|
144
|
-
import { SwitchesBetweenSections } from "./components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js";
|
|
145
|
-
import "react";
|
|
146
|
-
import "react-hook-form";
|
|
147
2
|
import { AddButton, AddButtonMode } from "./components/ui/addButton/AddButton.js";
|
|
148
|
-
import { AnnouncementBanner } from "./components/ui/announcement/AnnouncementBanner.js";
|
|
149
|
-
import { AnnouncementNotification } from "./components/ui/announcement/AnnouncementNotification.js";
|
|
150
|
-
import { useGlobalAnnouncement } from "./components/ui/announcement/useGlobalAnnouncement.js";
|
|
151
3
|
import { OverflowableChip } from "./components/ui/reactHookForm/OverflowableChip.js";
|
|
152
4
|
import { OverflowableChipWithHelperText } from "./components/ui/reactHookForm/OverflowableChipWithHelperText.js";
|
|
153
5
|
import { ChipItemsInput } from "./components/ui/reactHookForm/chip-items-input.js";
|
|
154
6
|
import { DirectoryItemsInput } from "./components/ui/reactHookForm/DirectoryItemsInput.js";
|
|
155
7
|
import { RawReadOnlyInput } from "./components/ui/reactHookForm/RawReadOnlyInput.js";
|
|
156
|
-
import { BottomRightButtons } from "./components/ui/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
157
|
-
import { CustomAgGridTable } from "./components/ui/reactHookForm/agGridTable/CustomAgGridTable.js";
|
|
158
|
-
import { NumericEditor } from "./components/ui/reactHookForm/agGridTable/cellEditors/numericEditor.js";
|
|
159
|
-
import { CsvUploader } from "./components/ui/reactHookForm/agGridTable/csvUploader/CsvUploader.js";
|
|
160
8
|
import { AutocompleteInput } from "./components/ui/reactHookForm/autocompleteInputs/AutocompleteInput.js";
|
|
161
9
|
import { MultipleAutocompleteInput } from "./components/ui/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js";
|
|
162
10
|
import { BooleanInput } from "./components/ui/reactHookForm/booleans/BooleanInput.js";
|
|
@@ -198,21 +46,6 @@ import { DESCRIPTION, NAME } from "./components/ui/reactHookForm/constants.js";
|
|
|
198
46
|
import { ExpandableInput } from "./components/ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
199
47
|
import { CountrySelectionInput } from "./components/ui/reactHookForm/CountrySelectionInput.js";
|
|
200
48
|
import { CheckboxNullableInput } from "./components/ui/reactHookForm/CheckboxNullableInput.js";
|
|
201
|
-
import { AutocompleteWithFavorites } from "./components/ui/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
202
|
-
import { CombinatorSelector } from "./components/ui/reactQueryBuilder/CombinatorSelector.js";
|
|
203
|
-
import { CountryValueEditor } from "./components/ui/reactQueryBuilder/CountryValueEditor.js";
|
|
204
|
-
import { CustomReactQueryBuilder } from "./components/ui/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
205
|
-
import { ElementValueEditor } from "./components/ui/reactQueryBuilder/ElementValueEditor.js";
|
|
206
|
-
import { PropertyValueEditor } from "./components/ui/reactQueryBuilder/PropertyValueEditor.js";
|
|
207
|
-
import { RemoveButton } from "./components/ui/reactQueryBuilder/RemoveButton.js";
|
|
208
|
-
import { TextValueEditor } from "./components/ui/reactQueryBuilder/TextValueEditor.js";
|
|
209
|
-
import { TranslatedValueEditor } from "./components/ui/reactQueryBuilder/TranslatedValueEditor.js";
|
|
210
|
-
import { ValueEditor } from "./components/ui/reactQueryBuilder/ValueEditor.js";
|
|
211
|
-
import { ValueSelector } from "./components/ui/reactQueryBuilder/ValueSelector.js";
|
|
212
|
-
import { GroupValueEditor } from "./components/ui/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js";
|
|
213
|
-
import { RuleValueEditor } from "./components/ui/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js";
|
|
214
|
-
import { useConvertValue } from "./components/ui/reactQueryBuilder/hooks/useConvertValue.js";
|
|
215
|
-
import { useValid } from "./components/ui/reactQueryBuilder/hooks/useValid.js";
|
|
216
49
|
import { CheckBoxList } from "./components/ui/checkBoxList/CheckBoxList.js";
|
|
217
50
|
import { SelectClearable } from "./components/ui/inputs/SelectClearable.js";
|
|
218
51
|
import { ActivableChip } from "./components/ui/inputs/ActivableChip.js";
|
|
@@ -225,6 +58,7 @@ import { PopupConfirmationDialog } from "./components/ui/dialogs/popupConfirmati
|
|
|
225
58
|
import { MultipleSelectionDialog } from "./components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js";
|
|
226
59
|
import { OverflowableText } from "./components/ui/overflowableText/OverflowableText.js";
|
|
227
60
|
import { SnackbarProvider } from "./components/ui/snackbarProvider/SnackbarProvider.js";
|
|
61
|
+
import { CustomTooltip } from "./components/ui/tooltip/CustomTooltip.js";
|
|
228
62
|
import { LeftPanelOpenIcon } from "./components/ui/icons/LeftPanelOpenIcon.js";
|
|
229
63
|
import { ArrowsOutputIcon } from "./components/ui/icons/ArrowsOutputIcon.js";
|
|
230
64
|
import { ArrowsInputIcon } from "./components/ui/icons/ArrowsInputIcon.js";
|
|
@@ -235,6 +69,174 @@ import { ResizeHandle } from "./components/ui/resizablePanels/ResizeHandle.js";
|
|
|
235
69
|
import { CsvExport } from "./components/ui/csvDownloader/csv-export.js";
|
|
236
70
|
import { ExportCsvButton } from "./components/ui/csvDownloader/export-csv-button.js";
|
|
237
71
|
import { fetchCsvSeparator, useCsvExport } from "./components/ui/csvDownloader/use-csv-export.js";
|
|
72
|
+
import { TreeViewFinder, generateTreeViewFinderClass } from "./components/ui/treeViewFinder/TreeViewFinder.js";
|
|
73
|
+
import { doesNodeHasChildren } from "./components/ui/treeViewFinder/TreeViewUtils.js";
|
|
74
|
+
import { DirectoryItemSelector } from "./components/ui/directoryItemSelector/DirectoryItemSelector.js";
|
|
75
|
+
import { DndTable } from "./components/composite/dnd-table-v2/dnd-table.js";
|
|
76
|
+
import { DndColumnType, MAX_ROWS_NUMBER, SELECTED } from "./components/composite/dnd-table-v2/dnd-table.type.js";
|
|
77
|
+
import { getDefaultRowData } from "./components/composite/dnd-table-v2/dnd-table-utils.js";
|
|
78
|
+
import { DndTableAddRowsDialog } from "./components/composite/dnd-table-v2/dnd-table-add-rows-dialog.js";
|
|
79
|
+
import { DndTableBottomLeftButtons } from "./components/composite/dnd-table-v2/dnd-table-bottom-left-buttons.js";
|
|
80
|
+
import { DndTableBottomRightButtons } from "./components/composite/dnd-table-v2/dnd-table-bottom-right-buttons.js";
|
|
81
|
+
import { EquipmentItem } from "./components/composite/elementSearch/elementItem/EquipmentItem.js";
|
|
82
|
+
import { ElementSearchDialog } from "./components/composite/elementSearch/elementSearchDialog/ElementSearchDialog.js";
|
|
83
|
+
import { ElementSearchInput } from "./components/composite/elementSearch/elementSearchInput/ElementSearchInput.js";
|
|
84
|
+
import { useElementSearch } from "./components/composite/elementSearch/hooks/useElementSearch.js";
|
|
85
|
+
import { TagRenderer } from "./components/composite/elementSearch/tagRenderer/TagRenderer.js";
|
|
86
|
+
import { FlatParameters, extractDefault } from "./components/composite/flatParameters/FlatParameters.js";
|
|
87
|
+
import { FilterCreationDialog } from "./components/composite/filter/FilterCreationDialog.js";
|
|
88
|
+
import { FilterForm } from "./components/composite/filter/FilterForm.js";
|
|
89
|
+
import { DISTRIBUTION_KEY, FilterType } from "./components/composite/filter/constants/FilterConstants.js";
|
|
90
|
+
import { ExpertFilterEditionDialog } from "./components/composite/filter/expert/ExpertFilterEditionDialog.js";
|
|
91
|
+
import { ExpertFilterForm, expertFilterSchema, getExpertFilterEmptyFormData } from "./components/composite/filter/expert/ExpertFilterForm.js";
|
|
92
|
+
import { CombinatorType, DataType, OperatorType } from "./components/composite/filter/expert/expertFilter.type.js";
|
|
93
|
+
import { COMBINATOR_OPTIONS, CONVERTERS_MODE_OPTIONS, ENERGY_SOURCE_OPTIONS, EXPERT_FILTER_EQUIPMENTS, EXPERT_FILTER_FIELDS, EXPERT_FILTER_QUERY, FIELDS_OPTIONS, LOAD_TYPE_OPTIONS, OPERATOR_OPTIONS, PHASE_REGULATION_MODE_OPTIONS, RATIO_REGULATION_MODE_OPTIONS, REGULATION_TYPE_OPTIONS, RULES, SHUNT_COMPENSATOR_TYPE_OPTIONS, SVAR_REGULATION_MODE_OPTIONS } from "./components/composite/filter/expert/expertFilterConstants.js";
|
|
94
|
+
import { countRules, exportExpertRules, getNumberOfSiblings, getOperators, importExpertRules, queryValidator, recursiveRemove, testQuery } from "./components/composite/filter/expert/expertFilterUtils.js";
|
|
95
|
+
import { ExplicitNamingFilterEditionDialog } from "./components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js";
|
|
96
|
+
import { ExplicitNamingFilterForm, explicitNamingFilterSchema, getExplicitNamingFilterEmptyFormData } from "./components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js";
|
|
97
|
+
import { FILTER_EQUIPMENTS_ATTRIBUTES } from "./components/composite/filter/explicitNaming/ExplicitNamingFilterConstants.js";
|
|
98
|
+
import { saveExpertFilter, saveExplicitNamingFilter } from "./components/composite/filter/utils/filterApi.js";
|
|
99
|
+
import { CONTINGENCY_LIST_EQUIPMENTS, FILTER_EQUIPMENTS } from "./components/composite/filter/utils/filterFormUtils.js";
|
|
100
|
+
import "react/jsx-runtime";
|
|
101
|
+
import "@mui/material";
|
|
102
|
+
import "react-intl";
|
|
103
|
+
import { OverflowableTableCell } from "./components/composite/muiTable/OverflowableTableCell.js";
|
|
104
|
+
import { OverflowableTableCellWithCheckbox } from "./components/composite/muiTable/OverflowableTableCellWithCheckbox.js";
|
|
105
|
+
import { AutocompleteWithFavorites } from "./components/composite/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
106
|
+
import { CombinatorSelector } from "./components/composite/reactQueryBuilder/CombinatorSelector.js";
|
|
107
|
+
import { CountryValueEditor } from "./components/composite/reactQueryBuilder/CountryValueEditor.js";
|
|
108
|
+
import { CustomReactQueryBuilder } from "./components/composite/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
109
|
+
import { ElementValueEditor } from "./components/composite/reactQueryBuilder/ElementValueEditor.js";
|
|
110
|
+
import { PropertyValueEditor } from "./components/composite/reactQueryBuilder/PropertyValueEditor.js";
|
|
111
|
+
import { RemoveButton } from "./components/composite/reactQueryBuilder/RemoveButton.js";
|
|
112
|
+
import { TextValueEditor } from "./components/composite/reactQueryBuilder/TextValueEditor.js";
|
|
113
|
+
import { TranslatedValueEditor } from "./components/composite/reactQueryBuilder/TranslatedValueEditor.js";
|
|
114
|
+
import { ValueEditor } from "./components/composite/reactQueryBuilder/ValueEditor.js";
|
|
115
|
+
import { ValueSelector } from "./components/composite/reactQueryBuilder/ValueSelector.js";
|
|
116
|
+
import { GroupValueEditor } from "./components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js";
|
|
117
|
+
import { RuleValueEditor } from "./components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js";
|
|
118
|
+
import { useConvertValue } from "./components/composite/reactQueryBuilder/hooks/useConvertValue.js";
|
|
119
|
+
import { useValid } from "./components/composite/reactQueryBuilder/hooks/useValid.js";
|
|
120
|
+
import { BottomRightButtons } from "./components/composite/agGridTable/BottomRightButtons.js";
|
|
121
|
+
import { CustomAgGridTable } from "./components/composite/agGridTable/CustomAgGridTable.js";
|
|
122
|
+
import { NumericEditor } from "./components/composite/agGridTable/cellEditors/numericEditor.js";
|
|
123
|
+
import { CsvUploader } from "./components/composite/agGridTable/csvUploader/CsvUploader.js";
|
|
124
|
+
import { CUSTOM_AGGRID_THEME, styles } from "./components/composite/customAGGrid/customAggrid.style.js";
|
|
125
|
+
import { CustomAGGrid } from "./components/composite/customAGGrid/customAggrid.js";
|
|
126
|
+
import { SeparatorCellRenderer } from "./components/composite/customAGGrid/separatorCellRenderer.js";
|
|
127
|
+
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./components/composite/customAGGrid/cell-renderers.js";
|
|
128
|
+
import { AuthenticationRouter } from "./features/authentication/AuthenticationRouter.js";
|
|
129
|
+
import { default as default3 } from "./features/authentication/AuthenticationRouterErrorDisplay.js";
|
|
130
|
+
import { Login } from "./features/authentication/Login.js";
|
|
131
|
+
import { Logout } from "./features/authentication/Logout.js";
|
|
132
|
+
import { SignInCallbackHandler } from "./features/authentication/SignInCallbackHandler.js";
|
|
133
|
+
import { SilentRenewCallbackHandler } from "./features/authentication/SilentRenewCallbackHandler.js";
|
|
134
|
+
import { ErrorInLogoutAlert } from "./features/authentication/alert/ErrorInLogoutAlert.js";
|
|
135
|
+
import { ErrorInUserValidationAlert } from "./features/authentication/alert/ErrorInUserValidationAlert.js";
|
|
136
|
+
import { UnauthorizedAccessAlert } from "./features/authentication/alert/UnauthorizedAccessAlert.js";
|
|
137
|
+
import { dispatchUser, getPreLoginPath, handleSigninCallback, handleSilentRenewCallback, initializeAuthenticationDev, initializeAuthenticationProd, login, logout } from "./features/authentication/utils/authService.js";
|
|
138
|
+
import { UserManagerMock } from "./features/authentication/utils/userManagerMock.js";
|
|
139
|
+
import { CardErrorBoundary } from "./features/cardErrorBoundary/CardErrorBoundary.js";
|
|
140
|
+
import { NotificationsProvider } from "./features/notifications/NotificationsProvider.js";
|
|
141
|
+
import { NotificationsContext } from "./features/notifications/contexts/NotificationsContext.js";
|
|
142
|
+
import { useNotificationsListener } from "./features/notifications/hooks/useNotificationsListener.js";
|
|
143
|
+
import { useListenerManager } from "./features/notifications/hooks/useListenerManager.js";
|
|
144
|
+
import { AboutDialog } from "./features/topBar/AboutDialog.js";
|
|
145
|
+
import { GridLogo, LogoText } from "./features/topBar/GridLogo.js";
|
|
146
|
+
import { DevModeBanner } from "./features/topBar/DevModeBanner.js";
|
|
147
|
+
import { TopBar } from "./features/topBar/TopBar.js";
|
|
148
|
+
import { ComputingType, formatComputingTypeLabel, isValidComputingType } from "./features/parameters/common/computing-type.js";
|
|
149
|
+
import { COMMON_PARAMETERS, CONTINGENCIES, CONTINGENCY_LISTS, CONTINGENCY_LISTS_INFOS, PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, SPECIFIC_PARAMETERS, VERSION_PARAMETER, VOLTAGE_LEVEL } from "./features/parameters/common/constants.js";
|
|
150
|
+
import { LineSeparator } from "./features/parameters/common/line-separator.js";
|
|
151
|
+
import { LabelledButton, SwitchWithLabel, TabPanel } from "./features/parameters/common/parameters.js";
|
|
152
|
+
import { CreateParameterDialog } from "./features/parameters/common/parameters-creation-dialog.js";
|
|
153
|
+
import { ProviderParam } from "./features/parameters/common/ProviderParam.js";
|
|
154
|
+
import { ParameterFloat } from "./features/parameters/common/widget/parameter-float.js";
|
|
155
|
+
import { ParameterGroup } from "./features/parameters/common/widget/parameter-group.js";
|
|
156
|
+
import { ParameterLineDirectoryItemsInput } from "./features/parameters/common/widget/parameter-line-directory-items-input.js";
|
|
157
|
+
import { ParameterLineSlider, sanitizePercentageValue } from "./features/parameters/common/widget/parameter-line-slider.js";
|
|
158
|
+
import { ParameterSwitch } from "./features/parameters/common/widget/parameter-switch.js";
|
|
159
|
+
import { CustomVoltageLevelTable } from "./features/parameters/common/voltage-level-table/custom-voltage-level-table.js";
|
|
160
|
+
import { CustomVoltageLevelTableCell } from "./features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js";
|
|
161
|
+
import { CustomVoltageLevelTableRow } from "./features/parameters/common/voltage-level-table/custom-voltage-level-table-row.js";
|
|
162
|
+
import { COLUMNS_DEFINITIONS_LIMIT_REDUCTIONS, IST_FORM, LIMIT_DURATION_FORM, LIMIT_REDUCTIONS_FORM, TAB_INFO, TabValues, VOLTAGE_LEVELS_FORM, getLimitReductionsFormSchema, toFormValuesLimitReductions } from "./features/parameters/common/limitreductions/columns-definitions.js";
|
|
163
|
+
import { LimitReductionsTableForm } from "./features/parameters/common/limitreductions/limit-reductions-table-form.js";
|
|
164
|
+
import { LimitReductionTableRow } from "./features/parameters/common/limitreductions/limit-reduction-table-row.js";
|
|
165
|
+
import { LimitReductionTableCell } from "./features/parameters/common/limitreductions/limit-reduction-table-cell.js";
|
|
166
|
+
import { ContingencyTable } from "./features/parameters/common/contingency-table/contingency-table.js";
|
|
167
|
+
import { COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS, getContingencyListsInfosFormSchema, isValidContingencyRow, toFormValuesContingencyListsInfos } from "./features/parameters/common/contingency-table/columns-definitions.js";
|
|
168
|
+
import { useTabs } from "./features/parameters/common/hook/use-tabs.js";
|
|
169
|
+
import { useParametersForm } from "./features/parameters/common/hook/use-parameters-form.js";
|
|
170
|
+
import { CENTER_LABEL, COMPONENT_LIBRARY, DIAGONAL_LABEL, INTL_LINE_FLOW_MODE_OPTIONS, INTL_SUBSTATION_LAYOUT_OPTIONS, LINE_FLOW_MODE, LineFlowMode, MAP_BASE_MAP, MAP_MANUAL_REFRESH, NAD_POSITIONS_GENERATION_MODE, NAD_POSITIONS_GENERATION_MODE_LABEL, NetworkVisualizationTabValues, PARAM_CENTER_LABEL, PARAM_COMPONENT_LIBRARY, PARAM_DIAGONAL_LABEL, PARAM_LINE_FLOW_MODE, PARAM_LINE_FULL_PATH, PARAM_LINE_PARALLEL_PATH, PARAM_MAP_BASEMAP, PARAM_MAP_MANUAL_REFRESH, PARAM_NAD_POSITIONS_GENERATION_MODE, PARAM_SUBSTATION_LAYOUT, SUBSTATION_LAYOUT } from "./features/parameters/network-visualizations/constants.js";
|
|
171
|
+
import { MAP_BASEMAP_CARTO, MAP_BASEMAP_CARTO_NOLABEL, MAP_BASEMAP_ETALAB, MAP_BASEMAP_MAPBOX, NadPositionsGenerationMode, SubstationLayout } from "./features/parameters/network-visualizations/network-visualizations.types.js";
|
|
172
|
+
import { NetworkVisualizationParametersInline } from "./features/parameters/network-visualizations/network-visualizations-parameters-inline.js";
|
|
173
|
+
import { NetworkVisualizationsParametersEditionDialog } from "./features/parameters/network-visualizations/network-visualizations-parameters-dialog.js";
|
|
174
|
+
import { BALANCE_TYPE, CONNECTED_MODE, COUNTRIES_TO_BALANCE, DC, DC_POWER_FACTOR, DC_USE_TRANSFORMER_RATIO, DEFAULT_LIMIT_REDUCTION_VALUE, DISTRIBUTED_SLACK, HVDC_AC_EMULATION, MAX_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, MIN_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, PARAM_LIMIT_REDUCTION, PARAM_PROVIDER_OPENLOADFLOW, PHASE_SHIFTER_REGULATION_ON, READ_SLACK_BUS, SHUNT_COMPENSATOR_VOLTAGE_CONTROL_ON, TWT_SPLIT_SHUNT_ADMITTANCE, USE_REACTIVE_LIMITS, VOLTAGE_INIT_MODE, WRITE_SLACK_BUS, alertThresholdMarks } from "./features/parameters/loadflow/constants.js";
|
|
175
|
+
import { LoadFlowParametersInline } from "./features/parameters/loadflow/load-flow-parameters-inline.js";
|
|
176
|
+
import { LoadFlowParametersEditionDialog } from "./features/parameters/loadflow/load-flow-parameters-dialog.js";
|
|
177
|
+
import { InitialVoltage, NODE_CLUSTER, NODE_CLUSTER_FILTER_IDS, PredefinedParameters, SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE, SHORT_CIRCUIT_MODEL_POWER_ELECTRONICS, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_IN_CALCULATION_CLUSTER, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER, SHORT_CIRCUIT_POWER_ELECTRONICS_CLUSTERS, SHORT_CIRCUIT_POWER_ELECTRONICS_MATERIALS, SHORT_CIRCUIT_PREDEFINED_PARAMS, SHORT_CIRCUIT_VOLTAGE_RANGES, SHORT_CIRCUIT_WITH_FEEDER_RESULT, SHORT_CIRCUIT_WITH_LOADS, SHORT_CIRCUIT_WITH_NEUTRAL_POSITION, SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS, SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS, STARTED_GENERATORS_IN_CALCULATION_CLUSTER_THRESHOLD, STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER_THRESHOLD, intlInitialVoltageProfileMode, intlPredefinedParametersOptions, onlyStartedGeneratorsOptions } from "./features/parameters/short-circuit/constants.js";
|
|
178
|
+
import { ShortCircuitParametersInLine } from "./features/parameters/short-circuit/short-circuit-parameters-inline.js";
|
|
179
|
+
import { ShortCircuitParametersEditionDialog } from "./features/parameters/short-circuit/short-circuit-parameters-dialog.js";
|
|
180
|
+
import { DEFAULT_GENERAL_APPLY_MODIFICATIONS, DEFAULT_REACTIVE_SLACKS_THRESHOLD, DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, DEFAULT_UPDATE_BUS_VOLTAGE, GENERAL, GENERAL_APPLY_MODIFICATIONS, GENERATORS_SELECTION_TYPE, HIGH_VOLTAGE_LIMIT, LEG_SIDE, LOW_VOLTAGE_LIMIT, PRIORITY, RATIO_TAP_CHANGER_POSITION, RATIO_TAP_CHANGER_TARGET_V, REACTIVE_SLACKS_THRESHOLD, SELECTION_TYPE, SHUNT_COMPENSATORS_SELECTION_TYPE, SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, TRANSFORMERS_SELECTION_TYPE, UPDATE_BUS_VOLTAGE, VARIABLE_Q_GENERATORS, VARIABLE_SHUNT_COMPENSATORS, VARIABLE_TRANSFORMERS, VOLTAGE_LIMITS_DEFAULT, VOLTAGE_LIMITS_MODIFICATION, VoltageInitTabValues } from "./features/parameters/voltage-init/constants.js";
|
|
181
|
+
import { EquipmentsSelectionType } from "./features/parameters/voltage-init/voltage-init.type.js";
|
|
182
|
+
import { VoltageInitParametersEditionDialog } from "./features/parameters/voltage-init/voltage-init-parameters-dialog.js";
|
|
183
|
+
import { VoltageInitParametersInLine } from "./features/parameters/voltage-init/voltage-init-parameters-inline.js";
|
|
184
|
+
import { PccMinParametersInLine } from "./features/parameters/pcc-min/pcc-min-parameters-inline.js";
|
|
185
|
+
import { PccMinParametersEditionDialog } from "./features/parameters/pcc-min/pcc-min-parameters-dialog.js";
|
|
186
|
+
import { SecurityAnalysisParametersInline } from "./features/parameters/security-analysis/security-analysis-parameters-inline.js";
|
|
187
|
+
import { SecurityAnalysisParametersDialog } from "./features/parameters/security-analysis/security-analysis-parameters-dialog.js";
|
|
188
|
+
import { SensitivityAnalysisParametersInline } from "./features/parameters/sensi/sensitivity-analysis-parameters-inline.js";
|
|
189
|
+
import { SensitivityAnalysisParametersDialog } from "./features/parameters/sensi/sensitivity-analysis-parameters-dialog.js";
|
|
190
|
+
import { COLUMNS_DEFINITIONS_HVDCS, COLUMNS_DEFINITIONS_INJECTIONS, COLUMNS_DEFINITIONS_INJECTIONS_SET, COLUMNS_DEFINITIONS_NODES, COLUMNS_DEFINITIONS_PSTS, EQUIPMENTS_IN_VOLTAGE_REGULATION_TYPES, HVDC_EQUIPMENT_TYPES, INJECTIONS_EQUIPMENT_TYPES, INJECTION_DISTRIBUTION_TYPES, MONITORED_BRANCHES_EQUIPMENT_TYPES, MONITORED_VOLTAGE_LEVELS_EQUIPMENT_TYPES, PSTS_EQUIPMENT_TYPES, SENSITIVITY_TYPES, SensiBranchesTabValues, SensiTabValues } from "./features/parameters/sensi/columns-definitions.js";
|
|
191
|
+
import { DynamicSimulationInline } from "./features/parameters/dynamic-simulation/dynamic-simulation-inline.js";
|
|
192
|
+
import { CONTINGENCIES_LIST_INFOS, CONTINGENCIES_START_TIME, SCENARIO_DURATION } from "./features/parameters/dynamic-security-analysis/constants.js";
|
|
193
|
+
import { DynamicSecurityAnalysisInline } from "./features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js";
|
|
194
|
+
import { ACCURACY, ACTIVE, CALCULATION_TYPE, LOADS_VARIATIONS, LOAD_FILTERS, LOAD_INCREASE_START_TIME, LOAD_INCREASE_STOP_TIME, LOAD_MODELS_RULE, MARGIN_CALCULATION_START_TIME, START_TIME, STOP_TIME, VARIATION } from "./features/parameters/dynamic-margin-calculation/constants.js";
|
|
195
|
+
import { DynamicMarginCalculationInline } from "./features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js";
|
|
196
|
+
import { filledTextField, italicFontTextField, standardTextField } from "./features/network-modifications/common/form.utils.js";
|
|
197
|
+
import { PropertiesForm } from "./features/network-modifications/common/properties/PropertiesForm.js";
|
|
198
|
+
import { PropertyForm } from "./features/network-modifications/common/properties/PropertyForm.js";
|
|
199
|
+
import { copyEquipmentPropertiesForCreation, createPropertyModification, creationPropertiesSchema, emptyProperties, fetchPredefinedProperties, getConcatenatedProperties, getFilledPropertiesFromModification, getPropertiesFromModification, getPropertyValue, initializedProperty, mergeModificationAndEquipmentProperties, modificationPropertiesSchema, toModificationProperties } from "./features/network-modifications/common/properties/propertyUtils.js";
|
|
200
|
+
import { getPowerWithValidityEditData, getPowerWithValidityEmptyFormData, getPowerWithValidityValidationSchema } from "./features/network-modifications/common/measurements/powerWithValidity.utils.js";
|
|
201
|
+
import { getInjectionActiveReactivePowerEditData, getInjectionActiveReactivePowerEditDataProperties, getInjectionActiveReactivePowerEmptyFormData, getInjectionActiveReactivePowerEmptyFormDataProperties, getInjectionActiveReactivePowerValidationSchema, getInjectionActiveReactivePowerValidationSchemaProperties } from "./features/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js";
|
|
202
|
+
import { getBranchActiveReactivePowerEditData, getBranchActiveReactivePowerEditDataProperties, getBranchActiveReactivePowerEmptyFormData, getBranchActiveReactivePowerEmptyFormDataProperties, getBranchActiveReactivePowerValidationSchema, getBranchActiveReactivePowerValidationSchemaProperties } from "./features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js";
|
|
203
|
+
import { PowerWithValidityForm } from "./features/network-modifications/common/measurements/PowerWithValidityForm.js";
|
|
204
|
+
import { PowerMeasurementsForm } from "./features/network-modifications/common/measurements/PowerMeasurementsForm.js";
|
|
205
|
+
import { BranchActiveReactivePowerMeasurementsForm } from "./features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js";
|
|
206
|
+
import { BusbarSectionVoltageMeasurementsForm } from "./features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js";
|
|
207
|
+
import { getActivePowerSetPointSchema, getReactivePowerSetPointSchema, getSetPointsEmptyFormData, getSetPointsSchema, testValueWithinPowerInterval } from "./features/network-modifications/common/setpoints/setPoints.utils.js";
|
|
208
|
+
import { SetPointsForm } from "./features/network-modifications/common/setpoints/SetPointsForm.js";
|
|
209
|
+
import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./features/network-modifications/common/connectivity/connectivityForm.utils.js";
|
|
210
|
+
import { ConnectivityForm } from "./features/network-modifications/common/connectivity/ConnectivityForm.js";
|
|
211
|
+
import { BranchConnectivityForm } from "./features/network-modifications/common/connectivity/BranchConnectivityForm.js";
|
|
212
|
+
import { VoltageLevelConnectivityForm } from "./features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js";
|
|
213
|
+
import { getActivePowerControlEmptyFormData, getActivePowerControlSchema } from "./features/network-modifications/common/activePowerControl/activePowerControlForm.utils.js";
|
|
214
|
+
import { ActivePowerControlForm } from "./features/network-modifications/common/activePowerControl/ActivePowerControlForm.js";
|
|
215
|
+
import { getShortCircuitEmptyFormData, getShortCircuitFormData, getShortCircuitFormSchema } from "./features/network-modifications/common/shortCircuit/shortCircuitForm.utils.js";
|
|
216
|
+
import { ShortCircuitForm } from "./features/network-modifications/common/shortCircuit/ShortCircuitForm.js";
|
|
217
|
+
import { INSERT, REMOVE, getReactiveCapabilityCurveValidationSchema, getReactiveCapabilityCurveValidationSchemaArray, getRowEmptyFormData, setCurrentReactiveCapabilityCurveTable, setSelectedReactiveLimits, toReactiveCapabilityCurveChoiceForGeneratorCreation, toReactiveCapabilityCurveChoiceForGeneratorModification } from "./features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js";
|
|
218
|
+
import { ReactiveCapabilityCurveRowForm } from "./features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js";
|
|
219
|
+
import { ReactiveCapabilityCurveTableForm } from "./features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
220
|
+
import { REACTIVE_LIMIT_TYPES, getReactiveLimitsEmptyFormData, getReactiveLimitsEmptyFormDataProps, getReactiveLimitsFormData, getReactiveLimitsFormDataProps, getReactiveLimitsSchema, getReactiveLimitsValidationSchema } from "./features/network-modifications/common/reactiveLimits/reactiveLimits.utils.js";
|
|
221
|
+
import { ReactiveLimitsForm } from "./features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js";
|
|
222
|
+
import { RegulatingTerminalForm } from "./features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js";
|
|
223
|
+
import { getRegulatingTerminalEmptyFormData, getRegulatingTerminalEquipmentData, getRegulatingTerminalFormData, getRegulatingTerminalVoltageLevelData } from "./features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js";
|
|
224
|
+
import { VoltageRegulationForm } from "./features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js";
|
|
225
|
+
import { REGULATION_TYPES, getVoltageRegulationEmptyFormData, getVoltageRegulationSchema } from "./features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js";
|
|
226
|
+
import { getHvdcLccDeletionSchema } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
|
|
227
|
+
import { ShuntCompensatorSelectionForm } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
|
|
228
|
+
import { useHvdcLccDeletion } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
|
|
229
|
+
import { HvdcLccDeletionSpecificForm } from "./features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js";
|
|
230
|
+
import { equipmentDeletionDtoToForm, equipmentDeletionEmptyFormData, equipmentDeletionFormSchema, equipmentDeletionFormToDto, newEquipmentDeletionDto } from "./features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js";
|
|
231
|
+
import { EquipmentDeletionForm } from "./features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js";
|
|
232
|
+
import { useTabsWithError } from "./features/network-modifications/hooks/useTabsWithError.js";
|
|
233
|
+
import { SubstationCreationForm } from "./features/network-modifications/substation/creation/SubstationCreationForm.js";
|
|
234
|
+
import { substationCreationDtoToForm, substationCreationEmptyFormData, substationCreationFormSchema, substationCreationFormToDto } from "./features/network-modifications/substation/creation/substationCreation.utils.js";
|
|
235
|
+
import { SubstationModificationForm } from "./features/network-modifications/substation/modification/SubstationModificationForm.js";
|
|
236
|
+
import { substationModificationDtoToForm, substationModificationEmptyFormData, substationModificationFormSchema, substationModificationFormToDto } from "./features/network-modifications/substation/modification/substationModification.utils.js";
|
|
237
|
+
import { SwitchesBetweenSections } from "./features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js";
|
|
238
|
+
import "react";
|
|
239
|
+
import "react-hook-form";
|
|
238
240
|
import { equalsArray } from "./utils/algos.js";
|
|
239
241
|
import { ActivePowerAdornment, AmpereAdornment, KiloAmpereAdornment, KilometerAdornment, MVAPowerAdornment, MicroSusceptanceAdornment, OhmAdornment, PercentageAdornment, ReactivePowerAdornment, SusceptanceAdornment, VoltageAdornment } from "./utils/constants/adornments.js";
|
|
240
242
|
import { FetchStatus } from "./utils/constants/fetchStatus.js";
|
|
@@ -272,7 +274,6 @@ import { enrichPccMinParameters, mapPccMinParameters } from "./utils/types/pcc-m
|
|
|
272
274
|
import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./utils/ts-utils.js";
|
|
273
275
|
import { toNumber, validateValueIsANumber } from "./utils/validation-functions.js";
|
|
274
276
|
import { NO_ITEM_SELECTION_FOR_COPY } from "./utils/directory-utils.js";
|
|
275
|
-
import "./utils/yupConfig.js";
|
|
276
277
|
import { fetchAppsMetadata, fetchBaseVoltages, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isExploreMetadata, isStudyMetadata } from "./services/appsMetadata.js";
|
|
277
278
|
import { fetchConfigParameter, fetchConfigParameters, getAppName, updateConfigParameter } from "./services/config.js";
|
|
278
279
|
import { PermissionType, elementAlreadyExists, fetchDirectoryContent, fetchDirectoryElementPath, fetchElementNames, fetchRootFolders, hasElementPermission } from "./services/directory.js";
|
|
@@ -293,50 +294,53 @@ import { fetchDynamicSimulationParameters, fetchDynamicSimulationProviders, upda
|
|
|
293
294
|
import { fetchContingencyAndFiltersLists, fetchDynamicSecurityAnalysisProviders } from "./services/dynamic-security-analysis.js";
|
|
294
295
|
import { fetchDynamicMarginCalculationParameters, fetchDynamicMarginCalculationProviders, updateDynamicMarginCalculationParameters } from "./services/dynamic-margin-calculation.js";
|
|
295
296
|
import "@mui/icons-material";
|
|
296
|
-
import { MAX_SECTIONS_COUNT } from "./
|
|
297
|
-
import { VoltageLevelCreationForm } from "./
|
|
298
|
-
import { SWITCH_TYPE, buildNewBusbarSections, getCreateSwitchesEmptyFormData, getCreateSwitchesValidationSchema, translateSwitchKinds, voltageLevelCreationDtoToForm, voltageLevelCreationEmptyFormData, voltageLevelCreationFormSchema, voltageLevelCreationFormToDto } from "./
|
|
299
|
-
import { SwitchKind } from "./
|
|
300
|
-
import { VoltageLevelModificationForm } from "./
|
|
301
|
-
import { voltageLevelModificationDtoToForm, voltageLevelModificationEmptyFormData, voltageLevelModificationFormSchema, voltageLevelModificationFormToDto } from "./
|
|
302
|
-
import { LOAD_TAB_FIELDS, LoadDialogTab } from "./
|
|
303
|
-
import { LoadDialogTabs } from "./
|
|
304
|
-
import { LoadDialogTabsContent } from "./
|
|
305
|
-
import { LoadDialogHeader } from "./
|
|
306
|
-
import { LoadForm } from "./
|
|
307
|
-
import { loadCreationDtoToForm, loadCreationEmptyFormData, loadCreationFormSchema, loadCreationFormToDto } from "./
|
|
308
|
-
import { loadModificationDtoToForm, loadModificationEmptyFormData, loadModificationFormSchema, loadModificationFormToDto } from "./
|
|
309
|
-
import { ByFilterDeletionForm } from "./
|
|
310
|
-
import { EQUIPMENT_TYPE_ORDER, byFilterDeletionDtoToForm, byFilterDeletionFormSchema, byFilterDeletionFormToDto, emptyFormData } from "./
|
|
311
|
-
import { ModificationByAssignmentForm } from "./
|
|
312
|
-
import { emptyModificationByAssignmentFormData, modificationByAssignmentDtoToForm, modificationByAssignmentFormSchema, modificationByAssignmentFormToDto } from "./
|
|
313
|
-
import { DataType as DataType2 } from "./
|
|
314
|
-
import { batteryCreationDtoToForm, batteryCreationEmptyFormData, batteryCreationFormSchema, batteryCreationFormToDto } from "./
|
|
315
|
-
import { BatteryCreationForm } from "./
|
|
316
|
-
import { CHARACTERISTICS_CHOICES, SHUNT_COMPENSATOR_TYPES, computeSwitchedOnValue } from "./
|
|
317
|
-
import { CharacteristicsForm } from "./
|
|
318
|
-
import { getCharacteristicsCreateFormDataFromSearchCopy, getCharacteristicsEmptyFormData, getCharacteristicsFormData, getCharacteristicsFormValidationSchema } from "./
|
|
319
|
-
import { ShuntCompensatorCreationForm } from "./
|
|
320
|
-
import { shuntCompensatorCreationDtoToForm, shuntCompensatorCreationEmptyFormData, shuntCompensatorCreationFormSchema, shuntCompensatorCreationFormToDto } from "./
|
|
321
|
-
import { BuildStatusChip } from "./
|
|
322
|
-
import { BuildStatus } from "./
|
|
323
|
-
import { COLUMNS_WITHOUT_BORDER, DEPTH_CELL_WIDTH, DROP_FORBIDDEN_INDICATOR_BOTTOM, DROP_FORBIDDEN_INDICATOR_TOP, DROP_INDICATOR_BOTTOM, DROP_INDICATOR_TOP, MODIFICATION_ROW_HEIGHT, createCellBorderColor, createCellContentWrapperSx, createCellStyle, createEditDescriptionStyle, createHeaderCellStyle, createModificationNameCellStyle, createNameCellLabelBoxSx, createNameCellRootStyle, createRootNetworkChipCellSx, createRowSx, networkModificationTableStyles } from "./
|
|
324
|
-
import { AUTO_EXTENSIBLE_COLUMNS, BASE_MODIFICATION_TABLE_COLUMNS, computeTagMinSize } from "./
|
|
325
|
-
import { NetworkModificationsTable } from "./
|
|
326
|
-
import { useModificationsDragAndDrop } from "./
|
|
327
|
-
import { DescriptionCellRenderer, DragHandleRenderer, NameCellRenderer, NameHeaderRenderer, RootNetworkCellRenderer, RootNetworkHeaderRenderer, SelectCellRenderer, SelectHeaderRenderer, SwitchCellRenderer } from "./
|
|
328
|
-
import { DepthBox } from "./
|
|
329
|
-
import { DescriptionCell } from "./
|
|
330
|
-
import { DragHandleCell } from "./
|
|
331
|
-
import { NameCell } from "./
|
|
332
|
-
import { NetworkModificationEditorNameHeader } from "./
|
|
333
|
-
import { RootNetworkChipCell } from "./
|
|
334
|
-
import { SelectCell } from "./
|
|
335
|
-
import { SelectHeaderCell } from "./
|
|
336
|
-
import { SwitchCell } from "./
|
|
337
|
-
import { DragCloneRow } from "./
|
|
338
|
-
import { ModificationRow } from "./
|
|
339
|
-
import { MAX_COMPOSITE_NESTING_DEPTH, fetchSubModificationsForExpandedRows, findAllLoadedCompositeModifications, findModificationInTree, formatToComposedModification, isCompositeModification, mergeSubModificationsIntoTree, moveSubModificationInTree, updateModificationFieldInTree, updateSubModificationsOfACompositeInTree } from "./
|
|
297
|
+
import { MAX_SECTIONS_COUNT } from "./features/network-modifications/voltageLevel/creation/voltageLevel.constants.js";
|
|
298
|
+
import { VoltageLevelCreationForm } from "./features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js";
|
|
299
|
+
import { SWITCH_TYPE, buildNewBusbarSections, getCreateSwitchesEmptyFormData, getCreateSwitchesValidationSchema, translateSwitchKinds, voltageLevelCreationDtoToForm, voltageLevelCreationEmptyFormData, voltageLevelCreationFormSchema, voltageLevelCreationFormToDto } from "./features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js";
|
|
300
|
+
import { SwitchKind } from "./features/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js";
|
|
301
|
+
import { VoltageLevelModificationForm } from "./features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js";
|
|
302
|
+
import { voltageLevelModificationDtoToForm, voltageLevelModificationEmptyFormData, voltageLevelModificationFormSchema, voltageLevelModificationFormToDto, voltageLevelModificationWithMeasurementsDtoToForm, voltageLevelModificationWithMeasurementsFormSchema, voltageLevelModificationWithMeasurementsFormToDto } from "./features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js";
|
|
303
|
+
import { LOAD_TAB_FIELDS, LoadDialogTab } from "./features/network-modifications/load/common/load.utils.js";
|
|
304
|
+
import { LoadDialogTabs } from "./features/network-modifications/load/common/LoadDialogTabs.js";
|
|
305
|
+
import { LoadDialogTabsContent } from "./features/network-modifications/load/common/LoadDialogTabsContent.js";
|
|
306
|
+
import { LoadDialogHeader } from "./features/network-modifications/load/common/LoadDialogHeader.js";
|
|
307
|
+
import { LoadForm } from "./features/network-modifications/load/common/LoadForm.js";
|
|
308
|
+
import { loadCreationDtoToForm, loadCreationEmptyFormData, loadCreationFormSchema, loadCreationFormToDto } from "./features/network-modifications/load/creation/loadCreation.utils.js";
|
|
309
|
+
import { loadModificationDtoToForm, loadModificationEmptyFormData, loadModificationFormSchema, loadModificationFormToDto } from "./features/network-modifications/load/modification/loadModification.utils.js";
|
|
310
|
+
import { ByFilterDeletionForm } from "./features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js";
|
|
311
|
+
import { EQUIPMENT_TYPE_ORDER, byFilterDeletionDtoToForm, byFilterDeletionFormSchema, byFilterDeletionFormToDto, emptyFormData } from "./features/network-modifications/by-filter/deletion/byFilterDeletion.utils.js";
|
|
312
|
+
import { ModificationByAssignmentForm } from "./features/network-modifications/by-filter/assignment/modification-by-assignment-form.js";
|
|
313
|
+
import { emptyModificationByAssignmentFormData, modificationByAssignmentDtoToForm, modificationByAssignmentFormSchema, modificationByAssignmentFormToDto } from "./features/network-modifications/by-filter/assignment/modificationByAssignment.utils.js";
|
|
314
|
+
import { DataType as DataType2 } from "./features/network-modifications/by-filter/assignment/assignment/assignment.type.js";
|
|
315
|
+
import { batteryCreationDtoToForm, batteryCreationEmptyFormData, batteryCreationFormSchema, batteryCreationFormToDto } from "./features/network-modifications/battery/creation/batteryCreation.utils.js";
|
|
316
|
+
import { BatteryCreationForm } from "./features/network-modifications/battery/creation/BatteryCreationForm.js";
|
|
317
|
+
import { CHARACTERISTICS_CHOICES, SHUNT_COMPENSATOR_TYPES, computeSwitchedOnValue } from "./features/network-modifications/shunt-compensator/common/shuntCompensator.utils.js";
|
|
318
|
+
import { CharacteristicsForm } from "./features/network-modifications/shunt-compensator/common/CharacteristicsForm.js";
|
|
319
|
+
import { getCharacteristicsCreateFormDataFromSearchCopy, getCharacteristicsEmptyFormData, getCharacteristicsFormData, getCharacteristicsFormValidationSchema } from "./features/network-modifications/shunt-compensator/common/characteristicsForm.utils.js";
|
|
320
|
+
import { ShuntCompensatorCreationForm } from "./features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js";
|
|
321
|
+
import { shuntCompensatorCreationDtoToForm, shuntCompensatorCreationEmptyFormData, shuntCompensatorCreationFormSchema, shuntCompensatorCreationFormToDto } from "./features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js";
|
|
322
|
+
import { BuildStatusChip } from "./features/node/build-status-chip.js";
|
|
323
|
+
import { BuildStatus } from "./features/node/constant.js";
|
|
324
|
+
import { COLUMNS_WITHOUT_BORDER, DEPTH_CELL_WIDTH, DROP_FORBIDDEN_INDICATOR_BOTTOM, DROP_FORBIDDEN_INDICATOR_TOP, DROP_INDICATOR_BOTTOM, DROP_INDICATOR_TOP, MODIFICATION_ROW_HEIGHT, createCellBorderColor, createCellContentWrapperSx, createCellStyle, createEditDescriptionStyle, createHeaderCellStyle, createModificationNameCellStyle, createNameCellLabelBoxSx, createNameCellRootStyle, createRootNetworkChipCellSx, createRowSx, networkModificationTableStyles } from "./features/network-modification-table/network-modification-table-styles.js";
|
|
325
|
+
import { AUTO_EXTENSIBLE_COLUMNS, BASE_MODIFICATION_TABLE_COLUMNS, computeTagMinSize } from "./features/network-modification-table/columns-definition.js";
|
|
326
|
+
import { NetworkModificationsTable } from "./features/network-modification-table/network-modifications-table.js";
|
|
327
|
+
import { useModificationsDragAndDrop } from "./features/network-modification-table/use-modifications-drag-and-drop.js";
|
|
328
|
+
import { DescriptionCellRenderer, DragHandleRenderer, NameCellRenderer, NameHeaderRenderer, RootNetworkCellRenderer, RootNetworkHeaderRenderer, SelectCellRenderer, SelectHeaderRenderer, SwitchCellRenderer } from "./features/network-modification-table/renderers/cell-renderers.js";
|
|
329
|
+
import { DepthBox } from "./features/network-modification-table/renderers/depth-box.js";
|
|
330
|
+
import { DescriptionCell } from "./features/network-modification-table/renderers/description-cell.js";
|
|
331
|
+
import { DragHandleCell } from "./features/network-modification-table/renderers/drag-handle-cell.js";
|
|
332
|
+
import { NameCell } from "./features/network-modification-table/renderers/name-cell.js";
|
|
333
|
+
import { NetworkModificationEditorNameHeader } from "./features/network-modification-table/renderers/network-modification-node-editor-name-header.js";
|
|
334
|
+
import { RootNetworkChipCell } from "./features/network-modification-table/renderers/root-network-chip-cell.js";
|
|
335
|
+
import { SelectCell } from "./features/network-modification-table/renderers/select-cell.js";
|
|
336
|
+
import { SelectHeaderCell } from "./features/network-modification-table/renderers/select-header-cell.js";
|
|
337
|
+
import { SwitchCell } from "./features/network-modification-table/renderers/switch-cell.js";
|
|
338
|
+
import { DragCloneRow } from "./features/network-modification-table/row/drag-row-clone.js";
|
|
339
|
+
import { ModificationRow } from "./features/network-modification-table/row/modification-row.js";
|
|
340
|
+
import { MAX_COMPOSITE_NESTING_DEPTH, fetchSubModificationsForExpandedRows, findAllLoadedCompositeModifications, findModificationInTree, formatToComposedModification, isCompositeModification, mergeSubModificationsIntoTree, moveSubModificationInTree, updateModificationFieldInTree, updateSubModificationsOfACompositeInTree } from "./features/network-modification-table/utils.js";
|
|
341
|
+
import { AnnouncementBanner } from "./features/announcement/AnnouncementBanner.js";
|
|
342
|
+
import { AnnouncementNotification } from "./features/announcement/AnnouncementNotification.js";
|
|
343
|
+
import { useGlobalAnnouncement } from "./features/announcement/useGlobalAnnouncement.js";
|
|
340
344
|
import { useStateBoolean } from "./hooks/customStates/useStateBoolean.js";
|
|
341
345
|
import { useStateNumber } from "./hooks/customStates/useStateNumber.js";
|
|
342
346
|
import { useModificationLabelComputer } from "./hooks/useModificationLabelComputer.js";
|
|
@@ -413,7 +417,6 @@ import { importParamsFr } from "./translations/fr/external/importParamsFr.js";
|
|
|
413
417
|
import { componentsFr } from "./translations/fr/componentsFr.js";
|
|
414
418
|
import { parametersFr } from "./translations/fr/parameters.js";
|
|
415
419
|
import { useUniqueNameValidationFr } from "./translations/fr/use-unique-name-validation-fr.js";
|
|
416
|
-
import * as yup from "yup";
|
|
417
420
|
export {
|
|
418
421
|
ACCURACY,
|
|
419
422
|
ACTIVE,
|
|
@@ -453,6 +456,7 @@ export {
|
|
|
453
456
|
BuildStatus,
|
|
454
457
|
BuildStatusChip,
|
|
455
458
|
BusBar,
|
|
459
|
+
BusbarSectionVoltageMeasurementsForm,
|
|
456
460
|
ButtonReadOnlyInput,
|
|
457
461
|
ByFilterDeletionForm,
|
|
458
462
|
CALCULATION_TYPE,
|
|
@@ -804,6 +808,7 @@ export {
|
|
|
804
808
|
REACTIVE_LIMIT_TYPES,
|
|
805
809
|
REACTIVE_SLACKS_THRESHOLD,
|
|
806
810
|
READ_SLACK_BUS,
|
|
811
|
+
REGULATION_TYPES,
|
|
807
812
|
REGULATION_TYPE_OPTIONS,
|
|
808
813
|
REMOVE,
|
|
809
814
|
RESET_AUTHENTICATION_ROUTER_ERROR,
|
|
@@ -817,6 +822,7 @@ export {
|
|
|
817
822
|
ReactiveLimitsForm,
|
|
818
823
|
ReactivePowerAdornment,
|
|
819
824
|
ReadOnlyInput,
|
|
825
|
+
RegulatingTerminalForm,
|
|
820
826
|
RemoveButton,
|
|
821
827
|
ResizeHandle,
|
|
822
828
|
RootNetworkCellRenderer,
|
|
@@ -946,6 +952,7 @@ export {
|
|
|
946
952
|
VoltageLevelConnectivityForm,
|
|
947
953
|
VoltageLevelCreationForm,
|
|
948
954
|
VoltageLevelModificationForm,
|
|
955
|
+
VoltageRegulationForm,
|
|
949
956
|
WRITE_SLACK_BUS,
|
|
950
957
|
YUP_NOT_TYPE_DEFAULT,
|
|
951
958
|
YUP_NOT_TYPE_NUMBER,
|
|
@@ -1176,6 +1183,10 @@ export {
|
|
|
1176
1183
|
getReactiveLimitsSchema,
|
|
1177
1184
|
getReactiveLimitsValidationSchema,
|
|
1178
1185
|
getReactivePowerSetPointSchema,
|
|
1186
|
+
getRegulatingTerminalEmptyFormData,
|
|
1187
|
+
getRegulatingTerminalEquipmentData,
|
|
1188
|
+
getRegulatingTerminalFormData,
|
|
1189
|
+
getRegulatingTerminalVoltageLevelData,
|
|
1179
1190
|
getRequestParamFromList,
|
|
1180
1191
|
getRowEmptyFormData,
|
|
1181
1192
|
getSecurityAnalysisDefaultLimitReductions,
|
|
@@ -1198,6 +1209,8 @@ export {
|
|
|
1198
1209
|
getUserToken,
|
|
1199
1210
|
getVoltageInitParameters,
|
|
1200
1211
|
getVoltageInitUrl,
|
|
1212
|
+
getVoltageRegulationEmptyFormData,
|
|
1213
|
+
getVoltageRegulationSchema,
|
|
1201
1214
|
gridItem,
|
|
1202
1215
|
handleNotOkResponse,
|
|
1203
1216
|
handleSigninCallback,
|
|
@@ -1385,5 +1398,7 @@ export {
|
|
|
1385
1398
|
voltageLevelModificationEmptyFormData,
|
|
1386
1399
|
voltageLevelModificationFormSchema,
|
|
1387
1400
|
voltageLevelModificationFormToDto,
|
|
1388
|
-
|
|
1401
|
+
voltageLevelModificationWithMeasurementsDtoToForm,
|
|
1402
|
+
voltageLevelModificationWithMeasurementsFormSchema,
|
|
1403
|
+
voltageLevelModificationWithMeasurementsFormToDto
|
|
1389
1404
|
};
|