@gridsuite/commons-ui 0.213.0 → 0.215.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +16 -0
- package/dist/components/composite/agGridTable/BottomRightButtons.js +62 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.d.ts +8 -0
- package/dist/components/composite/agGridTable/CustomAgGridTable.js +201 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.d.ts +15 -0
- package/dist/components/composite/agGridTable/csvUploader/CsvUploader.js +183 -0
- package/dist/components/composite/customAGGrid/cell-renderers.js +202 -0
- package/dist/components/composite/customAGGrid/customAggrid.d.ts +12 -0
- package/dist/components/composite/customAGGrid/customAggrid.js +63 -0
- package/dist/components/composite/customAGGrid/separatorCellRenderer.js +21 -0
- package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table/dnd-table.js +436 -0
- package/dist/components/composite/dnd-table/dnd-table.type.d.ts +56 -0
- package/dist/components/composite/dnd-table-v2/deletable-table-row.js +38 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-add-rows-dialog.js +70 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-left-buttons.js +47 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-bottom-right-buttons.js +100 -0
- package/dist/components/composite/dnd-table-v2/dnd-table-row.js +184 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.js +376 -0
- package/dist/components/composite/dnd-table-v2/dnd-table.type.d.ts +70 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.d.ts +24 -0
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.js +56 -0
- package/dist/components/composite/elementSearch/hooks/useElementSearch.js +67 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.d.ts +14 -0
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.js +20 -0
- package/dist/components/composite/filter/FilterCreationDialog.d.ts +18 -0
- package/dist/components/composite/filter/FilterCreationDialog.js +127 -0
- package/dist/components/composite/filter/FilterForm.js +45 -0
- package/dist/components/composite/filter/HeaderFilterForm.d.ts +26 -0
- package/dist/components/composite/filter/HeaderFilterForm.js +72 -0
- package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.js +113 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +21 -0
- package/dist/components/composite/filter/expert/ExpertFilterForm.js +118 -0
- package/dist/components/composite/filter/expert/expertFilter.type.d.ts +75 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.d.ts +1154 -0
- package/dist/components/composite/filter/expert/expertFilterConstants.js +1454 -0
- package/dist/components/composite/filter/expert/expertFilterUtils.js +374 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +123 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +28 -0
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +244 -0
- package/dist/components/composite/filter/filter.type.d.ts +57 -0
- package/dist/components/composite/filter/utils/filterApi.js +111 -0
- package/dist/components/composite/filter/utils/filterFormUtils.d.ts +7 -0
- package/dist/components/composite/filter/utils/filterFormUtils.js +60 -0
- package/dist/components/composite/flatParameters/FlatParameters.js +366 -0
- package/dist/components/composite/grid/grid-item.js +9 -0
- package/dist/components/composite/grid/grid-section.d.ts +8 -0
- package/dist/components/composite/index.d.ts +15 -0
- package/dist/components/composite/index.js +146 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.d.ts +3 -0
- package/dist/components/composite/muiTable/OverflowableTableCell.js +10 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.d.ts +6 -0
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.js +16 -0
- package/dist/components/composite/reactQueryBuilder/CombinatorSelector.js +40 -0
- package/dist/components/composite/reactQueryBuilder/CountryValueEditor.js +50 -0
- package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.js +105 -0
- package/dist/components/composite/reactQueryBuilder/ElementValueEditor.js +47 -0
- package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +102 -0
- package/dist/components/composite/reactQueryBuilder/RemoveButton.js +19 -0
- package/dist/components/composite/reactQueryBuilder/ValueEditor.js +96 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +3 -0
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +8 -0
- package/dist/components/composite/reactQueryBuilder/hooks/useConvertValue.js +19 -0
- package/dist/components/index.d.ts +2 -30
- package/dist/components/index.js +124 -736
- package/dist/components/ui/checkBoxList/CheckBoxListItem.js +74 -0
- package/dist/components/ui/checkBoxList/CheckBoxListItemContent.js +45 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.js +84 -0
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.js +38 -0
- package/dist/components/ui/checkBoxList/checkBoxList.type.d.ts +74 -0
- package/dist/components/ui/csvDownloader/csv-export.type.d.ts +15 -0
- package/dist/components/ui/csvDownloader/use-csv-export.js +61 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.d.ts +51 -0
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.js +143 -0
- package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +74 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +56 -0
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +273 -0
- package/dist/components/ui/dialogs/elementSaveDialog/utils.d.ts +23 -0
- package/dist/components/ui/dialogs/index.d.ts +12 -0
- package/dist/components/ui/dialogs/index.js +17 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +11 -0
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +95 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.d.ts +8 -0
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.js +33 -0
- package/dist/components/ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +24 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +11 -0
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.js +305 -0
- package/dist/components/ui/directoryItemSelector/utils.d.ts +55 -0
- package/dist/components/ui/directoryItemSelector/utils.js +102 -0
- package/dist/components/ui/index.d.ts +20 -0
- package/dist/components/ui/index.js +163 -0
- package/dist/components/ui/inputs/SelectClearable.js +41 -0
- package/dist/components/ui/inputs/index.d.ts +8 -0
- package/dist/components/ui/inputs/index.js +6 -0
- package/dist/components/ui/menus/custom-nested-menu.d.ts +10 -0
- package/dist/components/ui/menus/custom-nested-menu.js +62 -0
- package/dist/components/ui/overflowableText/OverflowableText.d.ts +11 -0
- package/dist/components/ui/overflowableText/OverflowableText.js +97 -0
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.js +290 -0
- package/dist/components/ui/reactHookForm/OverflowableChip.js +25 -0
- package/dist/components/ui/reactHookForm/chip-items-input.js +135 -0
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.js +42 -0
- package/dist/components/ui/reactHookForm/expandableInput/ExpandableInput.js +67 -0
- package/dist/components/ui/reactHookForm/index.d.ts +25 -0
- package/dist/components/ui/reactHookForm/index.js +104 -0
- package/dist/components/ui/reactHookForm/selectInputs/InputWithPopupConfirmation.js +61 -0
- package/dist/components/ui/reactHookForm/selectInputs/SelectWithConfirmationInput.js +64 -0
- package/dist/components/ui/reactHookForm/text/DescriptionField.js +62 -0
- package/dist/components/ui/reactHookForm/text/DescriptionInput.js +87 -0
- package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.js +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +39 -0
- package/dist/components/ui/treeViewFinder/TreeViewFinder.js +343 -0
- package/dist/components/ui/treeViewFinder/TreeViewUtils.d.ts +2 -0
- package/dist/features/announcement/AnnouncementBanner.d.ts +15 -0
- package/dist/features/announcement/AnnouncementBanner.js +88 -0
- package/dist/features/announcement/AnnouncementNotification.d.ts +7 -0
- package/dist/features/announcement/AnnouncementNotification.js +20 -0
- package/dist/features/announcement/useGlobalAnnouncement.d.ts +10 -0
- package/dist/features/announcement/useGlobalAnnouncement.js +48 -0
- package/dist/features/index.d.ts +15 -0
- package/dist/features/index.js +651 -0
- package/dist/features/network-modification-table/renderers/description-cell.js +75 -0
- package/dist/features/network-modification-table/renderers/name-cell.js +221 -0
- package/dist/features/network-modification-table/renderers/root-network-chip-cell.js +114 -0
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +100 -0
- package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +140 -0
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +233 -0
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +83 -0
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +76 -0
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +93 -0
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +57 -0
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +111 -0
- package/dist/features/network-modifications/common/connectivity/PositionForm.js +107 -0
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +159 -0
- package/dist/features/network-modifications/common/index.d.ts +16 -0
- package/dist/features/network-modifications/common/index.js +129 -0
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +31 -0
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +67 -0
- package/dist/features/network-modifications/common/properties/PropertiesForm.js +108 -0
- package/dist/features/network-modifications/common/properties/PropertyForm.js +95 -0
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +97 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +96 -0
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +113 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +16 -0
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +161 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.d.ts +8 -0
- package/dist/features/network-modifications/common/regulatingTerminal/index.js +9 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.d.ts +55 -0
- package/dist/features/network-modifications/common/regulatingTerminal/regulatingTerminal.utils.js +72 -0
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +64 -0
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +63 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +17 -0
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +116 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.d.ts +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/index.js +8 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.d.ts +52 -0
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +56 -0
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +167 -0
- package/dist/features/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +74 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +42 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +55 -0
- package/dist/features/network-modifications/index.js +279 -0
- package/dist/features/network-modifications/load/common/LoadDialogHeader.js +86 -0
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +63 -0
- package/dist/features/network-modifications/load/creation/loadCreation.utils.js +94 -0
- package/dist/features/network-modifications/load/modification/loadModification.utils.js +103 -0
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +193 -0
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +77 -0
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +98 -0
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +58 -0
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +82 -0
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +123 -0
- package/dist/features/network-modifications/voltageLevel/creation/index.js +52 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +88 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +59 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +54 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +94 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +95 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +57 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +78 -0
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +246 -0
- package/dist/features/network-modifications/voltageLevel/index.js +59 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +149 -0
- package/dist/features/notifications/NotificationsProvider.js +66 -0
- package/dist/features/parameters/common/ProviderParam.js +52 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.d.ts +28 -0
- package/dist/features/parameters/common/contingency-table/columns-definitions.js +107 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.d.ts +13 -0
- package/dist/features/parameters/common/contingency-table/contingency-table.js +141 -0
- package/dist/features/parameters/common/hook/use-parameters-form.js +60 -0
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.js +59 -0
- package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.js +65 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +34 -0
- package/dist/features/parameters/common/name-element-editor/name-element-editor-utils.js +51 -0
- package/dist/features/parameters/common/parameter-field.js +106 -0
- package/dist/features/parameters/common/parameter-table/parameter-table.js +98 -0
- package/dist/features/parameters/common/parameter-table/table-cell.js +84 -0
- package/dist/features/parameters/common/parameter-table/table-row.js +41 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +11 -0
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +116 -0
- package/dist/features/parameters/common/parameters-creation-dialog.js +87 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +43 -0
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.js +61 -0
- package/dist/features/parameters/common/widget/parameter-float.js +53 -0
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +60 -0
- package/dist/features/parameters/common/widget/parameter-line-slider.js +72 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +99 -0
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +178 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +29 -0
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +151 -0
- package/dist/features/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +95 -0
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +68 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +130 -0
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +100 -0
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +38 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +11 -0
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +177 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +123 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +125 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +20 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +283 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +16 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +14 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +239 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +187 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +15 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +148 -0
- package/dist/features/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +117 -0
- package/dist/features/parameters/loadflow/load-flow-general-parameters.js +181 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-content.js +80 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +107 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-form.js +105 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-header.js +97 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +196 -0
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +108 -0
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +251 -0
- package/dist/features/parameters/network-visualizations/map-parameters.js +113 -0
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +61 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-form.js +105 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.js +100 -0
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +134 -0
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +103 -0
- package/dist/features/parameters/network-visualizations/use-network-visualizations-parameters-form.js +155 -0
- package/dist/features/parameters/pcc-min/pcc-min-form-utils.js +59 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.js +98 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +117 -0
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +163 -0
- package/dist/features/parameters/pcc-min/use-pcc-min-parameters-form.js +135 -0
- package/dist/features/parameters/security-analysis/columns-definitions.js +75 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +116 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +16 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +160 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +188 -0
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +84 -0
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +141 -0
- package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.js +188 -0
- package/dist/features/parameters/sensi/columns-definitions.d.ts +31 -0
- package/dist/features/parameters/sensi/columns-definitions.js +345 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +122 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +135 -0
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +192 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +73 -0
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +259 -0
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.js +380 -0
- package/dist/features/parameters/sensi/utils.d.ts +411 -0
- package/dist/features/parameters/sensi/utils.js +365 -0
- package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +212 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +71 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +36 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.js +60 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.js +49 -0
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.js +43 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +104 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +107 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +67 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +173 -0
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +295 -0
- package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +94 -0
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +142 -0
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.js +246 -0
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +122 -0
- package/dist/features/parameters/voltage-init/general-parameters.js +115 -0
- package/dist/features/parameters/voltage-init/use-voltage-init-parameters-form.js +213 -0
- package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +214 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.js +98 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +153 -0
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +172 -0
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +171 -0
- package/dist/features/topBar/AboutDialog.js +349 -0
- package/dist/features/topBar/TopBar.d.ts +25 -0
- package/dist/features/topBar/TopBar.js +537 -0
- package/dist/features/topBar/UserInformationDialog.d.ts +8 -0
- package/dist/features/topBar/UserInformationDialog.js +75 -0
- package/dist/hooks/use-parameters-backend.d.ts +1 -1
- package/dist/hooks/use-parameters-backend.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +288 -275
- package/dist/services/explore.d.ts +1 -1
- package/dist/services/security-analysis.d.ts +1 -1
- package/dist/services/security-analysis.js +1 -1
- package/dist/services/short-circuit-analysis.d.ts +1 -1
- package/dist/services/study-config.d.ts +1 -1
- package/dist/services/study.d.ts +3 -3
- package/dist/services/voltage-init.d.ts +1 -1
- package/dist/translations/en/networkModificationsEn.d.ts +6 -0
- package/dist/translations/en/networkModificationsEn.js +6 -0
- package/dist/translations/fr/networkModificationsFr.d.ts +6 -0
- package/dist/translations/fr/networkModificationsFr.js +6 -0
- package/dist/utils/types/loadflow.type.d.ts +1 -1
- package/dist/utils/types/parameters.type.d.ts +4 -4
- package/package.json +1 -1
- package/dist/components/announcement/AnnouncementBanner.d.ts +0 -15
- package/dist/components/announcement/AnnouncementBanner.js +0 -88
- package/dist/components/announcement/AnnouncementNotification.d.ts +0 -7
- package/dist/components/announcement/AnnouncementNotification.js +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.d.ts +0 -10
- package/dist/components/announcement/useGlobalAnnouncement.js +0 -48
- package/dist/components/checkBoxList/CheckBoxListItem.js +0 -74
- package/dist/components/checkBoxList/CheckBoxListItemContent.js +0 -45
- package/dist/components/checkBoxList/DraggableCheckBoxListItem.js +0 -84
- package/dist/components/checkBoxList/DraggableCheckBoxListItemContent.js +0 -38
- package/dist/components/checkBoxList/checkBoxList.type.d.ts +0 -74
- package/dist/components/csvDownloader/csv-export.type.d.ts +0 -15
- package/dist/components/csvDownloader/use-csv-export.js +0 -61
- package/dist/components/customAGGrid/cell-renderers.js +0 -202
- package/dist/components/customAGGrid/customAggrid.d.ts +0 -12
- package/dist/components/customAGGrid/customAggrid.js +0 -63
- package/dist/components/customAGGrid/separatorCellRenderer.js +0 -21
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.d.ts +0 -51
- package/dist/components/dialogs/customMuiDialog/CustomMuiDialog.js +0 -143
- package/dist/components/dialogs/descriptionModificationDialog/DescriptionModificationDialog.js +0 -74
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +0 -56
- package/dist/components/dialogs/elementSaveDialog/ElementSaveDialog.js +0 -284
- package/dist/components/dialogs/elementSaveDialog/utils.d.ts +0 -23
- package/dist/components/dialogs/index.d.ts +0 -11
- package/dist/components/dialogs/index.js +0 -15
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +0 -11
- package/dist/components/dialogs/modifyElementSelection/ModifyElementSelection.js +0 -95
- package/dist/components/dialogs/popupConfirmationDialog/PopupConfirmationDialog.js +0 -24
- package/dist/components/directoryItemSelector/DirectoryItemSelector.d.ts +0 -11
- package/dist/components/directoryItemSelector/DirectoryItemSelector.js +0 -305
- package/dist/components/directoryItemSelector/utils.d.ts +0 -55
- package/dist/components/directoryItemSelector/utils.js +0 -102
- package/dist/components/dnd-table/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table/dnd-table.js +0 -442
- package/dist/components/dnd-table/dnd-table.type.d.ts +0 -56
- package/dist/components/dnd-table-v2/deletable-table-row.js +0 -38
- package/dist/components/dnd-table-v2/dnd-table-add-rows-dialog.js +0 -76
- package/dist/components/dnd-table-v2/dnd-table-bottom-left-buttons.js +0 -47
- package/dist/components/dnd-table-v2/dnd-table-bottom-right-buttons.js +0 -100
- package/dist/components/dnd-table-v2/dnd-table-row.js +0 -183
- package/dist/components/dnd-table-v2/dnd-table.js +0 -383
- package/dist/components/dnd-table-v2/dnd-table.type.d.ts +0 -70
- package/dist/components/elementSearch/elementItem/EquipmentItem.d.ts +0 -24
- package/dist/components/elementSearch/elementItem/EquipmentItem.js +0 -56
- package/dist/components/elementSearch/hooks/useElementSearch.js +0 -67
- package/dist/components/elementSearch/tagRenderer/TagRenderer.d.ts +0 -14
- package/dist/components/elementSearch/tagRenderer/TagRenderer.js +0 -20
- package/dist/components/filter/FilterCreationDialog.d.ts +0 -18
- package/dist/components/filter/FilterCreationDialog.js +0 -127
- package/dist/components/filter/FilterForm.js +0 -43
- package/dist/components/filter/HeaderFilterForm.d.ts +0 -26
- package/dist/components/filter/HeaderFilterForm.js +0 -78
- package/dist/components/filter/expert/ExpertFilterEditionDialog.js +0 -113
- package/dist/components/filter/expert/ExpertFilterForm.d.ts +0 -21
- package/dist/components/filter/expert/ExpertFilterForm.js +0 -121
- package/dist/components/filter/expert/expertFilter.type.d.ts +0 -75
- package/dist/components/filter/expert/expertFilterConstants.d.ts +0 -1154
- package/dist/components/filter/expert/expertFilterConstants.js +0 -1454
- package/dist/components/filter/expert/expertFilterUtils.js +0 -374
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterEditionDialog.js +0 -123
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +0 -28
- package/dist/components/filter/explicitNaming/ExplicitNamingFilterForm.js +0 -248
- package/dist/components/filter/filter.type.d.ts +0 -57
- package/dist/components/filter/utils/filterApi.js +0 -111
- package/dist/components/filter/utils/filterFormUtils.d.ts +0 -7
- package/dist/components/filter/utils/filterFormUtils.js +0 -60
- package/dist/components/flatParameters/FlatParameters.js +0 -366
- package/dist/components/grid/grid-item.js +0 -9
- package/dist/components/grid/grid-section.d.ts +0 -8
- package/dist/components/inputs/SelectClearable.js +0 -41
- package/dist/components/inputs/index.d.ts +0 -10
- package/dist/components/inputs/index.js +0 -146
- package/dist/components/inputs/reactHookForm/DirectoryItemsInput.js +0 -290
- package/dist/components/inputs/reactHookForm/OverflowableChip.js +0 -25
- package/dist/components/inputs/reactHookForm/agGridTable/BottomRightButtons.js +0 -62
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.d.ts +0 -8
- package/dist/components/inputs/reactHookForm/agGridTable/CustomAgGridTable.js +0 -201
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.d.ts +0 -15
- package/dist/components/inputs/reactHookForm/agGridTable/csvUploader/CsvUploader.js +0 -183
- package/dist/components/inputs/reactHookForm/chip-items-input.js +0 -135
- package/dist/components/inputs/reactHookForm/expandableInput/DeletableRow.js +0 -42
- package/dist/components/inputs/reactHookForm/expandableInput/ExpandableInput.js +0 -67
- package/dist/components/inputs/reactHookForm/index.d.ts +0 -26
- package/dist/components/inputs/reactHookForm/index.js +0 -112
- package/dist/components/inputs/reactHookForm/selectInputs/InputWithPopupConfirmation.js +0 -61
- package/dist/components/inputs/reactHookForm/selectInputs/SelectWithConfirmationInput.js +0 -64
- package/dist/components/inputs/reactHookForm/text/DescriptionField.js +0 -62
- package/dist/components/inputs/reactHookForm/text/DescriptionInput.js +0 -87
- package/dist/components/inputs/reactHookForm/utils/HelperPreviousValue.js +0 -39
- package/dist/components/inputs/reactQueryBuilder/CombinatorSelector.js +0 -40
- package/dist/components/inputs/reactQueryBuilder/CountryValueEditor.js +0 -50
- package/dist/components/inputs/reactQueryBuilder/CustomReactQueryBuilder.js +0 -105
- package/dist/components/inputs/reactQueryBuilder/ElementValueEditor.js +0 -47
- package/dist/components/inputs/reactQueryBuilder/PropertyValueEditor.js +0 -102
- package/dist/components/inputs/reactQueryBuilder/RemoveButton.js +0 -19
- package/dist/components/inputs/reactQueryBuilder/ValueEditor.js +0 -96
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +0 -3
- package/dist/components/inputs/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +0 -8
- package/dist/components/inputs/reactQueryBuilder/hooks/useConvertValue.js +0 -19
- package/dist/components/menus/custom-nested-menu.d.ts +0 -10
- package/dist/components/menus/custom-nested-menu.js +0 -62
- package/dist/components/muiTable/OverflowableTableCell.d.ts +0 -3
- package/dist/components/muiTable/OverflowableTableCell.js +0 -10
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.d.ts +0 -6
- package/dist/components/muiTable/OverflowableTableCellWithCheckbox.js +0 -16
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.d.ts +0 -8
- package/dist/components/multipleSelectionDialog/MultipleSelectionDialog.js +0 -33
- package/dist/components/network-modification-table/renderers/description-cell.js +0 -73
- package/dist/components/network-modification-table/renderers/name-cell.js +0 -221
- package/dist/components/network-modification-table/renderers/root-network-chip-cell.js +0 -138
- package/dist/components/network-modifications/battery/creation/BatteryCreationForm.js +0 -105
- package/dist/components/network-modifications/battery/creation/batteryCreation.utils.js +0 -145
- package/dist/components/network-modifications/by-filter/assignment/assignment/assignment-form.js +0 -238
- package/dist/components/network-modifications/by-filter/assignment/modification-by-assignment-form.js +0 -90
- package/dist/components/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +0 -81
- package/dist/components/network-modifications/common/activePowerControl/ActivePowerControlForm.js +0 -99
- package/dist/components/network-modifications/common/connectivity/BranchConnectivityForm.js +0 -57
- package/dist/components/network-modifications/common/connectivity/ConnectivityForm.js +0 -117
- package/dist/components/network-modifications/common/connectivity/PositionForm.js +0 -113
- package/dist/components/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +0 -165
- package/dist/components/network-modifications/common/index.d.ts +0 -14
- package/dist/components/network-modifications/common/index.js +0 -116
- package/dist/components/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +0 -31
- package/dist/components/network-modifications/common/measurements/PowerWithValidityForm.js +0 -73
- package/dist/components/network-modifications/common/properties/PropertiesForm.js +0 -114
- package/dist/components/network-modifications/common/properties/PropertyForm.js +0 -101
- package/dist/components/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +0 -103
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +0 -102
- package/dist/components/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +0 -119
- package/dist/components/network-modifications/common/setpoints/SetPointsForm.js +0 -70
- package/dist/components/network-modifications/common/shortCircuit/ShortCircuitForm.js +0 -69
- package/dist/components/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +0 -172
- package/dist/components/network-modifications/equipmentDeletion/equipmentDeletion.utils.js +0 -80
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +0 -42
- package/dist/components/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +0 -61
- package/dist/components/network-modifications/index.js +0 -272
- package/dist/components/network-modifications/load/common/LoadDialogHeader.js +0 -91
- package/dist/components/network-modifications/load/common/LoadDialogTabsContent.js +0 -63
- package/dist/components/network-modifications/load/creation/loadCreation.utils.js +0 -100
- package/dist/components/network-modifications/load/modification/loadModification.utils.js +0 -108
- package/dist/components/network-modifications/shunt-compensator/common/CharacteristicsForm.js +0 -199
- package/dist/components/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +0 -82
- package/dist/components/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +0 -103
- package/dist/components/network-modifications/substation/creation/SubstationCreationForm.js +0 -63
- package/dist/components/network-modifications/substation/modification/SubstationModificationForm.js +0 -87
- package/dist/components/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +0 -128
- package/dist/components/network-modifications/voltageLevel/creation/index.js +0 -57
- package/dist/components/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +0 -94
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +0 -65
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +0 -54
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.js +0 -100
- package/dist/components/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +0 -101
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +0 -62
- package/dist/components/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +0 -84
- package/dist/components/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +0 -251
- package/dist/components/network-modifications/voltageLevel/index.js +0 -64
- package/dist/components/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +0 -154
- package/dist/components/notifications/NotificationsProvider.js +0 -55
- package/dist/components/overflowableText/OverflowableText.d.ts +0 -11
- package/dist/components/overflowableText/OverflowableText.js +0 -97
- package/dist/components/parameters/common/ProviderParam.js +0 -58
- package/dist/components/parameters/common/contingency-table/columns-definitions.d.ts +0 -28
- package/dist/components/parameters/common/contingency-table/columns-definitions.js +0 -114
- package/dist/components/parameters/common/contingency-table/contingency-table.d.ts +0 -8
- package/dist/components/parameters/common/contingency-table/contingency-table.js +0 -133
- package/dist/components/parameters/common/hook/use-parameters-form.js +0 -60
- package/dist/components/parameters/common/limitreductions/limit-reduction-table-cell.js +0 -65
- package/dist/components/parameters/common/limitreductions/limit-reductions-table-form.js +0 -71
- package/dist/components/parameters/common/name-element-editor/name-element-editor-form.js +0 -34
- package/dist/components/parameters/common/name-element-editor/name-element-editor-utils.js +0 -57
- package/dist/components/parameters/common/parameter-field.js +0 -114
- package/dist/components/parameters/common/parameter-table/parameter-table.js +0 -98
- package/dist/components/parameters/common/parameter-table/table-cell.js +0 -83
- package/dist/components/parameters/common/parameter-table/table-row.js +0 -41
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.d.ts +0 -11
- package/dist/components/parameters/common/parameter-table-field/parameter-table-field.js +0 -122
- package/dist/components/parameters/common/parameters-creation-dialog.js +0 -85
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table-cell.js +0 -49
- package/dist/components/parameters/common/voltage-level-table/custom-voltage-level-table.js +0 -61
- package/dist/components/parameters/common/widget/parameter-float.js +0 -59
- package/dist/components/parameters/common/widget/parameter-line-directory-items-input.js +0 -65
- package/dist/components/parameters/common/widget/parameter-line-slider.js +0 -78
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +0 -107
- package/dist/components/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +0 -184
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +0 -29
- package/dist/components/parameters/dynamic-margin-calculation/loads-variations-parameters.js +0 -158
- package/dist/components/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.js +0 -103
- package/dist/components/parameters/dynamic-security-analysis/contingency-parameters.js +0 -76
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +0 -137
- package/dist/components/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js +0 -108
- package/dist/components/parameters/dynamic-simulation/curve/common/grid-buttons.js +0 -38
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.d.ts +0 -11
- package/dist/components/parameters/dynamic-simulation/curve/curve-parameters.js +0 -177
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-preview.js +0 -123
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +0 -125
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.d.ts +0 -20
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector-utils.js +0 -283
- package/dist/components/parameters/dynamic-simulation/curve/dialog/curve-selector.d.ts +0 -16
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.d.ts +0 -14
- package/dist/components/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +0 -239
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-inline.js +0 -194
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +0 -15
- package/dist/components/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +0 -156
- package/dist/components/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.js +0 -125
- package/dist/components/parameters/loadflow/load-flow-general-parameters.js +0 -189
- package/dist/components/parameters/loadflow/load-flow-parameters-content.js +0 -88
- package/dist/components/parameters/loadflow/load-flow-parameters-dialog.js +0 -115
- package/dist/components/parameters/loadflow/load-flow-parameters-form.js +0 -111
- package/dist/components/parameters/loadflow/load-flow-parameters-header.js +0 -105
- package/dist/components/parameters/loadflow/load-flow-parameters-inline.js +0 -203
- package/dist/components/parameters/loadflow/load-flow-parameters-utils.js +0 -116
- package/dist/components/parameters/loadflow/use-load-flow-parameters-form.js +0 -259
- package/dist/components/parameters/network-visualizations/map-parameters.js +0 -121
- package/dist/components/parameters/network-visualizations/network-area-diagram-parameters.js +0 -67
- package/dist/components/parameters/network-visualizations/network-visualizations-form.js +0 -113
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-dialog.js +0 -107
- package/dist/components/parameters/network-visualizations/network-visualizations-parameters-inline.js +0 -140
- package/dist/components/parameters/network-visualizations/single-line-diagram-parameters.js +0 -111
- package/dist/components/parameters/network-visualizations/use-network-visualizations-parameters-form.js +0 -161
- package/dist/components/parameters/pcc-min/pcc-min-form-utils.js +0 -65
- package/dist/components/parameters/pcc-min/pcc-min-parameters-dialog.js +0 -105
- package/dist/components/parameters/pcc-min/pcc-min-parameters-form.js +0 -125
- package/dist/components/parameters/pcc-min/pcc-min-parameters-inline.js +0 -170
- package/dist/components/parameters/pcc-min/use-pcc-min-parameters-form.js +0 -141
- package/dist/components/parameters/security-analysis/columns-definitions.js +0 -83
- package/dist/components/parameters/security-analysis/security-analysis-parameters-dialog.js +0 -124
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.d.ts +0 -13
- package/dist/components/parameters/security-analysis/security-analysis-parameters-form.js +0 -165
- package/dist/components/parameters/security-analysis/security-analysis-parameters-inline.js +0 -191
- package/dist/components/parameters/security-analysis/security-analysis-parameters-selector.js +0 -92
- package/dist/components/parameters/security-analysis/security-analysis-violations-hiding.js +0 -149
- package/dist/components/parameters/security-analysis/use-security-analysis-parameters-form.js +0 -195
- package/dist/components/parameters/sensi/columns-definitions.d.ts +0 -31
- package/dist/components/parameters/sensi/columns-definitions.js +0 -352
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-dialog.js +0 -130
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-form.js +0 -143
- package/dist/components/parameters/sensi/sensitivity-analysis-parameters-inline.js +0 -199
- package/dist/components/parameters/sensi/sensitivity-parameters-fields.js +0 -79
- package/dist/components/parameters/sensi/sensitivity-parameters-selector.js +0 -265
- package/dist/components/parameters/sensi/use-sensitivity-analysis-parameters.js +0 -387
- package/dist/components/parameters/sensi/utils.d.ts +0 -411
- package/dist/components/parameters/sensi/utils.js +0 -372
- package/dist/components/parameters/short-circuit/short-circuit-general-tab-panel.js +0 -220
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-cell.js +0 -76
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table-row.js +0 -36
- package/dist/components/parameters/short-circuit/short-circuit-icc-cluster-table.js +0 -60
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table-cell.js +0 -55
- package/dist/components/parameters/short-circuit/short-circuit-icc-material-table.js +0 -43
- package/dist/components/parameters/short-circuit/short-circuit-parameters-content.js +0 -112
- package/dist/components/parameters/short-circuit/short-circuit-parameters-dialog.js +0 -115
- package/dist/components/parameters/short-circuit/short-circuit-parameters-form.js +0 -73
- package/dist/components/parameters/short-circuit/short-circuit-parameters-inline.js +0 -180
- package/dist/components/parameters/short-circuit/short-circuit-parameters-utils.js +0 -303
- package/dist/components/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +0 -102
- package/dist/components/parameters/short-circuit/short-circuit-study-area-tab-panel.js +0 -150
- package/dist/components/parameters/short-circuit/use-short-circuit-parameters-form.js +0 -254
- package/dist/components/parameters/voltage-init/equipment-selection-parameters.js +0 -130
- package/dist/components/parameters/voltage-init/general-parameters.js +0 -123
- package/dist/components/parameters/voltage-init/use-voltage-init-parameters-form.js +0 -220
- package/dist/components/parameters/voltage-init/voltage-init-form-utils.js +0 -221
- package/dist/components/parameters/voltage-init/voltage-init-parameters-dialog.js +0 -105
- package/dist/components/parameters/voltage-init/voltage-init-parameters-form.js +0 -161
- package/dist/components/parameters/voltage-init/voltage-init-parameters-inline.js +0 -179
- package/dist/components/parameters/voltage-init/voltage-limits-parameters.js +0 -178
- package/dist/components/topBar/AboutDialog.js +0 -349
- package/dist/components/topBar/TopBar.d.ts +0 -25
- package/dist/components/topBar/TopBar.js +0 -537
- package/dist/components/topBar/UserInformationDialog.d.ts +0 -8
- package/dist/components/topBar/UserInformationDialog.js +0 -72
- package/dist/components/treeViewFinder/TreeViewFinder.d.ts +0 -39
- package/dist/components/treeViewFinder/TreeViewFinder.js +0 -343
- package/dist/components/treeViewFinder/TreeViewUtils.d.ts +0 -2
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/BottomRightButtons.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/cellEditors/numericEditor.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/csvUploader/index.js +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.d.ts +0 -0
- /package/dist/components/{inputs/reactHookForm → composite}/agGridTable/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/cell-renderers.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/customAggrid.style.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.d.ts +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/index.js +0 -0
- /package/dist/components/{customAGGrid → composite/customAGGrid}/separatorCellRenderer.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.d.ts +0 -0
- /package/dist/components/{dnd-table → composite/dnd-table}/index.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/deletable-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-add-rows-dialog.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-left-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-bottom-right-buttons.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-row.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table-utils.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/dnd-table.type.js +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.d.ts +0 -0
- /package/dist/components/{dnd-table-v2 → composite/dnd-table-v2}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementItem/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/ElementSearchDialog.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchDialog/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/ElementSearchInput.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/elementSearchInput/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/hooks/useElementSearch.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/index.js +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.d.ts +0 -0
- /package/dist/components/{elementSearch → composite/elementSearch}/tagRenderer/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/FilterForm.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/constants/FilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/ExpertFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/expert/expertFilterUtils.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/expert/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterConstants.js +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/explicitNaming/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/filter.type.js +0 -0
- /package/dist/components/{filter → composite/filter}/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/index.js +0 -0
- /package/dist/components/{filter → composite/filter}/utils/filterApi.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.d.ts +0 -0
- /package/dist/components/{filter → composite/filter}/utils/index.js +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/FlatParameters.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.d.ts +0 -0
- /package/dist/components/{flatParameters → composite/flatParameters}/index.js +0 -0
- /package/dist/components/{grid → composite/grid}/grid-item.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/grid-section.js +0 -0
- /package/dist/components/{grid → composite/grid}/index.d.ts +0 -0
- /package/dist/components/{grid → composite/grid}/index.js +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.d.ts +0 -0
- /package/dist/components/{muiTable → composite/muiTable}/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AddButton.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/AutocompleteWithFavorites.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CombinatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CountryValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/CustomReactQueryBuilder.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ElementValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/FieldSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/OperatorSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/PropertyValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/RemoveButton.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TextValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/TranslatedValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueEditor.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/ValueSelector.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/compositeRuleEditor/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/index.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useConvertValue.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/hooks/useValid.js +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.d.ts +0 -0
- /package/dist/components/{inputs → composite}/reactQueryBuilder/index.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/AddButton.js +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.d.ts +0 -0
- /package/dist/components/{addButton → ui/addButton}/index.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxList.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/CheckBoxListItems.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItem.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/DraggableCheckBoxListItemContent.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/checkBoxList.type.js +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.d.ts +0 -0
- /package/dist/components/{checkBoxList → ui/checkBoxList}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/csv-export.type.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/export-csv-button.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.d.ts +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/index.js +0 -0
- /package/dist/components/{csvDownloader → ui/csvDownloader}/use-csv-export.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/DescriptionModificationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/descriptionModificationDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/elementSaveDialog/utils.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/modifyElementSelection/index.js +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.d.ts +0 -0
- /package/dist/components/{multipleSelectionDialog → ui/dialogs/multipleSelectionDialog}/index.js +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/PopupConfirmationDialog.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.d.ts +0 -0
- /package/dist/components/{dialogs → ui/dialogs}/popupConfirmationDialog/index.js +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.d.ts +0 -0
- /package/dist/components/{directoryItemSelector → ui/directoryItemSelector}/index.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/ExpandableGroup.js +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.d.ts +0 -0
- /package/dist/components/{expandableGroup → ui/expandableGroup}/index.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsInputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/ArrowsOutputIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/EditNoteIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelCloseIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/LeftPanelOpenIcon.js +0 -0
- /package/dist/components/{icons → ui/icons}/index.d.ts +0 -0
- /package/dist/components/{icons → ui/icons}/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/ActivableChip.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/SelectClearable.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-autocomplete.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/checkbox-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/index.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list-item.js +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.d.ts +0 -0
- /package/dist/components/{inputs → ui/inputs}/checkbox-autocomplete/virtualized-list.js +0 -0
- /package/dist/components/{menus → ui/menus}/index.d.ts +0 -0
- /package/dist/components/{menus → ui/menus}/index.js +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.d.ts +0 -0
- /package/dist/components/{overflowableText → ui/overflowableText}/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CheckboxNullableInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/CountrySelectionInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/DirectoryItemsInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChip.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/OverflowableChipWithHelperText.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/RawReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/AutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/autocompleteInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/BooleanInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/CheckboxInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/RadioInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/SwitchInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/booleans/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/chip-items-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/constants.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/ErrorInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/FieldErrorAlert.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/MidFormError.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/errorManagement/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/DeletableRow.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/ExpandableInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/expandableInput/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/FloatInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/IntegerInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/RangeInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/SliderInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/numbers/utils.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/CustomFormProvider.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/provider/useCustomFormContext.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ButtonReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/ReadOnlyInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/readOnly/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/CountriesInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/EnumInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/InputWithPopupConfirmation.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/MuiSelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/selectInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-numerical-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/tableInputs/table-text-input.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/DescriptionInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/ExpandingTextField.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/TextInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/UniqueNameInput.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/text/index.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/CancelButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/FieldLabel.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/HelperPreviousValue.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/SubmitButton.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/TextFieldWithAdornment.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/functions.js +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.d.ts +0 -0
- /package/dist/components/{inputs → ui}/reactHookForm/utils/index.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/ResizeHandle.js +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.d.ts +0 -0
- /package/dist/components/{resizablePanels → ui/resizablePanels}/index.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/SnackbarProvider.js +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.d.ts +0 -0
- /package/dist/components/{snackbarProvider → ui/snackbarProvider}/index.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/CustomTooltip.js +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.d.ts +0 -0
- /package/dist/components/{tooltip → ui/tooltip}/index.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/TreeViewUtils.js +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.d.ts +0 -0
- /package/dist/components/{treeViewFinder → ui/treeViewFinder}/index.js +0 -0
- /package/dist/{components → features}/announcement/index.d.ts +0 -0
- /package/dist/{components → features}/announcement/index.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouter.js +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.d.ts +0 -0
- /package/dist/{components → features}/authentication/AuthenticationRouterErrorDisplay.js +0 -0
- /package/dist/{components → features}/authentication/Login.d.ts +0 -0
- /package/dist/{components → features}/authentication/Login.js +0 -0
- /package/dist/{components → features}/authentication/Logout.d.ts +0 -0
- /package/dist/{components → features}/authentication/Logout.js +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SignInCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.d.ts +0 -0
- /package/dist/{components → features}/authentication/SilentRenewCallbackHandler.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInLogoutAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/ErrorInUserValidationAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/UnauthorizedAccessAlert.js +0 -0
- /package/dist/{components → features}/authentication/alert/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/alert/index.js +0 -0
- /package/dist/{components → features}/authentication/authenticationType.d.ts +0 -0
- /package/dist/{components → features}/authentication/authenticationType.js +0 -0
- /package/dist/{components → features}/authentication/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/authService.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/authService.js +0 -0
- /package/dist/{components → features}/authentication/utils/index.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/index.js +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.d.ts +0 -0
- /package/dist/{components → features}/authentication/utils/userManagerMock.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/CardErrorBoundary.js +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.d.ts +0 -0
- /package/dist/{components → features}/cardErrorBoundary/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/columns-definition.js +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/drag-forbidden-chip.js +0 -0
- /package/dist/{components → features}/network-modification-table/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modification-table-styles.js +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/network-modifications-table.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/cell-renderers.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/depth-box.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/description-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/drag-handle-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/name-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/network-modification-node-editor-name-header.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/root-network-chip-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/select-header-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/renderers/switch-cell.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/drag-row-clone.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/index.js +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/row/modification-row.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-drag-and-drop.js +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/use-modifications-selection.js +0 -0
- /package/dist/{components → features}/network-modification-table/utils.d.ts +0 -0
- /package/dist/{components → features}/network-modification-table/utils.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/BatteryCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/batteryCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/battery/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-constants.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment-utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/assignment/assignment.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/assignment/modificationByAssignment.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/commons/by-filter.type.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/byFilterDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/deletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/by-filter/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/activePowerControlForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/activePowerControl/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/ConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/PositionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivity.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/connectivityForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/connectivity/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/form.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerMeasurementsForm.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/PowerWithValidityForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/injectionActiveReactivePowerForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/measurement.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/measurements/powerWithValidity.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertiesForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/PropertyForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/properties.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/properties/propertyUtils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/SetPointsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/setpoints/setPoints.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/index.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.type.js +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/common/shortCircuit/shortCircuitForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.types.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/equipmentDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/hvdcLccDeletion/useHvdcLccDeletion.js +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/equipmentDeletion/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/generatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/generatorDialog.type.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/generatorModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/generator/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/index.js +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/hooks/useTabsWithError.js +0 -0
- /package/dist/{components → features}/network-modifications/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogHeader.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabs.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadDialogTabsContent.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/LoadForm.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/common/load.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/creation/loadCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/load/modification/loadModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/common/shuntCompensator.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/shunt-compensator/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/SubstationCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/creation/substationCreation.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/SubstationModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/substation/modification/substationModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/characteristicsTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/tabs/substationTab/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevel.constants.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/index.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.types.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.d.ts +0 -0
- /package/dist/{components → features}/network-modifications/voltageLevel/voltage-level.type.js +0 -0
- /package/dist/{components → features}/node/build-status-chip.d.ts +0 -0
- /package/dist/{components → features}/node/build-status-chip.js +0 -0
- /package/dist/{components → features}/node/constant.d.ts +0 -0
- /package/dist/{components → features}/node/constant.js +0 -0
- /package/dist/{components → features}/node/index.d.ts +0 -0
- /package/dist/{components → features}/node/index.js +0 -0
- /package/dist/{components → features}/notifications/NotificationsProvider.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.d.ts +0 -0
- /package/dist/{components → features}/notifications/contexts/NotificationsContext.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useListenerManager.js +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.d.ts +0 -0
- /package/dist/{components → features}/notifications/hooks/useNotificationsListener.js +0 -0
- /package/dist/{components → features}/notifications/index.d.ts +0 -0
- /package/dist/{components → features}/notifications/index.js +0 -0
- /package/dist/{components → features}/parameters/common/ProviderParam.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/computing-type.js +0 -0
- /package/dist/{components → features}/parameters/common/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/contingency-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/index.js +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/hook/use-tabs.js +0 -0
- /package/dist/{components → features}/parameters/common/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/columns-definitions.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/index.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reduction-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-label-column.js +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-table-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/limitreductions/limit-reductions-tooltip-column.js +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/line-separator.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/index.js +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/name-element-editor/name-element-editor-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-field.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/parameter-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table/types.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/constants.js +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameter-table-field/index.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters-creation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters-edition-dialog-props.js +0 -0
- /package/dist/{components → features}/parameters/common/parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/parameters.js +0 -0
- /package/dist/{components → features}/parameters/common/utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/utils.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table-row.js +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/voltage-level-table/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/index.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-float.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-group.js +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-directory-items-input.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-line-slider.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.d.ts +0 -0
- /package/dist/{components → features}/parameters/common/widget/parameter-switch.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-dialog.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/dynamic-margin-calculation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-margin-calculation/use-dynamic-margin-calculation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/contingency-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/dynamic-security-analysis.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/scenario-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-select.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/checkbox-treeview.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/curve.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/common/grid-search.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/curve-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-preview.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/curve-selector.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/curve/dialog/model-filter.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/dynamic-simulation.type.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/hook/use-default-params.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/mapping/mapping-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/network/network-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/common-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/ida-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-constant.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/solver/solver-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/index.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-constants.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters-utils.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +0 -0
- /package/dist/{components → features}/parameters/dynamic-simulation/use-dynamic-simulation-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/constants.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/index.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-header.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-provider.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-type.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/load-flow-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.d.ts +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-context.js +0 -0
- /package/dist/{components → features}/parameters/loadflow/use-load-flow-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/constants.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/index.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/map-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-area-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/network-visualizations.types.js +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/single-line-diagram-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/network-visualizations/use-network-visualizations-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.d.ts +0 -0
- /package/dist/{components → features}/parameters/parameters-style.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/index.js +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/pcc-min-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/pcc-min/use-pcc-min-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/columns-definitions.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/index.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/security-analysis-violations-hiding.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.d.ts +0 -0
- /package/dist/{components → features}/parameters/security-analysis/types.js +0 -0
- /package/dist/{components → features}/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/constants.js +0 -0
- /package/dist/{components → features}/parameters/sensi/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/index.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-factor-count.js +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-fields.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/sensitivity-parameters-selector.d.ts +0 -0
- /package/dist/{components → features}/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/columns-definition.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/constants.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/index.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-general-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table-row.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-icc-material-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-content.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-parameters.type.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-power-electronics-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-study-area-tab-panel.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.d.ts +0 -0
- /package/dist/{components → features}/parameters/short-circuit/short-circuit-voltage-table.js +0 -0
- /package/dist/{components → features}/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/constants.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/equipment-selection-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/general-parameters.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/index.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/use-voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-form-utils.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-form.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init-parameters-inline.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.d.ts +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-init.type.js +0 -0
- /package/dist/{components → features}/parameters/voltage-init/voltage-limits-parameters.d.ts +0 -0
- /package/dist/{components → features}/topBar/AboutDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.d.ts +0 -0
- /package/dist/{components → features}/topBar/DevModeBanner.js +0 -0
- /package/dist/{components → features}/topBar/GridLogo.d.ts +0 -0
- /package/dist/{components → features}/topBar/GridLogo.js +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.d.ts +0 -0
- /package/dist/{components → features}/topBar/UserSettingsDialog.js +0 -0
- /package/dist/{components → features}/topBar/index.d.ts +0 -0
- /package/dist/{components → features}/topBar/index.js +0 -0
|
@@ -1,1454 +0,0 @@
|
|
|
1
|
-
import { OperatorType, CombinatorType, DataType } from "./expertFilter.type.js";
|
|
2
|
-
import { FieldType } from "../../../utils/types/fieldType.js";
|
|
3
|
-
import { KILO_AMPERE, KILO_VOLT, MICRO_SIEMENS, SIEMENS, MEGA_VAR, MEGA_WATT, OHM, MEGA_VOLT_AMPERE } from "../../../utils/constants/unitsConstants.js";
|
|
4
|
-
import "../../../utils/conversionUtils.js";
|
|
5
|
-
import { EquipmentType, ALL_EQUIPMENTS } from "../../../utils/types/equipmentType.js";
|
|
6
|
-
import "react/jsx-runtime";
|
|
7
|
-
import "@mui/icons-material";
|
|
8
|
-
import "../../../utils/yupConfig.js";
|
|
9
|
-
var RULES = /* @__PURE__ */ ((RULES2) => {
|
|
10
|
-
RULES2["EMPTY_RULE"] = "emptyRule";
|
|
11
|
-
RULES2["EMPTY_GROUP"] = "emptyGroup";
|
|
12
|
-
RULES2["INCORRECT_RULE"] = "incorrectRule";
|
|
13
|
-
RULES2["BETWEEN_RULE"] = "betweenRule";
|
|
14
|
-
return RULES2;
|
|
15
|
-
})(RULES || {});
|
|
16
|
-
const EXPERT_FILTER_QUERY = "rules";
|
|
17
|
-
const EXPERT_FILTER_EQUIPMENTS = {
|
|
18
|
-
[EquipmentType.SUBSTATION]: ALL_EQUIPMENTS[EquipmentType.SUBSTATION],
|
|
19
|
-
[EquipmentType.VOLTAGE_LEVEL]: ALL_EQUIPMENTS[EquipmentType.VOLTAGE_LEVEL],
|
|
20
|
-
[EquipmentType.LINE]: ALL_EQUIPMENTS[EquipmentType.LINE],
|
|
21
|
-
[EquipmentType.TWO_WINDINGS_TRANSFORMER]: ALL_EQUIPMENTS[EquipmentType.TWO_WINDINGS_TRANSFORMER],
|
|
22
|
-
[EquipmentType.THREE_WINDINGS_TRANSFORMER]: ALL_EQUIPMENTS[EquipmentType.THREE_WINDINGS_TRANSFORMER],
|
|
23
|
-
[EquipmentType.GENERATOR]: ALL_EQUIPMENTS[EquipmentType.GENERATOR],
|
|
24
|
-
[EquipmentType.BATTERY]: ALL_EQUIPMENTS[EquipmentType.BATTERY],
|
|
25
|
-
[EquipmentType.LOAD]: ALL_EQUIPMENTS[EquipmentType.LOAD],
|
|
26
|
-
[EquipmentType.SHUNT_COMPENSATOR]: ALL_EQUIPMENTS[EquipmentType.SHUNT_COMPENSATOR],
|
|
27
|
-
[EquipmentType.STATIC_VAR_COMPENSATOR]: ALL_EQUIPMENTS[EquipmentType.STATIC_VAR_COMPENSATOR],
|
|
28
|
-
[EquipmentType.HVDC_LINE]: ALL_EQUIPMENTS[EquipmentType.HVDC_LINE],
|
|
29
|
-
[EquipmentType.BOUNDARY_LINE]: ALL_EQUIPMENTS[EquipmentType.BOUNDARY_LINE]
|
|
30
|
-
};
|
|
31
|
-
const ENERGY_SOURCE_OPTIONS = [
|
|
32
|
-
{ name: "HYDRO", label: "Hydro" },
|
|
33
|
-
{ name: "NUCLEAR", label: "Nuclear" },
|
|
34
|
-
{ name: "WIND", label: "Wind" },
|
|
35
|
-
{ name: "THERMAL", label: "Thermal" },
|
|
36
|
-
{ name: "SOLAR", label: "Solar" },
|
|
37
|
-
{ name: "OTHER", label: "Other" }
|
|
38
|
-
];
|
|
39
|
-
const SHUNT_COMPENSATOR_TYPE_OPTIONS = [
|
|
40
|
-
{ name: "CAPACITOR", label: "Capacitor" },
|
|
41
|
-
{ name: "REACTOR", label: "Reactor" }
|
|
42
|
-
];
|
|
43
|
-
const LOAD_TYPE_OPTIONS = [
|
|
44
|
-
{ name: "UNDEFINED", label: "Undefined" },
|
|
45
|
-
{ name: "AUXILIARY", label: "Auxiliary" },
|
|
46
|
-
{ name: "FICTITIOUS", label: "Fictitious" }
|
|
47
|
-
];
|
|
48
|
-
const RATIO_REGULATION_MODE_OPTIONS = [
|
|
49
|
-
{ name: "VOLTAGE_REGULATION", label: "VoltageRegulation" },
|
|
50
|
-
{ name: "FIXED_RATIO", label: "FixedRatio" }
|
|
51
|
-
];
|
|
52
|
-
const PHASE_REGULATION_MODE_OPTIONS = [
|
|
53
|
-
{ name: "CURRENT_LIMITER", label: "CurrentLimiter" },
|
|
54
|
-
{ name: "ACTIVE_POWER_CONTROL", label: "ActivePowerControl" }
|
|
55
|
-
];
|
|
56
|
-
const SVAR_REGULATION_MODE_OPTIONS = [
|
|
57
|
-
{ name: "VOLTAGE", label: "regulationMode.voltage" },
|
|
58
|
-
{ name: "REACTIVE_POWER", label: "regulationMode.reactivePower" }
|
|
59
|
-
];
|
|
60
|
-
const REGULATION_TYPE_OPTIONS = [
|
|
61
|
-
{ name: "LOCAL", label: "regulationType.local" },
|
|
62
|
-
{ name: "DISTANT", label: "regulationType.distant" }
|
|
63
|
-
];
|
|
64
|
-
const CONVERTERS_MODE_OPTIONS = [
|
|
65
|
-
{
|
|
66
|
-
name: "SIDE_1_RECTIFIER_SIDE_2_INVERTER",
|
|
67
|
-
label: "side1RectifierSide2Inverter"
|
|
68
|
-
},
|
|
69
|
-
{
|
|
70
|
-
name: "SIDE_1_INVERTER_SIDE_2_RECTIFIER",
|
|
71
|
-
label: "side1InverterSide2Rectifier"
|
|
72
|
-
}
|
|
73
|
-
];
|
|
74
|
-
const OPERATOR_OPTIONS = {
|
|
75
|
-
EQUALS: { name: "=", customName: OperatorType.EQUALS, label: "equality" },
|
|
76
|
-
NOT_EQUALS: {
|
|
77
|
-
name: "!=",
|
|
78
|
-
customName: OperatorType.NOT_EQUALS,
|
|
79
|
-
label: "notEquality"
|
|
80
|
-
},
|
|
81
|
-
// Number and String
|
|
82
|
-
EXISTS: {
|
|
83
|
-
name: OperatorType.EXISTS,
|
|
84
|
-
customName: OperatorType.EXISTS,
|
|
85
|
-
label: "exists"
|
|
86
|
-
},
|
|
87
|
-
NOT_EXISTS: {
|
|
88
|
-
name: OperatorType.NOT_EXISTS,
|
|
89
|
-
customName: OperatorType.NOT_EXISTS,
|
|
90
|
-
label: "not_exists"
|
|
91
|
-
},
|
|
92
|
-
// Number
|
|
93
|
-
LOWER: { name: "<", customName: OperatorType.LOWER, label: "lessThan" },
|
|
94
|
-
LOWER_OR_EQUALS: {
|
|
95
|
-
name: "<=",
|
|
96
|
-
customName: OperatorType.LOWER_OR_EQUALS,
|
|
97
|
-
label: "lessOrEqual"
|
|
98
|
-
},
|
|
99
|
-
GREATER: {
|
|
100
|
-
name: ">",
|
|
101
|
-
customName: OperatorType.GREATER,
|
|
102
|
-
label: "greaterThan"
|
|
103
|
-
},
|
|
104
|
-
GREATER_OR_EQUALS: {
|
|
105
|
-
name: ">=",
|
|
106
|
-
customName: OperatorType.GREATER_OR_EQUALS,
|
|
107
|
-
label: "greaterOrEqual"
|
|
108
|
-
},
|
|
109
|
-
BETWEEN: {
|
|
110
|
-
name: "between",
|
|
111
|
-
customName: OperatorType.BETWEEN,
|
|
112
|
-
label: "between"
|
|
113
|
-
},
|
|
114
|
-
IN: { name: "in", customName: OperatorType.IN, label: "in" },
|
|
115
|
-
NOT_IN: { name: "notIn", customName: OperatorType.NOT_IN, label: "notIn" },
|
|
116
|
-
// String
|
|
117
|
-
IS: { name: OperatorType.IS, customName: OperatorType.IS, label: "is" },
|
|
118
|
-
CONTAINS: {
|
|
119
|
-
name: "contains",
|
|
120
|
-
customName: OperatorType.CONTAINS,
|
|
121
|
-
label: "contains"
|
|
122
|
-
},
|
|
123
|
-
BEGINS_WITH: {
|
|
124
|
-
name: "beginsWith",
|
|
125
|
-
customName: OperatorType.BEGINS_WITH,
|
|
126
|
-
label: "beginsWith"
|
|
127
|
-
},
|
|
128
|
-
ENDS_WITH: {
|
|
129
|
-
name: "endsWith",
|
|
130
|
-
customName: OperatorType.ENDS_WITH,
|
|
131
|
-
label: "endsWith"
|
|
132
|
-
},
|
|
133
|
-
IS_PART_OF: {
|
|
134
|
-
name: OperatorType.IS_PART_OF,
|
|
135
|
-
customName: OperatorType.IS_PART_OF,
|
|
136
|
-
label: "inFilter"
|
|
137
|
-
},
|
|
138
|
-
IS_NOT_PART_OF: {
|
|
139
|
-
name: OperatorType.IS_NOT_PART_OF,
|
|
140
|
-
customName: OperatorType.IS_NOT_PART_OF,
|
|
141
|
-
label: "notInFilter"
|
|
142
|
-
}
|
|
143
|
-
};
|
|
144
|
-
const COMBINATOR_OPTIONS = {
|
|
145
|
-
AND: { name: CombinatorType.AND, label: "AND" },
|
|
146
|
-
OR: { name: CombinatorType.OR, label: "OR" }
|
|
147
|
-
};
|
|
148
|
-
const FIELDS_OPTIONS = {
|
|
149
|
-
ID: {
|
|
150
|
-
name: FieldType.ID,
|
|
151
|
-
label: "id",
|
|
152
|
-
dataType: DataType.STRING
|
|
153
|
-
},
|
|
154
|
-
NAME: {
|
|
155
|
-
name: FieldType.NAME,
|
|
156
|
-
label: "name",
|
|
157
|
-
dataType: DataType.STRING
|
|
158
|
-
},
|
|
159
|
-
NOMINAL_VOLTAGE: {
|
|
160
|
-
name: FieldType.NOMINAL_VOLTAGE,
|
|
161
|
-
label: "vlNominalVoltage",
|
|
162
|
-
unit: KILO_VOLT,
|
|
163
|
-
dataType: DataType.NUMBER,
|
|
164
|
-
inputType: "number"
|
|
165
|
-
},
|
|
166
|
-
MIN_P: {
|
|
167
|
-
name: FieldType.MIN_P,
|
|
168
|
-
label: "minP",
|
|
169
|
-
unit: MEGA_WATT,
|
|
170
|
-
dataType: DataType.NUMBER,
|
|
171
|
-
inputType: "number"
|
|
172
|
-
},
|
|
173
|
-
MAX_P: {
|
|
174
|
-
name: FieldType.MAX_P,
|
|
175
|
-
label: "maxP",
|
|
176
|
-
unit: MEGA_WATT,
|
|
177
|
-
dataType: DataType.NUMBER,
|
|
178
|
-
inputType: "number"
|
|
179
|
-
},
|
|
180
|
-
P: {
|
|
181
|
-
name: FieldType.P,
|
|
182
|
-
label: "p",
|
|
183
|
-
unit: MEGA_WATT,
|
|
184
|
-
dataType: DataType.NUMBER,
|
|
185
|
-
inputType: "number"
|
|
186
|
-
},
|
|
187
|
-
Q: {
|
|
188
|
-
name: FieldType.Q,
|
|
189
|
-
label: "q",
|
|
190
|
-
unit: MEGA_WATT,
|
|
191
|
-
dataType: DataType.NUMBER,
|
|
192
|
-
inputType: "number"
|
|
193
|
-
},
|
|
194
|
-
P_ABSOLUTE: {
|
|
195
|
-
name: FieldType.P_ABSOLUTE,
|
|
196
|
-
label: "pAbsolute",
|
|
197
|
-
unit: MEGA_WATT,
|
|
198
|
-
dataType: DataType.NUMBER,
|
|
199
|
-
inputType: "number"
|
|
200
|
-
},
|
|
201
|
-
Q_ABSOLUTE: {
|
|
202
|
-
name: FieldType.Q_ABSOLUTE,
|
|
203
|
-
label: "qAbsolute",
|
|
204
|
-
unit: MEGA_WATT,
|
|
205
|
-
dataType: DataType.NUMBER,
|
|
206
|
-
inputType: "number"
|
|
207
|
-
},
|
|
208
|
-
TARGET_P: {
|
|
209
|
-
name: FieldType.TARGET_P,
|
|
210
|
-
label: "targetP",
|
|
211
|
-
unit: MEGA_WATT,
|
|
212
|
-
dataType: DataType.NUMBER,
|
|
213
|
-
inputType: "number"
|
|
214
|
-
},
|
|
215
|
-
TARGET_V: {
|
|
216
|
-
name: FieldType.TARGET_V,
|
|
217
|
-
label: "targetV",
|
|
218
|
-
unit: KILO_VOLT,
|
|
219
|
-
dataType: DataType.NUMBER,
|
|
220
|
-
inputType: "number"
|
|
221
|
-
},
|
|
222
|
-
TARGET_Q: {
|
|
223
|
-
name: FieldType.TARGET_Q,
|
|
224
|
-
label: "targetQ",
|
|
225
|
-
unit: MEGA_VAR,
|
|
226
|
-
dataType: DataType.NUMBER,
|
|
227
|
-
inputType: "number"
|
|
228
|
-
},
|
|
229
|
-
ENERGY_SOURCE: {
|
|
230
|
-
name: FieldType.ENERGY_SOURCE,
|
|
231
|
-
label: "energySource",
|
|
232
|
-
dataType: DataType.ENUM,
|
|
233
|
-
values: ENERGY_SOURCE_OPTIONS,
|
|
234
|
-
valueEditorType: "select",
|
|
235
|
-
defaultValue: "HYDRO"
|
|
236
|
-
},
|
|
237
|
-
COUNTRY: {
|
|
238
|
-
name: FieldType.COUNTRY,
|
|
239
|
-
label: "country",
|
|
240
|
-
dataType: DataType.ENUM,
|
|
241
|
-
valueEditorType: "select"
|
|
242
|
-
},
|
|
243
|
-
VOLTAGE_REGULATOR_ON: {
|
|
244
|
-
name: FieldType.VOLTAGE_REGULATOR_ON,
|
|
245
|
-
label: "voltageRegulatorOn",
|
|
246
|
-
dataType: DataType.BOOLEAN,
|
|
247
|
-
defaultValue: false,
|
|
248
|
-
valueEditorType: "switch"
|
|
249
|
-
},
|
|
250
|
-
PLANNED_ACTIVE_POWER_SET_POINT: {
|
|
251
|
-
name: FieldType.PLANNED_ACTIVE_POWER_SET_POINT,
|
|
252
|
-
label: "PlannedActivePowerSetPoint",
|
|
253
|
-
unit: MEGA_WATT,
|
|
254
|
-
dataType: DataType.NUMBER,
|
|
255
|
-
inputType: "number"
|
|
256
|
-
},
|
|
257
|
-
CONNECTED: {
|
|
258
|
-
name: FieldType.CONNECTED,
|
|
259
|
-
label: "connected",
|
|
260
|
-
dataType: DataType.BOOLEAN,
|
|
261
|
-
defaultValue: false,
|
|
262
|
-
valueEditorType: "switch"
|
|
263
|
-
},
|
|
264
|
-
RATED_S: {
|
|
265
|
-
name: FieldType.RATED_S,
|
|
266
|
-
label: "ratedS",
|
|
267
|
-
unit: MEGA_VOLT_AMPERE,
|
|
268
|
-
dataType: DataType.NUMBER,
|
|
269
|
-
inputType: "number"
|
|
270
|
-
},
|
|
271
|
-
RATED_S1: {
|
|
272
|
-
name: FieldType.RATED_S1,
|
|
273
|
-
label: "ratedS1",
|
|
274
|
-
unit: MEGA_VOLT_AMPERE,
|
|
275
|
-
dataType: DataType.NUMBER,
|
|
276
|
-
inputType: "number"
|
|
277
|
-
},
|
|
278
|
-
RATED_S2: {
|
|
279
|
-
name: FieldType.RATED_S2,
|
|
280
|
-
label: "ratedS2",
|
|
281
|
-
unit: MEGA_VOLT_AMPERE,
|
|
282
|
-
dataType: DataType.NUMBER,
|
|
283
|
-
inputType: "number"
|
|
284
|
-
},
|
|
285
|
-
RATED_S3: {
|
|
286
|
-
name: FieldType.RATED_S3,
|
|
287
|
-
label: "ratedS3",
|
|
288
|
-
unit: MEGA_VOLT_AMPERE,
|
|
289
|
-
dataType: DataType.NUMBER,
|
|
290
|
-
inputType: "number"
|
|
291
|
-
},
|
|
292
|
-
MARGINAL_COST: {
|
|
293
|
-
name: FieldType.MARGINAL_COST,
|
|
294
|
-
label: "marginalCost",
|
|
295
|
-
dataType: DataType.NUMBER,
|
|
296
|
-
inputType: "number"
|
|
297
|
-
},
|
|
298
|
-
PLANNED_OUTAGE_RATE: {
|
|
299
|
-
name: FieldType.PLANNED_OUTAGE_RATE,
|
|
300
|
-
label: "plannedOutageRate",
|
|
301
|
-
dataType: DataType.NUMBER,
|
|
302
|
-
inputType: "number"
|
|
303
|
-
},
|
|
304
|
-
FORCED_OUTAGE_RATE: {
|
|
305
|
-
name: FieldType.FORCED_OUTAGE_RATE,
|
|
306
|
-
label: "forcedOutageRate",
|
|
307
|
-
dataType: DataType.NUMBER,
|
|
308
|
-
inputType: "number"
|
|
309
|
-
},
|
|
310
|
-
VOLTAGE_LEVEL_ID: {
|
|
311
|
-
name: FieldType.VOLTAGE_LEVEL_ID,
|
|
312
|
-
label: "vlId",
|
|
313
|
-
dataType: DataType.STRING
|
|
314
|
-
},
|
|
315
|
-
P0: {
|
|
316
|
-
name: FieldType.P0,
|
|
317
|
-
label: "p0",
|
|
318
|
-
unit: MEGA_WATT,
|
|
319
|
-
dataType: DataType.NUMBER,
|
|
320
|
-
inputType: "number"
|
|
321
|
-
},
|
|
322
|
-
Q0: {
|
|
323
|
-
name: FieldType.Q0,
|
|
324
|
-
label: "q0",
|
|
325
|
-
unit: MEGA_VAR,
|
|
326
|
-
dataType: DataType.NUMBER,
|
|
327
|
-
inputType: "number"
|
|
328
|
-
},
|
|
329
|
-
LOW_VOLTAGE_LIMIT: {
|
|
330
|
-
name: FieldType.LOW_VOLTAGE_LIMIT,
|
|
331
|
-
label: "lowVoltageLimit",
|
|
332
|
-
unit: KILO_VOLT,
|
|
333
|
-
dataType: DataType.NUMBER,
|
|
334
|
-
inputType: "number"
|
|
335
|
-
},
|
|
336
|
-
HIGH_VOLTAGE_LIMIT: {
|
|
337
|
-
name: FieldType.HIGH_VOLTAGE_LIMIT,
|
|
338
|
-
label: "highVoltageLimit",
|
|
339
|
-
unit: KILO_VOLT,
|
|
340
|
-
dataType: DataType.NUMBER,
|
|
341
|
-
inputType: "number"
|
|
342
|
-
},
|
|
343
|
-
MAXIMUM_SECTION_COUNT: {
|
|
344
|
-
name: FieldType.MAXIMUM_SECTION_COUNT,
|
|
345
|
-
label: "maximumSectionCount",
|
|
346
|
-
dataType: DataType.NUMBER,
|
|
347
|
-
inputType: "number"
|
|
348
|
-
},
|
|
349
|
-
SECTION_COUNT: {
|
|
350
|
-
name: FieldType.SECTION_COUNT,
|
|
351
|
-
label: "sectionCount",
|
|
352
|
-
dataType: DataType.NUMBER,
|
|
353
|
-
inputType: "number"
|
|
354
|
-
},
|
|
355
|
-
SHUNT_COMPENSATOR_TYPE: {
|
|
356
|
-
name: FieldType.SHUNT_COMPENSATOR_TYPE,
|
|
357
|
-
label: "shuntCompensatorType",
|
|
358
|
-
dataType: DataType.ENUM,
|
|
359
|
-
values: SHUNT_COMPENSATOR_TYPE_OPTIONS,
|
|
360
|
-
valueEditorType: "select",
|
|
361
|
-
defaultValue: "CAPACITOR"
|
|
362
|
-
},
|
|
363
|
-
MAX_Q_AT_NOMINAL_V: {
|
|
364
|
-
name: FieldType.MAX_Q_AT_NOMINAL_V,
|
|
365
|
-
label: "maxQAtNominalV",
|
|
366
|
-
unit: MEGA_VAR,
|
|
367
|
-
dataType: DataType.NUMBER,
|
|
368
|
-
inputType: "number"
|
|
369
|
-
},
|
|
370
|
-
MIN_Q_AT_NOMINAL_V: {
|
|
371
|
-
name: FieldType.MIN_Q_AT_NOMINAL_V,
|
|
372
|
-
label: "minQAtNominalV",
|
|
373
|
-
unit: MEGA_VAR,
|
|
374
|
-
dataType: DataType.NUMBER,
|
|
375
|
-
inputType: "number"
|
|
376
|
-
},
|
|
377
|
-
FIX_Q_AT_NOMINAL_V: {
|
|
378
|
-
name: FieldType.FIX_Q_AT_NOMINAL_V,
|
|
379
|
-
label: "fixQAtNominalV",
|
|
380
|
-
unit: MEGA_VAR,
|
|
381
|
-
dataType: DataType.NUMBER,
|
|
382
|
-
inputType: "number"
|
|
383
|
-
},
|
|
384
|
-
SWITCHED_ON_Q_AT_NOMINAL_V: {
|
|
385
|
-
name: FieldType.SWITCHED_ON_Q_AT_NOMINAL_V,
|
|
386
|
-
label: "SwitchedOnMaxQAtNominalV",
|
|
387
|
-
unit: MEGA_VAR,
|
|
388
|
-
dataType: DataType.NUMBER,
|
|
389
|
-
inputType: "number"
|
|
390
|
-
},
|
|
391
|
-
MAX_SUSCEPTANCE: {
|
|
392
|
-
name: FieldType.MAX_SUSCEPTANCE,
|
|
393
|
-
label: "maxSusceptance",
|
|
394
|
-
unit: SIEMENS,
|
|
395
|
-
dataType: DataType.NUMBER,
|
|
396
|
-
inputType: "number"
|
|
397
|
-
},
|
|
398
|
-
MIN_SUSCEPTANCE: {
|
|
399
|
-
name: FieldType.MIN_SUSCEPTANCE,
|
|
400
|
-
label: "minSusceptance",
|
|
401
|
-
unit: SIEMENS,
|
|
402
|
-
dataType: DataType.NUMBER,
|
|
403
|
-
inputType: "number"
|
|
404
|
-
},
|
|
405
|
-
SWITCHED_ON_SUSCEPTANCE: {
|
|
406
|
-
name: FieldType.SWITCHED_ON_SUSCEPTANCE,
|
|
407
|
-
label: "SwitchedOnMaxSusceptance",
|
|
408
|
-
unit: SIEMENS,
|
|
409
|
-
dataType: DataType.NUMBER,
|
|
410
|
-
inputType: "number"
|
|
411
|
-
},
|
|
412
|
-
CONNECTED_1: {
|
|
413
|
-
name: FieldType.CONNECTED_1,
|
|
414
|
-
label: "terminal1Connected",
|
|
415
|
-
dataType: DataType.BOOLEAN,
|
|
416
|
-
defaultValue: false,
|
|
417
|
-
valueEditorType: "switch"
|
|
418
|
-
},
|
|
419
|
-
CONNECTED_2: {
|
|
420
|
-
name: FieldType.CONNECTED_2,
|
|
421
|
-
label: "terminal2Connected",
|
|
422
|
-
dataType: DataType.BOOLEAN,
|
|
423
|
-
defaultValue: false,
|
|
424
|
-
valueEditorType: "switch"
|
|
425
|
-
},
|
|
426
|
-
CONNECTED_3: {
|
|
427
|
-
name: FieldType.CONNECTED_3,
|
|
428
|
-
label: "terminal3ConnectedTwt",
|
|
429
|
-
dataType: DataType.BOOLEAN,
|
|
430
|
-
defaultValue: false,
|
|
431
|
-
valueEditorType: "switch"
|
|
432
|
-
},
|
|
433
|
-
VOLTAGE_LEVEL_ID_1: {
|
|
434
|
-
name: FieldType.VOLTAGE_LEVEL_ID_1,
|
|
435
|
-
label: "voltageLevelId1",
|
|
436
|
-
dataType: DataType.STRING
|
|
437
|
-
},
|
|
438
|
-
VOLTAGE_LEVEL_ID_2: {
|
|
439
|
-
name: FieldType.VOLTAGE_LEVEL_ID_2,
|
|
440
|
-
label: "voltageLevelId2",
|
|
441
|
-
dataType: DataType.STRING
|
|
442
|
-
},
|
|
443
|
-
VOLTAGE_LEVEL_ID_3: {
|
|
444
|
-
name: FieldType.VOLTAGE_LEVEL_ID_3,
|
|
445
|
-
label: "voltageLevelId3Twt",
|
|
446
|
-
dataType: DataType.STRING
|
|
447
|
-
},
|
|
448
|
-
NOMINAL_VOLTAGE_1: {
|
|
449
|
-
name: FieldType.NOMINAL_VOLTAGE_1,
|
|
450
|
-
label: "nominalVoltage1KV",
|
|
451
|
-
unit: KILO_VOLT,
|
|
452
|
-
dataType: DataType.NUMBER,
|
|
453
|
-
inputType: "number"
|
|
454
|
-
},
|
|
455
|
-
NOMINAL_VOLTAGE_2: {
|
|
456
|
-
name: FieldType.NOMINAL_VOLTAGE_2,
|
|
457
|
-
label: "nominalVoltage2KV",
|
|
458
|
-
unit: KILO_VOLT,
|
|
459
|
-
dataType: DataType.NUMBER,
|
|
460
|
-
inputType: "number"
|
|
461
|
-
},
|
|
462
|
-
NOMINAL_VOLTAGE_3: {
|
|
463
|
-
name: FieldType.NOMINAL_VOLTAGE_3,
|
|
464
|
-
label: "nominalVoltage3KVTwt",
|
|
465
|
-
unit: KILO_VOLT,
|
|
466
|
-
dataType: DataType.NUMBER,
|
|
467
|
-
inputType: "number"
|
|
468
|
-
},
|
|
469
|
-
RATED_VOLTAGE_1: {
|
|
470
|
-
name: FieldType.RATED_VOLTAGE_1,
|
|
471
|
-
label: "ratedVoltage1KV",
|
|
472
|
-
unit: KILO_VOLT,
|
|
473
|
-
dataType: DataType.NUMBER,
|
|
474
|
-
inputType: "number"
|
|
475
|
-
},
|
|
476
|
-
RATED_VOLTAGE_2: {
|
|
477
|
-
name: FieldType.RATED_VOLTAGE_2,
|
|
478
|
-
label: "ratedVoltage2KV",
|
|
479
|
-
unit: KILO_VOLT,
|
|
480
|
-
dataType: DataType.NUMBER,
|
|
481
|
-
inputType: "number"
|
|
482
|
-
},
|
|
483
|
-
RATED_VOLTAGE_0: {
|
|
484
|
-
name: FieldType.RATED_VOLTAGE_0,
|
|
485
|
-
label: "ratedVoltage0KVTwt",
|
|
486
|
-
unit: KILO_VOLT,
|
|
487
|
-
dataType: DataType.NUMBER,
|
|
488
|
-
inputType: "number"
|
|
489
|
-
},
|
|
490
|
-
RATED_VOLTAGE_3: {
|
|
491
|
-
name: FieldType.RATED_VOLTAGE_3,
|
|
492
|
-
label: "ratedVoltage3KVTwt",
|
|
493
|
-
unit: KILO_VOLT,
|
|
494
|
-
dataType: DataType.NUMBER,
|
|
495
|
-
inputType: "number"
|
|
496
|
-
},
|
|
497
|
-
COUNTRY_1: {
|
|
498
|
-
name: FieldType.COUNTRY_1,
|
|
499
|
-
label: "country1",
|
|
500
|
-
dataType: DataType.ENUM,
|
|
501
|
-
valueEditorType: "select"
|
|
502
|
-
},
|
|
503
|
-
COUNTRY_2: {
|
|
504
|
-
name: FieldType.COUNTRY_2,
|
|
505
|
-
label: "country2",
|
|
506
|
-
dataType: DataType.ENUM,
|
|
507
|
-
valueEditorType: "select"
|
|
508
|
-
},
|
|
509
|
-
SERIE_RESISTANCE: {
|
|
510
|
-
name: FieldType.SERIE_RESISTANCE,
|
|
511
|
-
label: "seriesResistance",
|
|
512
|
-
unit: OHM,
|
|
513
|
-
dataType: DataType.NUMBER,
|
|
514
|
-
inputType: "number"
|
|
515
|
-
},
|
|
516
|
-
SERIE_RESISTANCE_1: {
|
|
517
|
-
name: FieldType.SERIE_RESISTANCE_1,
|
|
518
|
-
label: "seriesResistance1",
|
|
519
|
-
unit: OHM,
|
|
520
|
-
dataType: DataType.NUMBER,
|
|
521
|
-
inputType: "number"
|
|
522
|
-
},
|
|
523
|
-
SERIE_RESISTANCE_2: {
|
|
524
|
-
name: FieldType.SERIE_RESISTANCE_2,
|
|
525
|
-
label: "seriesResistance2",
|
|
526
|
-
unit: OHM,
|
|
527
|
-
dataType: DataType.NUMBER,
|
|
528
|
-
inputType: "number"
|
|
529
|
-
},
|
|
530
|
-
SERIE_RESISTANCE_3: {
|
|
531
|
-
name: FieldType.SERIE_RESISTANCE_3,
|
|
532
|
-
label: "seriesResistance3",
|
|
533
|
-
unit: OHM,
|
|
534
|
-
dataType: DataType.NUMBER,
|
|
535
|
-
inputType: "number"
|
|
536
|
-
},
|
|
537
|
-
SERIE_REACTANCE: {
|
|
538
|
-
name: FieldType.SERIE_REACTANCE,
|
|
539
|
-
label: "seriesReactance",
|
|
540
|
-
unit: OHM,
|
|
541
|
-
dataType: DataType.NUMBER,
|
|
542
|
-
inputType: "number"
|
|
543
|
-
},
|
|
544
|
-
SERIE_REACTANCE_1: {
|
|
545
|
-
name: FieldType.SERIE_REACTANCE_1,
|
|
546
|
-
label: "seriesReactance1",
|
|
547
|
-
unit: OHM,
|
|
548
|
-
dataType: DataType.NUMBER,
|
|
549
|
-
inputType: "number"
|
|
550
|
-
},
|
|
551
|
-
SERIE_REACTANCE_2: {
|
|
552
|
-
name: FieldType.SERIE_REACTANCE_2,
|
|
553
|
-
label: "seriesReactance2",
|
|
554
|
-
unit: OHM,
|
|
555
|
-
dataType: DataType.NUMBER,
|
|
556
|
-
inputType: "number"
|
|
557
|
-
},
|
|
558
|
-
SERIE_REACTANCE_3: {
|
|
559
|
-
name: FieldType.SERIE_REACTANCE_3,
|
|
560
|
-
label: "seriesReactance3",
|
|
561
|
-
unit: OHM,
|
|
562
|
-
dataType: DataType.NUMBER,
|
|
563
|
-
inputType: "number"
|
|
564
|
-
},
|
|
565
|
-
SHUNT_CONDUCTANCE_1: {
|
|
566
|
-
name: FieldType.SHUNT_CONDUCTANCE_1,
|
|
567
|
-
label: "shuntConductance1",
|
|
568
|
-
unit: MICRO_SIEMENS,
|
|
569
|
-
dataType: DataType.NUMBER,
|
|
570
|
-
inputType: "number"
|
|
571
|
-
},
|
|
572
|
-
SHUNT_CONDUCTANCE_2: {
|
|
573
|
-
name: FieldType.SHUNT_CONDUCTANCE_2,
|
|
574
|
-
label: "shuntConductance2",
|
|
575
|
-
unit: MICRO_SIEMENS,
|
|
576
|
-
dataType: DataType.NUMBER,
|
|
577
|
-
inputType: "number"
|
|
578
|
-
},
|
|
579
|
-
SHUNT_SUSCEPTANCE_1: {
|
|
580
|
-
name: FieldType.SHUNT_SUSCEPTANCE_1,
|
|
581
|
-
label: "shuntSusceptance1",
|
|
582
|
-
unit: MICRO_SIEMENS,
|
|
583
|
-
dataType: DataType.NUMBER,
|
|
584
|
-
inputType: "number"
|
|
585
|
-
},
|
|
586
|
-
SHUNT_SUSCEPTANCE_2: {
|
|
587
|
-
name: FieldType.SHUNT_SUSCEPTANCE_2,
|
|
588
|
-
label: "shuntSusceptance2",
|
|
589
|
-
unit: MICRO_SIEMENS,
|
|
590
|
-
dataType: DataType.NUMBER,
|
|
591
|
-
inputType: "number"
|
|
592
|
-
},
|
|
593
|
-
MAGNETIZING_CONDUCTANCE: {
|
|
594
|
-
name: FieldType.MAGNETIZING_CONDUCTANCE,
|
|
595
|
-
label: "magnetizingConductance",
|
|
596
|
-
unit: MICRO_SIEMENS,
|
|
597
|
-
dataType: DataType.NUMBER,
|
|
598
|
-
inputType: "number"
|
|
599
|
-
},
|
|
600
|
-
MAGNETIZING_CONDUCTANCE_1: {
|
|
601
|
-
name: FieldType.MAGNETIZING_CONDUCTANCE_1,
|
|
602
|
-
label: "magnetizingConductance1",
|
|
603
|
-
unit: MICRO_SIEMENS,
|
|
604
|
-
dataType: DataType.NUMBER,
|
|
605
|
-
inputType: "number"
|
|
606
|
-
},
|
|
607
|
-
MAGNETIZING_CONDUCTANCE_2: {
|
|
608
|
-
name: FieldType.MAGNETIZING_CONDUCTANCE_2,
|
|
609
|
-
label: "magnetizingConductance2",
|
|
610
|
-
unit: MICRO_SIEMENS,
|
|
611
|
-
dataType: DataType.NUMBER,
|
|
612
|
-
inputType: "number"
|
|
613
|
-
},
|
|
614
|
-
MAGNETIZING_CONDUCTANCE_3: {
|
|
615
|
-
name: FieldType.MAGNETIZING_CONDUCTANCE_3,
|
|
616
|
-
label: "magnetizingConductance3",
|
|
617
|
-
unit: MICRO_SIEMENS,
|
|
618
|
-
dataType: DataType.NUMBER,
|
|
619
|
-
inputType: "number"
|
|
620
|
-
},
|
|
621
|
-
MAGNETIZING_SUSCEPTANCE: {
|
|
622
|
-
name: FieldType.MAGNETIZING_SUSCEPTANCE,
|
|
623
|
-
label: "magnetizingSusceptance",
|
|
624
|
-
unit: MICRO_SIEMENS,
|
|
625
|
-
dataType: DataType.NUMBER,
|
|
626
|
-
inputType: "number"
|
|
627
|
-
},
|
|
628
|
-
MAGNETIZING_SUSCEPTANCE_1: {
|
|
629
|
-
name: FieldType.MAGNETIZING_SUSCEPTANCE_1,
|
|
630
|
-
label: "magnetizingSusceptance1",
|
|
631
|
-
unit: MICRO_SIEMENS,
|
|
632
|
-
dataType: DataType.NUMBER,
|
|
633
|
-
inputType: "number"
|
|
634
|
-
},
|
|
635
|
-
MAGNETIZING_SUSCEPTANCE_2: {
|
|
636
|
-
name: FieldType.MAGNETIZING_SUSCEPTANCE_2,
|
|
637
|
-
label: "magnetizingSusceptance2",
|
|
638
|
-
unit: MICRO_SIEMENS,
|
|
639
|
-
dataType: DataType.NUMBER,
|
|
640
|
-
inputType: "number"
|
|
641
|
-
},
|
|
642
|
-
MAGNETIZING_SUSCEPTANCE_3: {
|
|
643
|
-
name: FieldType.MAGNETIZING_SUSCEPTANCE_3,
|
|
644
|
-
label: "magnetizingSusceptance3",
|
|
645
|
-
unit: MICRO_SIEMENS,
|
|
646
|
-
dataType: DataType.NUMBER,
|
|
647
|
-
inputType: "number"
|
|
648
|
-
},
|
|
649
|
-
LOAD_TYPE: {
|
|
650
|
-
name: FieldType.LOAD_TYPE,
|
|
651
|
-
label: "loadType",
|
|
652
|
-
dataType: DataType.ENUM,
|
|
653
|
-
values: LOAD_TYPE_OPTIONS,
|
|
654
|
-
valueEditorType: "select",
|
|
655
|
-
defaultValue: "UNDEFINED"
|
|
656
|
-
},
|
|
657
|
-
HAS_RATIO_TAP_CHANGER: {
|
|
658
|
-
name: FieldType.HAS_RATIO_TAP_CHANGER,
|
|
659
|
-
label: "hasRatioTapChanger",
|
|
660
|
-
dataType: DataType.BOOLEAN,
|
|
661
|
-
defaultValue: false,
|
|
662
|
-
valueEditorType: "switch"
|
|
663
|
-
},
|
|
664
|
-
HAS_RATIO_TAP_CHANGER_1: {
|
|
665
|
-
name: FieldType.HAS_RATIO_TAP_CHANGER_1,
|
|
666
|
-
label: "hasRatioTapChanger1",
|
|
667
|
-
dataType: DataType.BOOLEAN,
|
|
668
|
-
defaultValue: false,
|
|
669
|
-
valueEditorType: "switch"
|
|
670
|
-
},
|
|
671
|
-
HAS_RATIO_TAP_CHANGER_2: {
|
|
672
|
-
name: FieldType.HAS_RATIO_TAP_CHANGER_2,
|
|
673
|
-
label: "hasRatioTapChanger2",
|
|
674
|
-
dataType: DataType.BOOLEAN,
|
|
675
|
-
defaultValue: false,
|
|
676
|
-
valueEditorType: "switch"
|
|
677
|
-
},
|
|
678
|
-
HAS_RATIO_TAP_CHANGER_3: {
|
|
679
|
-
name: FieldType.HAS_RATIO_TAP_CHANGER_3,
|
|
680
|
-
label: "hasRatioTapChanger3",
|
|
681
|
-
dataType: DataType.BOOLEAN,
|
|
682
|
-
defaultValue: false,
|
|
683
|
-
valueEditorType: "switch"
|
|
684
|
-
},
|
|
685
|
-
LOAD_TAP_CHANGING_CAPABILITIES: {
|
|
686
|
-
name: FieldType.LOAD_TAP_CHANGING_CAPABILITIES,
|
|
687
|
-
label: "loadTapChangingCapabilities",
|
|
688
|
-
dataType: DataType.BOOLEAN,
|
|
689
|
-
defaultValue: false,
|
|
690
|
-
valueEditorType: "switch"
|
|
691
|
-
},
|
|
692
|
-
LOAD_TAP_CHANGING_CAPABILITIES_1: {
|
|
693
|
-
name: FieldType.LOAD_TAP_CHANGING_CAPABILITIES_1,
|
|
694
|
-
label: "loadTapChangingCapabilities1",
|
|
695
|
-
dataType: DataType.BOOLEAN,
|
|
696
|
-
defaultValue: false,
|
|
697
|
-
valueEditorType: "switch"
|
|
698
|
-
},
|
|
699
|
-
LOAD_TAP_CHANGING_CAPABILITIES_2: {
|
|
700
|
-
name: FieldType.LOAD_TAP_CHANGING_CAPABILITIES_2,
|
|
701
|
-
label: "loadTapChangingCapabilities2",
|
|
702
|
-
dataType: DataType.BOOLEAN,
|
|
703
|
-
defaultValue: false,
|
|
704
|
-
valueEditorType: "switch"
|
|
705
|
-
},
|
|
706
|
-
LOAD_TAP_CHANGING_CAPABILITIES_3: {
|
|
707
|
-
name: FieldType.LOAD_TAP_CHANGING_CAPABILITIES_3,
|
|
708
|
-
label: "loadTapChangingCapabilities3",
|
|
709
|
-
dataType: DataType.BOOLEAN,
|
|
710
|
-
defaultValue: false,
|
|
711
|
-
valueEditorType: "switch"
|
|
712
|
-
},
|
|
713
|
-
RATIO_REGULATION_MODE: {
|
|
714
|
-
name: FieldType.RATIO_REGULATION_MODE,
|
|
715
|
-
label: "ratioRegulationMode",
|
|
716
|
-
dataType: DataType.ENUM,
|
|
717
|
-
values: RATIO_REGULATION_MODE_OPTIONS,
|
|
718
|
-
valueEditorType: "select",
|
|
719
|
-
defaultValue: "VOLTAGE_REGULATION"
|
|
720
|
-
},
|
|
721
|
-
RATIO_REGULATION_MODE_1: {
|
|
722
|
-
name: FieldType.RATIO_REGULATION_MODE_1,
|
|
723
|
-
label: "ratioRegulationMode1",
|
|
724
|
-
dataType: DataType.ENUM,
|
|
725
|
-
values: RATIO_REGULATION_MODE_OPTIONS,
|
|
726
|
-
valueEditorType: "select",
|
|
727
|
-
defaultValue: "VOLTAGE_REGULATION"
|
|
728
|
-
},
|
|
729
|
-
RATIO_REGULATION_MODE_2: {
|
|
730
|
-
name: FieldType.RATIO_REGULATION_MODE_2,
|
|
731
|
-
label: "ratioRegulationMode2",
|
|
732
|
-
dataType: DataType.ENUM,
|
|
733
|
-
values: RATIO_REGULATION_MODE_OPTIONS,
|
|
734
|
-
valueEditorType: "select",
|
|
735
|
-
defaultValue: "VOLTAGE_REGULATION"
|
|
736
|
-
},
|
|
737
|
-
RATIO_REGULATION_MODE_3: {
|
|
738
|
-
name: FieldType.RATIO_REGULATION_MODE_3,
|
|
739
|
-
label: "ratioRegulationMode3",
|
|
740
|
-
dataType: DataType.ENUM,
|
|
741
|
-
values: RATIO_REGULATION_MODE_OPTIONS,
|
|
742
|
-
valueEditorType: "select",
|
|
743
|
-
defaultValue: "VOLTAGE_REGULATION"
|
|
744
|
-
},
|
|
745
|
-
RATIO_TARGET_V: {
|
|
746
|
-
name: FieldType.RATIO_TARGET_V,
|
|
747
|
-
label: "ratioTargetV",
|
|
748
|
-
unit: KILO_VOLT,
|
|
749
|
-
dataType: DataType.NUMBER,
|
|
750
|
-
inputType: "number"
|
|
751
|
-
},
|
|
752
|
-
RATIO_TARGET_V1: {
|
|
753
|
-
name: FieldType.RATIO_TARGET_V1,
|
|
754
|
-
label: "ratioTargetV1",
|
|
755
|
-
unit: KILO_VOLT,
|
|
756
|
-
dataType: DataType.NUMBER,
|
|
757
|
-
inputType: "number"
|
|
758
|
-
},
|
|
759
|
-
RATIO_TARGET_V2: {
|
|
760
|
-
name: FieldType.RATIO_TARGET_V2,
|
|
761
|
-
label: "ratioTargetV2",
|
|
762
|
-
unit: KILO_VOLT,
|
|
763
|
-
dataType: DataType.NUMBER,
|
|
764
|
-
inputType: "number"
|
|
765
|
-
},
|
|
766
|
-
RATIO_TARGET_V3: {
|
|
767
|
-
name: FieldType.RATIO_TARGET_V3,
|
|
768
|
-
label: "ratioTargetV3",
|
|
769
|
-
unit: KILO_VOLT,
|
|
770
|
-
dataType: DataType.NUMBER,
|
|
771
|
-
inputType: "number"
|
|
772
|
-
},
|
|
773
|
-
HAS_PHASE_TAP_CHANGER: {
|
|
774
|
-
name: FieldType.HAS_PHASE_TAP_CHANGER,
|
|
775
|
-
label: "hasPhaseTapChanger",
|
|
776
|
-
dataType: DataType.BOOLEAN,
|
|
777
|
-
defaultValue: false,
|
|
778
|
-
valueEditorType: "switch"
|
|
779
|
-
},
|
|
780
|
-
HAS_PHASE_TAP_CHANGER_1: {
|
|
781
|
-
name: FieldType.HAS_PHASE_TAP_CHANGER_1,
|
|
782
|
-
label: "hasPhaseTapChanger1",
|
|
783
|
-
dataType: DataType.BOOLEAN,
|
|
784
|
-
defaultValue: false,
|
|
785
|
-
valueEditorType: "switch"
|
|
786
|
-
},
|
|
787
|
-
HAS_PHASE_TAP_CHANGER_2: {
|
|
788
|
-
name: FieldType.HAS_PHASE_TAP_CHANGER_2,
|
|
789
|
-
label: "hasPhaseTapChanger2",
|
|
790
|
-
dataType: DataType.BOOLEAN,
|
|
791
|
-
defaultValue: false,
|
|
792
|
-
valueEditorType: "switch"
|
|
793
|
-
},
|
|
794
|
-
HAS_PHASE_TAP_CHANGER_3: {
|
|
795
|
-
name: FieldType.HAS_PHASE_TAP_CHANGER_3,
|
|
796
|
-
label: "hasPhaseTapChanger3",
|
|
797
|
-
dataType: DataType.BOOLEAN,
|
|
798
|
-
defaultValue: false,
|
|
799
|
-
valueEditorType: "switch"
|
|
800
|
-
},
|
|
801
|
-
PHASE_REGULATION_MODE: {
|
|
802
|
-
name: FieldType.PHASE_REGULATION_MODE,
|
|
803
|
-
label: "phaseRegulationMode",
|
|
804
|
-
dataType: DataType.ENUM,
|
|
805
|
-
values: PHASE_REGULATION_MODE_OPTIONS,
|
|
806
|
-
valueEditorType: "select",
|
|
807
|
-
defaultValue: "CURRENT_LIMITER"
|
|
808
|
-
},
|
|
809
|
-
PHASE_REGULATION_MODE_1: {
|
|
810
|
-
name: FieldType.PHASE_REGULATION_MODE_1,
|
|
811
|
-
label: "phaseRegulationMode1",
|
|
812
|
-
dataType: DataType.ENUM,
|
|
813
|
-
values: PHASE_REGULATION_MODE_OPTIONS,
|
|
814
|
-
valueEditorType: "select",
|
|
815
|
-
defaultValue: "CURRENT_LIMITER"
|
|
816
|
-
},
|
|
817
|
-
PHASE_REGULATION_MODE_2: {
|
|
818
|
-
name: FieldType.PHASE_REGULATION_MODE_2,
|
|
819
|
-
label: "phaseRegulationMode2",
|
|
820
|
-
dataType: DataType.ENUM,
|
|
821
|
-
values: PHASE_REGULATION_MODE_OPTIONS,
|
|
822
|
-
valueEditorType: "select",
|
|
823
|
-
defaultValue: "CURRENT_LIMITER"
|
|
824
|
-
},
|
|
825
|
-
PHASE_REGULATION_MODE_3: {
|
|
826
|
-
name: FieldType.PHASE_REGULATION_MODE_3,
|
|
827
|
-
label: "phaseRegulationMode3",
|
|
828
|
-
dataType: DataType.ENUM,
|
|
829
|
-
values: PHASE_REGULATION_MODE_OPTIONS,
|
|
830
|
-
valueEditorType: "select",
|
|
831
|
-
defaultValue: "CURRENT_LIMITER"
|
|
832
|
-
},
|
|
833
|
-
PHASE_REGULATION_VALUE: {
|
|
834
|
-
name: FieldType.PHASE_REGULATION_VALUE,
|
|
835
|
-
label: "phaseRegulationValue",
|
|
836
|
-
dataType: DataType.NUMBER,
|
|
837
|
-
inputType: "number"
|
|
838
|
-
},
|
|
839
|
-
PHASE_REGULATION_VALUE_1: {
|
|
840
|
-
name: FieldType.PHASE_REGULATION_VALUE_1,
|
|
841
|
-
label: "phaseRegulationValue1",
|
|
842
|
-
dataType: DataType.NUMBER,
|
|
843
|
-
inputType: "number"
|
|
844
|
-
},
|
|
845
|
-
PHASE_REGULATION_VALUE_2: {
|
|
846
|
-
name: FieldType.PHASE_REGULATION_VALUE_2,
|
|
847
|
-
label: "phaseRegulationValue2",
|
|
848
|
-
dataType: DataType.NUMBER,
|
|
849
|
-
inputType: "number"
|
|
850
|
-
},
|
|
851
|
-
PHASE_REGULATION_VALUE_3: {
|
|
852
|
-
name: FieldType.PHASE_REGULATION_VALUE_3,
|
|
853
|
-
label: "phaseRegulationValue3",
|
|
854
|
-
dataType: DataType.NUMBER,
|
|
855
|
-
inputType: "number"
|
|
856
|
-
},
|
|
857
|
-
PROPERTY: {
|
|
858
|
-
name: FieldType.FREE_PROPERTIES,
|
|
859
|
-
label: "property",
|
|
860
|
-
dataType: DataType.PROPERTY,
|
|
861
|
-
valueEditorType: "select",
|
|
862
|
-
defaultValue: ""
|
|
863
|
-
},
|
|
864
|
-
SUBSTATION_PROPERTY: {
|
|
865
|
-
name: FieldType.SUBSTATION_PROPERTIES,
|
|
866
|
-
label: "substationProperty",
|
|
867
|
-
dataType: DataType.PROPERTY,
|
|
868
|
-
valueEditorType: "select",
|
|
869
|
-
defaultValue: ""
|
|
870
|
-
},
|
|
871
|
-
SUBSTATION_PROPERTY_1: {
|
|
872
|
-
name: FieldType.SUBSTATION_PROPERTIES_1,
|
|
873
|
-
label: "substationProperty1",
|
|
874
|
-
dataType: DataType.PROPERTY,
|
|
875
|
-
valueEditorType: "select",
|
|
876
|
-
defaultValue: ""
|
|
877
|
-
},
|
|
878
|
-
SUBSTATION_PROPERTY_2: {
|
|
879
|
-
name: FieldType.SUBSTATION_PROPERTIES_2,
|
|
880
|
-
label: "substationProperty2",
|
|
881
|
-
dataType: DataType.PROPERTY,
|
|
882
|
-
valueEditorType: "select",
|
|
883
|
-
defaultValue: ""
|
|
884
|
-
},
|
|
885
|
-
VOLTAGE_LEVEL_PROPERTY: {
|
|
886
|
-
name: FieldType.VOLTAGE_LEVEL_PROPERTIES,
|
|
887
|
-
label: "voltageLevelProperty",
|
|
888
|
-
dataType: DataType.PROPERTY,
|
|
889
|
-
valueEditorType: "select",
|
|
890
|
-
defaultValue: ""
|
|
891
|
-
},
|
|
892
|
-
VOLTAGE_LEVEL_PROPERTY_1: {
|
|
893
|
-
name: FieldType.VOLTAGE_LEVEL_PROPERTIES_1,
|
|
894
|
-
label: "voltageLevelProperty1",
|
|
895
|
-
dataType: DataType.PROPERTY,
|
|
896
|
-
valueEditorType: "select",
|
|
897
|
-
defaultValue: ""
|
|
898
|
-
},
|
|
899
|
-
VOLTAGE_LEVEL_PROPERTY_2: {
|
|
900
|
-
name: FieldType.VOLTAGE_LEVEL_PROPERTIES_2,
|
|
901
|
-
label: "voltageLevelProperty2",
|
|
902
|
-
dataType: DataType.PROPERTY,
|
|
903
|
-
valueEditorType: "select",
|
|
904
|
-
defaultValue: ""
|
|
905
|
-
},
|
|
906
|
-
VOLTAGE_LEVEL_PROPERTY_3: {
|
|
907
|
-
name: FieldType.VOLTAGE_LEVEL_PROPERTIES_3,
|
|
908
|
-
label: "voltageLevelProperty3Twt",
|
|
909
|
-
dataType: DataType.PROPERTY,
|
|
910
|
-
valueEditorType: "select",
|
|
911
|
-
defaultValue: ""
|
|
912
|
-
},
|
|
913
|
-
SVAR_REGULATION_MODE: {
|
|
914
|
-
name: FieldType.SVAR_REGULATION_MODE,
|
|
915
|
-
label: "regulationMode",
|
|
916
|
-
dataType: DataType.ENUM,
|
|
917
|
-
values: SVAR_REGULATION_MODE_OPTIONS,
|
|
918
|
-
valueEditorType: "select",
|
|
919
|
-
defaultValue: "VOLTAGE"
|
|
920
|
-
},
|
|
921
|
-
VOLTAGE_SET_POINT: {
|
|
922
|
-
name: FieldType.VOLTAGE_SET_POINT,
|
|
923
|
-
label: "voltageSetPoint",
|
|
924
|
-
unit: KILO_VOLT,
|
|
925
|
-
dataType: DataType.NUMBER,
|
|
926
|
-
inputType: "number"
|
|
927
|
-
},
|
|
928
|
-
ACTIVE_POWER_SET_POINT: {
|
|
929
|
-
name: FieldType.ACTIVE_POWER_SET_POINT,
|
|
930
|
-
label: "activePowerSetPoint",
|
|
931
|
-
unit: MEGA_WATT,
|
|
932
|
-
dataType: DataType.NUMBER,
|
|
933
|
-
inputType: "number"
|
|
934
|
-
},
|
|
935
|
-
REACTIVE_POWER_SET_POINT: {
|
|
936
|
-
name: FieldType.REACTIVE_POWER_SET_POINT,
|
|
937
|
-
label: "reactivePowerSetPoint",
|
|
938
|
-
unit: MEGA_VAR,
|
|
939
|
-
dataType: DataType.NUMBER,
|
|
940
|
-
inputType: "number"
|
|
941
|
-
},
|
|
942
|
-
REMOTE_REGULATED_TERMINAL: {
|
|
943
|
-
// composite rule
|
|
944
|
-
name: FieldType.REMOTE_REGULATED_TERMINAL,
|
|
945
|
-
label: "remoteRegulatedTerminal",
|
|
946
|
-
dataType: DataType.COMBINATOR,
|
|
947
|
-
combinator: CombinatorType.AND,
|
|
948
|
-
children: {
|
|
949
|
-
REGULATING_TERMINAL_VL_ID: {
|
|
950
|
-
name: FieldType.REGULATING_TERMINAL_VL_ID,
|
|
951
|
-
label: "regulatingTerminalVLId",
|
|
952
|
-
dataType: DataType.STRING,
|
|
953
|
-
operators: [OPERATOR_OPTIONS.IS]
|
|
954
|
-
},
|
|
955
|
-
REGULATING_TERMINAL_CONNECTABLE_ID: {
|
|
956
|
-
name: FieldType.REGULATING_TERMINAL_CONNECTABLE_ID,
|
|
957
|
-
label: "regulatingTerminalConnectableId",
|
|
958
|
-
dataType: DataType.STRING,
|
|
959
|
-
operators: [OPERATOR_OPTIONS.IS]
|
|
960
|
-
}
|
|
961
|
-
}
|
|
962
|
-
},
|
|
963
|
-
REGULATION_TYPE: {
|
|
964
|
-
name: FieldType.REGULATION_TYPE,
|
|
965
|
-
label: "regulationType",
|
|
966
|
-
dataType: DataType.ENUM,
|
|
967
|
-
values: REGULATION_TYPE_OPTIONS,
|
|
968
|
-
valueEditorType: "select",
|
|
969
|
-
defaultValue: "LOCAL"
|
|
970
|
-
},
|
|
971
|
-
AUTOMATE: {
|
|
972
|
-
name: FieldType.AUTOMATE,
|
|
973
|
-
label: "automate",
|
|
974
|
-
dataType: DataType.BOOLEAN
|
|
975
|
-
},
|
|
976
|
-
LOW_VOLTAGE_SET_POINT: {
|
|
977
|
-
name: FieldType.LOW_VOLTAGE_SET_POINT,
|
|
978
|
-
label: "lowVoltageSetPoint",
|
|
979
|
-
unit: KILO_VOLT,
|
|
980
|
-
dataType: DataType.NUMBER,
|
|
981
|
-
inputType: "number"
|
|
982
|
-
},
|
|
983
|
-
HIGH_VOLTAGE_SET_POINT: {
|
|
984
|
-
name: FieldType.HIGH_VOLTAGE_SET_POINT,
|
|
985
|
-
label: "highVoltageSetPoint",
|
|
986
|
-
unit: KILO_VOLT,
|
|
987
|
-
dataType: DataType.NUMBER,
|
|
988
|
-
inputType: "number"
|
|
989
|
-
},
|
|
990
|
-
LOW_VOLTAGE_THRESHOLD: {
|
|
991
|
-
name: FieldType.LOW_VOLTAGE_THRESHOLD,
|
|
992
|
-
label: "lowVoltageThreshold",
|
|
993
|
-
unit: KILO_VOLT,
|
|
994
|
-
dataType: DataType.NUMBER,
|
|
995
|
-
inputType: "number"
|
|
996
|
-
},
|
|
997
|
-
HIGH_VOLTAGE_THRESHOLD: {
|
|
998
|
-
name: FieldType.HIGH_VOLTAGE_THRESHOLD,
|
|
999
|
-
label: "highVoltageThreshold",
|
|
1000
|
-
unit: KILO_VOLT,
|
|
1001
|
-
dataType: DataType.NUMBER,
|
|
1002
|
-
inputType: "number"
|
|
1003
|
-
},
|
|
1004
|
-
SUSCEPTANCE_FIX: {
|
|
1005
|
-
name: FieldType.SUSCEPTANCE_FIX,
|
|
1006
|
-
label: "susceptanceFix",
|
|
1007
|
-
unit: SIEMENS,
|
|
1008
|
-
dataType: DataType.NUMBER,
|
|
1009
|
-
inputType: "number"
|
|
1010
|
-
},
|
|
1011
|
-
SHUNT_SUSCEPTANCE: {
|
|
1012
|
-
name: FieldType.SHUNT_SUSCEPTANCE,
|
|
1013
|
-
label: "shuntSusceptance",
|
|
1014
|
-
unit: MICRO_SIEMENS,
|
|
1015
|
-
dataType: DataType.NUMBER,
|
|
1016
|
-
inputType: "number"
|
|
1017
|
-
},
|
|
1018
|
-
SHUNT_CONDUCTANCE: {
|
|
1019
|
-
name: FieldType.SHUNT_CONDUCTANCE,
|
|
1020
|
-
label: "shuntConductance",
|
|
1021
|
-
unit: MICRO_SIEMENS,
|
|
1022
|
-
dataType: DataType.NUMBER,
|
|
1023
|
-
inputType: "number"
|
|
1024
|
-
},
|
|
1025
|
-
PAIRED: {
|
|
1026
|
-
name: FieldType.PAIRED,
|
|
1027
|
-
label: "paired",
|
|
1028
|
-
dataType: DataType.BOOLEAN,
|
|
1029
|
-
defaultValue: false,
|
|
1030
|
-
valueEditorType: "switch"
|
|
1031
|
-
},
|
|
1032
|
-
CONVERTER_STATION_ID_1: {
|
|
1033
|
-
name: FieldType.CONVERTER_STATION_ID_1,
|
|
1034
|
-
label: "converterStationId1",
|
|
1035
|
-
dataType: DataType.STRING
|
|
1036
|
-
},
|
|
1037
|
-
CONVERTER_STATION_ID_2: {
|
|
1038
|
-
name: FieldType.CONVERTER_STATION_ID_2,
|
|
1039
|
-
label: "converterStationId2",
|
|
1040
|
-
dataType: DataType.STRING
|
|
1041
|
-
},
|
|
1042
|
-
CONVERTERS_MODE: {
|
|
1043
|
-
name: FieldType.CONVERTERS_MODE,
|
|
1044
|
-
label: "convertersMode",
|
|
1045
|
-
dataType: DataType.ENUM,
|
|
1046
|
-
values: CONVERTERS_MODE_OPTIONS,
|
|
1047
|
-
valueEditorType: "select",
|
|
1048
|
-
defaultValue: "SIDE_1_RECTIFIER_SIDE_2_INVERTER"
|
|
1049
|
-
},
|
|
1050
|
-
CONVERTER_STATION_NOMINAL_VOLTAGE_1: {
|
|
1051
|
-
name: FieldType.CONVERTER_STATION_NOMINAL_VOLTAGE_1,
|
|
1052
|
-
label: "converterStationNominalVoltage1",
|
|
1053
|
-
unit: KILO_VOLT,
|
|
1054
|
-
dataType: DataType.NUMBER,
|
|
1055
|
-
inputType: "number"
|
|
1056
|
-
},
|
|
1057
|
-
CONVERTER_STATION_NOMINAL_VOLTAGE_2: {
|
|
1058
|
-
name: FieldType.CONVERTER_STATION_NOMINAL_VOLTAGE_2,
|
|
1059
|
-
label: "converterStationNominalVoltage2",
|
|
1060
|
-
unit: KILO_VOLT,
|
|
1061
|
-
dataType: DataType.NUMBER,
|
|
1062
|
-
inputType: "number"
|
|
1063
|
-
},
|
|
1064
|
-
DC_NOMINAL_VOLTAGE: {
|
|
1065
|
-
name: FieldType.DC_NOMINAL_VOLTAGE,
|
|
1066
|
-
label: "dcNominalVoltage",
|
|
1067
|
-
unit: KILO_VOLT,
|
|
1068
|
-
dataType: DataType.NUMBER,
|
|
1069
|
-
inputType: "number"
|
|
1070
|
-
},
|
|
1071
|
-
PAIRING_KEY: {
|
|
1072
|
-
name: FieldType.PAIRING_KEY,
|
|
1073
|
-
label: "pairingKey",
|
|
1074
|
-
dataType: DataType.STRING
|
|
1075
|
-
},
|
|
1076
|
-
TIE_LINE_ID: {
|
|
1077
|
-
name: FieldType.TIE_LINE_ID,
|
|
1078
|
-
label: "tieLineId",
|
|
1079
|
-
dataType: DataType.STRING
|
|
1080
|
-
},
|
|
1081
|
-
LOW_SHORT_CIRCUIT_CURRENT_LIMIT: {
|
|
1082
|
-
name: FieldType.LOW_SHORT_CIRCUIT_CURRENT_LIMIT,
|
|
1083
|
-
label: "lowShortCircuitCurrentLimit",
|
|
1084
|
-
unit: KILO_AMPERE,
|
|
1085
|
-
dataType: DataType.NUMBER,
|
|
1086
|
-
inputType: "number"
|
|
1087
|
-
},
|
|
1088
|
-
HIGH_SHORT_CIRCUIT_CURRENT_LIMIT: {
|
|
1089
|
-
name: FieldType.HIGH_SHORT_CIRCUIT_CURRENT_LIMIT,
|
|
1090
|
-
label: "highShortCircuitCurrentLimit",
|
|
1091
|
-
unit: KILO_AMPERE,
|
|
1092
|
-
dataType: DataType.NUMBER,
|
|
1093
|
-
inputType: "number"
|
|
1094
|
-
},
|
|
1095
|
-
SUBSTATION_ID: {
|
|
1096
|
-
name: FieldType.SUBSTATION_ID,
|
|
1097
|
-
label: "substationId",
|
|
1098
|
-
dataType: DataType.STRING
|
|
1099
|
-
},
|
|
1100
|
-
SUBSTATION_ID_1: {
|
|
1101
|
-
name: FieldType.SUBSTATION_ID_1,
|
|
1102
|
-
label: "substationId1",
|
|
1103
|
-
dataType: DataType.STRING
|
|
1104
|
-
},
|
|
1105
|
-
SUBSTATION_ID_2: {
|
|
1106
|
-
name: FieldType.SUBSTATION_ID_2,
|
|
1107
|
-
label: "substationId2",
|
|
1108
|
-
dataType: DataType.STRING
|
|
1109
|
-
}
|
|
1110
|
-
};
|
|
1111
|
-
const EXPERT_FILTER_FIELDS = {
|
|
1112
|
-
SUBSTATION: [FIELDS_OPTIONS.ID, FIELDS_OPTIONS.NAME, FIELDS_OPTIONS.COUNTRY, FIELDS_OPTIONS.PROPERTY],
|
|
1113
|
-
VOLTAGE_LEVEL: [
|
|
1114
|
-
FIELDS_OPTIONS.ID,
|
|
1115
|
-
FIELDS_OPTIONS.NAME,
|
|
1116
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1117
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1118
|
-
FIELDS_OPTIONS.LOW_VOLTAGE_LIMIT,
|
|
1119
|
-
FIELDS_OPTIONS.HIGH_VOLTAGE_LIMIT,
|
|
1120
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1121
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1122
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1123
|
-
FIELDS_OPTIONS.LOW_SHORT_CIRCUIT_CURRENT_LIMIT,
|
|
1124
|
-
FIELDS_OPTIONS.HIGH_SHORT_CIRCUIT_CURRENT_LIMIT
|
|
1125
|
-
],
|
|
1126
|
-
LINE: [
|
|
1127
|
-
FIELDS_OPTIONS.ID,
|
|
1128
|
-
FIELDS_OPTIONS.NAME,
|
|
1129
|
-
FIELDS_OPTIONS.COUNTRY_1,
|
|
1130
|
-
FIELDS_OPTIONS.COUNTRY_2,
|
|
1131
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_1,
|
|
1132
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_2,
|
|
1133
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE_1,
|
|
1134
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE_2,
|
|
1135
|
-
FIELDS_OPTIONS.CONNECTED_1,
|
|
1136
|
-
FIELDS_OPTIONS.CONNECTED_2,
|
|
1137
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE,
|
|
1138
|
-
FIELDS_OPTIONS.SERIE_REACTANCE,
|
|
1139
|
-
FIELDS_OPTIONS.SHUNT_CONDUCTANCE_1,
|
|
1140
|
-
FIELDS_OPTIONS.SHUNT_CONDUCTANCE_2,
|
|
1141
|
-
FIELDS_OPTIONS.SHUNT_SUSCEPTANCE_1,
|
|
1142
|
-
FIELDS_OPTIONS.SHUNT_SUSCEPTANCE_2,
|
|
1143
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1144
|
-
FIELDS_OPTIONS.SUBSTATION_ID_1,
|
|
1145
|
-
FIELDS_OPTIONS.SUBSTATION_ID_2,
|
|
1146
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY_1,
|
|
1147
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY_2,
|
|
1148
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1,
|
|
1149
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2
|
|
1150
|
-
],
|
|
1151
|
-
TWO_WINDINGS_TRANSFORMER: [
|
|
1152
|
-
FIELDS_OPTIONS.ID,
|
|
1153
|
-
FIELDS_OPTIONS.NAME,
|
|
1154
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1155
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_1,
|
|
1156
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_2,
|
|
1157
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE_1,
|
|
1158
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE_2,
|
|
1159
|
-
FIELDS_OPTIONS.RATED_VOLTAGE_1,
|
|
1160
|
-
FIELDS_OPTIONS.RATED_VOLTAGE_2,
|
|
1161
|
-
FIELDS_OPTIONS.CONNECTED_1,
|
|
1162
|
-
FIELDS_OPTIONS.CONNECTED_2,
|
|
1163
|
-
FIELDS_OPTIONS.RATED_S,
|
|
1164
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE,
|
|
1165
|
-
FIELDS_OPTIONS.SERIE_REACTANCE,
|
|
1166
|
-
FIELDS_OPTIONS.MAGNETIZING_CONDUCTANCE,
|
|
1167
|
-
FIELDS_OPTIONS.MAGNETIZING_SUSCEPTANCE,
|
|
1168
|
-
FIELDS_OPTIONS.HAS_RATIO_TAP_CHANGER,
|
|
1169
|
-
FIELDS_OPTIONS.LOAD_TAP_CHANGING_CAPABILITIES,
|
|
1170
|
-
FIELDS_OPTIONS.RATIO_REGULATION_MODE,
|
|
1171
|
-
FIELDS_OPTIONS.RATIO_TARGET_V,
|
|
1172
|
-
FIELDS_OPTIONS.HAS_PHASE_TAP_CHANGER,
|
|
1173
|
-
FIELDS_OPTIONS.PHASE_REGULATION_MODE,
|
|
1174
|
-
FIELDS_OPTIONS.PHASE_REGULATION_VALUE,
|
|
1175
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1176
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1177
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1178
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1,
|
|
1179
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2
|
|
1180
|
-
],
|
|
1181
|
-
THREE_WINDINGS_TRANSFORMER: [
|
|
1182
|
-
FIELDS_OPTIONS.ID,
|
|
1183
|
-
FIELDS_OPTIONS.NAME,
|
|
1184
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1185
|
-
{
|
|
1186
|
-
...FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_1,
|
|
1187
|
-
label: `${FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_1.label}Twt`
|
|
1188
|
-
},
|
|
1189
|
-
{
|
|
1190
|
-
...FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_2,
|
|
1191
|
-
label: `${FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_2.label}Twt`
|
|
1192
|
-
},
|
|
1193
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_3,
|
|
1194
|
-
{
|
|
1195
|
-
...FIELDS_OPTIONS.NOMINAL_VOLTAGE_1,
|
|
1196
|
-
label: `${FIELDS_OPTIONS.NOMINAL_VOLTAGE_1.label}Twt`
|
|
1197
|
-
},
|
|
1198
|
-
{
|
|
1199
|
-
...FIELDS_OPTIONS.NOMINAL_VOLTAGE_2,
|
|
1200
|
-
label: `${FIELDS_OPTIONS.NOMINAL_VOLTAGE_2.label}Twt`
|
|
1201
|
-
},
|
|
1202
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE_3,
|
|
1203
|
-
{
|
|
1204
|
-
...FIELDS_OPTIONS.CONNECTED_1,
|
|
1205
|
-
label: `${FIELDS_OPTIONS.CONNECTED_1.label}Twt`
|
|
1206
|
-
},
|
|
1207
|
-
{
|
|
1208
|
-
...FIELDS_OPTIONS.CONNECTED_2,
|
|
1209
|
-
label: `${FIELDS_OPTIONS.CONNECTED_2.label}Twt`
|
|
1210
|
-
},
|
|
1211
|
-
FIELDS_OPTIONS.CONNECTED_3,
|
|
1212
|
-
FIELDS_OPTIONS.RATED_VOLTAGE_0,
|
|
1213
|
-
{
|
|
1214
|
-
...FIELDS_OPTIONS.RATED_VOLTAGE_1,
|
|
1215
|
-
label: `${FIELDS_OPTIONS.RATED_VOLTAGE_1.label}Twt`
|
|
1216
|
-
},
|
|
1217
|
-
{
|
|
1218
|
-
...FIELDS_OPTIONS.RATED_VOLTAGE_2,
|
|
1219
|
-
label: `${FIELDS_OPTIONS.RATED_VOLTAGE_2.label}Twt`
|
|
1220
|
-
},
|
|
1221
|
-
FIELDS_OPTIONS.RATED_VOLTAGE_3,
|
|
1222
|
-
FIELDS_OPTIONS.RATED_S1,
|
|
1223
|
-
FIELDS_OPTIONS.RATED_S2,
|
|
1224
|
-
FIELDS_OPTIONS.RATED_S3,
|
|
1225
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE_1,
|
|
1226
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE_2,
|
|
1227
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE_3,
|
|
1228
|
-
FIELDS_OPTIONS.SERIE_REACTANCE_1,
|
|
1229
|
-
FIELDS_OPTIONS.SERIE_REACTANCE_2,
|
|
1230
|
-
FIELDS_OPTIONS.SERIE_REACTANCE_3,
|
|
1231
|
-
FIELDS_OPTIONS.MAGNETIZING_CONDUCTANCE_1,
|
|
1232
|
-
FIELDS_OPTIONS.MAGNETIZING_CONDUCTANCE_2,
|
|
1233
|
-
FIELDS_OPTIONS.MAGNETIZING_CONDUCTANCE_3,
|
|
1234
|
-
FIELDS_OPTIONS.MAGNETIZING_SUSCEPTANCE_1,
|
|
1235
|
-
FIELDS_OPTIONS.MAGNETIZING_SUSCEPTANCE_2,
|
|
1236
|
-
FIELDS_OPTIONS.MAGNETIZING_SUSCEPTANCE_3,
|
|
1237
|
-
FIELDS_OPTIONS.HAS_RATIO_TAP_CHANGER_1,
|
|
1238
|
-
FIELDS_OPTIONS.HAS_RATIO_TAP_CHANGER_2,
|
|
1239
|
-
FIELDS_OPTIONS.HAS_RATIO_TAP_CHANGER_3,
|
|
1240
|
-
FIELDS_OPTIONS.LOAD_TAP_CHANGING_CAPABILITIES_1,
|
|
1241
|
-
FIELDS_OPTIONS.LOAD_TAP_CHANGING_CAPABILITIES_2,
|
|
1242
|
-
FIELDS_OPTIONS.LOAD_TAP_CHANGING_CAPABILITIES_3,
|
|
1243
|
-
FIELDS_OPTIONS.RATIO_TARGET_V1,
|
|
1244
|
-
FIELDS_OPTIONS.RATIO_TARGET_V2,
|
|
1245
|
-
FIELDS_OPTIONS.RATIO_TARGET_V3,
|
|
1246
|
-
FIELDS_OPTIONS.RATIO_REGULATION_MODE_1,
|
|
1247
|
-
FIELDS_OPTIONS.RATIO_REGULATION_MODE_2,
|
|
1248
|
-
FIELDS_OPTIONS.RATIO_REGULATION_MODE_3,
|
|
1249
|
-
FIELDS_OPTIONS.HAS_PHASE_TAP_CHANGER_1,
|
|
1250
|
-
FIELDS_OPTIONS.HAS_PHASE_TAP_CHANGER_2,
|
|
1251
|
-
FIELDS_OPTIONS.HAS_PHASE_TAP_CHANGER_3,
|
|
1252
|
-
FIELDS_OPTIONS.PHASE_REGULATION_VALUE_1,
|
|
1253
|
-
FIELDS_OPTIONS.PHASE_REGULATION_VALUE_2,
|
|
1254
|
-
FIELDS_OPTIONS.PHASE_REGULATION_VALUE_3,
|
|
1255
|
-
FIELDS_OPTIONS.PHASE_REGULATION_MODE_1,
|
|
1256
|
-
FIELDS_OPTIONS.PHASE_REGULATION_MODE_2,
|
|
1257
|
-
FIELDS_OPTIONS.PHASE_REGULATION_MODE_3,
|
|
1258
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1259
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1260
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1261
|
-
{
|
|
1262
|
-
...FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1,
|
|
1263
|
-
label: `${FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1.label}Twt`
|
|
1264
|
-
},
|
|
1265
|
-
{
|
|
1266
|
-
...FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2,
|
|
1267
|
-
label: `${FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2.label}Twt`
|
|
1268
|
-
},
|
|
1269
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_3
|
|
1270
|
-
],
|
|
1271
|
-
GENERATOR: [
|
|
1272
|
-
FIELDS_OPTIONS.ID,
|
|
1273
|
-
FIELDS_OPTIONS.NAME,
|
|
1274
|
-
FIELDS_OPTIONS.ENERGY_SOURCE,
|
|
1275
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1276
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1277
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1278
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1279
|
-
FIELDS_OPTIONS.MIN_P,
|
|
1280
|
-
FIELDS_OPTIONS.MAX_P,
|
|
1281
|
-
FIELDS_OPTIONS.RATED_S,
|
|
1282
|
-
FIELDS_OPTIONS.TARGET_P,
|
|
1283
|
-
FIELDS_OPTIONS.TARGET_Q,
|
|
1284
|
-
FIELDS_OPTIONS.VOLTAGE_REGULATOR_ON,
|
|
1285
|
-
FIELDS_OPTIONS.TARGET_V,
|
|
1286
|
-
FIELDS_OPTIONS.PLANNED_ACTIVE_POWER_SET_POINT,
|
|
1287
|
-
FIELDS_OPTIONS.MARGINAL_COST,
|
|
1288
|
-
FIELDS_OPTIONS.PLANNED_OUTAGE_RATE,
|
|
1289
|
-
FIELDS_OPTIONS.FORCED_OUTAGE_RATE,
|
|
1290
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1291
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1292
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1293
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1294
|
-
],
|
|
1295
|
-
BATTERY: [
|
|
1296
|
-
FIELDS_OPTIONS.ID,
|
|
1297
|
-
FIELDS_OPTIONS.NAME,
|
|
1298
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1299
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1300
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1301
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1302
|
-
FIELDS_OPTIONS.MIN_P,
|
|
1303
|
-
FIELDS_OPTIONS.MAX_P,
|
|
1304
|
-
FIELDS_OPTIONS.TARGET_P,
|
|
1305
|
-
FIELDS_OPTIONS.TARGET_Q,
|
|
1306
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1307
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1308
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1309
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1310
|
-
],
|
|
1311
|
-
LOAD: [
|
|
1312
|
-
FIELDS_OPTIONS.ID,
|
|
1313
|
-
FIELDS_OPTIONS.NAME,
|
|
1314
|
-
FIELDS_OPTIONS.LOAD_TYPE,
|
|
1315
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1316
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1317
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1318
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1319
|
-
FIELDS_OPTIONS.P0,
|
|
1320
|
-
FIELDS_OPTIONS.Q0,
|
|
1321
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1322
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1323
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1324
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1325
|
-
],
|
|
1326
|
-
SHUNT_COMPENSATOR: [
|
|
1327
|
-
FIELDS_OPTIONS.ID,
|
|
1328
|
-
FIELDS_OPTIONS.NAME,
|
|
1329
|
-
FIELDS_OPTIONS.SHUNT_COMPENSATOR_TYPE,
|
|
1330
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1331
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1332
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1333
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1334
|
-
FIELDS_OPTIONS.MAXIMUM_SECTION_COUNT,
|
|
1335
|
-
FIELDS_OPTIONS.SECTION_COUNT,
|
|
1336
|
-
FIELDS_OPTIONS.MAX_Q_AT_NOMINAL_V,
|
|
1337
|
-
FIELDS_OPTIONS.SWITCHED_ON_Q_AT_NOMINAL_V,
|
|
1338
|
-
FIELDS_OPTIONS.MAX_SUSCEPTANCE,
|
|
1339
|
-
FIELDS_OPTIONS.SWITCHED_ON_SUSCEPTANCE,
|
|
1340
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1341
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1342
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1343
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1344
|
-
],
|
|
1345
|
-
STATIC_VAR_COMPENSATOR: [
|
|
1346
|
-
FIELDS_OPTIONS.ID,
|
|
1347
|
-
FIELDS_OPTIONS.NAME,
|
|
1348
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1349
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1350
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1351
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1352
|
-
// customize label
|
|
1353
|
-
{
|
|
1354
|
-
...FIELDS_OPTIONS.MAX_Q_AT_NOMINAL_V,
|
|
1355
|
-
label: `${FIELDS_OPTIONS.MAX_Q_AT_NOMINAL_V.label}.svar`
|
|
1356
|
-
},
|
|
1357
|
-
{
|
|
1358
|
-
...FIELDS_OPTIONS.MIN_Q_AT_NOMINAL_V,
|
|
1359
|
-
label: `${FIELDS_OPTIONS.MIN_Q_AT_NOMINAL_V.label}.svar`
|
|
1360
|
-
},
|
|
1361
|
-
// customize label
|
|
1362
|
-
{
|
|
1363
|
-
...FIELDS_OPTIONS.MAX_SUSCEPTANCE,
|
|
1364
|
-
label: `${FIELDS_OPTIONS.MAX_SUSCEPTANCE.label}.svar`
|
|
1365
|
-
},
|
|
1366
|
-
{
|
|
1367
|
-
...FIELDS_OPTIONS.MIN_SUSCEPTANCE,
|
|
1368
|
-
label: `${FIELDS_OPTIONS.MIN_SUSCEPTANCE.label}.svar`
|
|
1369
|
-
},
|
|
1370
|
-
FIELDS_OPTIONS.SVAR_REGULATION_MODE,
|
|
1371
|
-
FIELDS_OPTIONS.REGULATION_TYPE,
|
|
1372
|
-
FIELDS_OPTIONS.REMOTE_REGULATED_TERMINAL,
|
|
1373
|
-
FIELDS_OPTIONS.VOLTAGE_SET_POINT,
|
|
1374
|
-
FIELDS_OPTIONS.REACTIVE_POWER_SET_POINT,
|
|
1375
|
-
FIELDS_OPTIONS.AUTOMATE,
|
|
1376
|
-
FIELDS_OPTIONS.HIGH_VOLTAGE_SET_POINT,
|
|
1377
|
-
FIELDS_OPTIONS.LOW_VOLTAGE_SET_POINT,
|
|
1378
|
-
FIELDS_OPTIONS.HIGH_VOLTAGE_THRESHOLD,
|
|
1379
|
-
FIELDS_OPTIONS.LOW_VOLTAGE_THRESHOLD,
|
|
1380
|
-
{
|
|
1381
|
-
...FIELDS_OPTIONS.FIX_Q_AT_NOMINAL_V,
|
|
1382
|
-
label: `${FIELDS_OPTIONS.FIX_Q_AT_NOMINAL_V.label}.svar`
|
|
1383
|
-
},
|
|
1384
|
-
FIELDS_OPTIONS.SUSCEPTANCE_FIX,
|
|
1385
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1386
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1387
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1388
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1389
|
-
],
|
|
1390
|
-
HVDC_LINE: [
|
|
1391
|
-
FIELDS_OPTIONS.ID,
|
|
1392
|
-
FIELDS_OPTIONS.NAME,
|
|
1393
|
-
FIELDS_OPTIONS.COUNTRY_1,
|
|
1394
|
-
FIELDS_OPTIONS.COUNTRY_2,
|
|
1395
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_1,
|
|
1396
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID_2,
|
|
1397
|
-
FIELDS_OPTIONS.CONVERTER_STATION_ID_1,
|
|
1398
|
-
FIELDS_OPTIONS.CONVERTER_STATION_ID_2,
|
|
1399
|
-
FIELDS_OPTIONS.CONNECTED_1,
|
|
1400
|
-
FIELDS_OPTIONS.CONNECTED_2,
|
|
1401
|
-
FIELDS_OPTIONS.CONVERTER_STATION_NOMINAL_VOLTAGE_1,
|
|
1402
|
-
FIELDS_OPTIONS.CONVERTER_STATION_NOMINAL_VOLTAGE_2,
|
|
1403
|
-
FIELDS_OPTIONS.DC_NOMINAL_VOLTAGE,
|
|
1404
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE,
|
|
1405
|
-
FIELDS_OPTIONS.MAX_P,
|
|
1406
|
-
FIELDS_OPTIONS.ACTIVE_POWER_SET_POINT,
|
|
1407
|
-
FIELDS_OPTIONS.CONVERTERS_MODE,
|
|
1408
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1409
|
-
FIELDS_OPTIONS.SUBSTATION_ID_1,
|
|
1410
|
-
FIELDS_OPTIONS.SUBSTATION_ID_2,
|
|
1411
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY_1,
|
|
1412
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY_2,
|
|
1413
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_1,
|
|
1414
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY_2
|
|
1415
|
-
],
|
|
1416
|
-
BOUNDARY_LINE: [
|
|
1417
|
-
FIELDS_OPTIONS.ID,
|
|
1418
|
-
FIELDS_OPTIONS.NAME,
|
|
1419
|
-
FIELDS_OPTIONS.COUNTRY,
|
|
1420
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_ID,
|
|
1421
|
-
FIELDS_OPTIONS.NOMINAL_VOLTAGE,
|
|
1422
|
-
FIELDS_OPTIONS.TIE_LINE_ID,
|
|
1423
|
-
FIELDS_OPTIONS.CONNECTED,
|
|
1424
|
-
FIELDS_OPTIONS.P0,
|
|
1425
|
-
FIELDS_OPTIONS.Q0,
|
|
1426
|
-
FIELDS_OPTIONS.SERIE_RESISTANCE,
|
|
1427
|
-
FIELDS_OPTIONS.SERIE_REACTANCE,
|
|
1428
|
-
FIELDS_OPTIONS.SHUNT_SUSCEPTANCE,
|
|
1429
|
-
FIELDS_OPTIONS.SHUNT_CONDUCTANCE,
|
|
1430
|
-
FIELDS_OPTIONS.PAIRED,
|
|
1431
|
-
FIELDS_OPTIONS.PAIRING_KEY,
|
|
1432
|
-
FIELDS_OPTIONS.PROPERTY,
|
|
1433
|
-
FIELDS_OPTIONS.SUBSTATION_ID,
|
|
1434
|
-
FIELDS_OPTIONS.SUBSTATION_PROPERTY,
|
|
1435
|
-
FIELDS_OPTIONS.VOLTAGE_LEVEL_PROPERTY
|
|
1436
|
-
]
|
|
1437
|
-
};
|
|
1438
|
-
export {
|
|
1439
|
-
COMBINATOR_OPTIONS,
|
|
1440
|
-
CONVERTERS_MODE_OPTIONS,
|
|
1441
|
-
ENERGY_SOURCE_OPTIONS,
|
|
1442
|
-
EXPERT_FILTER_EQUIPMENTS,
|
|
1443
|
-
EXPERT_FILTER_FIELDS,
|
|
1444
|
-
EXPERT_FILTER_QUERY,
|
|
1445
|
-
FIELDS_OPTIONS,
|
|
1446
|
-
LOAD_TYPE_OPTIONS,
|
|
1447
|
-
OPERATOR_OPTIONS,
|
|
1448
|
-
PHASE_REGULATION_MODE_OPTIONS,
|
|
1449
|
-
RATIO_REGULATION_MODE_OPTIONS,
|
|
1450
|
-
REGULATION_TYPE_OPTIONS,
|
|
1451
|
-
RULES,
|
|
1452
|
-
SHUNT_COMPENSATOR_TYPE_OPTIONS,
|
|
1453
|
-
SVAR_REGULATION_MODE_OPTIONS
|
|
1454
|
-
};
|