@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
|
@@ -1,107 +0,0 @@
|
|
|
1
|
-
import { jsxs, Fragment, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useMemo } from "react";
|
|
3
|
-
import { useWatch } from "react-hook-form";
|
|
4
|
-
import { Grid } from "@mui/material";
|
|
5
|
-
import { FieldConstants } from "../../../../utils/constants/fieldConstants.js";
|
|
6
|
-
import "../../../../utils/conversionUtils.js";
|
|
7
|
-
import "../../../../utils/types/equipmentType.js";
|
|
8
|
-
import "@mui/icons-material";
|
|
9
|
-
import "../../../../utils/yupConfig.js";
|
|
10
|
-
import "react-intl";
|
|
11
|
-
import "uuid";
|
|
12
|
-
import "../../../notifications/contexts/NotificationsContext.js";
|
|
13
|
-
import "../../../ui/overflowableText/OverflowableText.js";
|
|
14
|
-
import "localized-countries";
|
|
15
|
-
import "localized-countries/data/fr";
|
|
16
|
-
import "localized-countries/data/en";
|
|
17
|
-
import "notistack";
|
|
18
|
-
import "../../../ui/reactHookForm/provider/CustomFormProvider.js";
|
|
19
|
-
import "yup";
|
|
20
|
-
import "../../../treeViewFinder/TreeViewFinder.js";
|
|
21
|
-
import "../../../ui/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
22
|
-
import "../../../customAGGrid/customAggrid.js";
|
|
23
|
-
import "ag-grid-community";
|
|
24
|
-
import "react-papaparse";
|
|
25
|
-
import "react-csv-downloader";
|
|
26
|
-
import { AutocompleteInput } from "../../../ui/reactHookForm/autocompleteInputs/AutocompleteInput.js";
|
|
27
|
-
import { TextInput } from "../../../ui/reactHookForm/text/TextInput.js";
|
|
28
|
-
import "../../../ui/reactHookForm/numbers/RangeInput.js";
|
|
29
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
30
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
31
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
32
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
34
|
-
import "../../../ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
35
|
-
import "../../../ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
36
|
-
import "@react-querybuilder/material";
|
|
37
|
-
import "../../../filter/expert/expertFilterConstants.js";
|
|
38
|
-
import "../../../ui/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
39
|
-
import "../../../ui/reactQueryBuilder/PropertyValueEditor.js";
|
|
40
|
-
import "react-querybuilder";
|
|
41
|
-
import "@hello-pangea/dnd";
|
|
42
|
-
import "../../../ui/dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
43
|
-
import "../../../ui/snackbarProvider/SnackbarProvider.js";
|
|
44
|
-
import "mui-nested-menu";
|
|
45
|
-
import "react-resizable-panels";
|
|
46
|
-
import { italicFontTextField } from "../form.utils.js";
|
|
47
|
-
function PropertyForm({ name, index, predefinedProperties }) {
|
|
48
|
-
const watchPropertyName = useWatch({ name: `${name}.${index}.${FieldConstants.NAME}` });
|
|
49
|
-
const watchPropertyPreviousValue = useWatch({
|
|
50
|
-
name: `${name}.${index}.${FieldConstants.PREVIOUS_VALUE}`
|
|
51
|
-
});
|
|
52
|
-
const watchPropertyDeletionMark = useWatch({
|
|
53
|
-
name: `${name}.${index}.${FieldConstants.DELETION_MARK}`
|
|
54
|
-
});
|
|
55
|
-
const watchPropertyAdded = useWatch({
|
|
56
|
-
name: `${name}.${index}.${FieldConstants.ADDED}`
|
|
57
|
-
});
|
|
58
|
-
const predefinedNames = useMemo(() => {
|
|
59
|
-
const keys = Object.keys(predefinedProperties ?? {});
|
|
60
|
-
return keys.sort((a, b) => a.localeCompare(b));
|
|
61
|
-
}, [predefinedProperties]);
|
|
62
|
-
const predefinedValues = useMemo(() => {
|
|
63
|
-
const values = predefinedProperties?.[watchPropertyName] ?? [];
|
|
64
|
-
return values.sort((a, b) => a.localeCompare(b));
|
|
65
|
-
}, [watchPropertyName, predefinedProperties]);
|
|
66
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
67
|
-
watchPropertyDeletionMark || watchPropertyAdded === false && watchPropertyPreviousValue ? /* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(
|
|
68
|
-
TextInput,
|
|
69
|
-
{
|
|
70
|
-
name: `${name}.${index}.${FieldConstants.NAME}`,
|
|
71
|
-
label: "PropertyName",
|
|
72
|
-
formProps: { disabled: true, ...italicFontTextField }
|
|
73
|
-
}
|
|
74
|
-
) }) : /* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(
|
|
75
|
-
AutocompleteInput,
|
|
76
|
-
{
|
|
77
|
-
name: `${name}.${index}.${FieldConstants.NAME}`,
|
|
78
|
-
options: predefinedNames,
|
|
79
|
-
label: "PropertyName",
|
|
80
|
-
size: "small",
|
|
81
|
-
allowNewValue: true
|
|
82
|
-
}
|
|
83
|
-
) }),
|
|
84
|
-
watchPropertyDeletionMark ? /* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(
|
|
85
|
-
TextInput,
|
|
86
|
-
{
|
|
87
|
-
name: `${name}.${index}.${FieldConstants.VALUE}`,
|
|
88
|
-
label: "PropertyValue",
|
|
89
|
-
previousValue: watchPropertyPreviousValue,
|
|
90
|
-
formProps: { disabled: true, ...italicFontTextField }
|
|
91
|
-
}
|
|
92
|
-
) }) : /* @__PURE__ */ jsx(Grid, { item: true, xs: 4, children: /* @__PURE__ */ jsx(
|
|
93
|
-
AutocompleteInput,
|
|
94
|
-
{
|
|
95
|
-
name: `${name}.${index}.${FieldConstants.VALUE}`,
|
|
96
|
-
options: predefinedValues,
|
|
97
|
-
label: "PropertyValue",
|
|
98
|
-
size: "small",
|
|
99
|
-
allowNewValue: true,
|
|
100
|
-
previousValue: watchPropertyPreviousValue
|
|
101
|
-
}
|
|
102
|
-
) })
|
|
103
|
-
] });
|
|
104
|
-
}
|
|
105
|
-
export {
|
|
106
|
-
PropertyForm
|
|
107
|
-
};
|
|
@@ -1,161 +0,0 @@
|
|
|
1
|
-
import { object, array, boolean, string } from "yup";
|
|
2
|
-
import { FieldConstants } from "../../../../utils/constants/fieldConstants.js";
|
|
3
|
-
import { YUP_REQUIRED, DUPLICATED_PROPS_ERROR } from "../../../../utils/constants/translationKeys.js";
|
|
4
|
-
import { isBlankOrEmpty } from "../../../../utils/conversionUtils.js";
|
|
5
|
-
import "../../../../utils/types/equipmentType.js";
|
|
6
|
-
import "react/jsx-runtime";
|
|
7
|
-
import "@mui/icons-material";
|
|
8
|
-
import "../../../../utils/yupConfig.js";
|
|
9
|
-
import { fetchStudyMetadata } from "../../../../services/appsMetadata.js";
|
|
10
|
-
const fetchPredefinedProperties = (networkElementType) => {
|
|
11
|
-
return fetchStudyMetadata().then((studyMetadata) => {
|
|
12
|
-
return studyMetadata.predefinedEquipmentProperties?.[networkElementType];
|
|
13
|
-
});
|
|
14
|
-
};
|
|
15
|
-
const emptyProperties = {
|
|
16
|
-
[FieldConstants.ADDITIONAL_PROPERTIES]: []
|
|
17
|
-
};
|
|
18
|
-
const createPropertyModification = (name, value) => {
|
|
19
|
-
return {
|
|
20
|
-
[FieldConstants.NAME]: name,
|
|
21
|
-
[FieldConstants.VALUE]: value,
|
|
22
|
-
[FieldConstants.PREVIOUS_VALUE]: value,
|
|
23
|
-
[FieldConstants.DELETION_MARK]: false,
|
|
24
|
-
[FieldConstants.ADDED]: true
|
|
25
|
-
};
|
|
26
|
-
};
|
|
27
|
-
const initializedProperty = () => {
|
|
28
|
-
return createPropertyModification("", null);
|
|
29
|
-
};
|
|
30
|
-
const isFilledProperty = (property) => {
|
|
31
|
-
return property.value != null;
|
|
32
|
-
};
|
|
33
|
-
const getFilledPropertiesFromModification = (properties) => {
|
|
34
|
-
return properties?.filter(isFilledProperty).map((p) => {
|
|
35
|
-
return {
|
|
36
|
-
[FieldConstants.NAME]: p[FieldConstants.NAME],
|
|
37
|
-
[FieldConstants.VALUE]: p[FieldConstants.VALUE],
|
|
38
|
-
[FieldConstants.PREVIOUS_VALUE]: p[FieldConstants.PREVIOUS_VALUE],
|
|
39
|
-
[FieldConstants.ADDED]: p[FieldConstants.ADDED],
|
|
40
|
-
[FieldConstants.DELETION_MARK]: p[FieldConstants.DELETION_MARK]
|
|
41
|
-
};
|
|
42
|
-
}) ?? [];
|
|
43
|
-
};
|
|
44
|
-
const getPropertiesFromModification = (properties, includePreviousValue = true) => {
|
|
45
|
-
return {
|
|
46
|
-
[FieldConstants.ADDITIONAL_PROPERTIES]: properties ? properties.map((p) => {
|
|
47
|
-
return {
|
|
48
|
-
[FieldConstants.NAME]: p[FieldConstants.NAME],
|
|
49
|
-
[FieldConstants.VALUE]: p[FieldConstants.VALUE],
|
|
50
|
-
[FieldConstants.PREVIOUS_VALUE]: includePreviousValue ? p[FieldConstants.PREVIOUS_VALUE] : void 0,
|
|
51
|
-
[FieldConstants.ADDED]: p[FieldConstants.ADDED],
|
|
52
|
-
[FieldConstants.DELETION_MARK]: p[FieldConstants.DELETION_MARK]
|
|
53
|
-
};
|
|
54
|
-
}) : []
|
|
55
|
-
};
|
|
56
|
-
};
|
|
57
|
-
const copyEquipmentPropertiesForCreation = (equipmentInfos) => {
|
|
58
|
-
return {
|
|
59
|
-
[FieldConstants.ADDITIONAL_PROPERTIES]: equipmentInfos.properties ? Object.entries(equipmentInfos.properties).map(([name, value]) => {
|
|
60
|
-
return {
|
|
61
|
-
[FieldConstants.NAME]: name,
|
|
62
|
-
[FieldConstants.VALUE]: value,
|
|
63
|
-
[FieldConstants.PREVIOUS_VALUE]: null,
|
|
64
|
-
[FieldConstants.DELETION_MARK]: false,
|
|
65
|
-
[FieldConstants.ADDED]: true
|
|
66
|
-
};
|
|
67
|
-
}) : []
|
|
68
|
-
};
|
|
69
|
-
};
|
|
70
|
-
const mergeModificationAndEquipmentProperties = (modificationProperties, equipment) => {
|
|
71
|
-
const newModificationProperties = /* @__PURE__ */ new Map();
|
|
72
|
-
modificationProperties.forEach((property) => {
|
|
73
|
-
if (property.name !== null) {
|
|
74
|
-
newModificationProperties.set(property.name, property);
|
|
75
|
-
}
|
|
76
|
-
});
|
|
77
|
-
if (equipment.properties !== void 0) {
|
|
78
|
-
Object.entries(equipment.properties).forEach(([name, value]) => {
|
|
79
|
-
if (name !== null) {
|
|
80
|
-
let propertyToAdd;
|
|
81
|
-
if (newModificationProperties.has(name)) {
|
|
82
|
-
const modProperty = newModificationProperties.get(name);
|
|
83
|
-
propertyToAdd = {
|
|
84
|
-
...modProperty,
|
|
85
|
-
previousValue: value
|
|
86
|
-
// We set previous value of the modification to the equipment value
|
|
87
|
-
};
|
|
88
|
-
} else {
|
|
89
|
-
propertyToAdd = {
|
|
90
|
-
[FieldConstants.NAME]: name,
|
|
91
|
-
[FieldConstants.VALUE]: null,
|
|
92
|
-
[FieldConstants.PREVIOUS_VALUE]: value,
|
|
93
|
-
[FieldConstants.DELETION_MARK]: false,
|
|
94
|
-
[FieldConstants.ADDED]: false
|
|
95
|
-
};
|
|
96
|
-
}
|
|
97
|
-
newModificationProperties.set(name, propertyToAdd);
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
}
|
|
101
|
-
return Array.from(newModificationProperties.values());
|
|
102
|
-
};
|
|
103
|
-
function getConcatenatedProperties(equipment, getValues, id) {
|
|
104
|
-
const path = id ? `${id}.${FieldConstants.ADDITIONAL_PROPERTIES}` : `${FieldConstants.ADDITIONAL_PROPERTIES}`;
|
|
105
|
-
const modificationProperties = getValues(path);
|
|
106
|
-
return mergeModificationAndEquipmentProperties(modificationProperties, equipment);
|
|
107
|
-
}
|
|
108
|
-
const toModificationProperties = (properties) => {
|
|
109
|
-
const filteredProperties = properties[FieldConstants.ADDITIONAL_PROPERTIES]?.filter(
|
|
110
|
-
(p) => !isBlankOrEmpty(p.value) || p[FieldConstants.DELETION_MARK]
|
|
111
|
-
);
|
|
112
|
-
return filteredProperties === void 0 || filteredProperties?.length === 0 ? null : filteredProperties;
|
|
113
|
-
};
|
|
114
|
-
const checkUniquePropertyNames = (properties) => {
|
|
115
|
-
if (properties === void 0) {
|
|
116
|
-
return true;
|
|
117
|
-
}
|
|
118
|
-
const validValues = properties.filter((v) => v.name);
|
|
119
|
-
return validValues.length === new Set(validValues.map((v) => v.name)).size;
|
|
120
|
-
};
|
|
121
|
-
const creationPropertiesSchema = object({
|
|
122
|
-
[FieldConstants.ADDITIONAL_PROPERTIES]: array().of(
|
|
123
|
-
object().shape({
|
|
124
|
-
[FieldConstants.NAME]: string().required(YUP_REQUIRED),
|
|
125
|
-
[FieldConstants.VALUE]: string().required(YUP_REQUIRED),
|
|
126
|
-
[FieldConstants.PREVIOUS_VALUE]: string().nullable(),
|
|
127
|
-
[FieldConstants.DELETION_MARK]: boolean().required(YUP_REQUIRED),
|
|
128
|
-
[FieldConstants.ADDED]: boolean().required(YUP_REQUIRED)
|
|
129
|
-
})
|
|
130
|
-
).test("checkUniqueProperties", DUPLICATED_PROPS_ERROR, (values) => checkUniquePropertyNames(values))
|
|
131
|
-
});
|
|
132
|
-
const modificationPropertiesSchema = object({
|
|
133
|
-
[FieldConstants.ADDITIONAL_PROPERTIES]: array().of(
|
|
134
|
-
object().shape({
|
|
135
|
-
[FieldConstants.NAME]: string().required(YUP_REQUIRED),
|
|
136
|
-
[FieldConstants.VALUE]: string().nullable().when([FieldConstants.ADDED], {
|
|
137
|
-
is: (added) => added,
|
|
138
|
-
then: (schema) => schema.required(YUP_REQUIRED)
|
|
139
|
-
}),
|
|
140
|
-
[FieldConstants.PREVIOUS_VALUE]: string().nullable(),
|
|
141
|
-
[FieldConstants.DELETION_MARK]: boolean().required(YUP_REQUIRED),
|
|
142
|
-
[FieldConstants.ADDED]: boolean().required(YUP_REQUIRED)
|
|
143
|
-
})
|
|
144
|
-
).test("checkUniqueProperties", DUPLICATED_PROPS_ERROR, (values) => checkUniquePropertyNames(values))
|
|
145
|
-
});
|
|
146
|
-
const getPropertyValue = (properties, keyName) => properties?.[keyName];
|
|
147
|
-
export {
|
|
148
|
-
copyEquipmentPropertiesForCreation,
|
|
149
|
-
createPropertyModification,
|
|
150
|
-
creationPropertiesSchema,
|
|
151
|
-
emptyProperties,
|
|
152
|
-
fetchPredefinedProperties,
|
|
153
|
-
getConcatenatedProperties,
|
|
154
|
-
getFilledPropertiesFromModification,
|
|
155
|
-
getPropertiesFromModification,
|
|
156
|
-
getPropertyValue,
|
|
157
|
-
initializedProperty,
|
|
158
|
-
mergeModificationAndEquipmentProperties,
|
|
159
|
-
modificationPropertiesSchema,
|
|
160
|
-
toModificationProperties
|
|
161
|
-
};
|
|
@@ -1,109 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs } from "react/jsx-runtime";
|
|
2
|
-
import { useWatch } from "react-hook-form";
|
|
3
|
-
import { Grid } from "@mui/material";
|
|
4
|
-
import { ReactiveCapabilityCurveTableForm } from "./reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
5
|
-
import { ReactivePowerAdornment } from "../../../../utils/constants/adornments.js";
|
|
6
|
-
import { FieldConstants } from "../../../../utils/constants/fieldConstants.js";
|
|
7
|
-
import "../../../../utils/conversionUtils.js";
|
|
8
|
-
import "../../../../utils/types/equipmentType.js";
|
|
9
|
-
import "@mui/icons-material";
|
|
10
|
-
import "../../../../utils/yupConfig.js";
|
|
11
|
-
import "react-intl";
|
|
12
|
-
import "react";
|
|
13
|
-
import "uuid";
|
|
14
|
-
import "../../../notifications/contexts/NotificationsContext.js";
|
|
15
|
-
import "../../../ui/overflowableText/OverflowableText.js";
|
|
16
|
-
import "localized-countries";
|
|
17
|
-
import "localized-countries/data/fr";
|
|
18
|
-
import "localized-countries/data/en";
|
|
19
|
-
import "notistack";
|
|
20
|
-
import "../../../ui/reactHookForm/provider/CustomFormProvider.js";
|
|
21
|
-
import "yup";
|
|
22
|
-
import "../../../treeViewFinder/TreeViewFinder.js";
|
|
23
|
-
import "../../../ui/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
24
|
-
import "../../../customAGGrid/customAggrid.js";
|
|
25
|
-
import "ag-grid-community";
|
|
26
|
-
import "react-papaparse";
|
|
27
|
-
import "react-csv-downloader";
|
|
28
|
-
import { RadioInput } from "../../../ui/reactHookForm/booleans/RadioInput.js";
|
|
29
|
-
import { FloatInput } from "../../../ui/reactHookForm/numbers/FloatInput.js";
|
|
30
|
-
import "../../../ui/reactHookForm/numbers/RangeInput.js";
|
|
31
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
32
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
34
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
35
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
36
|
-
import "../../../ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
37
|
-
import "../../../ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
38
|
-
import "@react-querybuilder/material";
|
|
39
|
-
import "../../../filter/expert/expertFilterConstants.js";
|
|
40
|
-
import "../../../ui/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
41
|
-
import "../../../ui/reactQueryBuilder/PropertyValueEditor.js";
|
|
42
|
-
import "react-querybuilder";
|
|
43
|
-
import "@hello-pangea/dnd";
|
|
44
|
-
import "../../../ui/dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
45
|
-
import "../../../ui/snackbarProvider/SnackbarProvider.js";
|
|
46
|
-
import "mui-nested-menu";
|
|
47
|
-
import "react-resizable-panels";
|
|
48
|
-
import GridItem from "../../../grid/grid-item.js";
|
|
49
|
-
import { REACTIVE_LIMIT_TYPES } from "./reactiveLimits.utils.js";
|
|
50
|
-
const headerIds = ["ActivePowerText", "MinimumReactivePower", "MaximumReactivePower"];
|
|
51
|
-
function ReactiveLimitsForm({
|
|
52
|
-
id = FieldConstants.REACTIVE_LIMITS,
|
|
53
|
-
previousReactiveCapabilityCurvePoints = void 0,
|
|
54
|
-
previousMinMaxReactiveLimits = void 0,
|
|
55
|
-
updatePreviousReactiveCapabilityCurveTable = void 0
|
|
56
|
-
}) {
|
|
57
|
-
const reactiveCapabilityCurveChoice = useWatch({
|
|
58
|
-
name: `${id}.${FieldConstants.REACTIVE_CAPABILITY_CURVE_CHOICE}`
|
|
59
|
-
});
|
|
60
|
-
const isReactiveCapabilityCurveOn = reactiveCapabilityCurveChoice !== "MINMAX";
|
|
61
|
-
const reactiveCapabilityCurveChoiceRadioField = /* @__PURE__ */ jsx(
|
|
62
|
-
RadioInput,
|
|
63
|
-
{
|
|
64
|
-
name: `${id}.${FieldConstants.REACTIVE_CAPABILITY_CURVE_CHOICE}`,
|
|
65
|
-
options: [...REACTIVE_LIMIT_TYPES],
|
|
66
|
-
formProps: { style: { marginTop: "-12px" } }
|
|
67
|
-
}
|
|
68
|
-
);
|
|
69
|
-
const minimumReactivePowerField = /* @__PURE__ */ jsx(
|
|
70
|
-
FloatInput,
|
|
71
|
-
{
|
|
72
|
-
name: `${id}.${FieldConstants.MINIMUM_REACTIVE_POWER}`,
|
|
73
|
-
label: "MinimumReactivePower",
|
|
74
|
-
adornment: ReactivePowerAdornment,
|
|
75
|
-
previousValue: previousMinMaxReactiveLimits?.minQ ?? void 0,
|
|
76
|
-
clearable: true
|
|
77
|
-
}
|
|
78
|
-
);
|
|
79
|
-
const maximumReactivePowerField = /* @__PURE__ */ jsx(
|
|
80
|
-
FloatInput,
|
|
81
|
-
{
|
|
82
|
-
name: `${id}.${FieldConstants.MAXIMUM_REACTIVE_POWER}`,
|
|
83
|
-
label: "MaximumReactivePower",
|
|
84
|
-
adornment: ReactivePowerAdornment,
|
|
85
|
-
previousValue: previousMinMaxReactiveLimits?.maxQ ?? void 0,
|
|
86
|
-
clearable: true
|
|
87
|
-
}
|
|
88
|
-
);
|
|
89
|
-
const reactiveCapabilityCurveTableField = /* @__PURE__ */ jsx(
|
|
90
|
-
ReactiveCapabilityCurveTableForm,
|
|
91
|
-
{
|
|
92
|
-
id: `${id}.${FieldConstants.REACTIVE_CAPABILITY_CURVE_TABLE}`,
|
|
93
|
-
tableHeadersIds: headerIds,
|
|
94
|
-
previousValues: previousReactiveCapabilityCurvePoints ?? void 0,
|
|
95
|
-
updatePreviousReactiveCapabilityCurveTable,
|
|
96
|
-
disabled: !isReactiveCapabilityCurveOn
|
|
97
|
-
}
|
|
98
|
-
);
|
|
99
|
-
return /* @__PURE__ */ jsxs(Grid, { container: true, spacing: 2, children: [
|
|
100
|
-
/* @__PURE__ */ jsx(GridItem, { size: 12, children: reactiveCapabilityCurveChoiceRadioField }),
|
|
101
|
-
!isReactiveCapabilityCurveOn && /* @__PURE__ */ jsx(GridItem, { size: 4, children: minimumReactivePowerField }),
|
|
102
|
-
!isReactiveCapabilityCurveOn && /* @__PURE__ */ jsx(GridItem, { size: 4, children: maximumReactivePowerField }),
|
|
103
|
-
!isReactiveCapabilityCurveOn && /* @__PURE__ */ jsx(GridItem, { size: "auto" }),
|
|
104
|
-
isReactiveCapabilityCurveOn && /* @__PURE__ */ jsx(GridItem, { size: 12, children: reactiveCapabilityCurveTableField })
|
|
105
|
-
] });
|
|
106
|
-
}
|
|
107
|
-
export {
|
|
108
|
-
ReactiveLimitsForm
|
|
109
|
-
};
|
|
@@ -1,108 +0,0 @@
|
|
|
1
|
-
import { jsx, jsxs, Fragment } from "react/jsx-runtime";
|
|
2
|
-
import { useCallback } from "react";
|
|
3
|
-
import { useFormContext } from "react-hook-form";
|
|
4
|
-
import { ActivePowerAdornment, ReactivePowerAdornment } from "../../../../../utils/constants/adornments.js";
|
|
5
|
-
import { FieldConstants } from "../../../../../utils/constants/fieldConstants.js";
|
|
6
|
-
import "../../../../../utils/conversionUtils.js";
|
|
7
|
-
import "../../../../../utils/types/equipmentType.js";
|
|
8
|
-
import "@mui/icons-material";
|
|
9
|
-
import "../../../../../utils/yupConfig.js";
|
|
10
|
-
import "@mui/material";
|
|
11
|
-
import "react-intl";
|
|
12
|
-
import "uuid";
|
|
13
|
-
import "../../../../notifications/contexts/NotificationsContext.js";
|
|
14
|
-
import "../../../../ui/overflowableText/OverflowableText.js";
|
|
15
|
-
import "localized-countries";
|
|
16
|
-
import "localized-countries/data/fr";
|
|
17
|
-
import "localized-countries/data/en";
|
|
18
|
-
import "notistack";
|
|
19
|
-
import "../../../../ui/reactHookForm/provider/CustomFormProvider.js";
|
|
20
|
-
import "yup";
|
|
21
|
-
import "../../../../treeViewFinder/TreeViewFinder.js";
|
|
22
|
-
import "../../../../ui/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
23
|
-
import "../../../../customAGGrid/customAggrid.js";
|
|
24
|
-
import "ag-grid-community";
|
|
25
|
-
import "react-papaparse";
|
|
26
|
-
import "react-csv-downloader";
|
|
27
|
-
import { FloatInput } from "../../../../ui/reactHookForm/numbers/FloatInput.js";
|
|
28
|
-
import "../../../../ui/reactHookForm/numbers/RangeInput.js";
|
|
29
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
30
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
31
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
32
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
34
|
-
import "../../../../ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
35
|
-
import "../../../../ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
36
|
-
import "@react-querybuilder/material";
|
|
37
|
-
import "../../../../filter/expert/expertFilterConstants.js";
|
|
38
|
-
import "../../../../ui/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
39
|
-
import "../../../../ui/reactQueryBuilder/PropertyValueEditor.js";
|
|
40
|
-
import "react-querybuilder";
|
|
41
|
-
import "@hello-pangea/dnd";
|
|
42
|
-
import "../../../../ui/dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
43
|
-
import "../../../../ui/snackbarProvider/SnackbarProvider.js";
|
|
44
|
-
import "mui-nested-menu";
|
|
45
|
-
import "react-resizable-panels";
|
|
46
|
-
import GridItem from "../../../../grid/grid-item.js";
|
|
47
|
-
function ReactiveCapabilityCurveRowForm({
|
|
48
|
-
id,
|
|
49
|
-
index,
|
|
50
|
-
labelSuffix
|
|
51
|
-
}) {
|
|
52
|
-
const {
|
|
53
|
-
trigger,
|
|
54
|
-
formState: { isSubmitted }
|
|
55
|
-
} = useFormContext();
|
|
56
|
-
const triggerTableValidation = useCallback(() => {
|
|
57
|
-
if (isSubmitted) {
|
|
58
|
-
trigger(`${FieldConstants.REACTIVE_LIMITS}.${FieldConstants.REACTIVE_CAPABILITY_CURVE_TABLE}`);
|
|
59
|
-
}
|
|
60
|
-
}, [isSubmitted, trigger]);
|
|
61
|
-
const triggerTableAndSiblingsValidation = useCallback(() => {
|
|
62
|
-
if (isSubmitted) {
|
|
63
|
-
trigger([
|
|
64
|
-
`${id}[${index}].${FieldConstants.MIN_Q}`,
|
|
65
|
-
`${id}[${index}].${FieldConstants.MAX_Q}`,
|
|
66
|
-
`${FieldConstants.REACTIVE_LIMITS}.${FieldConstants.REACTIVE_CAPABILITY_CURVE_TABLE}`
|
|
67
|
-
]);
|
|
68
|
-
}
|
|
69
|
-
}, [isSubmitted, id, index, trigger]);
|
|
70
|
-
const pField = /* @__PURE__ */ jsx(
|
|
71
|
-
FloatInput,
|
|
72
|
-
{
|
|
73
|
-
name: `${id}.${index}.${FieldConstants.P}`,
|
|
74
|
-
label: "P",
|
|
75
|
-
labelValues: { labelSuffix },
|
|
76
|
-
adornment: ActivePowerAdornment,
|
|
77
|
-
onChange: triggerTableValidation
|
|
78
|
-
}
|
|
79
|
-
);
|
|
80
|
-
const qminPField = /* @__PURE__ */ jsx(
|
|
81
|
-
FloatInput,
|
|
82
|
-
{
|
|
83
|
-
name: `${id}.${index}.${FieldConstants.MIN_Q}`,
|
|
84
|
-
label: "QminP",
|
|
85
|
-
labelValues: { labelSuffix },
|
|
86
|
-
adornment: ReactivePowerAdornment,
|
|
87
|
-
onChange: triggerTableAndSiblingsValidation
|
|
88
|
-
}
|
|
89
|
-
);
|
|
90
|
-
const qmaxPField = /* @__PURE__ */ jsx(
|
|
91
|
-
FloatInput,
|
|
92
|
-
{
|
|
93
|
-
name: `${id}.${index}.${FieldConstants.MAX_Q}`,
|
|
94
|
-
label: "QmaxP",
|
|
95
|
-
labelValues: { labelSuffix },
|
|
96
|
-
adornment: ReactivePowerAdornment,
|
|
97
|
-
onChange: triggerTableAndSiblingsValidation
|
|
98
|
-
}
|
|
99
|
-
);
|
|
100
|
-
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
101
|
-
/* @__PURE__ */ jsx(GridItem, { size: 3, children: pField }),
|
|
102
|
-
/* @__PURE__ */ jsx(GridItem, { size: 3, children: qminPField }),
|
|
103
|
-
/* @__PURE__ */ jsx(GridItem, { size: 3, children: qmaxPField })
|
|
104
|
-
] });
|
|
105
|
-
}
|
|
106
|
-
export {
|
|
107
|
-
ReactiveCapabilityCurveRowForm
|
|
108
|
-
};
|
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { useFieldArray } from "react-hook-form";
|
|
3
|
-
import { useCallback, useEffect } from "react";
|
|
4
|
-
import { Grid, IconButton } from "@mui/material";
|
|
5
|
-
import { Delete, ControlPoint } from "@mui/icons-material";
|
|
6
|
-
import { FormattedMessage } from "react-intl";
|
|
7
|
-
import { INSERT, REMOVE } from "./reactiveCapability.utils.js";
|
|
8
|
-
import { ReactiveCapabilityCurveRowForm } from "./ReactiveCapabilityCurveRowForm.js";
|
|
9
|
-
import { FieldConstants } from "../../../../../utils/constants/fieldConstants.js";
|
|
10
|
-
import "../../../../../utils/conversionUtils.js";
|
|
11
|
-
import "../../../../../utils/types/equipmentType.js";
|
|
12
|
-
import "../../../../../utils/yupConfig.js";
|
|
13
|
-
import "uuid";
|
|
14
|
-
import "../../../../notifications/contexts/NotificationsContext.js";
|
|
15
|
-
import "../../../../ui/overflowableText/OverflowableText.js";
|
|
16
|
-
import "localized-countries";
|
|
17
|
-
import "localized-countries/data/fr";
|
|
18
|
-
import "localized-countries/data/en";
|
|
19
|
-
import "notistack";
|
|
20
|
-
import "../../../../ui/reactHookForm/provider/CustomFormProvider.js";
|
|
21
|
-
import "yup";
|
|
22
|
-
import { ErrorInput } from "../../../../ui/reactHookForm/errorManagement/ErrorInput.js";
|
|
23
|
-
import { MidFormError } from "../../../../ui/reactHookForm/errorManagement/MidFormError.js";
|
|
24
|
-
import "../../../../treeViewFinder/TreeViewFinder.js";
|
|
25
|
-
import "../../../../ui/reactHookForm/agGridTable/BottomRightButtons.js";
|
|
26
|
-
import "../../../../customAGGrid/customAggrid.js";
|
|
27
|
-
import "ag-grid-community";
|
|
28
|
-
import "react-papaparse";
|
|
29
|
-
import "react-csv-downloader";
|
|
30
|
-
import "../../../../ui/reactHookForm/numbers/RangeInput.js";
|
|
31
|
-
import "@material-symbols/svg-400/outlined/left_panel_open.svg?react";
|
|
32
|
-
import "@material-symbols/svg-400/outlined/arrows_output.svg?react";
|
|
33
|
-
import "@material-symbols/svg-400/outlined/arrows_input.svg?react";
|
|
34
|
-
import "@material-symbols/svg-400/outlined/left_panel_close.svg?react";
|
|
35
|
-
import "@material-symbols/svg-400/outlined/add_notes.svg?react";
|
|
36
|
-
import "../../../../ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
37
|
-
import "../../../../ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
38
|
-
import "@react-querybuilder/material";
|
|
39
|
-
import "../../../../filter/expert/expertFilterConstants.js";
|
|
40
|
-
import "../../../../ui/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
41
|
-
import "../../../../ui/reactQueryBuilder/PropertyValueEditor.js";
|
|
42
|
-
import "react-querybuilder";
|
|
43
|
-
import "@hello-pangea/dnd";
|
|
44
|
-
import "../../../../ui/dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
45
|
-
import "../../../../ui/snackbarProvider/SnackbarProvider.js";
|
|
46
|
-
import "mui-nested-menu";
|
|
47
|
-
import "react-resizable-panels";
|
|
48
|
-
const MIN_LENGTH = 2;
|
|
49
|
-
function ReactiveCapabilityCurveTableForm({
|
|
50
|
-
id,
|
|
51
|
-
tableHeadersIds,
|
|
52
|
-
previousValues,
|
|
53
|
-
updatePreviousReactiveCapabilityCurveTable,
|
|
54
|
-
disabled = false
|
|
55
|
-
}) {
|
|
56
|
-
const { fields: rows, insert, remove } = useFieldArray({ name: `${id}` });
|
|
57
|
-
const insertRow = useCallback(
|
|
58
|
-
(index) => {
|
|
59
|
-
if (previousValues && updatePreviousReactiveCapabilityCurveTable) {
|
|
60
|
-
updatePreviousReactiveCapabilityCurveTable(INSERT, index);
|
|
61
|
-
}
|
|
62
|
-
insert(index, {
|
|
63
|
-
[FieldConstants.P]: null,
|
|
64
|
-
[FieldConstants.MIN_Q]: null,
|
|
65
|
-
[FieldConstants.MAX_Q]: null
|
|
66
|
-
});
|
|
67
|
-
},
|
|
68
|
-
[insert, updatePreviousReactiveCapabilityCurveTable, previousValues]
|
|
69
|
-
);
|
|
70
|
-
const handleInsertRow = () => {
|
|
71
|
-
insertRow(rows.length - 1);
|
|
72
|
-
};
|
|
73
|
-
const handleRemoveRow = (index) => {
|
|
74
|
-
if (previousValues && updatePreviousReactiveCapabilityCurveTable) {
|
|
75
|
-
updatePreviousReactiveCapabilityCurveTable(REMOVE, index);
|
|
76
|
-
}
|
|
77
|
-
remove(index);
|
|
78
|
-
};
|
|
79
|
-
useEffect(() => {
|
|
80
|
-
if (rows?.length < MIN_LENGTH) {
|
|
81
|
-
for (let i = 0; i < MIN_LENGTH - rows.length; i++) {
|
|
82
|
-
insertRow(rows.length);
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
}, [insertRow, rows]);
|
|
86
|
-
return /* @__PURE__ */ jsxs(Grid, { item: true, container: true, spacing: 2, children: [
|
|
87
|
-
/* @__PURE__ */ jsx(Grid, { container: true, children: /* @__PURE__ */ jsx(ErrorInput, { name: id, InputField: MidFormError }) }),
|
|
88
|
-
tableHeadersIds.map((header) => /* @__PURE__ */ jsx(Grid, { item: true, xs: 3, children: /* @__PURE__ */ jsx(FormattedMessage, { id: header }) }, header)),
|
|
89
|
-
rows.map((value, index, displayedValues) => {
|
|
90
|
-
let labelSuffix;
|
|
91
|
-
if (index === 0) {
|
|
92
|
-
labelSuffix = "min";
|
|
93
|
-
} else if (index === displayedValues.length - 1) {
|
|
94
|
-
labelSuffix = "max";
|
|
95
|
-
} else {
|
|
96
|
-
labelSuffix = index - 1;
|
|
97
|
-
}
|
|
98
|
-
return /* @__PURE__ */ jsxs(Grid, { container: true, spacing: 3, item: true, children: [
|
|
99
|
-
/* @__PURE__ */ jsx(ReactiveCapabilityCurveRowForm, { id, index, labelSuffix }),
|
|
100
|
-
/* @__PURE__ */ jsx(Grid, { item: true, xs: 1, children: /* @__PURE__ */ jsx(
|
|
101
|
-
IconButton,
|
|
102
|
-
{
|
|
103
|
-
onClick: () => handleRemoveRow(index),
|
|
104
|
-
disabled: disabled || index === 0 || index === displayedValues.length - 1,
|
|
105
|
-
children: /* @__PURE__ */ jsx(Delete, {})
|
|
106
|
-
},
|
|
107
|
-
value.id
|
|
108
|
-
) }),
|
|
109
|
-
index === displayedValues.length - 1 && /* @__PURE__ */ jsx(Grid, { item: true, xs: 1, children: /* @__PURE__ */ jsx(
|
|
110
|
-
IconButton,
|
|
111
|
-
{
|
|
112
|
-
onClick: () => handleInsertRow(),
|
|
113
|
-
disabled,
|
|
114
|
-
style: { top: "-1em" },
|
|
115
|
-
children: /* @__PURE__ */ jsx(ControlPoint, {})
|
|
116
|
-
},
|
|
117
|
-
value.id
|
|
118
|
-
) })
|
|
119
|
-
] }, value.id);
|
|
120
|
-
})
|
|
121
|
-
] });
|
|
122
|
-
}
|
|
123
|
-
export {
|
|
124
|
-
ReactiveCapabilityCurveTableForm
|
|
125
|
-
};
|