@gridsuite/commons-ui 0.213.0 → 0.215.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/components/composite/agGridTable/BottomRightButtons.js +62 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.d.ts +8 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.js +201 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +183 -0
- package/dist/components/composite/customAGGrid/cell-renderers.js +202 -0
- package/dist/components/composite/customAGGrid/customAggrid.d.ts +12 -0
- package/dist/components/composite/customAGGrid/customAggrid.js +63 -0
- package/dist/components/composite/customAGGrid/separatorCellRenderer.js +21 -0
- package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table/dnd-table.js +436 -0
- package/dist/components/composite/dnd-table/dnd-table.type.d.ts +56 -0
- package/dist/components/composite/dnd-table-v2/deletable-table-row.js +38 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-row.js +184 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.js +376 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.type.d.ts +70 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.d.ts +24 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.js +56 -0
- package/dist/components/composite/elementSearch/hooks/useElementSearch.js +67 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.d.ts +14 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.js +20 -0
- package/dist/components/composite/filter/FilterCreationDialog.d.ts +18 -0
- package/dist/components/composite/filter/FilterCreationDialog.js +127 -0
- package/dist/components/composite/filter/FilterForm.js +45 -0
- package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
- package/dist/components/composite/filter/HeaderFilterForm.js +72 -0
- package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +113 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.js +118 -0
- package/dist/components/composite/filter/expert/expertFilter.type.d.ts +75 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.d.ts +1154 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.js +1454 -0
- package/dist/components/composite/filter/expert/expertFilterUtils.js +374 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +123 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +244 -0
- package/dist/components/composite/filter/filter.type.d.ts +57 -0
- package/dist/components/composite/filter/utils/filterApi.js +111 -0
- package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
- package/dist/components/composite/filter/utils/filterFormUtils.js +60 -0
- package/dist/components/composite/flatParameters/FlatParameters.js +366 -0
- package/dist/components/composite/grid/grid-item.js +9 -0
- package/dist/components/composite/grid/grid-section.d.ts +8 -0
- package/dist/components/composite/index.d.ts +15 -0
- package/dist/components/composite/index.js +146 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.d.ts +3 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.js +10 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.d.ts +6 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.js +16 -0
- package/dist/components/composite/reactQueryBuilder/CombinatorSelector.js +40 -0
- package/dist/components/composite/reactQueryBuilder/CountryValueEditor.js +50 -0
- package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
- package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +47 -0
- package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +102 -0
- package/dist/components/composite/reactQueryBuilder/RemoveButton.js +19 -0
- package/dist/components/composite/reactQueryBuilder/ValueEditor.js +96 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +3 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +8 -0
- package/dist/components/composite/reactQueryBuilder/hooks/useConvertValue.js +19 -0
- package/dist/components/index.d.ts +2 -30
- package/dist/components/index.js +124 -736
- package/dist/components/ui/checkBoxList/CheckBoxListItem.js +74 -0
- package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +45 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +84 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +38 -0
- package/dist/components/ui/checkBoxList/checkBoxList.type.d.ts +74 -0
- package/dist/components/ui/csvDownloader/csv-export.type.d.ts +15 -0
- package/dist/components/ui/csvDownloader/use-csv-export.js +61 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.d.ts +51 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.js +143 -0
- package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +74 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +56 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +273 -0
- package/dist/components/ui/dialogs/elementSaveDialog/utils.d.ts +23 -0
- package/dist/components/ui/dialogs/index.d.ts +12 -0
- package/dist/components/ui/dialogs/index.js +17 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +11 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +95 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.d.ts +8 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js +33 -0
- package/dist/components/ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +24 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +305 -0
- package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
- package/dist/components/ui/directoryItemSelector/utils.js +102 -0
- package/dist/components/ui/index.d.ts +20 -0
- package/dist/components/ui/index.js +163 -0
- package/dist/components/ui/inputs/SelectClearable.js +41 -0
- package/dist/components/ui/inputs/index.d.ts +8 -0
- package/dist/components/ui/inputs/index.js +6 -0
- package/dist/components/ui/menus/custom-nested-menu.d.ts +10 -0
- package/dist/components/ui/menus/custom-nested-menu.js +62 -0
- package/dist/components/ui/overflowableText/OverflowableText.d.ts +11 -0
- package/dist/components/ui/overflowableText/OverflowableText.js +97 -0
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +290 -0
- package/dist/components/ui/reactHookForm/OverflowableChip.js +25 -0
- package/dist/components/ui/reactHookForm/chip-items-input.js +135 -0
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.js +42 -0
- package/dist/components/ui/reactHookForm/expandableInput/ExpandableInput.js +67 -0
- package/dist/components/ui/reactHookForm/index.d.ts +25 -0
- package/dist/components/ui/reactHookForm/index.js +104 -0
- package/dist/components/ui/reactHookForm/selectInputs/InputWithPopupConfirmation.js +61 -0
- package/dist/components/ui/reactHookForm/selectInputs/SelectWithConfirmationInput.js +64 -0
- package/dist/components/ui/reactHookForm/text/DescriptionField.js +62 -0
- package/dist/components/ui/reactHookForm/text/DescriptionInput.js +87 -0
- package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.js +343 -0
- package/dist/components/ui/treeViewFinder/TreeViewUtils.d.ts +2 -0
- package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
- package/dist/features/announcement/AnnouncementBanner.js +88 -0
- package/dist/features/announcement/AnnouncementNotification.d.ts +7 -0
- package/dist/features/announcement/AnnouncementNotification.js +20 -0
- package/dist/features/announcement/useGlobalAnnouncement.d.ts +10 -0
- package/dist/features/announcement/useGlobalAnnouncement.js +48 -0
- package/dist/features/index.d.ts +15 -0
- package/dist/features/index.js +651 -0
- package/dist/features/network-modification-table/renderers/description-cell.js +75 -0
- package/dist/features/network-modification-table/renderers/name-cell.js +221 -0
- package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +114 -0
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +100 -0
- package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +140 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +233 -0
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +83 -0
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +76 -0
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +93 -0
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +57 -0
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +111 -0
- package/dist/features/network-modifications/common/connectivity/PositionForm.js +107 -0
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +159 -0
- package/dist/features/network-modifications/common/index.d.ts +16 -0
- package/dist/features/network-modifications/common/index.js +129 -0
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +67 -0
- package/dist/features/network-modifications/common/properties/PropertiesForm.js +108 -0
- package/dist/features/network-modifications/common/properties/PropertyForm.js +95 -0
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +97 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +96 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +113 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +161 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.d.ts +8 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.js +9 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.d.ts +55 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js +72 -0
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +64 -0
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +63 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +116 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.d.ts +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.js +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.d.ts +52 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +56 -0
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +167 -0
- package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +74 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +42 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +55 -0
- package/dist/features/network-modifications/index.js +279 -0
- package/dist/features/network-modifications/load/common/LoadDialogHeader.js +86 -0
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
- package/dist/features/network-modifications/load/creation/loadCreation.utils.js +94 -0
- package/dist/features/network-modifications/load/modification/loadModification.utils.js +103 -0
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +193 -0
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +77 -0
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +98 -0
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +58 -0
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +82 -0
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +123 -0
- package/dist/features/network-modifications/voltageLevel/creation/index.js +52 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +88 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +59 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +54 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +94 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +95 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +57 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +78 -0
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +246 -0
- package/dist/features/network-modifications/voltageLevel/index.js +59 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +149 -0
- package/dist/features/notifications/NotificationsProvider.js +66 -0
- package/dist/features/parameters/common/ProviderParam.js +52 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.js +107 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.js +141 -0
- package/dist/features/parameters/common/hook/use-parameters-form.js +60 -0
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +59 -0
- package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +65 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +34 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +51 -0
- package/dist/features/parameters/common/parameter-field.js +106 -0
- package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
- package/dist/features/parameters/common/parameter-table/table-cell.js +84 -0
- package/dist/features/parameters/common/parameter-table/table-row.js +41 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +11 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +116 -0
- package/dist/features/parameters/common/parameters-creation-dialog.js +87 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +43 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.js +61 -0
- package/dist/features/parameters/common/widget/parameter-float.js +53 -0
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +60 -0
- package/dist/features/parameters/common/widget/parameter-line-slider.js +72 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +99 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +178 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +29 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +151 -0
- package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +95 -0
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +68 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +130 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +177 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +123 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +125 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +20 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +283 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +16 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +14 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +239 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +187 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +148 -0
- package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +117 -0
- package/dist/features/parameters/loadflow/load-flow-general-parameters.js +181 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-content.js +80 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +107 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-form.js +105 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-header.js +97 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +196 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +108 -0
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +251 -0
- package/dist/features/parameters/network-visualizations/map-parameters.js +113 -0
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +61 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-form.js +105 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +100 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +134 -0
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +103 -0
- package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +155 -0
- package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +59 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +98 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +117 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +163 -0
- package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +135 -0
- package/dist/features/parameters/security-analysis/columns-definitions.js +75 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +116 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +16 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +160 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +188 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +84 -0
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +141 -0
- package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +188 -0
- package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
- package/dist/features/parameters/sensi/columns-definitions.js +345 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +122 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +135 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +192 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +73 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +259 -0
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +380 -0
- package/dist/features/parameters/sensi/utils.d.ts +411 -0
- package/dist/features/parameters/sensi/utils.js +365 -0
- package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +212 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +71 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +36 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.js +60 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.js +49 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.js +43 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +104 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +107 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +67 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +173 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +295 -0
- package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +94 -0
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +142 -0
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +246 -0
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +122 -0
- package/dist/features/parameters/voltage-init/general-parameters.js +115 -0
- package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +213 -0
- package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +214 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +98 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +153 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +172 -0
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +171 -0
- package/dist/features/topBar/AboutDialog.js +349 -0
- package/dist/features/topBar/TopBar.d.ts +25 -0
- package/dist/features/topBar/TopBar.js +537 -0
- package/dist/features/topBar/UserInformationDialog.d.ts +8 -0
- package/dist/features/topBar/UserInformationDialog.js +75 -0
- package/dist/hooks/use-parameters-backend.d.ts +1 -1
- package/dist/hooks/use-parameters-backend.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +288 -275
- package/dist/services/explore.d.ts +1 -1
- package/dist/services/security-analysis.d.ts +1 -1
- package/dist/services/security-analysis.js +1 -1
- package/dist/services/short-circuit-analysis.d.ts +1 -1
- package/dist/services/study-config.d.ts +1 -1
- package/dist/services/study.d.ts +3 -3
- package/dist/services/voltage-init.d.ts +1 -1
- package/dist/translations/en/networkModificationsEn.d.ts +6 -0
- package/dist/translations/en/networkModificationsEn.js +6 -0
- package/dist/translations/fr/networkModificationsFr.d.ts +6 -0
- package/dist/translations/fr/networkModificationsFr.js +6 -0
- package/dist/utils/types/loadflow.type.d.ts +1 -1
- package/dist/utils/types/parameters.type.d.ts +4 -4
- package/package.json +1 -1
- package/dist/components/announcement/AnnouncementBanner.d.ts +0 -15
- package/dist/components/announcement/AnnouncementBanner.js +0 -88
- package/dist/components/announcement/AnnouncementNotification.d.ts +0 -7
- package/dist/components/announcement/AnnouncementNotification.js +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.d.ts +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.js +0 -48
- package/dist/components/checkBoxList/CheckBoxListItem.js +0 -74
- package/dist/components/checkBoxList/CheckBoxListItemContent.js +0 -45
- package/dist/components/checkBoxList/DraggableCheckBoxListItem.js +0 -84
- package/dist/components/checkBoxList/DraggableCheckBoxListItemContent.js +0 -38
- package/dist/components/checkBoxList/checkBoxList.type.d.ts +0 -74
- package/dist/components/csvDownloader/csv-export.type.d.ts +0 -15
- package/dist/components/csvDownloader/use-csv-export.js +0 -61
- package/dist/components/customAGGrid/cell-renderers.js +0 -202
- package/dist/components/customAGGrid/customAggrid.d.ts +0 -12
- package/dist/components/customAGGrid/customAggrid.js +0 -63
- package/dist/components/customAGGrid/separatorCellRenderer.js +0 -21
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.d.ts +0 -51
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.js +0 -143
- package/dist/components/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +0 -74
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +0 -56
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.js +0 -284
- package/dist/components/dialogs/elementSaveDialog/utils.d.ts +0 -23
- package/dist/components/dialogs/index.d.ts +0 -11
- package/dist/components/dialogs/index.js +0 -15
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +0 -11
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.js +0 -95
- package/dist/components/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +0 -24
- package/dist/components/directoryItemSelector/DirectoryItemSelector.d.ts +0 -11
- package/dist/components/directoryItemSelector/DirectoryItemSelector.js +0 -305
- package/dist/components/directoryItemSelector/utils.d.ts +0 -55
- package/dist/components/directoryItemSelector/utils.js +0 -102
- package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table/dnd-table.js +0 -442
- package/dist/components/dnd-table/dnd-table.type.d.ts +0 -56
- package/dist/components/dnd-table-v2/deletable-table-row.js +0 -38
- package/dist/components/dnd-table-v2/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table-v2/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table-v2/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table-v2/dnd-table-row.js +0 -183
- package/dist/components/dnd-table-v2/dnd-table.js +0 -383
- package/dist/components/dnd-table-v2/dnd-table.type.d.ts +0 -70
- package/dist/components/elementSearch/elementItem/EquipmentItem.d.ts +0 -24
- package/dist/components/elementSearch/elementItem/EquipmentItem.js +0 -56
- package/dist/components/elementSearch/hooks/useElementSearch.js +0 -67
- package/dist/components/elementSearch/tagRenderer/TagRenderer.d.ts +0 -14
- package/dist/components/elementSearch/tagRenderer/TagRenderer.js +0 -20
- package/dist/components/filter/FilterCreationDialog.d.ts +0 -18
- package/dist/components/filter/FilterCreationDialog.js +0 -127
- package/dist/components/filter/FilterForm.js +0 -43
- package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
- package/dist/components/filter/HeaderFilterForm.js +0 -78
- package/dist/components/filter/expert/ExpertFilterEditionDialog.js +0 -113
- package/dist/components/filter/expert/ExpertFilterForm.d.ts +0 -21
- package/dist/components/filter/expert/ExpertFilterForm.js +0 -121
- package/dist/components/filter/expert/expertFilter.type.d.ts +0 -75
- package/dist/components/filter/expert/expertFilterConstants.d.ts +0 -1154
- package/dist/components/filter/expert/expertFilterConstants.js +0 -1454
- package/dist/components/filter/expert/expertFilterUtils.js +0 -374
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +0 -123
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +0 -28
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.js +0 -248
- package/dist/components/filter/filter.type.d.ts +0 -57
- package/dist/components/filter/utils/filterApi.js +0 -111
- package/dist/components/filter/utils/filterFormUtils.d.ts +0 -7
- package/dist/components/filter/utils/filterFormUtils.js +0 -60
- package/dist/components/flatParameters/FlatParameters.js +0 -366
- package/dist/components/grid/grid-item.js +0 -9
- package/dist/components/grid/grid-section.d.ts +0 -8
- package/dist/components/inputs/SelectClearable.js +0 -41
- package/dist/components/inputs/index.d.ts +0 -10
- package/dist/components/inputs/index.js +0 -146
- package/dist/components/inputs/reactHookForm/DirectoryItemsInput.js +0 -290
- package/dist/components/inputs/reactHookForm/OverflowableChip.js +0 -25
- package/dist/components/inputs/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
- package/dist/components/inputs/reactHookForm/chip-items-input.js +0 -135
- package/dist/components/inputs/reactHookForm/expandableInput/DeletableRow.js +0 -42
- package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +0 -67
- package/dist/components/inputs/reactHookForm/index.d.ts +0 -26
- package/dist/components/inputs/reactHookForm/index.js +0 -112
- package/dist/components/inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js +0 -61
- package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js +0 -64
- package/dist/components/inputs/reactHookForm/text/DescriptionField.js +0 -62
- package/dist/components/inputs/reactHookForm/text/DescriptionInput.js +0 -87
- package/dist/components/inputs/reactHookForm/utils/HelperPreviousValue.js +0 -39
- package/dist/components/inputs/reactQueryBuilder/CombinatorSelector.js +0 -40
- package/dist/components/inputs/reactQueryBuilder/CountryValueEditor.js +0 -50
- package/dist/components/inputs/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
- package/dist/components/inputs/reactQueryBuilder/ElementValueEditor.js +0 -47
- package/dist/components/inputs/reactQueryBuilder/PropertyValueEditor.js +0 -102
- package/dist/components/inputs/reactQueryBuilder/RemoveButton.js +0 -19
- package/dist/components/inputs/reactQueryBuilder/ValueEditor.js +0 -96
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
- package/dist/components/inputs/reactQueryBuilder/hooks/useConvertValue.js +0 -19
- package/dist/components/menus/custom-nested-menu.d.ts +0 -10
- package/dist/components/menus/custom-nested-menu.js +0 -62
- package/dist/components/muiTable/OverflowableTableCell.d.ts +0 -3
- package/dist/components/muiTable/OverflowableTableCell.js +0 -10
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.d.ts +0 -6
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.js +0 -16
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.d.ts +0 -8
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.js +0 -33
- package/dist/components/network-modification-table/renderers/description-cell.js +0 -73
- package/dist/components/network-modification-table/renderers/name-cell.js +0 -221
- package/dist/components/network-modification-table/renderers/root-network-chip-cell.js +0 -138
- package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -105
- package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -145
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -238
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -90
- package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -81
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -99
- package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -117
- package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -113
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -165
- package/dist/components/network-modifications/common/index.d.ts +0 -14
- package/dist/components/network-modifications/common/index.js +0 -116
- package/dist/components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +0 -31
- package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -73
- package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -114
- package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -101
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -103
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -102
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -119
- package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -70
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -69
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -172
- package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -80
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -61
- package/dist/components/network-modifications/index.js +0 -272
- package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -91
- package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
- package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -100
- package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -108
- package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -199
- package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -82
- package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -103
- package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -63
- package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -87
- package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -128
- package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -57
- package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -94
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -65
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +0 -54
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +0 -100
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -101
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -62
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -84
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -251
- package/dist/components/network-modifications/voltageLevel/index.js +0 -64
- package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -154
- package/dist/components/notifications/NotificationsProvider.js +0 -55
- package/dist/components/overflowableText/OverflowableText.d.ts +0 -11
- package/dist/components/overflowableText/OverflowableText.js +0 -97
- package/dist/components/parameters/common/ProviderParam.js +0 -58
- package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
- package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -114
- package/dist/components/parameters/common/contingency-table/contingency-table.d.ts +0 -8
- package/dist/components/parameters/common/contingency-table/contingency-table.js +0 -133
- package/dist/components/parameters/common/hook/use-parameters-form.js +0 -60
- package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -65
- package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -71
- package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +0 -34
- package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -57
- package/dist/components/parameters/common/parameter-field.js +0 -114
- package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
- package/dist/components/parameters/common/parameter-table/table-cell.js +0 -83
- package/dist/components/parameters/common/parameter-table/table-row.js +0 -41
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.d.ts +0 -11
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.js +0 -122
- package/dist/components/parameters/common/parameters-creation-dialog.js +0 -85
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -49
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table.js +0 -61
- package/dist/components/parameters/common/widget/parameter-float.js +0 -59
- package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -65
- package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -78
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -107
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -184
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +0 -29
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +0 -158
- package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -103
- package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -76
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -137
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.d.ts +0 -11
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.js +0 -177
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-preview.js +0 -123
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +0 -125
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +0 -20
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +0 -283
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +0 -16
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +0 -14
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +0 -239
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.js +0 -194
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +0 -156
- package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -125
- package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -189
- package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -88
- package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -115
- package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -111
- package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -105
- package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -203
- package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -116
- package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -259
- package/dist/components/parameters/network-visualizations/map-parameters.js +0 -121
- package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -67
- package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -113
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -107
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -140
- package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -111
- package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -161
- package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -65
- package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -105
- package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -125
- package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -170
- package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -141
- package/dist/components/parameters/security-analysis/columns-definitions.js +0 -83
- package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -124
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.d.ts +0 -13
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.js +0 -165
- package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -191
- package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -92
- package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -149
- package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -195
- package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
- package/dist/components/parameters/sensi/columns-definitions.js +0 -352
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -130
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -143
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -199
- package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -79
- package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -265
- package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -387
- package/dist/components/parameters/sensi/utils.d.ts +0 -411
- package/dist/components/parameters/sensi/utils.js +0 -372
- package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -220
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -76
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +0 -36
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table.js +0 -60
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table-cell.js +0 -55
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table.js +0 -43
- package/dist/components/parameters/short-circuit/short-circuit-parameters-content.js +0 -112
- package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -115
- package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -73
- package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -180
- package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -303
- package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -102
- package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -150
- package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -254
- package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -130
- package/dist/components/parameters/voltage-init/general-parameters.js +0 -123
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -220
- package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -221
- package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -105
- package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -161
- package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -179
- package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -178
- package/dist/components/topBar/AboutDialog.js +0 -349
- package/dist/components/topBar/TopBar.d.ts +0 -25
- package/dist/components/topBar/TopBar.js +0 -537
- package/dist/components/topBar/UserInformationDialog.d.ts +0 -8
- package/dist/components/topBar/UserInformationDialog.js +0 -72
- package/dist/components/treeViewFinder/TreeViewFinder.d.ts +0 -39
- package/dist/components/treeViewFinder/TreeViewFinder.js +0 -343
- package/dist/components/treeViewFinder/TreeViewUtils.d.ts +0 -2
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/cell-renderers.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/separatorCellRenderer.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/deletable-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/useElementSearch.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/FilterForm.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/ExpertFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilterUtils.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/filter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/utils/filterApi.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.js +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/FlatParameters.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.js +0 -0
- /package/dist/components/{grid → composite/grid}/grid-item.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/grid-section.js +0 -0
- /package/dist/components/{grid → composite/grid}/index.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/index.js +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.d.ts +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/checkBoxList.type.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.type.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/use-csv-export.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/DescriptionModificationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/utils.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.js +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.d.ts +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/PopupConfirmationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.js +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.d.ts +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/index.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/SelectClearable.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.js +0 -0
- /package/dist/components/{menus → ui/menus}/index.d.ts +0 -0
- /package/dist/components/{menus → ui/menus}/index.js +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.d.ts +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/DirectoryItemsInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/chip-items-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/DeletableRow.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/ExpandableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/InputWithPopupConfirmation.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/HelperPreviousValue.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/TreeViewUtils.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.d.ts +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.js +0 -0
- /package/dist/{components → features}/announcement/index.d.ts +0 -0
- /package/dist/{components → features}/announcement/index.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.js +0 -0
- /package/dist/{components → features}/authentication/Login.d.ts +0 -0
- /package/dist/{components → features}/authentication/Login.js +0 -0
- /package/dist/{components → features}/authentication/Logout.d.ts +0 -0
- /package/dist/{components → features}/authentication/Logout.js +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/index.js +0 -0
- /package/dist/{components → features}/authentication/authenticationType.d.ts +0 -0
- /package/dist/{components → features}/authentication/authenticationType.js +0 -0
- /package/dist/{components → features}/authentication/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/authService.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/authService.js +0 -0
- /package/dist/{components → features}/authentication/utils/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.js +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.js +0 -0
- /package/dist/{components → features}/network-modification-table/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/description-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/name-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/root-network-chip-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.js +0 -0
- /package/dist/{components → features}/network-modification-table/utils.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/utils.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/BatteryCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/ConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/PositionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerWithValidityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertiesForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertyForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/SetPointsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.js +0 -0
- /package/dist/{components → features}/network-modifications/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogHeader.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabsContent.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/SubstationCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/SubstationModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.js +0 -0
- /package/dist/{components → features}/node/build-status-chip.d.ts +0 -0
- /package/dist/{components → features}/node/build-status-chip.js +0 -0
- /package/dist/{components → features}/node/constant.d.ts +0 -0
- /package/dist/{components → features}/node/constant.js +0 -0
- /package/dist/{components → features}/node/index.d.ts +0 -0
- /package/dist/{components → features}/node/index.js +0 -0
- /package/dist/{components → features}/notifications/NotificationsProvider.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.js +0 -0
- /package/dist/{components → features}/notifications/index.d.ts +0 -0
- /package/dist/{components → features}/notifications/index.js +0 -0
- /package/dist/{components → features}/parameters/common/ProviderParam.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.js +0 -0
- /package/dist/{components → features}/parameters/common/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.js +0 -0
- /package/dist/{components → features}/parameters/common/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-table-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.js +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-field.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/parameter-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters-creation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters.js +0 -0
- /package/dist/{components → features}/parameters/common/utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/utils.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-float.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-directory-items-input.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-slider.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/contingency-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-preview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-selector.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-header.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/map-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-area-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/single-line-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-violations-hiding.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.js +0 -0
- /package/dist/{components → features}/parameters/sensi/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/index.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-fields.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-general-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-power-electronics-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-study-area-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/equipment-selection-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-limits-parameters.d.ts +0 -0
- /package/dist/{components → features}/topBar/AboutDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.js +0 -0
- /package/dist/{components → features}/topBar/GridLogo.d.ts +0 -0
- /package/dist/{components → features}/topBar/GridLogo.js +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.js +0 -0
- /package/dist/{components → features}/topBar/index.d.ts +0 -0
- /package/dist/{components → features}/topBar/index.js +0 -0
package/dist/components/index.js
CHANGED
|
@@ -1,359 +1,157 @@
|
|
|
1
|
-
import { AddButton, AddButtonMode } from "./addButton/AddButton.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import {
|
|
49
|
-
import {
|
|
50
|
-
import {
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
1
|
+
import { AddButton, AddButtonMode } from "./ui/addButton/AddButton.js";
|
|
2
|
+
import { OverflowableChip } from "./ui/reactHookForm/OverflowableChip.js";
|
|
3
|
+
import { OverflowableChipWithHelperText } from "./ui/reactHookForm/OverflowableChipWithHelperText.js";
|
|
4
|
+
import { ChipItemsInput } from "./ui/reactHookForm/chip-items-input.js";
|
|
5
|
+
import { DirectoryItemsInput } from "./ui/reactHookForm/DirectoryItemsInput.js";
|
|
6
|
+
import { RawReadOnlyInput } from "./ui/reactHookForm/RawReadOnlyInput.js";
|
|
7
|
+
import { AutocompleteInput } from "./ui/reactHookForm/autocompleteInputs/AutocompleteInput.js";
|
|
8
|
+
import { MultipleAutocompleteInput } from "./ui/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js";
|
|
9
|
+
import { BooleanInput } from "./ui/reactHookForm/booleans/BooleanInput.js";
|
|
10
|
+
import { CheckboxInput } from "./ui/reactHookForm/booleans/CheckboxInput.js";
|
|
11
|
+
import { RadioInput } from "./ui/reactHookForm/booleans/RadioInput.js";
|
|
12
|
+
import { SwitchInput } from "./ui/reactHookForm/booleans/SwitchInput.js";
|
|
13
|
+
import { ErrorInput } from "./ui/reactHookForm/errorManagement/ErrorInput.js";
|
|
14
|
+
import { FieldErrorAlert } from "./ui/reactHookForm/errorManagement/FieldErrorAlert.js";
|
|
15
|
+
import { MidFormError } from "./ui/reactHookForm/errorManagement/MidFormError.js";
|
|
16
|
+
import { FloatInput } from "./ui/reactHookForm/numbers/FloatInput.js";
|
|
17
|
+
import { IntegerInput } from "./ui/reactHookForm/numbers/IntegerInput.js";
|
|
18
|
+
import { DEFAULT_RANGE_VALUE, RangeInput, RangeType, getRangeInputSchema } from "./ui/reactHookForm/numbers/RangeInput.js";
|
|
19
|
+
import { SliderInput } from "./ui/reactHookForm/numbers/SliderInput.js";
|
|
20
|
+
import { isFloatNumber, isIntegerNumber } from "./ui/reactHookForm/numbers/utils.js";
|
|
21
|
+
import { CustomFormContext, CustomFormProvider } from "./ui/reactHookForm/provider/CustomFormProvider.js";
|
|
22
|
+
import { useCustomFormContext } from "./ui/reactHookForm/provider/useCustomFormContext.js";
|
|
23
|
+
import { ReadOnlyInput } from "./ui/reactHookForm/readOnly/ReadOnlyInput.js";
|
|
24
|
+
import { ButtonReadOnlyInput } from "./ui/reactHookForm/readOnly/ButtonReadOnlyInput.js";
|
|
25
|
+
import { CountriesInput } from "./ui/reactHookForm/selectInputs/CountriesInput.js";
|
|
26
|
+
import { InputWithPopupConfirmation } from "./ui/reactHookForm/selectInputs/InputWithPopupConfirmation.js";
|
|
27
|
+
import { MuiSelectInput } from "./ui/reactHookForm/selectInputs/MuiSelectInput.js";
|
|
28
|
+
import { SelectInput } from "./ui/reactHookForm/selectInputs/SelectInput.js";
|
|
29
|
+
import { SelectWithConfirmationInput } from "./ui/reactHookForm/selectInputs/SelectWithConfirmationInput.js";
|
|
30
|
+
import { EnumInput } from "./ui/reactHookForm/selectInputs/EnumInput.js";
|
|
31
|
+
import { TableNumericalInput } from "./ui/reactHookForm/tableInputs/table-numerical-input.js";
|
|
32
|
+
import { TableTextInput } from "./ui/reactHookForm/tableInputs/table-text-input.js";
|
|
33
|
+
import { DescriptionField } from "./ui/reactHookForm/text/DescriptionField.js";
|
|
34
|
+
import { ExpandingTextField } from "./ui/reactHookForm/text/ExpandingTextField.js";
|
|
35
|
+
import { TextInput } from "./ui/reactHookForm/text/TextInput.js";
|
|
36
|
+
import { UniqueNameInput } from "./ui/reactHookForm/text/UniqueNameInput.js";
|
|
37
|
+
import { DescriptionInput } from "./ui/reactHookForm/text/DescriptionInput.js";
|
|
38
|
+
import { CancelButton } from "./ui/reactHookForm/utils/CancelButton.js";
|
|
39
|
+
import { FieldLabel } from "./ui/reactHookForm/utils/FieldLabel.js";
|
|
40
|
+
import { SubmitButton } from "./ui/reactHookForm/utils/SubmitButton.js";
|
|
41
|
+
import { TextFieldWithAdornment } from "./ui/reactHookForm/utils/TextFieldWithAdornment.js";
|
|
42
|
+
import { genHelperError, gridItem, identity, isFieldRequired, toFloatOrNullValue } from "./ui/reactHookForm/utils/functions.js";
|
|
43
|
+
import { HelperPreviousValue } from "./ui/reactHookForm/utils/HelperPreviousValue.js";
|
|
44
|
+
import { DESCRIPTION, NAME } from "./ui/reactHookForm/constants.js";
|
|
45
|
+
import { ExpandableInput } from "./ui/reactHookForm/expandableInput/ExpandableInput.js";
|
|
46
|
+
import { CountrySelectionInput } from "./ui/reactHookForm/CountrySelectionInput.js";
|
|
47
|
+
import { CheckboxNullableInput } from "./ui/reactHookForm/CheckboxNullableInput.js";
|
|
48
|
+
import { CheckBoxList } from "./ui/checkBoxList/CheckBoxList.js";
|
|
49
|
+
import { SelectClearable } from "./ui/inputs/SelectClearable.js";
|
|
50
|
+
import { ActivableChip } from "./ui/inputs/ActivableChip.js";
|
|
51
|
+
import { CustomMuiDialog, unscrollableDialogStyles } from "./ui/dialogs/customMuiDialog/CustomMuiDialog.js";
|
|
52
|
+
import { DescriptionModificationDialog } from "./ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js";
|
|
53
|
+
import { ElementSaveDialog } from "./ui/dialogs/elementSaveDialog/ElementSaveDialog.js";
|
|
54
|
+
import { initializeDirectory } from "./ui/dialogs/elementSaveDialog/utils.js";
|
|
55
|
+
import { ModifyElementSelection } from "./ui/dialogs/modifyElementSelection/ModifyElementSelection.js";
|
|
56
|
+
import { PopupConfirmationDialog } from "./ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js";
|
|
57
|
+
import { MultipleSelectionDialog } from "./ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js";
|
|
58
|
+
import { OverflowableText } from "./ui/overflowableText/OverflowableText.js";
|
|
59
|
+
import { SnackbarProvider } from "./ui/snackbarProvider/SnackbarProvider.js";
|
|
60
|
+
import { CustomTooltip } from "./ui/tooltip/CustomTooltip.js";
|
|
61
|
+
import { LeftPanelOpenIcon } from "./ui/icons/LeftPanelOpenIcon.js";
|
|
62
|
+
import { ArrowsOutputIcon } from "./ui/icons/ArrowsOutputIcon.js";
|
|
63
|
+
import { ArrowsInputIcon } from "./ui/icons/ArrowsInputIcon.js";
|
|
64
|
+
import { LeftPanelCloseIcon } from "./ui/icons/LeftPanelCloseIcon.js";
|
|
65
|
+
import { EditNoteIcon } from "./ui/icons/EditNoteIcon.js";
|
|
66
|
+
import { CustomMenuItem, CustomNestedMenuItem } from "./ui/menus/custom-nested-menu.js";
|
|
67
|
+
import { ResizeHandle } from "./ui/resizablePanels/ResizeHandle.js";
|
|
68
|
+
import { CsvExport } from "./ui/csvDownloader/csv-export.js";
|
|
69
|
+
import { ExportCsvButton } from "./ui/csvDownloader/export-csv-button.js";
|
|
70
|
+
import { fetchCsvSeparator, useCsvExport } from "./ui/csvDownloader/use-csv-export.js";
|
|
71
|
+
import { TreeViewFinder, generateTreeViewFinderClass } from "./ui/treeViewFinder/TreeViewFinder.js";
|
|
72
|
+
import { doesNodeHasChildren } from "./ui/treeViewFinder/TreeViewUtils.js";
|
|
73
|
+
import { DirectoryItemSelector } from "./ui/directoryItemSelector/DirectoryItemSelector.js";
|
|
74
|
+
import { DndTable } from "./composite/dnd-table-v2/dnd-table.js";
|
|
75
|
+
import { DndColumnType, MAX_ROWS_NUMBER, SELECTED } from "./composite/dnd-table-v2/dnd-table.type.js";
|
|
76
|
+
import { getDefaultRowData } from "./composite/dnd-table-v2/dnd-table-utils.js";
|
|
77
|
+
import { DndTableAddRowsDialog } from "./composite/dnd-table-v2/dnd-table-add-rows-dialog.js";
|
|
78
|
+
import { DndTableBottomLeftButtons } from "./composite/dnd-table-v2/dnd-table-bottom-left-buttons.js";
|
|
79
|
+
import { DndTableBottomRightButtons } from "./composite/dnd-table-v2/dnd-table-bottom-right-buttons.js";
|
|
80
|
+
import { EquipmentItem } from "./composite/elementSearch/elementItem/EquipmentItem.js";
|
|
81
|
+
import { ElementSearchDialog } from "./composite/elementSearch/elementSearchDialog/ElementSearchDialog.js";
|
|
82
|
+
import { ElementSearchInput } from "./composite/elementSearch/elementSearchInput/ElementSearchInput.js";
|
|
83
|
+
import { useElementSearch } from "./composite/elementSearch/hooks/useElementSearch.js";
|
|
84
|
+
import { TagRenderer } from "./composite/elementSearch/tagRenderer/TagRenderer.js";
|
|
85
|
+
import { FlatParameters, extractDefault } from "./composite/flatParameters/FlatParameters.js";
|
|
86
|
+
import { FilterCreationDialog } from "./composite/filter/FilterCreationDialog.js";
|
|
87
|
+
import { FilterForm } from "./composite/filter/FilterForm.js";
|
|
88
|
+
import { DISTRIBUTION_KEY, FilterType } from "./composite/filter/constants/FilterConstants.js";
|
|
89
|
+
import { ExpertFilterEditionDialog } from "./composite/filter/expert/ExpertFilterEditionDialog.js";
|
|
90
|
+
import { ExpertFilterForm, expertFilterSchema, getExpertFilterEmptyFormData } from "./composite/filter/expert/ExpertFilterForm.js";
|
|
91
|
+
import { CombinatorType, DataType, OperatorType } from "./composite/filter/expert/expertFilter.type.js";
|
|
92
|
+
import { COMBINATOR_OPTIONS, CONVERTERS_MODE_OPTIONS, ENERGY_SOURCE_OPTIONS, EXPERT_FILTER_EQUIPMENTS, EXPERT_FILTER_FIELDS, EXPERT_FILTER_QUERY, FIELDS_OPTIONS, LOAD_TYPE_OPTIONS, OPERATOR_OPTIONS, PHASE_REGULATION_MODE_OPTIONS, RATIO_REGULATION_MODE_OPTIONS, REGULATION_TYPE_OPTIONS, RULES, SHUNT_COMPENSATOR_TYPE_OPTIONS, SVAR_REGULATION_MODE_OPTIONS } from "./composite/filter/expert/expertFilterConstants.js";
|
|
93
|
+
import { countRules, exportExpertRules, getNumberOfSiblings, getOperators, importExpertRules, queryValidator, recursiveRemove, testQuery } from "./composite/filter/expert/expertFilterUtils.js";
|
|
94
|
+
import { ExplicitNamingFilterEditionDialog } from "./composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js";
|
|
95
|
+
import { ExplicitNamingFilterForm, explicitNamingFilterSchema, getExplicitNamingFilterEmptyFormData } from "./composite/filter/explicitNaming/ExplicitNamingFilterForm.js";
|
|
96
|
+
import { FILTER_EQUIPMENTS_ATTRIBUTES } from "./composite/filter/explicitNaming/ExplicitNamingFilterConstants.js";
|
|
97
|
+
import { saveExpertFilter, saveExplicitNamingFilter } from "./composite/filter/utils/filterApi.js";
|
|
98
|
+
import { CONTINGENCY_LIST_EQUIPMENTS, FILTER_EQUIPMENTS } from "./composite/filter/utils/filterFormUtils.js";
|
|
57
99
|
import "react/jsx-runtime";
|
|
58
100
|
import "@mui/material";
|
|
59
|
-
import { CustomTooltip } from "./tooltip/CustomTooltip.js";
|
|
60
101
|
import "react-intl";
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import { useCustomFormContext } from "./inputs/reactHookForm/provider/useCustomFormContext.js";
|
|
87
|
-
import { ReadOnlyInput } from "./inputs/reactHookForm/readOnly/ReadOnlyInput.js";
|
|
88
|
-
import { ButtonReadOnlyInput } from "./inputs/reactHookForm/readOnly/ButtonReadOnlyInput.js";
|
|
89
|
-
import { CountriesInput } from "./inputs/reactHookForm/selectInputs/CountriesInput.js";
|
|
90
|
-
import { InputWithPopupConfirmation } from "./inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js";
|
|
91
|
-
import { MuiSelectInput } from "./inputs/reactHookForm/selectInputs/MuiSelectInput.js";
|
|
92
|
-
import { SelectInput } from "./inputs/reactHookForm/selectInputs/SelectInput.js";
|
|
93
|
-
import { SelectWithConfirmationInput } from "./inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js";
|
|
94
|
-
import { EnumInput } from "./inputs/reactHookForm/selectInputs/EnumInput.js";
|
|
95
|
-
import { TableNumericalInput } from "./inputs/reactHookForm/tableInputs/table-numerical-input.js";
|
|
96
|
-
import { TableTextInput } from "./inputs/reactHookForm/tableInputs/table-text-input.js";
|
|
97
|
-
import { DescriptionField } from "./inputs/reactHookForm/text/DescriptionField.js";
|
|
98
|
-
import { ExpandingTextField } from "./inputs/reactHookForm/text/ExpandingTextField.js";
|
|
99
|
-
import { TextInput } from "./inputs/reactHookForm/text/TextInput.js";
|
|
100
|
-
import { UniqueNameInput } from "./inputs/reactHookForm/text/UniqueNameInput.js";
|
|
101
|
-
import { DescriptionInput } from "./inputs/reactHookForm/text/DescriptionInput.js";
|
|
102
|
-
import { CancelButton } from "./inputs/reactHookForm/utils/CancelButton.js";
|
|
103
|
-
import { FieldLabel } from "./inputs/reactHookForm/utils/FieldLabel.js";
|
|
104
|
-
import { SubmitButton } from "./inputs/reactHookForm/utils/SubmitButton.js";
|
|
105
|
-
import { TextFieldWithAdornment } from "./inputs/reactHookForm/utils/TextFieldWithAdornment.js";
|
|
106
|
-
import { genHelperError, gridItem, identity, isFieldRequired, toFloatOrNullValue } from "./inputs/reactHookForm/utils/functions.js";
|
|
107
|
-
import { HelperPreviousValue } from "./inputs/reactHookForm/utils/HelperPreviousValue.js";
|
|
108
|
-
import { DESCRIPTION, NAME } from "./inputs/reactHookForm/constants.js";
|
|
109
|
-
import { ExpandableInput } from "./inputs/reactHookForm/expandableInput/ExpandableInput.js";
|
|
110
|
-
import { CountrySelectionInput } from "./inputs/reactHookForm/CountrySelectionInput.js";
|
|
111
|
-
import { CheckboxNullableInput } from "./inputs/reactHookForm/CheckboxNullableInput.js";
|
|
112
|
-
import { AutocompleteWithFavorites } from "./inputs/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
113
|
-
import { CombinatorSelector } from "./inputs/reactQueryBuilder/CombinatorSelector.js";
|
|
114
|
-
import { CountryValueEditor } from "./inputs/reactQueryBuilder/CountryValueEditor.js";
|
|
115
|
-
import { CustomReactQueryBuilder } from "./inputs/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
116
|
-
import { ElementValueEditor } from "./inputs/reactQueryBuilder/ElementValueEditor.js";
|
|
117
|
-
import { PropertyValueEditor } from "./inputs/reactQueryBuilder/PropertyValueEditor.js";
|
|
118
|
-
import { RemoveButton } from "./inputs/reactQueryBuilder/RemoveButton.js";
|
|
119
|
-
import { TextValueEditor } from "./inputs/reactQueryBuilder/TextValueEditor.js";
|
|
120
|
-
import { TranslatedValueEditor } from "./inputs/reactQueryBuilder/TranslatedValueEditor.js";
|
|
121
|
-
import { ValueEditor } from "./inputs/reactQueryBuilder/ValueEditor.js";
|
|
122
|
-
import { ValueSelector } from "./inputs/reactQueryBuilder/ValueSelector.js";
|
|
123
|
-
import { GroupValueEditor } from "./inputs/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js";
|
|
124
|
-
import { RuleValueEditor } from "./inputs/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js";
|
|
125
|
-
import { useConvertValue } from "./inputs/reactQueryBuilder/hooks/useConvertValue.js";
|
|
126
|
-
import { useValid } from "./inputs/reactQueryBuilder/hooks/useValid.js";
|
|
127
|
-
import { ActivableChip } from "./inputs/ActivableChip.js";
|
|
128
|
-
import { MultipleSelectionDialog } from "./multipleSelectionDialog/MultipleSelectionDialog.js";
|
|
129
|
-
import { OverflowableText } from "./overflowableText/OverflowableText.js";
|
|
130
|
-
import { SnackbarProvider } from "./snackbarProvider/SnackbarProvider.js";
|
|
131
|
-
import { AboutDialog } from "./topBar/AboutDialog.js";
|
|
132
|
-
import { GridLogo, LogoText } from "./topBar/GridLogo.js";
|
|
133
|
-
import { DevModeBanner } from "./topBar/DevModeBanner.js";
|
|
134
|
-
import { TopBar } from "./topBar/TopBar.js";
|
|
135
|
-
import { TreeViewFinder, generateTreeViewFinderClass } from "./treeViewFinder/TreeViewFinder.js";
|
|
136
|
-
import { doesNodeHasChildren } from "./treeViewFinder/TreeViewUtils.js";
|
|
137
|
-
import { NotificationsProvider } from "./notifications/NotificationsProvider.js";
|
|
138
|
-
import { NotificationsContext } from "./notifications/contexts/NotificationsContext.js";
|
|
139
|
-
import { useNotificationsListener } from "./notifications/hooks/useNotificationsListener.js";
|
|
140
|
-
import { useListenerManager } from "./notifications/hooks/useListenerManager.js";
|
|
141
|
-
import { LeftPanelOpenIcon } from "./icons/LeftPanelOpenIcon.js";
|
|
142
|
-
import { ArrowsOutputIcon } from "./icons/ArrowsOutputIcon.js";
|
|
143
|
-
import { ArrowsInputIcon } from "./icons/ArrowsInputIcon.js";
|
|
144
|
-
import { LeftPanelCloseIcon } from "./icons/LeftPanelCloseIcon.js";
|
|
145
|
-
import { EditNoteIcon } from "./icons/EditNoteIcon.js";
|
|
146
|
-
import { ComputingType, formatComputingTypeLabel, isValidComputingType } from "./parameters/common/computing-type.js";
|
|
147
|
-
import { COMMON_PARAMETERS, CONTINGENCIES, CONTINGENCY_LISTS, CONTINGENCY_LISTS_INFOS, PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, SPECIFIC_PARAMETERS, VERSION_PARAMETER, VOLTAGE_LEVEL } from "./parameters/common/constants.js";
|
|
148
|
-
import { LineSeparator } from "./parameters/common/line-separator.js";
|
|
149
|
-
import { LabelledButton, SwitchWithLabel, TabPanel } from "./parameters/common/parameters.js";
|
|
150
|
-
import { CreateParameterDialog } from "./parameters/common/parameters-creation-dialog.js";
|
|
151
|
-
import { ProviderParam } from "./parameters/common/ProviderParam.js";
|
|
152
|
-
import { ParameterFloat } from "./parameters/common/widget/parameter-float.js";
|
|
153
|
-
import { ParameterGroup } from "./parameters/common/widget/parameter-group.js";
|
|
154
|
-
import { ParameterLineDirectoryItemsInput } from "./parameters/common/widget/parameter-line-directory-items-input.js";
|
|
155
|
-
import { ParameterLineSlider, sanitizePercentageValue } from "./parameters/common/widget/parameter-line-slider.js";
|
|
156
|
-
import { ParameterSwitch } from "./parameters/common/widget/parameter-switch.js";
|
|
157
|
-
import { CustomVoltageLevelTable } from "./parameters/common/voltage-level-table/custom-voltage-level-table.js";
|
|
158
|
-
import { CustomVoltageLevelTableCell } from "./parameters/common/voltage-level-table/custom-voltage-level-table-cell.js";
|
|
159
|
-
import { CustomVoltageLevelTableRow } from "./parameters/common/voltage-level-table/custom-voltage-level-table-row.js";
|
|
160
|
-
import { COLUMNS_DEFINITIONS_LIMIT_REDUCTIONS, IST_FORM, LIMIT_DURATION_FORM, LIMIT_REDUCTIONS_FORM, TAB_INFO, TabValues, VOLTAGE_LEVELS_FORM, getLimitReductionsFormSchema, toFormValuesLimitReductions } from "./parameters/common/limitreductions/columns-definitions.js";
|
|
161
|
-
import { LimitReductionsTableForm } from "./parameters/common/limitreductions/limit-reductions-table-form.js";
|
|
162
|
-
import { LimitReductionTableRow } from "./parameters/common/limitreductions/limit-reduction-table-row.js";
|
|
163
|
-
import { LimitReductionTableCell } from "./parameters/common/limitreductions/limit-reduction-table-cell.js";
|
|
164
|
-
import { ContingencyTable } from "./parameters/common/contingency-table/contingency-table.js";
|
|
165
|
-
import { COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS, getContingencyListsInfosFormSchema, isValidContingencyRow, toFormValuesContingencyListsInfos } from "./parameters/common/contingency-table/columns-definitions.js";
|
|
166
|
-
import { useTabs } from "./parameters/common/hook/use-tabs.js";
|
|
167
|
-
import { useParametersForm } from "./parameters/common/hook/use-parameters-form.js";
|
|
168
|
-
import { CENTER_LABEL, COMPONENT_LIBRARY, DIAGONAL_LABEL, INTL_LINE_FLOW_MODE_OPTIONS, INTL_SUBSTATION_LAYOUT_OPTIONS, LINE_FLOW_MODE, LineFlowMode, MAP_BASE_MAP, MAP_MANUAL_REFRESH, NAD_POSITIONS_GENERATION_MODE, NAD_POSITIONS_GENERATION_MODE_LABEL, NetworkVisualizationTabValues, PARAM_CENTER_LABEL, PARAM_COMPONENT_LIBRARY, PARAM_DIAGONAL_LABEL, PARAM_LINE_FLOW_MODE, PARAM_LINE_FULL_PATH, PARAM_LINE_PARALLEL_PATH, PARAM_MAP_BASEMAP, PARAM_MAP_MANUAL_REFRESH, PARAM_NAD_POSITIONS_GENERATION_MODE, PARAM_SUBSTATION_LAYOUT, SUBSTATION_LAYOUT } from "./parameters/network-visualizations/constants.js";
|
|
169
|
-
import { MAP_BASEMAP_CARTO, MAP_BASEMAP_CARTO_NOLABEL, MAP_BASEMAP_ETALAB, MAP_BASEMAP_MAPBOX, NadPositionsGenerationMode, SubstationLayout } from "./parameters/network-visualizations/network-visualizations.types.js";
|
|
170
|
-
import { NetworkVisualizationParametersInline } from "./parameters/network-visualizations/network-visualizations-parameters-inline.js";
|
|
171
|
-
import { NetworkVisualizationsParametersEditionDialog } from "./parameters/network-visualizations/network-visualizations-parameters-dialog.js";
|
|
172
|
-
import { BALANCE_TYPE, CONNECTED_MODE, COUNTRIES_TO_BALANCE, DC, DC_POWER_FACTOR, DC_USE_TRANSFORMER_RATIO, DEFAULT_LIMIT_REDUCTION_VALUE, DISTRIBUTED_SLACK, HVDC_AC_EMULATION, MAX_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, MIN_VALUE_ALLOWED_FOR_LIMIT_REDUCTION, PARAM_LIMIT_REDUCTION, PARAM_PROVIDER_OPENLOADFLOW, PHASE_SHIFTER_REGULATION_ON, READ_SLACK_BUS, SHUNT_COMPENSATOR_VOLTAGE_CONTROL_ON, TWT_SPLIT_SHUNT_ADMITTANCE, USE_REACTIVE_LIMITS, VOLTAGE_INIT_MODE, WRITE_SLACK_BUS, alertThresholdMarks } from "./parameters/loadflow/constants.js";
|
|
173
|
-
import { LoadFlowParametersInline } from "./parameters/loadflow/load-flow-parameters-inline.js";
|
|
174
|
-
import { LoadFlowParametersEditionDialog } from "./parameters/loadflow/load-flow-parameters-dialog.js";
|
|
175
|
-
import { InitialVoltage, NODE_CLUSTER, NODE_CLUSTER_FILTER_IDS, PredefinedParameters, SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE, SHORT_CIRCUIT_MODEL_POWER_ELECTRONICS, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_IN_CALCULATION_CLUSTER, SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER, SHORT_CIRCUIT_POWER_ELECTRONICS_CLUSTERS, SHORT_CIRCUIT_POWER_ELECTRONICS_MATERIALS, SHORT_CIRCUIT_PREDEFINED_PARAMS, SHORT_CIRCUIT_VOLTAGE_RANGES, SHORT_CIRCUIT_WITH_FEEDER_RESULT, SHORT_CIRCUIT_WITH_LOADS, SHORT_CIRCUIT_WITH_NEUTRAL_POSITION, SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS, SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS, STARTED_GENERATORS_IN_CALCULATION_CLUSTER_THRESHOLD, STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER_THRESHOLD, intlInitialVoltageProfileMode, intlPredefinedParametersOptions, onlyStartedGeneratorsOptions } from "./parameters/short-circuit/constants.js";
|
|
176
|
-
import { ShortCircuitParametersInLine } from "./parameters/short-circuit/short-circuit-parameters-inline.js";
|
|
177
|
-
import { ShortCircuitParametersEditionDialog } from "./parameters/short-circuit/short-circuit-parameters-dialog.js";
|
|
178
|
-
import { DEFAULT_GENERAL_APPLY_MODIFICATIONS, DEFAULT_REACTIVE_SLACKS_THRESHOLD, DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, DEFAULT_UPDATE_BUS_VOLTAGE, GENERAL, GENERAL_APPLY_MODIFICATIONS, GENERATORS_SELECTION_TYPE, HIGH_VOLTAGE_LIMIT, LEG_SIDE, LOW_VOLTAGE_LIMIT, PRIORITY, RATIO_TAP_CHANGER_POSITION, RATIO_TAP_CHANGER_TARGET_V, REACTIVE_SLACKS_THRESHOLD, SELECTION_TYPE, SHUNT_COMPENSATORS_SELECTION_TYPE, SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD, TRANSFORMERS_SELECTION_TYPE, UPDATE_BUS_VOLTAGE, VARIABLE_Q_GENERATORS, VARIABLE_SHUNT_COMPENSATORS, VARIABLE_TRANSFORMERS, VOLTAGE_LIMITS_DEFAULT, VOLTAGE_LIMITS_MODIFICATION, VoltageInitTabValues } from "./parameters/voltage-init/constants.js";
|
|
179
|
-
import { EquipmentsSelectionType } from "./parameters/voltage-init/voltage-init.type.js";
|
|
180
|
-
import { VoltageInitParametersEditionDialog } from "./parameters/voltage-init/voltage-init-parameters-dialog.js";
|
|
181
|
-
import { VoltageInitParametersInLine } from "./parameters/voltage-init/voltage-init-parameters-inline.js";
|
|
182
|
-
import { PccMinParametersInLine } from "./parameters/pcc-min/pcc-min-parameters-inline.js";
|
|
183
|
-
import { PccMinParametersEditionDialog } from "./parameters/pcc-min/pcc-min-parameters-dialog.js";
|
|
184
|
-
import { SecurityAnalysisParametersInline } from "./parameters/security-analysis/security-analysis-parameters-inline.js";
|
|
185
|
-
import { SecurityAnalysisParametersDialog } from "./parameters/security-analysis/security-analysis-parameters-dialog.js";
|
|
186
|
-
import { SensitivityAnalysisParametersInline } from "./parameters/sensi/sensitivity-analysis-parameters-inline.js";
|
|
187
|
-
import { SensitivityAnalysisParametersDialog } from "./parameters/sensi/sensitivity-analysis-parameters-dialog.js";
|
|
188
|
-
import { COLUMNS_DEFINITIONS_HVDCS, COLUMNS_DEFINITIONS_INJECTIONS, COLUMNS_DEFINITIONS_INJECTIONS_SET, COLUMNS_DEFINITIONS_NODES, COLUMNS_DEFINITIONS_PSTS, EQUIPMENTS_IN_VOLTAGE_REGULATION_TYPES, HVDC_EQUIPMENT_TYPES, INJECTIONS_EQUIPMENT_TYPES, INJECTION_DISTRIBUTION_TYPES, MONITORED_BRANCHES_EQUIPMENT_TYPES, MONITORED_VOLTAGE_LEVELS_EQUIPMENT_TYPES, PSTS_EQUIPMENT_TYPES, SENSITIVITY_TYPES, SensiBranchesTabValues, SensiTabValues } from "./parameters/sensi/columns-definitions.js";
|
|
189
|
-
import { DynamicSimulationInline } from "./parameters/dynamic-simulation/dynamic-simulation-inline.js";
|
|
190
|
-
import { CONTINGENCIES_LIST_INFOS, CONTINGENCIES_START_TIME, SCENARIO_DURATION } from "./parameters/dynamic-security-analysis/constants.js";
|
|
191
|
-
import { DynamicSecurityAnalysisInline } from "./parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js";
|
|
192
|
-
import { ACCURACY, ACTIVE, CALCULATION_TYPE, LOADS_VARIATIONS, LOAD_FILTERS, LOAD_INCREASE_START_TIME, LOAD_INCREASE_STOP_TIME, LOAD_MODELS_RULE, MARGIN_CALCULATION_START_TIME, START_TIME, STOP_TIME, VARIATION } from "./parameters/dynamic-margin-calculation/constants.js";
|
|
193
|
-
import { DynamicMarginCalculationInline } from "./parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js";
|
|
194
|
-
import { CustomMenuItem, CustomNestedMenuItem } from "./menus/custom-nested-menu.js";
|
|
195
|
-
import { OverflowableTableCell } from "./muiTable/OverflowableTableCell.js";
|
|
196
|
-
import { OverflowableTableCellWithCheckbox } from "./muiTable/OverflowableTableCellWithCheckbox.js";
|
|
197
|
-
import { ResizeHandle } from "./resizablePanels/ResizeHandle.js";
|
|
198
|
-
import { filledTextField, italicFontTextField, standardTextField } from "./network-modifications/common/form.utils.js";
|
|
199
|
-
import { PropertiesForm } from "./network-modifications/common/properties/PropertiesForm.js";
|
|
200
|
-
import { PropertyForm } from "./network-modifications/common/properties/PropertyForm.js";
|
|
201
|
-
import { copyEquipmentPropertiesForCreation, createPropertyModification, creationPropertiesSchema, emptyProperties, fetchPredefinedProperties, getConcatenatedProperties, getFilledPropertiesFromModification, getPropertiesFromModification, getPropertyValue, initializedProperty, mergeModificationAndEquipmentProperties, modificationPropertiesSchema, toModificationProperties } from "./network-modifications/common/properties/propertyUtils.js";
|
|
202
|
-
import { getPowerWithValidityEditData, getPowerWithValidityEmptyFormData, getPowerWithValidityValidationSchema } from "./network-modifications/common/measurements/powerWithValidity.utils.js";
|
|
203
|
-
import { getInjectionActiveReactivePowerEditData, getInjectionActiveReactivePowerEditDataProperties, getInjectionActiveReactivePowerEmptyFormData, getInjectionActiveReactivePowerEmptyFormDataProperties, getInjectionActiveReactivePowerValidationSchema, getInjectionActiveReactivePowerValidationSchemaProperties } from "./network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js";
|
|
204
|
-
import { getBranchActiveReactivePowerEditData, getBranchActiveReactivePowerEditDataProperties, getBranchActiveReactivePowerEmptyFormData, getBranchActiveReactivePowerEmptyFormDataProperties, getBranchActiveReactivePowerValidationSchema, getBranchActiveReactivePowerValidationSchemaProperties } from "./network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js";
|
|
205
|
-
import { PowerWithValidityForm } from "./network-modifications/common/measurements/PowerWithValidityForm.js";
|
|
206
|
-
import { PowerMeasurementsForm } from "./network-modifications/common/measurements/PowerMeasurementsForm.js";
|
|
207
|
-
import { BranchActiveReactivePowerMeasurementsForm } from "./network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js";
|
|
208
|
-
import { getActivePowerSetPointSchema, getReactivePowerSetPointSchema, getSetPointsEmptyFormData, getSetPointsSchema, testValueWithinPowerInterval } from "./network-modifications/common/setpoints/setPoints.utils.js";
|
|
209
|
-
import { SetPointsForm } from "./network-modifications/common/setpoints/SetPointsForm.js";
|
|
210
|
-
import { createConnectivityData, getCon1andCon2WithPositionValidationSchema, getConnectivityBusBarSectionData, getConnectivityData, getConnectivityFormData, getConnectivityFormDataProps, getConnectivityPropertiesData, getConnectivityPropertiesEmptyFormData, getConnectivityPropertiesValidationSchema, getConnectivityVoltageLevelData, getConnectivityWithPositionEmptyFormData, getConnectivityWithPositionEmptyFormDataProps, getConnectivityWithPositionSchema, getConnectivityWithPositionValidationSchema, getConnectivityWithoutPositionEmptyFormData, getConnectivityWithoutPositionValidationSchema, getCont1Cont2WithPositionEmptyFormData, getNewVoltageLevelData } from "./network-modifications/common/connectivity/connectivityForm.utils.js";
|
|
211
|
-
import { ConnectivityForm } from "./network-modifications/common/connectivity/ConnectivityForm.js";
|
|
212
|
-
import { BranchConnectivityForm } from "./network-modifications/common/connectivity/BranchConnectivityForm.js";
|
|
213
|
-
import { VoltageLevelConnectivityForm } from "./network-modifications/common/connectivity/VoltageLevelConnectivityForm.js";
|
|
214
|
-
import { getActivePowerControlEmptyFormData, getActivePowerControlSchema } from "./network-modifications/common/activePowerControl/activePowerControlForm.utils.js";
|
|
215
|
-
import { ActivePowerControlForm } from "./network-modifications/common/activePowerControl/ActivePowerControlForm.js";
|
|
216
|
-
import { getShortCircuitEmptyFormData, getShortCircuitFormData, getShortCircuitFormSchema } from "./network-modifications/common/shortCircuit/shortCircuitForm.utils.js";
|
|
217
|
-
import { ShortCircuitForm } from "./network-modifications/common/shortCircuit/ShortCircuitForm.js";
|
|
218
|
-
import { INSERT, REMOVE, getReactiveCapabilityCurveValidationSchema, getReactiveCapabilityCurveValidationSchemaArray, getRowEmptyFormData, setCurrentReactiveCapabilityCurveTable, setSelectedReactiveLimits, toReactiveCapabilityCurveChoiceForGeneratorCreation, toReactiveCapabilityCurveChoiceForGeneratorModification } from "./network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js";
|
|
219
|
-
import { ReactiveCapabilityCurveRowForm } from "./network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js";
|
|
220
|
-
import { ReactiveCapabilityCurveTableForm } from "./network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js";
|
|
221
|
-
import { REACTIVE_LIMIT_TYPES, getReactiveLimitsEmptyFormData, getReactiveLimitsEmptyFormDataProps, getReactiveLimitsFormData, getReactiveLimitsFormDataProps, getReactiveLimitsSchema, getReactiveLimitsValidationSchema } from "./network-modifications/common/reactiveLimits/reactiveLimits.utils.js";
|
|
222
|
-
import { ReactiveLimitsForm } from "./network-modifications/common/reactiveLimits/ReactiveLimitsForm.js";
|
|
223
|
-
import { getHvdcLccDeletionSchema } from "./network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js";
|
|
224
|
-
import { ShuntCompensatorSelectionForm } from "./network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js";
|
|
225
|
-
import { useHvdcLccDeletion } from "./network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js";
|
|
226
|
-
import { HvdcLccDeletionSpecificForm } from "./network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js";
|
|
227
|
-
import { equipmentDeletionDtoToForm, equipmentDeletionEmptyFormData, equipmentDeletionFormSchema, equipmentDeletionFormToDto, newEquipmentDeletionDto } from "./network-modifications/equipmentDeletion/equipmentDeletion.utils.js";
|
|
228
|
-
import { EquipmentDeletionForm } from "./network-modifications/equipmentDeletion/EquipmentDeletionForm.js";
|
|
229
|
-
import { useTabsWithError } from "./network-modifications/hooks/useTabsWithError.js";
|
|
230
|
-
import { SubstationCreationForm } from "./network-modifications/substation/creation/SubstationCreationForm.js";
|
|
231
|
-
import { substationCreationDtoToForm, substationCreationEmptyFormData, substationCreationFormSchema, substationCreationFormToDto } from "./network-modifications/substation/creation/substationCreation.utils.js";
|
|
232
|
-
import { SubstationModificationForm } from "./network-modifications/substation/modification/SubstationModificationForm.js";
|
|
233
|
-
import { substationModificationDtoToForm, substationModificationEmptyFormData, substationModificationFormSchema, substationModificationFormToDto } from "./network-modifications/substation/modification/substationModification.utils.js";
|
|
234
|
-
import { SwitchesBetweenSections } from "./network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js";
|
|
235
|
-
import "react";
|
|
236
|
-
import "react-hook-form";
|
|
237
|
-
import "../utils/conversionUtils.js";
|
|
238
|
-
import "../utils/types/equipmentType.js";
|
|
239
|
-
import "@mui/icons-material";
|
|
240
|
-
import "../utils/yupConfig.js";
|
|
241
|
-
import { MAX_SECTIONS_COUNT } from "./network-modifications/voltageLevel/creation/voltageLevel.constants.js";
|
|
242
|
-
import { VoltageLevelCreationForm } from "./network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js";
|
|
243
|
-
import { SWITCH_TYPE, buildNewBusbarSections, getCreateSwitchesEmptyFormData, getCreateSwitchesValidationSchema, translateSwitchKinds, voltageLevelCreationDtoToForm, voltageLevelCreationEmptyFormData, voltageLevelCreationFormSchema, voltageLevelCreationFormToDto } from "./network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js";
|
|
244
|
-
import { SwitchKind } from "./network-modifications/voltageLevel/creation/voltageLevelCreation.types.js";
|
|
245
|
-
import { VoltageLevelModificationForm } from "./network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js";
|
|
246
|
-
import { voltageLevelModificationDtoToForm, voltageLevelModificationEmptyFormData, voltageLevelModificationFormSchema, voltageLevelModificationFormToDto } from "./network-modifications/voltageLevel/modification/voltageLevelModification.utils.js";
|
|
247
|
-
import { LOAD_TAB_FIELDS, LoadDialogTab } from "./network-modifications/load/common/load.utils.js";
|
|
248
|
-
import { LoadDialogTabs } from "./network-modifications/load/common/LoadDialogTabs.js";
|
|
249
|
-
import { LoadDialogTabsContent } from "./network-modifications/load/common/LoadDialogTabsContent.js";
|
|
250
|
-
import { LoadDialogHeader } from "./network-modifications/load/common/LoadDialogHeader.js";
|
|
251
|
-
import { LoadForm } from "./network-modifications/load/common/LoadForm.js";
|
|
252
|
-
import { loadCreationDtoToForm, loadCreationEmptyFormData, loadCreationFormSchema, loadCreationFormToDto } from "./network-modifications/load/creation/loadCreation.utils.js";
|
|
253
|
-
import { loadModificationDtoToForm, loadModificationEmptyFormData, loadModificationFormSchema, loadModificationFormToDto } from "./network-modifications/load/modification/loadModification.utils.js";
|
|
254
|
-
import { ByFilterDeletionForm } from "./network-modifications/by-filter/deletion/ByFilterDeletionForm.js";
|
|
255
|
-
import { EQUIPMENT_TYPE_ORDER, byFilterDeletionDtoToForm, byFilterDeletionFormSchema, byFilterDeletionFormToDto, emptyFormData } from "./network-modifications/by-filter/deletion/byFilterDeletion.utils.js";
|
|
256
|
-
import { ModificationByAssignmentForm } from "./network-modifications/by-filter/assignment/modification-by-assignment-form.js";
|
|
257
|
-
import { emptyModificationByAssignmentFormData, modificationByAssignmentDtoToForm, modificationByAssignmentFormSchema, modificationByAssignmentFormToDto } from "./network-modifications/by-filter/assignment/modificationByAssignment.utils.js";
|
|
258
|
-
import { DataType as DataType2 } from "./network-modifications/by-filter/assignment/assignment/assignment.type.js";
|
|
259
|
-
import { batteryCreationDtoToForm, batteryCreationEmptyFormData, batteryCreationFormSchema, batteryCreationFormToDto } from "./network-modifications/battery/creation/batteryCreation.utils.js";
|
|
260
|
-
import { BatteryCreationForm } from "./network-modifications/battery/creation/BatteryCreationForm.js";
|
|
261
|
-
import { CHARACTERISTICS_CHOICES, SHUNT_COMPENSATOR_TYPES, computeSwitchedOnValue } from "./network-modifications/shunt-compensator/common/shuntCompensator.utils.js";
|
|
262
|
-
import { CharacteristicsForm } from "./network-modifications/shunt-compensator/common/CharacteristicsForm.js";
|
|
263
|
-
import { getCharacteristicsCreateFormDataFromSearchCopy, getCharacteristicsEmptyFormData, getCharacteristicsFormData, getCharacteristicsFormValidationSchema } from "./network-modifications/shunt-compensator/common/characteristicsForm.utils.js";
|
|
264
|
-
import { ShuntCompensatorCreationForm } from "./network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js";
|
|
265
|
-
import { shuntCompensatorCreationDtoToForm, shuntCompensatorCreationEmptyFormData, shuntCompensatorCreationFormSchema, shuntCompensatorCreationFormToDto } from "./network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js";
|
|
266
|
-
import { BuildStatusChip } from "./node/build-status-chip.js";
|
|
267
|
-
import { BuildStatus } from "./node/constant.js";
|
|
268
|
-
import { COLUMNS_WITHOUT_BORDER, DEPTH_CELL_WIDTH, DROP_FORBIDDEN_INDICATOR_BOTTOM, DROP_FORBIDDEN_INDICATOR_TOP, DROP_INDICATOR_BOTTOM, DROP_INDICATOR_TOP, MODIFICATION_ROW_HEIGHT, createCellBorderColor, createCellContentWrapperSx, createCellStyle, createEditDescriptionStyle, createHeaderCellStyle, createModificationNameCellStyle, createNameCellLabelBoxSx, createNameCellRootStyle, createRootNetworkChipCellSx, createRowSx, networkModificationTableStyles } from "./network-modification-table/network-modification-table-styles.js";
|
|
269
|
-
import { AUTO_EXTENSIBLE_COLUMNS, BASE_MODIFICATION_TABLE_COLUMNS, computeTagMinSize } from "./network-modification-table/columns-definition.js";
|
|
270
|
-
import { NetworkModificationsTable } from "./network-modification-table/network-modifications-table.js";
|
|
271
|
-
import { useModificationsDragAndDrop } from "./network-modification-table/use-modifications-drag-and-drop.js";
|
|
272
|
-
import { DescriptionCellRenderer, DragHandleRenderer, NameCellRenderer, NameHeaderRenderer, RootNetworkCellRenderer, RootNetworkHeaderRenderer, SelectCellRenderer, SelectHeaderRenderer, SwitchCellRenderer } from "./network-modification-table/renderers/cell-renderers.js";
|
|
273
|
-
import { DepthBox } from "./network-modification-table/renderers/depth-box.js";
|
|
274
|
-
import { DescriptionCell } from "./network-modification-table/renderers/description-cell.js";
|
|
275
|
-
import { DragHandleCell } from "./network-modification-table/renderers/drag-handle-cell.js";
|
|
276
|
-
import { NameCell } from "./network-modification-table/renderers/name-cell.js";
|
|
277
|
-
import { NetworkModificationEditorNameHeader } from "./network-modification-table/renderers/network-modification-node-editor-name-header.js";
|
|
278
|
-
import { RootNetworkChipCell } from "./network-modification-table/renderers/root-network-chip-cell.js";
|
|
279
|
-
import { SelectCell } from "./network-modification-table/renderers/select-cell.js";
|
|
280
|
-
import { SelectHeaderCell } from "./network-modification-table/renderers/select-header-cell.js";
|
|
281
|
-
import { SwitchCell } from "./network-modification-table/renderers/switch-cell.js";
|
|
282
|
-
import { DragCloneRow } from "./network-modification-table/row/drag-row-clone.js";
|
|
283
|
-
import { ModificationRow } from "./network-modification-table/row/modification-row.js";
|
|
284
|
-
import { MAX_COMPOSITE_NESTING_DEPTH, fetchSubModificationsForExpandedRows, findAllLoadedCompositeModifications, findModificationInTree, formatToComposedModification, isCompositeModification, mergeSubModificationsIntoTree, moveSubModificationInTree, updateModificationFieldInTree, updateSubModificationsOfACompositeInTree } from "./network-modification-table/utils.js";
|
|
102
|
+
import { OverflowableTableCell } from "./composite/muiTable/OverflowableTableCell.js";
|
|
103
|
+
import { OverflowableTableCellWithCheckbox } from "./composite/muiTable/OverflowableTableCellWithCheckbox.js";
|
|
104
|
+
import { AutocompleteWithFavorites } from "./composite/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
105
|
+
import { CombinatorSelector } from "./composite/reactQueryBuilder/CombinatorSelector.js";
|
|
106
|
+
import { CountryValueEditor } from "./composite/reactQueryBuilder/CountryValueEditor.js";
|
|
107
|
+
import { CustomReactQueryBuilder } from "./composite/reactQueryBuilder/CustomReactQueryBuilder.js";
|
|
108
|
+
import { ElementValueEditor } from "./composite/reactQueryBuilder/ElementValueEditor.js";
|
|
109
|
+
import { PropertyValueEditor } from "./composite/reactQueryBuilder/PropertyValueEditor.js";
|
|
110
|
+
import { RemoveButton } from "./composite/reactQueryBuilder/RemoveButton.js";
|
|
111
|
+
import { TextValueEditor } from "./composite/reactQueryBuilder/TextValueEditor.js";
|
|
112
|
+
import { TranslatedValueEditor } from "./composite/reactQueryBuilder/TranslatedValueEditor.js";
|
|
113
|
+
import { ValueEditor } from "./composite/reactQueryBuilder/ValueEditor.js";
|
|
114
|
+
import { ValueSelector } from "./composite/reactQueryBuilder/ValueSelector.js";
|
|
115
|
+
import { GroupValueEditor } from "./composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js";
|
|
116
|
+
import { RuleValueEditor } from "./composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js";
|
|
117
|
+
import { useConvertValue } from "./composite/reactQueryBuilder/hooks/useConvertValue.js";
|
|
118
|
+
import { useValid } from "./composite/reactQueryBuilder/hooks/useValid.js";
|
|
119
|
+
import { BottomRightButtons } from "./composite/agGridTable/BottomRightButtons.js";
|
|
120
|
+
import { CustomAgGridTable } from "./composite/agGridTable/CustomAgGridTable.js";
|
|
121
|
+
import { NumericEditor } from "./composite/agGridTable/cellEditors/numericEditor.js";
|
|
122
|
+
import { CsvUploader } from "./composite/agGridTable/csvUploader/CsvUploader.js";
|
|
123
|
+
import { CUSTOM_AGGRID_THEME, styles } from "./composite/customAGGrid/customAggrid.style.js";
|
|
124
|
+
import { CustomAGGrid } from "./composite/customAGGrid/customAggrid.js";
|
|
125
|
+
import { SeparatorCellRenderer } from "./composite/customAGGrid/separatorCellRenderer.js";
|
|
126
|
+
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./composite/customAGGrid/cell-renderers.js";
|
|
285
127
|
export {
|
|
286
|
-
ACCURACY,
|
|
287
|
-
ACTIVE,
|
|
288
|
-
AUTO_EXTENSIBLE_COLUMNS,
|
|
289
|
-
AboutDialog,
|
|
290
128
|
ActivableChip,
|
|
291
|
-
ActivePowerControlForm,
|
|
292
129
|
AddButton,
|
|
293
130
|
AddButtonMode,
|
|
294
|
-
AnnouncementBanner,
|
|
295
|
-
AnnouncementNotification,
|
|
296
131
|
ArrowsInputIcon,
|
|
297
132
|
ArrowsOutputIcon,
|
|
298
|
-
DataType2 as AssignmentDataType,
|
|
299
|
-
AuthenticationRouter,
|
|
300
|
-
default2 as AuthenticationRouterErrorDisplay,
|
|
301
133
|
AutocompleteInput,
|
|
302
134
|
AutocompleteWithFavorites,
|
|
303
|
-
BALANCE_TYPE,
|
|
304
|
-
BASE_MODIFICATION_TABLE_COLUMNS,
|
|
305
|
-
BatteryCreationForm,
|
|
306
135
|
BooleanCellRenderer,
|
|
307
136
|
BooleanInput,
|
|
308
137
|
BooleanNullableCellRenderer,
|
|
309
138
|
BottomRightButtons,
|
|
310
|
-
BranchActiveReactivePowerMeasurementsForm,
|
|
311
|
-
BranchConnectivityForm,
|
|
312
|
-
BuildStatus,
|
|
313
|
-
BuildStatusChip,
|
|
314
139
|
ButtonReadOnlyInput,
|
|
315
|
-
ByFilterDeletionForm,
|
|
316
|
-
CALCULATION_TYPE,
|
|
317
|
-
CENTER_LABEL,
|
|
318
|
-
CHARACTERISTICS_CHOICES,
|
|
319
|
-
COLUMNS_DEFINITIONS_CONTINGENCY_LISTS_INFOS,
|
|
320
|
-
COLUMNS_DEFINITIONS_HVDCS,
|
|
321
|
-
COLUMNS_DEFINITIONS_INJECTIONS,
|
|
322
|
-
COLUMNS_DEFINITIONS_INJECTIONS_SET,
|
|
323
|
-
COLUMNS_DEFINITIONS_LIMIT_REDUCTIONS,
|
|
324
|
-
COLUMNS_DEFINITIONS_NODES,
|
|
325
|
-
COLUMNS_DEFINITIONS_PSTS,
|
|
326
|
-
COLUMNS_WITHOUT_BORDER,
|
|
327
140
|
COMBINATOR_OPTIONS,
|
|
328
|
-
COMMON_PARAMETERS,
|
|
329
|
-
COMPONENT_LIBRARY,
|
|
330
|
-
CONNECTED_MODE,
|
|
331
|
-
CONTINGENCIES,
|
|
332
|
-
CONTINGENCIES_LIST_INFOS,
|
|
333
|
-
CONTINGENCIES_START_TIME,
|
|
334
|
-
CONTINGENCY_LISTS,
|
|
335
|
-
CONTINGENCY_LISTS_INFOS,
|
|
336
141
|
CONTINGENCY_LIST_EQUIPMENTS,
|
|
337
142
|
CONVERTERS_MODE_OPTIONS,
|
|
338
|
-
COUNTRIES_TO_BALANCE,
|
|
339
143
|
CUSTOM_AGGRID_THEME,
|
|
340
144
|
CancelButton,
|
|
341
|
-
CardErrorBoundary,
|
|
342
|
-
CharacteristicsForm,
|
|
343
145
|
CheckBoxList,
|
|
344
146
|
CheckboxInput,
|
|
345
147
|
CheckboxNullableInput,
|
|
346
148
|
ChipItemsInput,
|
|
347
149
|
CombinatorSelector,
|
|
348
150
|
CombinatorType,
|
|
349
|
-
ComputingType,
|
|
350
|
-
ConnectivityForm,
|
|
351
151
|
ContingencyCellRenderer,
|
|
352
|
-
ContingencyTable,
|
|
353
152
|
CountriesInput,
|
|
354
153
|
CountrySelectionInput,
|
|
355
154
|
CountryValueEditor,
|
|
356
|
-
CreateParameterDialog,
|
|
357
155
|
CsvExport,
|
|
358
156
|
CsvUploader,
|
|
359
157
|
CustomAGGrid,
|
|
@@ -365,36 +163,14 @@ export {
|
|
|
365
163
|
CustomNestedMenuItem,
|
|
366
164
|
CustomReactQueryBuilder,
|
|
367
165
|
CustomTooltip,
|
|
368
|
-
CustomVoltageLevelTable,
|
|
369
|
-
CustomVoltageLevelTableCell,
|
|
370
|
-
CustomVoltageLevelTableRow,
|
|
371
|
-
DC,
|
|
372
|
-
DC_POWER_FACTOR,
|
|
373
|
-
DC_USE_TRANSFORMER_RATIO,
|
|
374
|
-
DEFAULT_GENERAL_APPLY_MODIFICATIONS,
|
|
375
|
-
DEFAULT_LIMIT_REDUCTION_VALUE,
|
|
376
166
|
DEFAULT_RANGE_VALUE,
|
|
377
|
-
DEFAULT_REACTIVE_SLACKS_THRESHOLD,
|
|
378
|
-
DEFAULT_SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD,
|
|
379
|
-
DEFAULT_UPDATE_BUS_VOLTAGE,
|
|
380
|
-
DEPTH_CELL_WIDTH,
|
|
381
167
|
DESCRIPTION,
|
|
382
|
-
DIAGONAL_LABEL,
|
|
383
|
-
DISTRIBUTED_SLACK,
|
|
384
168
|
DISTRIBUTION_KEY,
|
|
385
|
-
DROP_FORBIDDEN_INDICATOR_BOTTOM,
|
|
386
|
-
DROP_FORBIDDEN_INDICATOR_TOP,
|
|
387
|
-
DROP_INDICATOR_BOTTOM,
|
|
388
|
-
DROP_INDICATOR_TOP,
|
|
389
169
|
DataType,
|
|
390
170
|
DefaultCellRenderer,
|
|
391
|
-
DepthBox,
|
|
392
|
-
DescriptionCell,
|
|
393
|
-
DescriptionCellRenderer,
|
|
394
171
|
DescriptionField,
|
|
395
172
|
DescriptionInput,
|
|
396
173
|
DescriptionModificationDialog,
|
|
397
|
-
DevModeBanner,
|
|
398
174
|
DirectoryItemSelector,
|
|
399
175
|
DirectoryItemsInput,
|
|
400
176
|
DndColumnType,
|
|
@@ -402,15 +178,7 @@ export {
|
|
|
402
178
|
DndTableAddRowsDialog,
|
|
403
179
|
DndTableBottomLeftButtons,
|
|
404
180
|
DndTableBottomRightButtons,
|
|
405
|
-
DragCloneRow,
|
|
406
|
-
DragHandleCell,
|
|
407
|
-
DragHandleRenderer,
|
|
408
|
-
DynamicMarginCalculationInline,
|
|
409
|
-
DynamicSecurityAnalysisInline,
|
|
410
|
-
DynamicSimulationInline,
|
|
411
181
|
ENERGY_SOURCE_OPTIONS,
|
|
412
|
-
EQUIPMENTS_IN_VOLTAGE_REGULATION_TYPES,
|
|
413
|
-
EQUIPMENT_TYPE_ORDER,
|
|
414
182
|
EXPERT_FILTER_EQUIPMENTS,
|
|
415
183
|
EXPERT_FILTER_FIELDS,
|
|
416
184
|
EXPERT_FILTER_QUERY,
|
|
@@ -420,12 +188,8 @@ export {
|
|
|
420
188
|
ElementSearchInput,
|
|
421
189
|
ElementValueEditor,
|
|
422
190
|
EnumInput,
|
|
423
|
-
EquipmentDeletionForm,
|
|
424
191
|
EquipmentItem,
|
|
425
|
-
EquipmentsSelectionType,
|
|
426
192
|
ErrorCellRenderer,
|
|
427
|
-
ErrorInLogoutAlert,
|
|
428
|
-
ErrorInUserValidationAlert,
|
|
429
193
|
ErrorInput,
|
|
430
194
|
ExpandableInput,
|
|
431
195
|
ExpandingTextField,
|
|
@@ -444,95 +208,22 @@ export {
|
|
|
444
208
|
FilterType,
|
|
445
209
|
FlatParameters,
|
|
446
210
|
FloatInput,
|
|
447
|
-
GENERAL,
|
|
448
|
-
GENERAL_APPLY_MODIFICATIONS,
|
|
449
|
-
GENERATORS_SELECTION_TYPE,
|
|
450
|
-
GridLogo,
|
|
451
211
|
GroupValueEditor,
|
|
452
|
-
HIGH_VOLTAGE_LIMIT,
|
|
453
|
-
HVDC_AC_EMULATION,
|
|
454
|
-
HVDC_EQUIPMENT_TYPES,
|
|
455
212
|
HelperPreviousValue,
|
|
456
|
-
HvdcLccDeletionSpecificForm,
|
|
457
|
-
INJECTIONS_EQUIPMENT_TYPES,
|
|
458
|
-
INJECTION_DISTRIBUTION_TYPES,
|
|
459
|
-
INSERT,
|
|
460
|
-
INTL_LINE_FLOW_MODE_OPTIONS,
|
|
461
|
-
INTL_SUBSTATION_LAYOUT_OPTIONS,
|
|
462
|
-
IST_FORM,
|
|
463
|
-
InitialVoltage,
|
|
464
213
|
InputWithPopupConfirmation,
|
|
465
214
|
IntegerInput,
|
|
466
|
-
LEG_SIDE,
|
|
467
|
-
LIMIT_DURATION_FORM,
|
|
468
|
-
LIMIT_REDUCTIONS_FORM,
|
|
469
|
-
LINE_FLOW_MODE,
|
|
470
|
-
LOADS_VARIATIONS,
|
|
471
|
-
LOAD_FILTERS,
|
|
472
|
-
LOAD_INCREASE_START_TIME,
|
|
473
|
-
LOAD_INCREASE_STOP_TIME,
|
|
474
|
-
LOAD_MODELS_RULE,
|
|
475
|
-
LOAD_TAB_FIELDS,
|
|
476
215
|
LOAD_TYPE_OPTIONS,
|
|
477
|
-
LOW_VOLTAGE_LIMIT,
|
|
478
|
-
LabelledButton,
|
|
479
216
|
LeftPanelCloseIcon,
|
|
480
217
|
LeftPanelOpenIcon,
|
|
481
|
-
LimitReductionTableCell,
|
|
482
|
-
LimitReductionTableRow,
|
|
483
|
-
LimitReductionsTableForm,
|
|
484
|
-
LineFlowMode,
|
|
485
|
-
LineSeparator,
|
|
486
|
-
LoadDialogHeader,
|
|
487
|
-
LoadDialogTab,
|
|
488
|
-
LoadDialogTabs,
|
|
489
|
-
LoadDialogTabsContent,
|
|
490
|
-
LoadFlowParametersEditionDialog,
|
|
491
|
-
LoadFlowParametersInline,
|
|
492
|
-
LoadForm,
|
|
493
|
-
Login,
|
|
494
|
-
LogoText,
|
|
495
|
-
Logout,
|
|
496
|
-
MAP_BASEMAP_CARTO,
|
|
497
|
-
MAP_BASEMAP_CARTO_NOLABEL,
|
|
498
|
-
MAP_BASEMAP_ETALAB,
|
|
499
|
-
MAP_BASEMAP_MAPBOX,
|
|
500
|
-
MAP_BASE_MAP,
|
|
501
|
-
MAP_MANUAL_REFRESH,
|
|
502
|
-
MARGIN_CALCULATION_START_TIME,
|
|
503
|
-
MAX_COMPOSITE_NESTING_DEPTH,
|
|
504
218
|
MAX_ROWS_NUMBER,
|
|
505
|
-
MAX_SECTIONS_COUNT,
|
|
506
|
-
MAX_VALUE_ALLOWED_FOR_LIMIT_REDUCTION,
|
|
507
|
-
MIN_VALUE_ALLOWED_FOR_LIMIT_REDUCTION,
|
|
508
|
-
MODIFICATION_ROW_HEIGHT,
|
|
509
|
-
MONITORED_BRANCHES_EQUIPMENT_TYPES,
|
|
510
|
-
MONITORED_VOLTAGE_LEVELS_EQUIPMENT_TYPES,
|
|
511
219
|
MessageLogCellRenderer,
|
|
512
220
|
MidFormError,
|
|
513
|
-
ModificationByAssignmentForm,
|
|
514
|
-
ModificationRow,
|
|
515
221
|
ModifyElementSelection,
|
|
516
222
|
MuiSelectInput,
|
|
517
223
|
MultipleAutocompleteInput,
|
|
518
224
|
MultipleSelectionDialog,
|
|
519
|
-
NAD_POSITIONS_GENERATION_MODE,
|
|
520
|
-
NAD_POSITIONS_GENERATION_MODE_LABEL,
|
|
521
225
|
NAME,
|
|
522
|
-
NODE_CLUSTER,
|
|
523
|
-
NODE_CLUSTER_FILTER_IDS,
|
|
524
|
-
NadPositionsGenerationMode,
|
|
525
|
-
NameCell,
|
|
526
|
-
NameCellRenderer,
|
|
527
|
-
NameHeaderRenderer,
|
|
528
|
-
NetworkModificationEditorNameHeader,
|
|
529
226
|
NetworkModificationNameCellRenderer,
|
|
530
|
-
NetworkModificationsTable,
|
|
531
|
-
NetworkVisualizationParametersInline,
|
|
532
|
-
NetworkVisualizationTabValues,
|
|
533
|
-
NetworkVisualizationsParametersEditionDialog,
|
|
534
|
-
NotificationsContext,
|
|
535
|
-
NotificationsProvider,
|
|
536
227
|
NumericCellRenderer,
|
|
537
228
|
NumericEditor,
|
|
538
229
|
OPERATOR_OPTIONS,
|
|
@@ -542,378 +233,75 @@ export {
|
|
|
542
233
|
OverflowableTableCell,
|
|
543
234
|
OverflowableTableCellWithCheckbox,
|
|
544
235
|
OverflowableText,
|
|
545
|
-
PARAM_CENTER_LABEL,
|
|
546
|
-
PARAM_COMPONENT_LIBRARY,
|
|
547
|
-
PARAM_DIAGONAL_LABEL,
|
|
548
|
-
PARAM_LIMIT_REDUCTION,
|
|
549
|
-
PARAM_LINE_FLOW_MODE,
|
|
550
|
-
PARAM_LINE_FULL_PATH,
|
|
551
|
-
PARAM_LINE_PARALLEL_PATH,
|
|
552
|
-
PARAM_MAP_BASEMAP,
|
|
553
|
-
PARAM_MAP_MANUAL_REFRESH,
|
|
554
|
-
PARAM_NAD_POSITIONS_GENERATION_MODE,
|
|
555
|
-
PARAM_PROVIDER_OPENLOADFLOW,
|
|
556
|
-
PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD,
|
|
557
|
-
PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD,
|
|
558
|
-
PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD,
|
|
559
|
-
PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD,
|
|
560
|
-
PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD,
|
|
561
|
-
PARAM_SA_PROVIDER,
|
|
562
|
-
PARAM_SUBSTATION_LAYOUT,
|
|
563
236
|
PHASE_REGULATION_MODE_OPTIONS,
|
|
564
|
-
PHASE_SHIFTER_REGULATION_ON,
|
|
565
|
-
PRIORITY,
|
|
566
|
-
PROVIDER,
|
|
567
|
-
PSTS_EQUIPMENT_TYPES,
|
|
568
|
-
ParameterFloat,
|
|
569
|
-
ParameterGroup,
|
|
570
|
-
ParameterLineDirectoryItemsInput,
|
|
571
|
-
ParameterLineSlider,
|
|
572
|
-
ParameterSwitch,
|
|
573
|
-
PccMinParametersEditionDialog,
|
|
574
|
-
PccMinParametersInLine,
|
|
575
237
|
PopupConfirmationDialog,
|
|
576
|
-
PowerMeasurementsForm,
|
|
577
|
-
PowerWithValidityForm,
|
|
578
|
-
PredefinedParameters,
|
|
579
|
-
PropertiesForm,
|
|
580
|
-
PropertyForm,
|
|
581
238
|
PropertyValueEditor,
|
|
582
|
-
ProviderParam,
|
|
583
239
|
RATIO_REGULATION_MODE_OPTIONS,
|
|
584
|
-
RATIO_TAP_CHANGER_POSITION,
|
|
585
|
-
RATIO_TAP_CHANGER_TARGET_V,
|
|
586
|
-
REACTIVE_LIMIT_TYPES,
|
|
587
|
-
REACTIVE_SLACKS_THRESHOLD,
|
|
588
|
-
READ_SLACK_BUS,
|
|
589
240
|
REGULATION_TYPE_OPTIONS,
|
|
590
|
-
REMOVE,
|
|
591
241
|
RULES,
|
|
592
242
|
RadioInput,
|
|
593
243
|
RangeInput,
|
|
594
244
|
RangeType,
|
|
595
245
|
RawReadOnlyInput,
|
|
596
|
-
ReactiveCapabilityCurveRowForm,
|
|
597
|
-
ReactiveCapabilityCurveTableForm,
|
|
598
|
-
ReactiveLimitsForm,
|
|
599
246
|
ReadOnlyInput,
|
|
600
247
|
RemoveButton,
|
|
601
248
|
ResizeHandle,
|
|
602
|
-
RootNetworkCellRenderer,
|
|
603
|
-
RootNetworkChipCell,
|
|
604
|
-
RootNetworkHeaderRenderer,
|
|
605
249
|
RuleValueEditor,
|
|
606
|
-
SCENARIO_DURATION,
|
|
607
250
|
SELECTED,
|
|
608
|
-
SELECTION_TYPE,
|
|
609
|
-
SENSITIVITY_TYPES,
|
|
610
|
-
SHORT_CIRCUIT_INITIAL_VOLTAGE_PROFILE_MODE,
|
|
611
|
-
SHORT_CIRCUIT_MODEL_POWER_ELECTRONICS,
|
|
612
|
-
SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_IN_CALCULATION_CLUSTER,
|
|
613
|
-
SHORT_CIRCUIT_ONLY_STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER,
|
|
614
|
-
SHORT_CIRCUIT_POWER_ELECTRONICS_CLUSTERS,
|
|
615
|
-
SHORT_CIRCUIT_POWER_ELECTRONICS_MATERIALS,
|
|
616
|
-
SHORT_CIRCUIT_PREDEFINED_PARAMS,
|
|
617
|
-
SHORT_CIRCUIT_VOLTAGE_RANGES,
|
|
618
|
-
SHORT_CIRCUIT_WITH_FEEDER_RESULT,
|
|
619
|
-
SHORT_CIRCUIT_WITH_LOADS,
|
|
620
|
-
SHORT_CIRCUIT_WITH_NEUTRAL_POSITION,
|
|
621
|
-
SHORT_CIRCUIT_WITH_SHUNT_COMPENSATORS,
|
|
622
|
-
SHORT_CIRCUIT_WITH_VSC_CONVERTER_STATIONS,
|
|
623
|
-
SHUNT_COMPENSATORS_SELECTION_TYPE,
|
|
624
|
-
SHUNT_COMPENSATOR_ACTIVATION_THRESHOLD,
|
|
625
|
-
SHUNT_COMPENSATOR_TYPES,
|
|
626
251
|
SHUNT_COMPENSATOR_TYPE_OPTIONS,
|
|
627
|
-
SHUNT_COMPENSATOR_VOLTAGE_CONTROL_ON,
|
|
628
|
-
SPECIFIC_PARAMETERS,
|
|
629
|
-
STARTED_GENERATORS_IN_CALCULATION_CLUSTER_THRESHOLD,
|
|
630
|
-
STARTED_GENERATORS_OUTSIDE_CALCULATION_CLUSTER_THRESHOLD,
|
|
631
|
-
START_TIME,
|
|
632
|
-
STOP_TIME,
|
|
633
|
-
SUBSTATION_LAYOUT,
|
|
634
252
|
SVAR_REGULATION_MODE_OPTIONS,
|
|
635
|
-
SWITCH_TYPE,
|
|
636
|
-
SecurityAnalysisParametersDialog,
|
|
637
|
-
SecurityAnalysisParametersInline,
|
|
638
|
-
SelectCell,
|
|
639
|
-
SelectCellRenderer,
|
|
640
253
|
SelectClearable,
|
|
641
|
-
SelectHeaderCell,
|
|
642
|
-
SelectHeaderRenderer,
|
|
643
254
|
SelectInput,
|
|
644
255
|
SelectWithConfirmationInput,
|
|
645
|
-
SensiBranchesTabValues,
|
|
646
|
-
SensiTabValues,
|
|
647
|
-
SensitivityAnalysisParametersDialog,
|
|
648
|
-
SensitivityAnalysisParametersInline,
|
|
649
256
|
SeparatorCellRenderer,
|
|
650
|
-
SetPointsForm,
|
|
651
|
-
ShortCircuitForm,
|
|
652
|
-
ShortCircuitParametersEditionDialog,
|
|
653
|
-
ShortCircuitParametersInLine,
|
|
654
|
-
ShuntCompensatorCreationForm,
|
|
655
|
-
ShuntCompensatorSelectionForm,
|
|
656
|
-
SignInCallbackHandler,
|
|
657
|
-
SilentRenewCallbackHandler,
|
|
658
257
|
SliderInput,
|
|
659
258
|
SnackbarProvider,
|
|
660
259
|
SubmitButton,
|
|
661
|
-
SubstationCreationForm,
|
|
662
|
-
SubstationLayout,
|
|
663
|
-
SubstationModificationForm,
|
|
664
|
-
SwitchCell,
|
|
665
|
-
SwitchCellRenderer,
|
|
666
260
|
SwitchInput,
|
|
667
|
-
SwitchKind,
|
|
668
|
-
SwitchWithLabel,
|
|
669
|
-
SwitchesBetweenSections,
|
|
670
|
-
TAB_INFO,
|
|
671
|
-
TRANSFORMERS_SELECTION_TYPE,
|
|
672
|
-
TWT_SPLIT_SHUNT_ADMITTANCE,
|
|
673
|
-
TabPanel,
|
|
674
|
-
TabValues,
|
|
675
261
|
TableNumericalInput,
|
|
676
262
|
TableTextInput,
|
|
677
263
|
TagRenderer,
|
|
678
264
|
TextFieldWithAdornment,
|
|
679
265
|
TextInput,
|
|
680
266
|
TextValueEditor,
|
|
681
|
-
TopBar,
|
|
682
267
|
TranslatedValueEditor,
|
|
683
268
|
TreeViewFinder,
|
|
684
|
-
UPDATE_BUS_VOLTAGE,
|
|
685
|
-
USE_REACTIVE_LIMITS,
|
|
686
|
-
UnauthorizedAccessAlert,
|
|
687
269
|
UniqueNameInput,
|
|
688
|
-
UserManagerMock,
|
|
689
|
-
VARIABLE_Q_GENERATORS,
|
|
690
|
-
VARIABLE_SHUNT_COMPENSATORS,
|
|
691
|
-
VARIABLE_TRANSFORMERS,
|
|
692
|
-
VARIATION,
|
|
693
|
-
VERSION_PARAMETER,
|
|
694
|
-
VOLTAGE_INIT_MODE,
|
|
695
|
-
VOLTAGE_LEVEL,
|
|
696
|
-
VOLTAGE_LEVELS_FORM,
|
|
697
|
-
VOLTAGE_LIMITS_DEFAULT,
|
|
698
|
-
VOLTAGE_LIMITS_MODIFICATION,
|
|
699
270
|
ValueEditor,
|
|
700
271
|
ValueSelector,
|
|
701
|
-
VoltageInitParametersEditionDialog,
|
|
702
|
-
VoltageInitParametersInLine,
|
|
703
|
-
VoltageInitTabValues,
|
|
704
|
-
VoltageLevelConnectivityForm,
|
|
705
|
-
VoltageLevelCreationForm,
|
|
706
|
-
VoltageLevelModificationForm,
|
|
707
|
-
WRITE_SLACK_BUS,
|
|
708
|
-
alertThresholdMarks,
|
|
709
|
-
batteryCreationDtoToForm,
|
|
710
|
-
batteryCreationEmptyFormData,
|
|
711
|
-
batteryCreationFormSchema,
|
|
712
|
-
batteryCreationFormToDto,
|
|
713
|
-
buildNewBusbarSections,
|
|
714
|
-
byFilterDeletionDtoToForm,
|
|
715
|
-
byFilterDeletionFormSchema,
|
|
716
|
-
byFilterDeletionFormToDto,
|
|
717
|
-
computeSwitchedOnValue,
|
|
718
|
-
computeTagMinSize,
|
|
719
|
-
copyEquipmentPropertiesForCreation,
|
|
720
272
|
countRules,
|
|
721
|
-
createCellBorderColor,
|
|
722
|
-
createCellContentWrapperSx,
|
|
723
|
-
createCellStyle,
|
|
724
|
-
createConnectivityData,
|
|
725
|
-
createEditDescriptionStyle,
|
|
726
|
-
createHeaderCellStyle,
|
|
727
|
-
createModificationNameCellStyle,
|
|
728
|
-
createNameCellLabelBoxSx,
|
|
729
|
-
createNameCellRootStyle,
|
|
730
|
-
createPropertyModification,
|
|
731
|
-
createRootNetworkChipCellSx,
|
|
732
|
-
createRowSx,
|
|
733
|
-
creationPropertiesSchema,
|
|
734
|
-
dispatchUser,
|
|
735
273
|
doesNodeHasChildren,
|
|
736
|
-
emptyFormData,
|
|
737
|
-
emptyModificationByAssignmentFormData,
|
|
738
|
-
emptyProperties,
|
|
739
|
-
equipmentDeletionDtoToForm,
|
|
740
|
-
equipmentDeletionEmptyFormData,
|
|
741
|
-
equipmentDeletionFormSchema,
|
|
742
|
-
equipmentDeletionFormToDto,
|
|
743
274
|
expertFilterSchema,
|
|
744
275
|
explicitNamingFilterSchema,
|
|
745
276
|
exportExpertRules,
|
|
746
277
|
extractDefault,
|
|
747
278
|
fetchCsvSeparator,
|
|
748
|
-
fetchPredefinedProperties,
|
|
749
|
-
fetchSubModificationsForExpandedRows,
|
|
750
|
-
filledTextField,
|
|
751
|
-
findAllLoadedCompositeModifications,
|
|
752
|
-
findModificationInTree,
|
|
753
|
-
formatComputingTypeLabel,
|
|
754
|
-
formatToComposedModification,
|
|
755
279
|
genHelperError,
|
|
756
280
|
generateTreeViewFinderClass,
|
|
757
|
-
getActivePowerControlEmptyFormData,
|
|
758
|
-
getActivePowerControlSchema,
|
|
759
|
-
getActivePowerSetPointSchema,
|
|
760
|
-
getBranchActiveReactivePowerEditData,
|
|
761
|
-
getBranchActiveReactivePowerEditDataProperties,
|
|
762
|
-
getBranchActiveReactivePowerEmptyFormData,
|
|
763
|
-
getBranchActiveReactivePowerEmptyFormDataProperties,
|
|
764
|
-
getBranchActiveReactivePowerValidationSchema,
|
|
765
|
-
getBranchActiveReactivePowerValidationSchemaProperties,
|
|
766
|
-
getCharacteristicsCreateFormDataFromSearchCopy,
|
|
767
|
-
getCharacteristicsEmptyFormData,
|
|
768
|
-
getCharacteristicsFormData,
|
|
769
|
-
getCharacteristicsFormValidationSchema,
|
|
770
|
-
getCon1andCon2WithPositionValidationSchema,
|
|
771
|
-
getConcatenatedProperties,
|
|
772
|
-
getConnectivityBusBarSectionData,
|
|
773
|
-
getConnectivityData,
|
|
774
|
-
getConnectivityFormData,
|
|
775
|
-
getConnectivityFormDataProps,
|
|
776
|
-
getConnectivityPropertiesData,
|
|
777
|
-
getConnectivityPropertiesEmptyFormData,
|
|
778
|
-
getConnectivityPropertiesValidationSchema,
|
|
779
|
-
getConnectivityVoltageLevelData,
|
|
780
|
-
getConnectivityWithPositionEmptyFormData,
|
|
781
|
-
getConnectivityWithPositionEmptyFormDataProps,
|
|
782
|
-
getConnectivityWithPositionSchema,
|
|
783
|
-
getConnectivityWithPositionValidationSchema,
|
|
784
|
-
getConnectivityWithoutPositionEmptyFormData,
|
|
785
|
-
getConnectivityWithoutPositionValidationSchema,
|
|
786
|
-
getCont1Cont2WithPositionEmptyFormData,
|
|
787
|
-
getContingencyListsInfosFormSchema,
|
|
788
|
-
getCreateSwitchesEmptyFormData,
|
|
789
|
-
getCreateSwitchesValidationSchema,
|
|
790
281
|
getDefaultRowData,
|
|
791
282
|
getExpertFilterEmptyFormData,
|
|
792
283
|
getExplicitNamingFilterEmptyFormData,
|
|
793
|
-
getFilledPropertiesFromModification,
|
|
794
|
-
getHvdcLccDeletionSchema,
|
|
795
|
-
getInjectionActiveReactivePowerEditData,
|
|
796
|
-
getInjectionActiveReactivePowerEditDataProperties,
|
|
797
|
-
getInjectionActiveReactivePowerEmptyFormData,
|
|
798
|
-
getInjectionActiveReactivePowerEmptyFormDataProperties,
|
|
799
|
-
getInjectionActiveReactivePowerValidationSchema,
|
|
800
|
-
getInjectionActiveReactivePowerValidationSchemaProperties,
|
|
801
|
-
getLimitReductionsFormSchema,
|
|
802
|
-
getNewVoltageLevelData,
|
|
803
284
|
getNumberOfSiblings,
|
|
804
285
|
getOperators,
|
|
805
|
-
getPowerWithValidityEditData,
|
|
806
|
-
getPowerWithValidityEmptyFormData,
|
|
807
|
-
getPowerWithValidityValidationSchema,
|
|
808
|
-
getPreLoginPath,
|
|
809
|
-
getPropertiesFromModification,
|
|
810
|
-
getPropertyValue,
|
|
811
286
|
getRangeInputSchema,
|
|
812
|
-
getReactiveCapabilityCurveValidationSchema,
|
|
813
|
-
getReactiveCapabilityCurveValidationSchemaArray,
|
|
814
|
-
getReactiveLimitsEmptyFormData,
|
|
815
|
-
getReactiveLimitsEmptyFormDataProps,
|
|
816
|
-
getReactiveLimitsFormData,
|
|
817
|
-
getReactiveLimitsFormDataProps,
|
|
818
|
-
getReactiveLimitsSchema,
|
|
819
|
-
getReactiveLimitsValidationSchema,
|
|
820
|
-
getReactivePowerSetPointSchema,
|
|
821
|
-
getRowEmptyFormData,
|
|
822
|
-
getSetPointsEmptyFormData,
|
|
823
|
-
getSetPointsSchema,
|
|
824
|
-
getShortCircuitEmptyFormData,
|
|
825
|
-
getShortCircuitFormData,
|
|
826
|
-
getShortCircuitFormSchema,
|
|
827
287
|
gridItem,
|
|
828
|
-
handleSigninCallback,
|
|
829
|
-
handleSilentRenewCallback,
|
|
830
288
|
identity,
|
|
831
289
|
importExpertRules,
|
|
832
|
-
initializeAuthenticationDev,
|
|
833
|
-
initializeAuthenticationProd,
|
|
834
290
|
initializeDirectory,
|
|
835
|
-
initializedProperty,
|
|
836
|
-
intlInitialVoltageProfileMode,
|
|
837
|
-
intlPredefinedParametersOptions,
|
|
838
|
-
isCompositeModification,
|
|
839
291
|
isFieldRequired,
|
|
840
292
|
isFloatNumber,
|
|
841
293
|
isIntegerNumber,
|
|
842
|
-
isValidComputingType,
|
|
843
|
-
isValidContingencyRow,
|
|
844
|
-
italicFontTextField,
|
|
845
|
-
loadCreationDtoToForm,
|
|
846
|
-
loadCreationEmptyFormData,
|
|
847
|
-
loadCreationFormSchema,
|
|
848
|
-
loadCreationFormToDto,
|
|
849
|
-
loadModificationDtoToForm,
|
|
850
|
-
loadModificationEmptyFormData,
|
|
851
|
-
loadModificationFormSchema,
|
|
852
|
-
loadModificationFormToDto,
|
|
853
|
-
login,
|
|
854
|
-
logout,
|
|
855
|
-
mergeModificationAndEquipmentProperties,
|
|
856
|
-
mergeSubModificationsIntoTree,
|
|
857
|
-
modificationByAssignmentDtoToForm,
|
|
858
|
-
modificationByAssignmentFormSchema,
|
|
859
|
-
modificationByAssignmentFormToDto,
|
|
860
|
-
modificationPropertiesSchema,
|
|
861
|
-
moveSubModificationInTree,
|
|
862
|
-
networkModificationTableStyles,
|
|
863
|
-
newEquipmentDeletionDto,
|
|
864
|
-
onlyStartedGeneratorsOptions,
|
|
865
294
|
queryValidator,
|
|
866
295
|
recursiveRemove,
|
|
867
|
-
sanitizePercentageValue,
|
|
868
296
|
saveExpertFilter,
|
|
869
297
|
saveExplicitNamingFilter,
|
|
870
|
-
setCurrentReactiveCapabilityCurveTable,
|
|
871
|
-
setSelectedReactiveLimits,
|
|
872
|
-
shuntCompensatorCreationDtoToForm,
|
|
873
|
-
shuntCompensatorCreationEmptyFormData,
|
|
874
|
-
shuntCompensatorCreationFormSchema,
|
|
875
|
-
shuntCompensatorCreationFormToDto,
|
|
876
|
-
standardTextField,
|
|
877
298
|
styles,
|
|
878
|
-
substationCreationDtoToForm,
|
|
879
|
-
substationCreationEmptyFormData,
|
|
880
|
-
substationCreationFormSchema,
|
|
881
|
-
substationCreationFormToDto,
|
|
882
|
-
substationModificationDtoToForm,
|
|
883
|
-
substationModificationEmptyFormData,
|
|
884
|
-
substationModificationFormSchema,
|
|
885
|
-
substationModificationFormToDto,
|
|
886
299
|
testQuery,
|
|
887
|
-
testValueWithinPowerInterval,
|
|
888
300
|
toFloatOrNullValue,
|
|
889
|
-
toFormValuesContingencyListsInfos,
|
|
890
|
-
toFormValuesLimitReductions,
|
|
891
|
-
toModificationProperties,
|
|
892
|
-
toReactiveCapabilityCurveChoiceForGeneratorCreation,
|
|
893
|
-
toReactiveCapabilityCurveChoiceForGeneratorModification,
|
|
894
|
-
translateSwitchKinds,
|
|
895
301
|
unscrollableDialogStyles,
|
|
896
|
-
updateModificationFieldInTree,
|
|
897
|
-
updateSubModificationsOfACompositeInTree,
|
|
898
302
|
useConvertValue,
|
|
899
303
|
useCsvExport,
|
|
900
304
|
useCustomFormContext,
|
|
901
305
|
useElementSearch,
|
|
902
|
-
|
|
903
|
-
useHvdcLccDeletion,
|
|
904
|
-
useListenerManager,
|
|
905
|
-
useModificationsDragAndDrop,
|
|
906
|
-
useNotificationsListener,
|
|
907
|
-
useParametersForm,
|
|
908
|
-
useTabs,
|
|
909
|
-
useTabsWithError,
|
|
910
|
-
useValid,
|
|
911
|
-
voltageLevelCreationDtoToForm,
|
|
912
|
-
voltageLevelCreationEmptyFormData,
|
|
913
|
-
voltageLevelCreationFormSchema,
|
|
914
|
-
voltageLevelCreationFormToDto,
|
|
915
|
-
voltageLevelModificationDtoToForm,
|
|
916
|
-
voltageLevelModificationEmptyFormData,
|
|
917
|
-
voltageLevelModificationFormSchema,
|
|
918
|
-
voltageLevelModificationFormToDto
|
|
306
|
+
useValid
|
|
919
307
|
};
|