@gridsuite/commons-ui 0.238.0 → 0.240.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 +6 -2
- package/dist/components/composite/agGridTable/BottomTableButtons.d.ts +1 -1
- package/dist/components/composite/agGridTable/CustomAgGridTable.js +7 -1
- package/dist/components/composite/agGridTable/cellEditors/numericEditor.d.ts +9 -3
- package/dist/components/composite/agGridTable/cellEditors/numericEditor.js +24 -5
- package/dist/components/composite/customAGGrid/cell-renderers.d.ts +8 -8
- package/dist/components/composite/customAGGrid/cell-renderers.js +1 -1
- package/dist/components/composite/customAGGrid/context/custom-aggrid-context.d.ts +13 -0
- package/dist/components/composite/customAGGrid/context/custom-aggrid-context.js +23 -0
- package/dist/components/composite/customAGGrid/context/index.d.ts +7 -0
- package/dist/components/composite/customAGGrid/context/index.js +7 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.d.ts +7 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.js +74 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-filter.d.ts +2 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-filter.js +52 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-selector.d.ts +9 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-selector.js +18 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-filter.d.ts +11 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-filter.js +77 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-text-filter.d.ts +10 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-text-filter.js +59 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-filter-icon.d.ts +8 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/custom-filter-icon.js +22 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/index.d.ts +8 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/index.js +6 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-column-filter.d.ts +7 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-column-filter.js +111 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-comparator-filter.d.ts +12 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-comparator-filter.js +65 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/index.d.ts +14 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/index.js +21 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/utils/filter-tolerance-utils.d.ts +7 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/utils/filter-tolerance-utils.js +79 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/utils/index.d.ts +7 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-filters/utils/index.js +5 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-header.d.ts +15 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-header.js +96 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-menu.d.ts +11 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-menu.js +20 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-sort.d.ts +8 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-sort.js +21 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-types.d.ts +122 -0
- package/dist/components/composite/customAGGrid/custom-aggrid-types.js +60 -0
- package/dist/components/composite/customAGGrid/display-rounding.d.ts +9 -0
- package/dist/components/composite/customAGGrid/display-rounding.js +33 -0
- package/dist/components/composite/customAGGrid/hooks/index.d.ts +7 -0
- package/dist/components/composite/customAGGrid/hooks/index.js +4 -0
- package/dist/components/composite/customAGGrid/hooks/use-custom-aggrid-sort.d.ts +6 -0
- package/dist/components/composite/customAGGrid/hooks/use-custom-aggrid-sort.js +43 -0
- package/dist/components/composite/customAGGrid/index.d.ts +9 -0
- package/dist/components/composite/customAGGrid/index.js +45 -1
- package/dist/components/composite/customAGGrid/separatorCellRenderer.d.ts +1 -1
- package/dist/components/composite/customAGGrid/utils/custom-aggrid-header-utils.d.ts +166 -0
- package/dist/components/composite/customAGGrid/utils/custom-aggrid-header-utils.js +54 -0
- package/dist/components/composite/customAGGrid/utils/index.d.ts +7 -0
- package/dist/components/composite/customAGGrid/utils/index.js +4 -0
- package/dist/components/composite/dnd-table/deletable-table-row.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table-add-rows-dialog.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table-bottom-left-buttons.js +4 -4
- package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table-bottom-right-buttons.js +6 -6
- package/dist/components/composite/dnd-table/dnd-table-row.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table.d.ts +1 -1
- package/dist/components/composite/dnd-table/dnd-table.js +4 -4
- package/dist/components/composite/elementSearch/elementItem/EquipmentItem.d.ts +1 -1
- package/dist/components/composite/elementSearch/elementSearchDialog/ElementSearchDialog.d.ts +1 -1
- package/dist/components/composite/elementSearch/elementSearchInput/ElementSearchInput.d.ts +1 -1
- package/dist/components/composite/elementSearch/tagRenderer/TagRenderer.d.ts +1 -1
- package/dist/components/composite/filter/FilterCreationDialog.d.ts +1 -1
- package/dist/components/composite/filter/FilterCreationDialog.js +1 -1
- package/dist/components/composite/filter/FilterForm.d.ts +1 -1
- package/dist/components/composite/filter/HeaderFilterForm.d.ts +1 -1
- package/dist/components/composite/filter/HeaderFilterForm.js +4 -4
- package/dist/components/composite/filter/expert/ExpertFilterEditionDialog.d.ts +1 -1
- package/dist/components/composite/filter/expert/ExpertFilterForm.d.ts +1 -1
- package/dist/components/composite/filter/expert/expertFilterConstants.js +1 -1
- package/dist/components/composite/filter/expert/expertFilterUtils.js +1 -1
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterEditionDialog.d.ts +1 -1
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.d.ts +2 -2
- package/dist/components/composite/filter/explicitNaming/ExplicitNamingFilterForm.js +2 -4
- package/dist/components/composite/filter/utils/filterApi.js +1 -1
- package/dist/components/composite/flatParameters/FlatParameters.d.ts +1 -1
- package/dist/components/composite/grid/grid-item.d.ts +4 -3
- package/dist/components/composite/grid/grid-item.js +8 -4
- package/dist/components/composite/grid/grid-section.d.ts +1 -1
- package/dist/components/composite/grid/grid-section.js +3 -3
- package/dist/components/composite/grid/index.js +6 -3
- package/dist/components/composite/index.d.ts +1 -0
- package/dist/components/composite/index.js +71 -3
- package/dist/components/composite/muiTable/OverflowableTableCell.d.ts +1 -1
- package/dist/components/composite/muiTable/OverflowableTableCellWithCheckbox.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/AddButton.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/AutocompleteWithFavorites.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/CombinatorSelector.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/CountryValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/CustomReactQueryBuilder.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/ElementValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/FieldSelector.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/OperatorSelector.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/PropertyValueEditor.js +5 -5
- package/dist/components/composite/reactQueryBuilder/RemoveButton.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/TextValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/TranslatedValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/ValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/ValueSelector.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/GroupValueEditor.js +2 -2
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.d.ts +1 -1
- package/dist/components/composite/reactQueryBuilder/compositeRuleEditor/RuleValueEditor.js +5 -5
- package/dist/components/composite/report/QuickSearch.d.ts +14 -0
- package/dist/components/composite/report/QuickSearch.js +118 -0
- package/dist/components/composite/report/index.d.ts +12 -0
- package/dist/components/composite/report/index.js +25 -0
- package/dist/components/composite/report/report-log.mapper.d.ts +2 -0
- package/dist/components/composite/report/report-log.mapper.js +22 -0
- package/dist/components/composite/report/report-severity.d.ts +5 -0
- package/dist/components/composite/report/report-severity.js +89 -0
- package/dist/components/composite/report/report-treeview/hooks/index.d.ts +7 -0
- package/dist/components/composite/report/report-treeview/hooks/index.js +4 -0
- package/dist/components/composite/report/report-treeview/hooks/use-treeview-scroll.d.ts +4 -0
- package/dist/components/composite/report/report-treeview/hooks/use-treeview-scroll.js +19 -0
- package/dist/components/composite/report/report-treeview/index.d.ts +10 -0
- package/dist/components/composite/report/report-treeview/index.js +10 -0
- package/dist/components/composite/report/report-treeview/report-tree.mapper.d.ts +2 -0
- package/dist/components/composite/report/report-treeview/report-tree.mapper.js +16 -0
- package/dist/components/composite/report/report-treeview/treeview-item.d.ts +28 -0
- package/dist/components/composite/report/report-treeview/treeview-item.js +131 -0
- package/dist/components/composite/report/report-treeview/virtualized-treeview.d.ts +11 -0
- package/dist/components/composite/report/report-treeview/virtualized-treeview.js +177 -0
- package/dist/components/composite/report/report-viewer/context/index.d.ts +7 -0
- package/dist/components/composite/report/report-viewer/context/index.js +7 -0
- package/dist/components/composite/report/report-viewer/context/report-viewer-context.d.ts +16 -0
- package/dist/components/composite/report/report-viewer/context/report-viewer-context.js +23 -0
- package/dist/components/composite/report/report-viewer/index.d.ts +9 -0
- package/dist/components/composite/report/report-viewer/index.js +11 -0
- package/dist/components/composite/report/report-viewer/log-table/index.d.ts +7 -0
- package/dist/components/composite/report/report-viewer/log-table/index.js +4 -0
- package/dist/components/composite/report/report-viewer/log-table/log-table.d.ts +12 -0
- package/dist/components/composite/report/report-viewer/log-table/log-table.js +423 -0
- package/dist/components/composite/report/report-viewer/report-viewer.d.ts +8 -0
- package/dist/components/composite/report/report-viewer/report-viewer.js +114 -0
- package/dist/components/composite/report/report.constant.d.ts +8 -0
- package/dist/components/composite/report/report.constant.js +6 -0
- package/dist/components/composite/report/report.styles.d.ts +10 -0
- package/dist/components/composite/report/report.styles.js +12 -0
- package/dist/components/composite/report/report.type.d.ts +66 -0
- package/dist/components/composite/report/report.type.js +8 -0
- package/dist/components/index.js +71 -3
- package/dist/components/ui/addButton/AddButton.d.ts +1 -1
- package/dist/components/ui/checkBoxList/CheckBoxList.d.ts +1 -1
- package/dist/components/ui/checkBoxList/CheckBoxListItem.d.ts +1 -1
- package/dist/components/ui/checkBoxList/CheckBoxListItemContent.d.ts +1 -1
- package/dist/components/ui/checkBoxList/CheckBoxListItems.d.ts +1 -1
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItem.d.ts +1 -1
- package/dist/components/ui/checkBoxList/DraggableCheckBoxListItemContent.d.ts +1 -1
- package/dist/components/ui/csvDownloader/export-csv-button.d.ts +1 -1
- package/dist/components/ui/csvPicker/csv-picker-confirmation-dialog.d.ts +1 -1
- package/dist/components/ui/csvPicker/csv-picker.d.ts +1 -1
- package/dist/components/ui/dialogs/customMuiDialog/CustomMuiDialog.d.ts +1 -1
- package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.d.ts +1 -1
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.d.ts +1 -1
- package/dist/components/ui/dialogs/elementSaveDialog/ElementSaveDialog.js +9 -9
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.d.ts +1 -1
- package/dist/components/ui/dialogs/modifyElementSelection/ModifyElementSelection.js +3 -3
- package/dist/components/ui/dialogs/multipleSelectionDialog/MultipleSelectionDialog.d.ts +1 -1
- package/dist/components/ui/dialogs/popupConfirmationDialog/PopupConfirmationDialog.d.ts +1 -1
- package/dist/components/ui/directoryItemSelector/DirectoryItemSelector.d.ts +1 -1
- package/dist/components/ui/expandableGroup/ExpandableGroup.d.ts +1 -1
- package/dist/components/ui/icons/ArrowsInputIcon.d.ts +1 -1
- package/dist/components/ui/icons/ArrowsOutputIcon.d.ts +1 -1
- package/dist/components/ui/icons/EditNoteIcon.d.ts +1 -1
- package/dist/components/ui/icons/LeftPanelCloseIcon.d.ts +1 -1
- package/dist/components/ui/icons/LeftPanelOpenIcon.d.ts +1 -1
- package/dist/components/ui/inputs/ActivableChip.d.ts +1 -1
- package/dist/components/ui/inputs/SelectClearable.d.ts +1 -1
- package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-autocomplete.d.ts +1 -1
- package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-autocomplete.js +1 -1
- package/dist/components/ui/inputs/checkbox-autocomplete/checkbox-item.d.ts +1 -1
- package/dist/components/ui/inputs/checkbox-autocomplete/virtualized-list-item.d.ts +1 -1
- package/dist/components/ui/menus/custom-nested-menu.d.ts +2 -2
- package/dist/components/ui/menus/custom-nested-menu.js +1 -1
- package/dist/components/ui/overflowableText/OverflowableText.d.ts +2 -2
- package/dist/components/ui/reactHookForm/CheckboxNullableInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/CountrySelectionInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/DirectoryItemsInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/OverflowableChip.d.ts +1 -1
- package/dist/components/ui/reactHookForm/OverflowableChipWithHelperText.d.ts +1 -1
- package/dist/components/ui/reactHookForm/autocompleteInputs/AutocompleteInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/autocompleteInputs/MultipleAutocompleteInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/booleans/BooleanInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/booleans/CheckboxInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/booleans/RadioInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/booleans/SwitchInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/chip-items-input.d.ts +1 -1
- package/dist/components/ui/reactHookForm/directory-item-input/directory-item-input.d.ts +1 -1
- package/dist/components/ui/reactHookForm/errorManagement/ErrorInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/errorManagement/FieldErrorAlert.d.ts +1 -1
- package/dist/components/ui/reactHookForm/errorManagement/FieldErrorAlert.js +2 -2
- package/dist/components/ui/reactHookForm/errorManagement/MidFormError.d.ts +1 -1
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.d.ts +1 -1
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.js +4 -4
- package/dist/components/ui/reactHookForm/expandableInput/ExpandableInput.js +4 -4
- package/dist/components/ui/reactHookForm/numbers/FloatInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/numbers/IntegerInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/numbers/RangeInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/numbers/RangeInput.js +5 -5
- package/dist/components/ui/reactHookForm/numbers/SliderInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/provider/CustomFormProvider.d.ts +1 -1
- package/dist/components/ui/reactHookForm/readOnly/ButtonReadOnlyInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/readOnly/ReadOnlyInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/CountriesInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/EnumInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/InputWithPopupConfirmation.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/MuiSelectInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/SelectInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/selectInputs/SelectWithConfirmationInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/tableInputs/table-numerical-input.d.ts +1 -1
- package/dist/components/ui/reactHookForm/tableInputs/table-text-input.d.ts +1 -1
- package/dist/components/ui/reactHookForm/text/DescriptionField.d.ts +1 -1
- package/dist/components/ui/reactHookForm/text/DescriptionInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/text/ExpandingTextField.d.ts +1 -1
- package/dist/components/ui/reactHookForm/text/TextInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/text/UniqueNameInput.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/CancelButton.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/FieldLabel.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/HelperPreviousValue.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/SubmitButton.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/TextFieldWithAdornment.d.ts +1 -1
- package/dist/components/ui/reactHookForm/utils/functions.d.ts +2 -2
- package/dist/components/ui/reactHookForm/utils/functions.js +2 -2
- package/dist/components/ui/resizablePanels/ResizeHandle.d.ts +1 -1
- package/dist/components/ui/snackbarProvider/SnackbarProvider.d.ts +1 -1
- package/dist/components/ui/tablepagination/custom-table-pagination.d.ts +1 -1
- package/dist/components/ui/tooltip/CustomTooltip.d.ts +1 -1
- package/dist/components/ui/treeViewFinder/TreeViewFinder.d.ts +2 -2
- package/dist/features/announcement/AnnouncementBanner.d.ts +1 -1
- package/dist/features/announcement/AnnouncementNotification.d.ts +1 -1
- package/dist/features/authentication/AuthenticationRouter.d.ts +1 -1
- package/dist/features/authentication/AuthenticationRouter.js +2 -2
- package/dist/features/authentication/AuthenticationRouterErrorDisplay.d.ts +1 -1
- package/dist/features/authentication/AuthenticationRouterErrorDisplay.js +3 -3
- package/dist/features/authentication/Login.d.ts +1 -1
- package/dist/features/authentication/Logout.d.ts +1 -1
- package/dist/features/authentication/SignInCallbackHandler.d.ts +1 -1
- package/dist/features/authentication/SilentRenewCallbackHandler.d.ts +1 -1
- package/dist/features/authentication/alert/ErrorInLogoutAlert.d.ts +1 -1
- package/dist/features/authentication/alert/ErrorInUserValidationAlert.d.ts +1 -1
- package/dist/features/authentication/alert/UnauthorizedAccessAlert.d.ts +1 -1
- package/dist/features/authentication/utils/authService.js +1 -1
- package/dist/features/cardErrorBoundary/CardErrorBoundary.d.ts +1 -1
- package/dist/features/index.js +1 -2
- package/dist/features/network-modification-table/network-modification-table-styles.js +1 -1
- package/dist/features/network-modification-table/network-modifications-table.d.ts +2 -2
- package/dist/features/network-modification-table/renderers/cell-renderers.d.ts +9 -9
- package/dist/features/network-modification-table/renderers/cell-renderers.js +1 -1
- package/dist/features/network-modification-table/renderers/depth-box.d.ts +1 -1
- package/dist/features/network-modification-table/renderers/description-cell.d.ts +1 -1
- package/dist/features/network-modification-table/renderers/drag-handle-cell.d.ts +1 -1
- package/dist/features/network-modification-table/renderers/name-cell.d.ts +2 -1
- package/dist/features/network-modification-table/renderers/name-cell.js +7 -1
- package/dist/features/network-modification-table/renderers/network-modification-node-editor-name-header.d.ts +1 -1
- package/dist/features/network-modification-table/renderers/root-network-chip-cell.d.ts +1 -1
- package/dist/features/network-modification-table/renderers/select-cell.d.ts +2 -1
- package/dist/features/network-modification-table/renderers/select-header-cell.d.ts +2 -1
- package/dist/features/network-modification-table/renderers/switch-cell.d.ts +2 -1
- package/dist/features/network-modification-table/row/drag-row-clone.d.ts +2 -1
- package/dist/features/network-modification-table/row/modification-row.d.ts +2 -1
- package/dist/features/network-modification-table/row/modification-row.js +1 -1
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.d.ts +1 -1
- package/dist/features/network-modifications/battery/creation/BatteryCreationForm.js +13 -7
- package/dist/features/network-modifications/battery/creation/batteryCreation.utils.js +6 -0
- package/dist/features/network-modifications/battery/modification/BatteryDialogHeader.d.ts +1 -1
- package/dist/features/network-modifications/battery/modification/BatteryDialogHeader.js +10 -4
- package/dist/features/network-modifications/battery/modification/BatteryDialogTabs.d.ts +2 -7
- package/dist/features/network-modifications/battery/modification/BatteryDialogTabs.js +1 -1
- package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.d.ts +1 -1
- package/dist/features/network-modifications/battery/modification/BatteryDialogTabsContent.js +14 -8
- package/dist/features/network-modifications/battery/modification/BatteryModificationForm.d.ts +1 -1
- package/dist/features/network-modifications/battery/modification/BatteryModificationForm.js +5 -5
- package/dist/features/network-modifications/battery/modification/batteryModification.utils.js +7 -1
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.d.ts +1 -1
- package/dist/features/network-modifications/by-filter/assignment/assignment/assignment-form.js +1 -1
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.d.ts +1 -1
- package/dist/features/network-modifications/by-filter/assignment/modification-by-assignment-form.js +4 -4
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +1 -1
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.js +4 -4
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +1 -1
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.js +1 -1
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.js +1 -1
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.js +7 -7
- package/dist/features/network-modifications/common/connectivity/PositionForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/PositionForm.js +4 -4
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.js +4 -4
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.js +1 -1
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js +8 -2
- package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.js +4 -4
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.js +4 -4
- package/dist/features/network-modifications/common/measurements/branchActiveReactivePowerForm.utils.js +1 -1
- package/dist/features/network-modifications/common/properties/PropertiesForm.d.ts +1 -1
- package/dist/features/network-modifications/common/properties/PropertiesForm.js +1 -1
- package/dist/features/network-modifications/common/properties/PropertyForm.d.ts +1 -1
- package/dist/features/network-modifications/common/properties/PropertyForm.js +5 -5
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.js +3 -3
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.js +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.js +7 -7
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/reactiveCapability.utils.js +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveLimits.utils.js +1 -1
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.d.ts +1 -1
- package/dist/features/network-modifications/common/regulatingTerminal/RegulatingTerminalForm.js +2 -2
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/setpoints/SetPointsForm.js +5 -5
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +1 -1
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.js +3 -3
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +1 -1
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.js +5 -5
- package/dist/features/network-modifications/common/voltageRegulation/voltageRegulation.utils.js +1 -1
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.d.ts +1 -1
- package/dist/features/network-modifications/equipmentDeletion/EquipmentDeletionForm.js +12 -6
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +1 -1
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.js +5 -5
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +1 -1
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.js +5 -5
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/hvdcLccDeletion.utils.js +1 -1
- package/dist/features/network-modifications/generator/creation/GeneratorCreationForm.d.ts +1 -1
- package/dist/features/network-modifications/generator/creation/GeneratorCreationForm.js +15 -9
- package/dist/features/network-modifications/generator/creation/generatorCreation.utils.js +7 -1
- package/dist/features/network-modifications/generator/modification/GeneratorDialogHeader.d.ts +1 -1
- package/dist/features/network-modifications/generator/modification/GeneratorDialogHeader.js +11 -5
- package/dist/features/network-modifications/generator/modification/GeneratorDialogTabs.d.ts +2 -7
- package/dist/features/network-modifications/generator/modification/GeneratorDialogTabs.js +1 -1
- package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.d.ts +1 -1
- package/dist/features/network-modifications/generator/modification/GeneratorDialogTabsContent.js +15 -9
- package/dist/features/network-modifications/generator/modification/GeneratorModificationForm.d.ts +1 -1
- package/dist/features/network-modifications/generator/modification/GeneratorModificationForm.js +5 -5
- package/dist/features/network-modifications/generator/modification/generatorModification.utils.js +7 -1
- package/dist/features/network-modifications/load/common/LoadDialogHeader.d.ts +1 -1
- package/dist/features/network-modifications/load/common/LoadDialogHeader.js +11 -5
- package/dist/features/network-modifications/load/common/LoadDialogTabs.d.ts +2 -7
- package/dist/features/network-modifications/load/common/LoadDialogTabs.js +1 -1
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.d.ts +1 -1
- package/dist/features/network-modifications/load/common/LoadDialogTabsContent.js +1 -1
- package/dist/features/network-modifications/load/common/LoadForm.d.ts +1 -1
- package/dist/features/network-modifications/load/common/LoadForm.js +5 -5
- package/dist/features/network-modifications/load/modification/loadModification.utils.js +6 -0
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.d.ts +1 -1
- package/dist/features/network-modifications/shunt-compensator/common/CharacteristicsForm.js +12 -12
- package/dist/features/network-modifications/shunt-compensator/common/characteristicsForm.utils.d.ts +8 -8
- package/dist/features/network-modifications/shunt-compensator/common/characteristicsForm.utils.js +1 -1
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.d.ts +1 -1
- package/dist/features/network-modifications/shunt-compensator/creation/ShuntCompensatorCreationForm.js +17 -11
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.d.ts +12 -12
- package/dist/features/network-modifications/shunt-compensator/creation/shuntCompensatorCreation.utils.js +6 -0
- package/dist/features/network-modifications/shunt-compensator/modification/ShuntCompensatorModificationForm.d.ts +1 -1
- package/dist/features/network-modifications/shunt-compensator/modification/ShuntCompensatorModificationForm.js +9 -3
- package/dist/features/network-modifications/shunt-compensator/modification/shuntCompensatorModification.utils.d.ts +12 -12
- package/dist/features/network-modifications/shunt-compensator/modification/shuntCompensatorModification.utils.js +6 -0
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.d.ts +1 -1
- package/dist/features/network-modifications/substation/creation/SubstationCreationForm.js +13 -7
- package/dist/features/network-modifications/substation/creation/substationCreation.utils.js +1 -1
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.d.ts +1 -1
- package/dist/features/network-modifications/substation/modification/SubstationModificationForm.js +13 -7
- package/dist/features/network-modifications/substation/modification/substationModification.utils.js +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js +14 -8
- package/dist/features/network-modifications/voltageLevel/creation/index.js +6 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/characteristicsTab/CharacteristicsTab.js +9 -9
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/StructureTab.js +5 -5
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusCreation.js +3 -3
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/couplingOmnibus/CouplingOmnibusForm.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +13 -7
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.js +5 -5
- package/dist/features/network-modifications/voltageLevel/creation/voltageLevelCreation.utils.js +9 -3
- package/dist/features/network-modifications/voltageLevel/index.js +6 -0
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/modification/VoltageLevelModificationForm.js +10 -4
- package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/modification/voltageLevelModification.utils.js +3 -3
- package/dist/features/node/build-status-chip.d.ts +1 -1
- package/dist/features/notifications/NotificationsProvider.d.ts +1 -1
- package/dist/features/parameters/common/ProviderParam.d.ts +1 -1
- package/dist/features/parameters/common/ProviderParam.js +5 -5
- package/dist/features/parameters/common/computing-type.d.ts +1 -19
- package/dist/features/parameters/common/computing-type.js +16 -26
- package/dist/features/parameters/common/contingency-table/contingency-table.js +4 -4
- package/dist/features/parameters/common/index.js +1 -2
- package/dist/features/parameters/common/limitreductions/columns-definitions.d.ts +2 -2
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-cell.d.ts +1 -1
- package/dist/features/parameters/common/limitreductions/limit-reduction-table-row.d.ts +1 -1
- package/dist/features/parameters/common/limitreductions/limit-reductions-label-column.d.ts +1 -1
- package/dist/features/parameters/common/limitreductions/limit-reductions-table-form.d.ts +1 -1
- package/dist/features/parameters/common/limitreductions/limit-reductions-tooltip-column.d.ts +1 -1
- package/dist/features/parameters/common/line-separator.d.ts +1 -1
- package/dist/features/parameters/common/line-separator.js +2 -2
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.d.ts +1 -1
- package/dist/features/parameters/common/name-element-editor/name-element-editor-form.js +4 -4
- package/dist/features/parameters/common/parameter-field.d.ts +1 -1
- package/dist/features/parameters/common/parameter-field.js +4 -4
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +1 -1
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.js +3 -3
- package/dist/features/parameters/common/parameters-creation-dialog.d.ts +1 -1
- package/dist/features/parameters/common/parameters.d.ts +3 -3
- package/dist/features/parameters/common/parameters.js +3 -3
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-cell.d.ts +1 -1
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table-row.d.ts +1 -1
- package/dist/features/parameters/common/voltage-level-table/custom-voltage-level-table.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-float.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-float.js +4 -4
- package/dist/features/parameters/common/widget/parameter-group.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-group.js +2 -2
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.js +4 -4
- package/dist/features/parameters/common/widget/parameter-line-slider.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-line-slider.js +4 -4
- package/dist/features/parameters/common/widget/parameter-switch.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-switch.js +2 -2
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.d.ts +1 -1
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-form.js +6 -6
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.d.ts +2 -2
- package/dist/features/parameters/dynamic-margin-calculation/dynamic-margin-calculation-inline.js +3 -3
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.js +2 -2
- package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.js +2 -2
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +4 -4
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.d.ts +2 -2
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-inline.js +3 -3
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +8 -9
- package/dist/features/parameters/dynamic-security-analysis/scenario-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/scenario-parameters.js +2 -2
- package/dist/features/parameters/dynamic-simulation/curve/common/checkbox-select.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/common/checkbox-treeview.d.ts +2 -2
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/common/grid-buttons.js +4 -4
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +13 -8
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +13 -7
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.js +10 -10
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector.js +26 -50
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +22 -20
- package/dist/features/parameters/dynamic-simulation/curve/dialog/model-filter.js +11 -10
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +2 -3
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.js +3 -3
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-parameters-form.js +8 -9
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters.js +2 -2
- package/dist/features/parameters/dynamic-simulation/network/network-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/network/network-parameters.js +2 -2
- package/dist/features/parameters/dynamic-simulation/solver/common-solver/common-solver-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/solver/ida-solver/ida-solver-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/solver/sim-solver/simplified-solver-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/solver/solver-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/solver/solver-parameters.js +2 -2
- package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/time-delay/time-delay-parameters.js +2 -2
- package/dist/features/parameters/index.js +1 -2
- package/dist/features/parameters/loadflow/load-flow-general-parameters.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-content.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-content.js +6 -6
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-dialog.js +6 -11
- package/dist/features/parameters/loadflow/load-flow-parameters-form.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-form.js +2 -2
- package/dist/features/parameters/loadflow/load-flow-parameters-header.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-header.js +5 -5
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.d.ts +2 -3
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.js +2 -3
- package/dist/features/parameters/loadflow/load-flow-parameters-provider.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-utils.js +6 -6
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.d.ts +1 -2
- package/dist/features/parameters/loadflow/use-load-flow-parameters-form.js +4 -4
- package/dist/features/parameters/network-visualizations/map-parameters.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/map-parameters.js +10 -10
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.js +4 -4
- package/dist/features/parameters/network-visualizations/network-visualizations-form.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/network-visualizations-form.js +5 -8
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/network-visualizations-parameters-inline.js +2 -2
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +10 -10
- package/dist/features/parameters/pcc-min/pcc-min-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.d.ts +1 -1
- package/dist/features/parameters/pcc-min/pcc-min-parameters-form.js +5 -8
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.d.ts +1 -1
- package/dist/features/parameters/pcc-min/pcc-min-parameters-inline.js +2 -2
- package/dist/features/parameters/security-analysis/columns-definitions.js +6 -6
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/security-analysis/security-analysis-parameters-dialog.js +10 -15
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.d.ts +1 -1
- package/dist/features/parameters/security-analysis/security-analysis-parameters-form.js +7 -7
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.d.ts +2 -3
- package/dist/features/parameters/security-analysis/security-analysis-parameters-inline.js +2 -3
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.d.ts +1 -1
- package/dist/features/parameters/security-analysis/security-analysis-parameters-selector.js +4 -4
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.d.ts +1 -1
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.js +8 -11
- package/dist/features/parameters/security-analysis/use-security-analysis-parameters-form.d.ts +2 -2
- package/dist/features/parameters/sensi/columns-definitions.d.ts +6 -6
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-dialog.js +5 -10
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-factor-count.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-form.js +8 -8
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.d.ts +2 -3
- package/dist/features/parameters/sensi/sensitivity-analysis-parameters-inline.js +2 -2
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.js +7 -8
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +3 -3
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +1 -2
- package/dist/features/parameters/short-circuit/short-circuit-general-tab-panel.js +13 -13
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-cell.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table-row.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-icc-cluster-table.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-cell.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table-row.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-icc-material-table.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-parameters-content.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-parameters-content.js +4 -4
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-parameters-dialog.js +1 -6
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.d.ts +1 -1
- package/dist/features/parameters/short-circuit/short-circuit-parameters-form.js +4 -7
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.d.ts +2 -3
- package/dist/features/parameters/short-circuit/short-circuit-parameters-inline.js +2 -2
- package/dist/features/parameters/short-circuit/short-circuit-parameters-utils.js +7 -7
- package/dist/features/parameters/short-circuit/short-circuit-power-electronics-tab-panel.js +9 -9
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +7 -7
- package/dist/features/parameters/short-circuit/short-circuit-voltage-table.d.ts +1 -1
- package/dist/features/parameters/short-circuit/use-short-circuit-parameters-form.d.ts +1 -2
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.d.ts +1 -1
- package/dist/features/parameters/voltage-init/equipment-selection-parameters.js +5 -5
- package/dist/features/parameters/voltage-init/general-parameters.d.ts +1 -1
- package/dist/features/parameters/voltage-init/general-parameters.js +5 -5
- package/dist/features/parameters/voltage-init/voltage-init-form-utils.js +2 -2
- package/dist/features/parameters/voltage-init/voltage-init-parameters-dialog.d.ts +1 -1
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.d.ts +1 -1
- package/dist/features/parameters/voltage-init/voltage-init-parameters-form.js +6 -9
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.d.ts +1 -1
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.js +2 -2
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.d.ts +1 -1
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.js +2 -2
- package/dist/features/process-configs/security-analysis/update-sa-process-config-dialog.d.ts +1 -1
- package/dist/features/process-configs/security-analysis/update-sa-process-config-dialog.js +6 -0
- package/dist/features/process-configs/security-analysis/update-sa-process-config.d.ts +1 -1
- package/dist/features/process-configs/security-analysis/update-sa-process-config.js +2 -0
- package/dist/features/process-configs/update-process-config-modifications.d.ts +1 -1
- package/dist/features/process-configs/update-process-config-modifications.js +6 -0
- package/dist/features/results/securityanalysis/security-analysis-result-nmk.d.ts +1 -1
- package/dist/features/results/securityanalysis/security-analysis-result-nmk.js +6 -0
- package/dist/features/results/securityanalysis/security-analysis-table.d.ts +1 -1
- package/dist/features/results/securityanalysis/security-analysis-table.js +6 -0
- package/dist/features/topBar/AboutDialog.d.ts +1 -1
- package/dist/features/topBar/AboutDialog.js +4 -7
- package/dist/features/topBar/DevModeBanner.d.ts +1 -1
- package/dist/features/topBar/GridLogo.d.ts +2 -2
- package/dist/features/topBar/GridLogo.js +1 -1
- package/dist/features/topBar/TopBar.d.ts +1 -1
- package/dist/features/topBar/UserInformationDialog.d.ts +1 -1
- package/dist/features/topBar/UserInformationDialog.js +39 -14
- package/dist/features/topBar/UserSettingsDialog.d.ts +1 -1
- package/dist/hooks/use-parameters-backend.d.ts +1 -1
- package/dist/hooks/use-stable-computed-array.d.ts +2 -0
- package/dist/hooks/use-stable-computed-array.js +16 -0
- package/dist/hooks/useModificationLabelComputer.d.ts +4 -4
- package/dist/index.js +80 -7
- package/dist/services/networkModification.js +1 -1
- package/dist/services/security-analysis.js +1 -1
- package/dist/services/sensitivity-analysis.js +1 -1
- package/dist/translations/en/topBarEn.d.ts +12 -0
- package/dist/translations/en/topBarEn.js +13 -1
- package/dist/translations/fr/topBarFr.d.ts +12 -0
- package/dist/translations/fr/topBarFr.js +13 -1
- package/dist/utils/constants/adornments.js +1 -1
- package/dist/utils/index.js +4 -1
- package/dist/utils/mapper/getFileIcon.d.ts +1 -1
- package/dist/utils/rounding.d.ts +20 -0
- package/dist/utils/rounding.js +26 -0
- package/dist/utils/store-sort-filter-fields.d.ts +38 -0
- package/dist/utils/store-sort-filter-fields.js +66 -0
- package/dist/utils/styles.d.ts +1 -1
- package/dist/utils/ts-utils.d.ts +1 -0
- package/dist/utils/ts-utils.js +7 -0
- package/dist/utils/types/computing-type.d.ts +19 -0
- package/dist/utils/types/computing-type.js +17 -0
- package/dist/utils/types/index.d.ts +1 -0
- package/dist/utils/types/index.js +2 -0
- package/dist/utils/types/parameters.type.d.ts +1 -1
- package/dist/utils/types/types.d.ts +11 -0
- package/package.json +4 -2
package/dist/index.js
CHANGED
|
@@ -101,9 +101,8 @@ import { ExplicitNamingFilterForm, explicitNamingFilterSchema, getExplicitNaming
|
|
|
101
101
|
import { FILTER_EQUIPMENTS_ATTRIBUTES } from "./components/composite/filter/explicitNaming/ExplicitNamingFilterConstants.js";
|
|
102
102
|
import { saveExpertFilter, saveExplicitNamingFilter } from "./components/composite/filter/utils/filterApi.js";
|
|
103
103
|
import { CONTINGENCY_LIST_EQUIPMENTS, FILTER_EQUIPMENTS } from "./components/composite/filter/utils/filterFormUtils.js";
|
|
104
|
-
import "
|
|
105
|
-
import "
|
|
106
|
-
import "react-intl";
|
|
104
|
+
import { GridItem } from "./components/composite/grid/grid-item.js";
|
|
105
|
+
import { GridSection } from "./components/composite/grid/grid-section.js";
|
|
107
106
|
import { OverflowableTableCell } from "./components/composite/muiTable/OverflowableTableCell.js";
|
|
108
107
|
import { OverflowableTableCellWithCheckbox } from "./components/composite/muiTable/OverflowableTableCellWithCheckbox.js";
|
|
109
108
|
import { AutocompleteWithFavorites } from "./components/composite/reactQueryBuilder/AutocompleteWithFavorites.js";
|
|
@@ -128,8 +127,33 @@ import { CUSTOM_AGGRID_THEME, styles } from "./components/composite/customAGGrid
|
|
|
128
127
|
import { CustomAGGrid } from "./components/composite/customAGGrid/customAggrid.js";
|
|
129
128
|
import { SeparatorCellRenderer } from "./components/composite/customAGGrid/separatorCellRenderer.js";
|
|
130
129
|
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./components/composite/customAGGrid/cell-renderers.js";
|
|
130
|
+
import { CustomAggridFilterContext, CustomAggridSortContext, useCustomAggridFilterContext, useCustomAggridSortContext } from "./components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
131
|
+
import { useCustomAggridSort } from "./components/composite/customAGGrid/hooks/use-custom-aggrid-sort.js";
|
|
132
|
+
import { CustomAggridAutocompleteFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.js";
|
|
133
|
+
import { CustomAggridComparatorFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-filter.js";
|
|
134
|
+
import { CustomAggridComparatorSelector } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-selector.js";
|
|
135
|
+
import { CustomAggridFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-filter.js";
|
|
136
|
+
import { CustomAggridTextFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-text-filter.js";
|
|
137
|
+
import { CustomFilterIcon } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-filter-icon.js";
|
|
138
|
+
import { useCustomAggridColumnFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-column-filter.js";
|
|
139
|
+
import { useCustomAggridComparatorFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-comparator-filter.js";
|
|
140
|
+
import { addToleranceToFilter, computeTolerance } from "./components/composite/customAGGrid/custom-aggrid-filters/utils/filter-tolerance-utils.js";
|
|
141
|
+
import { ColumnTypes, FilterDataTypes, FilterNumberComparators, FilterTextComparators, SortWay, TableType, UndisplayedFilterNumberComparators } from "./components/composite/customAGGrid/custom-aggrid-types.js";
|
|
142
|
+
import { CustomHeaderComponent } from "./components/composite/customAGGrid/custom-aggrid-header.js";
|
|
143
|
+
import { CustomMenu } from "./components/composite/customAGGrid/custom-aggrid-menu.js";
|
|
144
|
+
import { CustomAggridSort } from "./components/composite/customAGGrid/custom-aggrid-sort.js";
|
|
145
|
+
import { DisplayRounding } from "./components/composite/customAGGrid/display-rounding.js";
|
|
146
|
+
import { makeAgGridCustomHeaderColumn } from "./components/composite/customAGGrid/utils/custom-aggrid-header-utils.js";
|
|
147
|
+
import { ReportViewer } from "./components/composite/report/report-viewer/report-viewer.js";
|
|
148
|
+
import { ReportFetcherContext, ReportFilterContext, useReportFetcherContext, useReportFilterContext } from "./components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
149
|
+
import { default as default3 } from "./components/composite/report/report-viewer/log-table/log-table.js";
|
|
150
|
+
import { REPORT_SEVERITY, getContainerDefaultSeverityList, getDefaultSeverityFilter, sortSeverityList } from "./components/composite/report/report-severity.js";
|
|
151
|
+
import { mapReportLogs } from "./components/composite/report/report-log.mapper.js";
|
|
152
|
+
import { ReportType } from "./components/composite/report/report.type.js";
|
|
153
|
+
import { GLOBAL_REPORT_NODE_LABEL, NETWORK_MODIFICATION } from "./components/composite/report/report.constant.js";
|
|
154
|
+
import { QuickSearch } from "./components/composite/report/QuickSearch.js";
|
|
131
155
|
import { AuthenticationRouter } from "./features/authentication/AuthenticationRouter.js";
|
|
132
|
-
import { default as
|
|
156
|
+
import { default as default4 } from "./features/authentication/AuthenticationRouterErrorDisplay.js";
|
|
133
157
|
import { Login } from "./features/authentication/Login.js";
|
|
134
158
|
import { Logout } from "./features/authentication/Logout.js";
|
|
135
159
|
import { SignInCallbackHandler } from "./features/authentication/SignInCallbackHandler.js";
|
|
@@ -148,7 +172,7 @@ import { AboutDialog } from "./features/topBar/AboutDialog.js";
|
|
|
148
172
|
import { GridLogo, LogoText } from "./features/topBar/GridLogo.js";
|
|
149
173
|
import { DevModeBanner } from "./features/topBar/DevModeBanner.js";
|
|
150
174
|
import { TopBar } from "./features/topBar/TopBar.js";
|
|
151
|
-
import {
|
|
175
|
+
import { formatComputingTypeLabel, isValidComputingType } from "./features/parameters/common/computing-type.js";
|
|
152
176
|
import { COMMON_PARAMETERS, CONTINGENCIES, CONTINGENCY_LISTS, CONTINGENCY_LISTS_INFOS, PARAM_SA_FLOW_PROPORTIONAL_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_HIGH_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_LOW_VOLTAGE_ABSOLUTE_THRESHOLD, PARAM_SA_LOW_VOLTAGE_PROPORTIONAL_THRESHOLD, PARAM_SA_PROVIDER, PROVIDER, SPECIFIC_PARAMETERS, VERSION_PARAMETER, VOLTAGE_LEVEL } from "./features/parameters/common/constants.js";
|
|
153
177
|
import { LineSeparator } from "./features/parameters/common/line-separator.js";
|
|
154
178
|
import { LabelledButton, SwitchWithLabel, TabPanel } from "./features/parameters/common/parameters.js";
|
|
@@ -238,6 +262,8 @@ import { substationCreationDtoToForm, substationCreationEmptyFormData, substatio
|
|
|
238
262
|
import { SubstationModificationForm } from "./features/network-modifications/substation/modification/SubstationModificationForm.js";
|
|
239
263
|
import { substationModificationDtoToForm, substationModificationEmptyFormData, substationModificationFormSchema, substationModificationFormToDto } from "./features/network-modifications/substation/modification/substationModification.utils.js";
|
|
240
264
|
import { SwitchesBetweenSections } from "./features/network-modifications/voltageLevel/creation/tabs/structureTab/switchesBetweenSections/SwitchesBetweenSections.js";
|
|
265
|
+
import "react/jsx-runtime";
|
|
266
|
+
import "@mui/material";
|
|
241
267
|
import "react";
|
|
242
268
|
import "react-hook-form";
|
|
243
269
|
import { equalsArray, equalsArrayAnyOrder } from "./utils/algos.js";
|
|
@@ -275,7 +301,8 @@ import { DistributionType, SensitivityType, mapSensitivityAnalysisParameters } f
|
|
|
275
301
|
import { CalculationType, LoadModelsRule } from "./utils/types/dynamic-margin-calculation.type.js";
|
|
276
302
|
import { OperationType } from "./utils/types/network-modification-types.js";
|
|
277
303
|
import { mapPccMinParameters } from "./utils/types/pcc-min.type.js";
|
|
278
|
-
import {
|
|
304
|
+
import { ComputingType } from "./utils/types/computing-type.js";
|
|
305
|
+
import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./utils/ts-utils.js";
|
|
279
306
|
import { toNumber, validateValueIsANumber } from "./utils/validation-functions.js";
|
|
280
307
|
import { NO_ITEM_SELECTION_FOR_COPY } from "./utils/directory-utils.js";
|
|
281
308
|
import { fetchAppsMetadata, fetchBaseVoltages, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isExploreMetadata, isStudyMetadata } from "./services/appsMetadata.js";
|
|
@@ -297,6 +324,7 @@ import { fetchDynamicSimulationModels } from "./services/dynamic-mapping.js";
|
|
|
297
324
|
import { fetchDynamicSimulationParameters, fetchDynamicSimulationProviders, updateDynamicSimulationParameters } from "./services/dynamic-simulation.js";
|
|
298
325
|
import { fetchContingencyAndFiltersLists, fetchDynamicSecurityAnalysisProviders } from "./services/dynamic-security-analysis.js";
|
|
299
326
|
import { fetchDynamicMarginCalculationParameters, fetchDynamicMarginCalculationProviders, updateDynamicMarginCalculationParameters } from "./services/dynamic-margin-calculation.js";
|
|
327
|
+
import "react-intl";
|
|
300
328
|
import "@mui/icons-material";
|
|
301
329
|
import { MAX_SECTIONS_COUNT } from "./features/network-modifications/voltageLevel/creation/voltageLevel.constants.js";
|
|
302
330
|
import { VoltageLevelCreationForm } from "./features/network-modifications/voltageLevel/creation/VoltageLevelCreationForm.js";
|
|
@@ -467,7 +495,7 @@ export {
|
|
|
467
495
|
ArrowsOutputIcon,
|
|
468
496
|
DataType2 as AssignmentDataType,
|
|
469
497
|
AuthenticationRouter,
|
|
470
|
-
|
|
498
|
+
default4 as AuthenticationRouterErrorDisplay,
|
|
471
499
|
AutocompleteInput,
|
|
472
500
|
AutocompleteWithFavorites,
|
|
473
501
|
BALANCE_TYPE,
|
|
@@ -530,6 +558,7 @@ export {
|
|
|
530
558
|
CheckboxInput,
|
|
531
559
|
CheckboxNullableInput,
|
|
532
560
|
ChipItemsInput,
|
|
561
|
+
ColumnTypes,
|
|
533
562
|
CombinatorSelector,
|
|
534
563
|
CombinatorType,
|
|
535
564
|
ComputingType,
|
|
@@ -544,9 +573,20 @@ export {
|
|
|
544
573
|
CsvPicker,
|
|
545
574
|
CustomAGGrid,
|
|
546
575
|
CustomAgGridTable,
|
|
576
|
+
CustomAggridAutocompleteFilter,
|
|
577
|
+
CustomAggridComparatorFilter,
|
|
578
|
+
CustomAggridComparatorSelector,
|
|
579
|
+
CustomAggridFilter,
|
|
580
|
+
CustomAggridFilterContext,
|
|
581
|
+
CustomAggridSort,
|
|
582
|
+
CustomAggridSortContext,
|
|
583
|
+
CustomAggridTextFilter,
|
|
547
584
|
CustomError,
|
|
585
|
+
CustomFilterIcon,
|
|
548
586
|
CustomFormContext,
|
|
549
587
|
CustomFormProvider,
|
|
588
|
+
CustomHeaderComponent,
|
|
589
|
+
CustomMenu,
|
|
550
590
|
CustomMenuItem,
|
|
551
591
|
CustomMuiDialog,
|
|
552
592
|
CustomNestedMenuItem,
|
|
@@ -593,6 +633,7 @@ export {
|
|
|
593
633
|
DirectoryItemInput,
|
|
594
634
|
DirectoryItemSelector,
|
|
595
635
|
DirectoryItemsInput,
|
|
636
|
+
DisplayRounding,
|
|
596
637
|
DistributionType,
|
|
597
638
|
DndColumnType,
|
|
598
639
|
DndTable,
|
|
@@ -652,7 +693,10 @@ export {
|
|
|
652
693
|
FieldLabel,
|
|
653
694
|
FieldType,
|
|
654
695
|
FilterCreationDialog,
|
|
696
|
+
FilterDataTypes,
|
|
655
697
|
FilterForm,
|
|
698
|
+
FilterNumberComparators,
|
|
699
|
+
FilterTextComparators,
|
|
656
700
|
FilterType,
|
|
657
701
|
FlatParameters,
|
|
658
702
|
FloatInput,
|
|
@@ -660,6 +704,7 @@ export {
|
|
|
660
704
|
GENERAL_APPLY_MODIFICATIONS,
|
|
661
705
|
GENERATORS_SELECTION_TYPE,
|
|
662
706
|
GENERATOR_TAB_FIELDS,
|
|
707
|
+
GLOBAL_REPORT_NODE_LABEL,
|
|
663
708
|
GRIDSUITE_DEFAULT_PRECISION,
|
|
664
709
|
Generator,
|
|
665
710
|
GeneratorCreationForm,
|
|
@@ -668,7 +713,9 @@ export {
|
|
|
668
713
|
GeneratorDialogTabs,
|
|
669
714
|
GeneratorDialogTabsContent,
|
|
670
715
|
GeneratorModificationForm,
|
|
716
|
+
GridItem,
|
|
671
717
|
GridLogo,
|
|
718
|
+
GridSection,
|
|
672
719
|
GroupValueEditor,
|
|
673
720
|
HIGH_VOLTAGE_LIMIT,
|
|
674
721
|
HVDC_AC_EMULATION,
|
|
@@ -731,6 +778,7 @@ export {
|
|
|
731
778
|
LoadFlowParametersInline,
|
|
732
779
|
LoadForm,
|
|
733
780
|
LoadModelsRule,
|
|
781
|
+
default3 as LogTable,
|
|
734
782
|
Login,
|
|
735
783
|
LogoText,
|
|
736
784
|
Logout,
|
|
@@ -769,6 +817,7 @@ export {
|
|
|
769
817
|
NAD_POSITIONS_GENERATION_MODE,
|
|
770
818
|
NAD_POSITIONS_GENERATION_MODE_LABEL,
|
|
771
819
|
NAME,
|
|
820
|
+
NETWORK_MODIFICATION,
|
|
772
821
|
NODE_CLUSTER,
|
|
773
822
|
NODE_CLUSTER_FILTER_IDS,
|
|
774
823
|
NO_ITEM_SELECTION_FOR_COPY,
|
|
@@ -855,6 +904,7 @@ export {
|
|
|
855
904
|
PropertyForm,
|
|
856
905
|
PropertyValueEditor,
|
|
857
906
|
ProviderParam,
|
|
907
|
+
QuickSearch,
|
|
858
908
|
RATIO_REGULATION_MODE_OPTIONS,
|
|
859
909
|
RATIO_TAP_CHANGER_POSITION,
|
|
860
910
|
RATIO_TAP_CHANGER_TARGET_V,
|
|
@@ -864,6 +914,7 @@ export {
|
|
|
864
914
|
REGULATION_TYPES,
|
|
865
915
|
REGULATION_TYPE_OPTIONS,
|
|
866
916
|
REMOVE,
|
|
917
|
+
REPORT_SEVERITY,
|
|
867
918
|
RESET_AUTHENTICATION_ROUTER_ERROR,
|
|
868
919
|
RULES,
|
|
869
920
|
RadioInput,
|
|
@@ -877,6 +928,10 @@ export {
|
|
|
877
928
|
ReadOnlyInput,
|
|
878
929
|
RegulatingTerminalForm,
|
|
879
930
|
RemoveButton,
|
|
931
|
+
ReportFetcherContext,
|
|
932
|
+
ReportFilterContext,
|
|
933
|
+
ReportType,
|
|
934
|
+
ReportViewer,
|
|
880
935
|
ResizeHandle,
|
|
881
936
|
RootNetworkCellRenderer,
|
|
882
937
|
RootNetworkChipCell,
|
|
@@ -947,6 +1002,7 @@ export {
|
|
|
947
1002
|
SliderInput,
|
|
948
1003
|
SnackbarProvider,
|
|
949
1004
|
SolverType,
|
|
1005
|
+
SortWay,
|
|
950
1006
|
SubmitButton,
|
|
951
1007
|
Substation,
|
|
952
1008
|
SubstationCreationForm,
|
|
@@ -967,6 +1023,7 @@ export {
|
|
|
967
1023
|
TabValues,
|
|
968
1024
|
TableNumericalInput,
|
|
969
1025
|
TableTextInput,
|
|
1026
|
+
TableType,
|
|
970
1027
|
TagRenderer,
|
|
971
1028
|
TextFieldWithAdornment,
|
|
972
1029
|
TextInput,
|
|
@@ -984,6 +1041,7 @@ export {
|
|
|
984
1041
|
USER_VALIDATION_ERROR,
|
|
985
1042
|
USE_REACTIVE_LIMITS,
|
|
986
1043
|
UnauthorizedAccessAlert,
|
|
1044
|
+
UndisplayedFilterNumberComparators,
|
|
987
1045
|
UniqueNameInput,
|
|
988
1046
|
UpdateSAProcessConfigDialog,
|
|
989
1047
|
UserManagerMock,
|
|
@@ -1017,6 +1075,7 @@ export {
|
|
|
1017
1075
|
YUP_NOT_TYPE_NUMBER,
|
|
1018
1076
|
YUP_POSITIVE,
|
|
1019
1077
|
YUP_REQUIRED,
|
|
1078
|
+
addToleranceToFilter,
|
|
1020
1079
|
alertThresholdMarks,
|
|
1021
1080
|
areArrayElementsUnique,
|
|
1022
1081
|
areIdsEqual,
|
|
@@ -1050,6 +1109,7 @@ export {
|
|
|
1050
1109
|
componentsFr,
|
|
1051
1110
|
computeSwitchedOnValue,
|
|
1052
1111
|
computeTagMinSize,
|
|
1112
|
+
computeTolerance,
|
|
1053
1113
|
convertInputValue,
|
|
1054
1114
|
convertOutputValue,
|
|
1055
1115
|
copyEquipmentPropertiesForCreation,
|
|
@@ -1212,11 +1272,13 @@ export {
|
|
|
1212
1272
|
getConnectivityWithoutPositionEmptyFormData,
|
|
1213
1273
|
getConnectivityWithoutPositionValidationSchema,
|
|
1214
1274
|
getCont1Cont2WithPositionEmptyFormData,
|
|
1275
|
+
getContainerDefaultSeverityList,
|
|
1215
1276
|
getContingencyListsInfosFormSchema,
|
|
1216
1277
|
getCreateSwitchesEmptyFormData,
|
|
1217
1278
|
getCreateSwitchesValidationSchema,
|
|
1218
1279
|
getCsvDelimiter,
|
|
1219
1280
|
getDefaultRowData,
|
|
1281
|
+
getDefaultSeverityFilter,
|
|
1220
1282
|
getEnergySourceLabel,
|
|
1221
1283
|
getEquipmentTypeShortLabel,
|
|
1222
1284
|
getEquipmentsInfosForSearchBar,
|
|
@@ -1323,6 +1385,7 @@ export {
|
|
|
1323
1385
|
isFloatNumber,
|
|
1324
1386
|
isInjection,
|
|
1325
1387
|
isIntegerNumber,
|
|
1388
|
+
isNonEmptyStringOrArray,
|
|
1326
1389
|
isObjectEmpty,
|
|
1327
1390
|
isProcessType,
|
|
1328
1391
|
isStudyMetadata,
|
|
@@ -1343,10 +1406,12 @@ export {
|
|
|
1343
1406
|
loginEn,
|
|
1344
1407
|
loginFr,
|
|
1345
1408
|
logout,
|
|
1409
|
+
makeAgGridCustomHeaderColumn,
|
|
1346
1410
|
makeComposeClasses,
|
|
1347
1411
|
mapDynamicSimulationParameters,
|
|
1348
1412
|
mapNmKResultsCutOffPower,
|
|
1349
1413
|
mapPccMinParameters,
|
|
1414
|
+
mapReportLogs,
|
|
1350
1415
|
mapSecurityAnalysisParameters,
|
|
1351
1416
|
mapSensitivityAnalysisParameters,
|
|
1352
1417
|
mergeModificationAndEquipmentProperties,
|
|
@@ -1412,6 +1477,7 @@ export {
|
|
|
1412
1477
|
shuntCompensatorModificationFormSchema,
|
|
1413
1478
|
shuntCompensatorModificationFormToDto,
|
|
1414
1479
|
snackWithFallback,
|
|
1480
|
+
sortSeverityList,
|
|
1415
1481
|
standardTextField,
|
|
1416
1482
|
styles,
|
|
1417
1483
|
subscribeToUserState,
|
|
@@ -1465,6 +1531,11 @@ export {
|
|
|
1465
1531
|
useConfidentialityWarning,
|
|
1466
1532
|
useConvertValue,
|
|
1467
1533
|
useCsvExport,
|
|
1534
|
+
useCustomAggridColumnFilter,
|
|
1535
|
+
useCustomAggridComparatorFilter,
|
|
1536
|
+
useCustomAggridFilterContext,
|
|
1537
|
+
useCustomAggridSort,
|
|
1538
|
+
useCustomAggridSortContext,
|
|
1468
1539
|
useCustomFormContext,
|
|
1469
1540
|
useDebounce,
|
|
1470
1541
|
useElementSearch,
|
|
@@ -1482,6 +1553,8 @@ export {
|
|
|
1482
1553
|
useParametersForm,
|
|
1483
1554
|
usePredefinedProperties,
|
|
1484
1555
|
usePrevious,
|
|
1556
|
+
useReportFetcherContext,
|
|
1557
|
+
useReportFilterContext,
|
|
1485
1558
|
useSelectAppearance,
|
|
1486
1559
|
useSnackMessage,
|
|
1487
1560
|
useStateBoolean,
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { backendFetch, backendFetchJson, safeEncodeURIComponent, backendFetchText } from "./utils.js";
|
|
2
2
|
import { PREFIX_STUDY_QUERIES } from "./loadflow.js";
|
|
3
3
|
const PREFIX_NETWORK_MODIFICATION_QUERIES = `${"api/gateway"}/network-modification`;
|
|
4
4
|
const getBaseNetworkModificationUrl = () => `${PREFIX_NETWORK_MODIFICATION_QUERIES}/v1`;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { backendFetchJson, safeEncodeURIComponent, backendFetch } from "./utils.js";
|
|
2
2
|
import { PREFIX_STUDY_QUERIES } from "./loadflow.js";
|
|
3
3
|
import "../utils/conversionUtils.js";
|
|
4
4
|
import "../utils/types/equipmentType.js";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { backendFetchJson, safeEncodeURIComponent, backendFetch } from "./utils.js";
|
|
2
2
|
import "../utils/conversionUtils.js";
|
|
3
3
|
import "../utils/types/equipmentType.js";
|
|
4
4
|
import { mapSensitivityAnalysisParameters } from "../utils/types/sensitivity-analysis.type.js";
|
|
@@ -37,9 +37,21 @@ export declare const topBarEn: {
|
|
|
37
37
|
'user-information-dialog/profile': string;
|
|
38
38
|
'user-information-dialog/no-profile': string;
|
|
39
39
|
'user-information-dialog/quotas': string;
|
|
40
|
+
'user-information-dialog/quotas-per-study': string;
|
|
40
41
|
'user-information-dialog/number-of-cases-or-studies': string;
|
|
41
42
|
'user-information-dialog/used': string;
|
|
42
43
|
'user-information-dialog/number-of-builds-per-study': string;
|
|
44
|
+
'user-information-dialog/number-of-loadflow-per-study': string;
|
|
45
|
+
'user-information-dialog/number-of-security-per-study': string;
|
|
46
|
+
'user-information-dialog/number-of-sensitivity-per-study': string;
|
|
47
|
+
'user-information-dialog/number-of-shortCircuit-per-study': string;
|
|
48
|
+
'user-information-dialog/number-of-voltageInit-per-study': string;
|
|
49
|
+
'user-information-dialog/number-of-pccMin-per-study': string;
|
|
50
|
+
'user-information-dialog/number-of-stateEstimation-per-study': string;
|
|
51
|
+
'user-information-dialog/number-of-balanceAdjustement-per-study': string;
|
|
52
|
+
'user-information-dialog/number-of-dynamicSimulation-per-study': string;
|
|
53
|
+
'user-information-dialog/number-of-dynamicSecurity-per-study': string;
|
|
54
|
+
'user-information-dialog/number-of-dynamicMargin-per-study': string;
|
|
43
55
|
'user-settings-dialog/title': string;
|
|
44
56
|
'user-settings-dialog/label-developer-mode': string;
|
|
45
57
|
'user-settings-dialog/warning-developer-mode': string;
|
|
@@ -31,9 +31,21 @@ const topBarEn = {
|
|
|
31
31
|
"user-information-dialog/profile": "Profile",
|
|
32
32
|
"user-information-dialog/no-profile": "No profile",
|
|
33
33
|
"user-information-dialog/quotas": "User quotas",
|
|
34
|
+
"user-information-dialog/quotas-per-study": "User quotas per study",
|
|
34
35
|
"user-information-dialog/number-of-cases-or-studies": "Number of cases or studies",
|
|
35
36
|
"user-information-dialog/used": "Used",
|
|
36
|
-
"user-information-dialog/number-of-builds-per-study": "Number of builds
|
|
37
|
+
"user-information-dialog/number-of-builds-per-study": "Number of builds",
|
|
38
|
+
"user-information-dialog/number-of-loadflow-per-study": "Number of loadflow",
|
|
39
|
+
"user-information-dialog/number-of-security-per-study": "Number of security analysis",
|
|
40
|
+
"user-information-dialog/number-of-sensitivity-per-study": "Number of sensitivity analysis",
|
|
41
|
+
"user-information-dialog/number-of-shortCircuit-per-study": "Number of short circuit",
|
|
42
|
+
"user-information-dialog/number-of-voltageInit-per-study": "Number of voltage initialization",
|
|
43
|
+
"user-information-dialog/number-of-pccMin-per-study": "Number of PCC N-1",
|
|
44
|
+
"user-information-dialog/number-of-stateEstimation-per-study": "Number of state estimation",
|
|
45
|
+
"user-information-dialog/number-of-balanceAdjustement-per-study": "Number of balance adjustment",
|
|
46
|
+
"user-information-dialog/number-of-dynamicSimulation-per-study": "Number of dynamic simulations",
|
|
47
|
+
"user-information-dialog/number-of-dynamicSecurity-per-study": "Number of dynamic security analysis",
|
|
48
|
+
"user-information-dialog/number-of-dynamicMargin-per-study": "Number of dynamic margin",
|
|
37
49
|
"user-settings-dialog/title": "User settings",
|
|
38
50
|
"user-settings-dialog/label-developer-mode": "Developer mode",
|
|
39
51
|
"user-settings-dialog/warning-developer-mode": "Some of the features are not complete, so they may not work as expected. To hide these features, disable developer mode.",
|
|
@@ -37,9 +37,21 @@ export declare const topBarFr: {
|
|
|
37
37
|
'user-information-dialog/profile': string;
|
|
38
38
|
'user-information-dialog/no-profile': string;
|
|
39
39
|
'user-information-dialog/quotas': string;
|
|
40
|
+
'user-information-dialog/quotas-per-study': string;
|
|
40
41
|
'user-information-dialog/number-of-cases-or-studies': string;
|
|
41
42
|
'user-information-dialog/used': string;
|
|
42
43
|
'user-information-dialog/number-of-builds-per-study': string;
|
|
44
|
+
'user-information-dialog/number-of-loadflow-per-study': string;
|
|
45
|
+
'user-information-dialog/number-of-security-per-study': string;
|
|
46
|
+
'user-information-dialog/number-of-sensitivity-per-study': string;
|
|
47
|
+
'user-information-dialog/number-of-shortCircuit-per-study': string;
|
|
48
|
+
'user-information-dialog/number-of-voltageInit-per-study': string;
|
|
49
|
+
'user-information-dialog/number-of-pccMin-per-study': string;
|
|
50
|
+
'user-information-dialog/number-of-stateEstimation-per-study': string;
|
|
51
|
+
'user-information-dialog/number-of-balanceAdjustement-per-study': string;
|
|
52
|
+
'user-information-dialog/number-of-dynamicSimulation-per-study': string;
|
|
53
|
+
'user-information-dialog/number-of-dynamicSecurity-per-study': string;
|
|
54
|
+
'user-information-dialog/number-of-dynamicMargin-per-study': string;
|
|
43
55
|
'user-settings-dialog/title': string;
|
|
44
56
|
'user-settings-dialog/label-developer-mode': string;
|
|
45
57
|
'user-settings-dialog/warning-developer-mode': string;
|
|
@@ -31,9 +31,21 @@ const topBarFr = {
|
|
|
31
31
|
"user-information-dialog/profile": "Profil",
|
|
32
32
|
"user-information-dialog/no-profile": "Pas de profil",
|
|
33
33
|
"user-information-dialog/quotas": "Quotas",
|
|
34
|
+
"user-information-dialog/quotas-per-study": "Quotas par étude",
|
|
34
35
|
"user-information-dialog/number-of-cases-or-studies": "Nombre situations ou études",
|
|
35
36
|
"user-information-dialog/used": "Utilisé",
|
|
36
|
-
"user-information-dialog/number-of-builds-per-study": "Nombre réalisations
|
|
37
|
+
"user-information-dialog/number-of-builds-per-study": "Nombre de réalisations",
|
|
38
|
+
"user-information-dialog/number-of-loadflow-per-study": "Nombre de calculs de répartition",
|
|
39
|
+
"user-information-dialog/number-of-security-per-study": "Nombre d'analyses de sécurité",
|
|
40
|
+
"user-information-dialog/number-of-sensitivity-per-study": "Nombre d'analyses de sensibilité",
|
|
41
|
+
"user-information-dialog/number-of-shortCircuit-per-study": "Nombre de calculs de court-circuit",
|
|
42
|
+
"user-information-dialog/number-of-voltageInit-per-study": "Nombre d'initialisations du plan de tension",
|
|
43
|
+
"user-information-dialog/number-of-pccMin-per-study": "Nombre de PCC N-1",
|
|
44
|
+
"user-information-dialog/number-of-stateEstimation-per-study": "Nombre d'estimations d'état",
|
|
45
|
+
"user-information-dialog/number-of-balanceAdjustement-per-study": "Nombre d'équilibrages bilan",
|
|
46
|
+
"user-information-dialog/number-of-dynamicSimulation-per-study": "Nombre de simulations dynamiques",
|
|
47
|
+
"user-information-dialog/number-of-dynamicSecurity-per-study": "Nombre d'analyses de sécurité dynamiques",
|
|
48
|
+
"user-information-dialog/number-of-dynamicMargin-per-study": "Nombre de calculs de marge dynamiques",
|
|
37
49
|
"user-settings-dialog/title": "Paramètres utilisateur",
|
|
38
50
|
"user-settings-dialog/label-developer-mode": "Mode développeur",
|
|
39
51
|
"user-settings-dialog/warning-developer-mode": "Certaines fonctionnalités ne sont pas complètes et peuvent donc ne pas fonctionner comme prévu. Pour masquer ces fonctionnalités, désactivez le mode développeur.",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MEGA_WATT,
|
|
1
|
+
import { MEGA_WATT, AMPERE, KILO_AMPERE, KILO_METER, MEGA_VOLT_AMPERE, MICRO_SIEMENS, OHM, PERCENTAGE, MEGA_VAR, SIEMENS, KILO_VOLT } from "./unitsConstants.js";
|
|
2
2
|
const MicroSusceptanceAdornment = {
|
|
3
3
|
position: "end",
|
|
4
4
|
text: MICRO_SIEMENS
|
package/dist/utils/index.js
CHANGED
|
@@ -33,7 +33,8 @@ import { DistributionType, SensitivityType, mapSensitivityAnalysisParameters } f
|
|
|
33
33
|
import { CalculationType, LoadModelsRule } from "./types/dynamic-margin-calculation.type.js";
|
|
34
34
|
import { OperationType } from "./types/network-modification-types.js";
|
|
35
35
|
import { mapPccMinParameters } from "./types/pcc-min.type.js";
|
|
36
|
-
import {
|
|
36
|
+
import { ComputingType } from "./types/computing-type.js";
|
|
37
|
+
import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./ts-utils.js";
|
|
37
38
|
import { toNumber, validateValueIsANumber } from "./validation-functions.js";
|
|
38
39
|
import { NO_ITEM_SELECTION_FOR_COPY } from "./directory-utils.js";
|
|
39
40
|
export {
|
|
@@ -51,6 +52,7 @@ export {
|
|
|
51
52
|
COMMON_CONFIG_PARAMS_NAMES,
|
|
52
53
|
CONNECTION_DIRECTIONS,
|
|
53
54
|
CalculationType,
|
|
55
|
+
ComputingType,
|
|
54
56
|
CustomError,
|
|
55
57
|
DARK_THEME,
|
|
56
58
|
DEGREE,
|
|
@@ -170,6 +172,7 @@ export {
|
|
|
170
172
|
isBlankOrEmpty,
|
|
171
173
|
isEmpty,
|
|
172
174
|
isInjection,
|
|
175
|
+
isNonEmptyStringOrArray,
|
|
173
176
|
isObjectEmpty,
|
|
174
177
|
keyGenerator,
|
|
175
178
|
kiloUnitToUnit,
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { ElementType } from '../types/elementType';
|
|
2
2
|
import { SxStyle } from '../styles';
|
|
3
|
-
export declare function getFileIcon(type: ElementType, style: SxStyle): import("react
|
|
3
|
+
export declare function getFileIcon(type: ElementType, style: SxStyle): import("react").JSX.Element | undefined;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2023, RTE (http://www.rte-france.com)
|
|
3
|
+
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
4
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
5
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
6
|
+
*/
|
|
7
|
+
export declare const GRIDSUITE_DEFAULT_PRECISION = 13;
|
|
8
|
+
export declare const roundToPrecision: (num: number, precision: number) => number;
|
|
9
|
+
export declare const roundToDefaultPrecision: (num: number) => number;
|
|
10
|
+
/**
|
|
11
|
+
* Counts the number of decimal places in a given number.
|
|
12
|
+
* Converts the number to a string and checks for a decimal point.
|
|
13
|
+
* If a decimal point is found, it returns the length of the sequence following the decimal point.
|
|
14
|
+
* Returns 0 if there is no decimal part.
|
|
15
|
+
* @param {number} number - The number whose decimal places are to be counted.
|
|
16
|
+
* @returns {number} The number of decimal places in the input number.
|
|
17
|
+
*/
|
|
18
|
+
export declare const countDecimalPlacesFromString: (numberAsString: string) => number;
|
|
19
|
+
export declare const countDecimalPlaces: (number: number) => number;
|
|
20
|
+
export declare const truncateNumber: (value: number, decimalPrecision: number) => number;
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
const GRIDSUITE_DEFAULT_PRECISION = 13;
|
|
2
|
+
const roundToPrecision = (num, precision) => Number(num.toPrecision(precision));
|
|
3
|
+
const roundToDefaultPrecision = (num) => roundToPrecision(num, GRIDSUITE_DEFAULT_PRECISION);
|
|
4
|
+
const countDecimalPlacesFromString = (numberAsString) => {
|
|
5
|
+
if (numberAsString.includes(".")) {
|
|
6
|
+
return numberAsString.split(".")[1].length;
|
|
7
|
+
}
|
|
8
|
+
return 0;
|
|
9
|
+
};
|
|
10
|
+
const countDecimalPlaces = (number) => {
|
|
11
|
+
const numberAsString = number.toString();
|
|
12
|
+
return countDecimalPlacesFromString(numberAsString);
|
|
13
|
+
};
|
|
14
|
+
const truncateNumber = (value, decimalPrecision) => {
|
|
15
|
+
const factor = 10 ** decimalPrecision;
|
|
16
|
+
const truncatedNumber = Math.floor(value * factor) / factor;
|
|
17
|
+
return truncatedNumber;
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
GRIDSUITE_DEFAULT_PRECISION,
|
|
21
|
+
countDecimalPlaces,
|
|
22
|
+
countDecimalPlacesFromString,
|
|
23
|
+
roundToDefaultPrecision,
|
|
24
|
+
roundToPrecision,
|
|
25
|
+
truncateNumber
|
|
26
|
+
};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2024, RTE (http://www.rte-france.com)
|
|
3
|
+
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
4
|
+
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
5
|
+
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
6
|
+
*/
|
|
7
|
+
export declare const LOADFLOW_RESULT_SORT_STORE = "loadflowResult";
|
|
8
|
+
export declare const LOADFLOW_CURRENT_LIMIT_VIOLATION = "loadflowCurrentLimitViolation";
|
|
9
|
+
export declare const LOADFLOW_VOLTAGE_LIMIT_VIOLATION = "loadflowVoltageLimitViolation";
|
|
10
|
+
export declare const LOADFLOW_RESULT = "loadflowResult";
|
|
11
|
+
export declare const SECURITY_ANALYSIS_RESULT_SORT_STORE = "securityAnalysisResult";
|
|
12
|
+
export declare const SECURITY_ANALYSIS_RESULT_N = "securityAnalysisResultN";
|
|
13
|
+
export declare const SECURITY_ANALYSIS_RESULT_N_K = "securityAnalysisResultNK";
|
|
14
|
+
export declare const SECURITY_ANALYSIS_PAGINATION_STORE_FIELD = "securityAnalysisPagination";
|
|
15
|
+
export declare const SENSITIVITY_ANALYSIS_RESULT_SORT_STORE = "sensitivityAnalysisResult";
|
|
16
|
+
export declare const SENSITIVITY_ANALYSIS_PAGINATION_STORE_FIELD = "sensitivityAnalysisPagination";
|
|
17
|
+
export declare const SENSITIVITY_IN_DELTA_MW_N = "sensitivityInDeltaMWN";
|
|
18
|
+
export declare const SENSITIVITY_IN_DELTA_MW_N_K = "sensitivityInDeltaMWNK";
|
|
19
|
+
export declare const SENSITIVITY_IN_DELTA_A_N = "sensitivityInDeltaAN";
|
|
20
|
+
export declare const SENSITIVITY_IN_DELTA_A_N_K = "sensitivityInDeltaANK";
|
|
21
|
+
export declare const SENSITIVITY_AT_NODE_N = "sensitivityAtNodeN";
|
|
22
|
+
export declare const SENSITIVITY_AT_NODE_N_K = "sensitivityAtNodeNK";
|
|
23
|
+
export declare const SHORTCIRCUIT_ANALYSIS_RESULT_SORT_STORE = "shortcircuitAnalysisResult";
|
|
24
|
+
export declare const SHORTCIRCUIT_ANALYSIS_PAGINATION_STORE_FIELD = "shortcircuitAnalysisPagination";
|
|
25
|
+
export declare const ONE_BUS = "oneBus";
|
|
26
|
+
export declare const ALL_BUSES = "allBuses";
|
|
27
|
+
export declare const DYNAMIC_SIMULATION_RESULT_SORT_STORE = "dynamicSimulationResult";
|
|
28
|
+
export declare const TIMELINE = "timeline";
|
|
29
|
+
export declare const SPREADSHEET_SORT_STORE = "spreadsheet";
|
|
30
|
+
export declare const LOGS_PAGINATION_STORE_FIELD = "logsPagination";
|
|
31
|
+
export declare const TABLE_SORT_STORE = "tableSort";
|
|
32
|
+
export declare const STATEESTIMATION_RESULT_SORT_STORE = "stateEstimationResult";
|
|
33
|
+
export declare const STATEESTIMATION_QUALITY_CRITERION = "stateEstimationQualityCriterion";
|
|
34
|
+
export declare const STATEESTIMATION_QUALITY_PER_REGION = "stateEstimationQualityPerRegion";
|
|
35
|
+
export declare const STATEESTIMATION_RESULT = "stateEstimationResult";
|
|
36
|
+
export declare const PCCMIN_ANALYSIS_RESULT_SORT_STORE = "pccminAnalysisResult";
|
|
37
|
+
export declare const PCCMIN_ANALYSIS_PAGINATION_STORE_FIELD = "pccminAnalysisPagination";
|
|
38
|
+
export declare const PCCMIN_RESULT = "pccMinResults";
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
const LOADFLOW_RESULT_SORT_STORE = "loadflowResult";
|
|
2
|
+
const LOADFLOW_CURRENT_LIMIT_VIOLATION = "loadflowCurrentLimitViolation";
|
|
3
|
+
const LOADFLOW_VOLTAGE_LIMIT_VIOLATION = "loadflowVoltageLimitViolation";
|
|
4
|
+
const LOADFLOW_RESULT = "loadflowResult";
|
|
5
|
+
const SECURITY_ANALYSIS_RESULT_SORT_STORE = "securityAnalysisResult";
|
|
6
|
+
const SECURITY_ANALYSIS_RESULT_N = "securityAnalysisResultN";
|
|
7
|
+
const SECURITY_ANALYSIS_RESULT_N_K = "securityAnalysisResultNK";
|
|
8
|
+
const SECURITY_ANALYSIS_PAGINATION_STORE_FIELD = "securityAnalysisPagination";
|
|
9
|
+
const SENSITIVITY_ANALYSIS_RESULT_SORT_STORE = "sensitivityAnalysisResult";
|
|
10
|
+
const SENSITIVITY_ANALYSIS_PAGINATION_STORE_FIELD = "sensitivityAnalysisPagination";
|
|
11
|
+
const SENSITIVITY_IN_DELTA_MW_N = "sensitivityInDeltaMWN";
|
|
12
|
+
const SENSITIVITY_IN_DELTA_MW_N_K = "sensitivityInDeltaMWNK";
|
|
13
|
+
const SENSITIVITY_IN_DELTA_A_N = "sensitivityInDeltaAN";
|
|
14
|
+
const SENSITIVITY_IN_DELTA_A_N_K = "sensitivityInDeltaANK";
|
|
15
|
+
const SENSITIVITY_AT_NODE_N = "sensitivityAtNodeN";
|
|
16
|
+
const SENSITIVITY_AT_NODE_N_K = "sensitivityAtNodeNK";
|
|
17
|
+
const SHORTCIRCUIT_ANALYSIS_RESULT_SORT_STORE = "shortcircuitAnalysisResult";
|
|
18
|
+
const SHORTCIRCUIT_ANALYSIS_PAGINATION_STORE_FIELD = "shortcircuitAnalysisPagination";
|
|
19
|
+
const ONE_BUS = "oneBus";
|
|
20
|
+
const ALL_BUSES = "allBuses";
|
|
21
|
+
const DYNAMIC_SIMULATION_RESULT_SORT_STORE = "dynamicSimulationResult";
|
|
22
|
+
const TIMELINE = "timeline";
|
|
23
|
+
const SPREADSHEET_SORT_STORE = "spreadsheet";
|
|
24
|
+
const LOGS_PAGINATION_STORE_FIELD = "logsPagination";
|
|
25
|
+
const TABLE_SORT_STORE = "tableSort";
|
|
26
|
+
const STATEESTIMATION_RESULT_SORT_STORE = "stateEstimationResult";
|
|
27
|
+
const STATEESTIMATION_QUALITY_CRITERION = "stateEstimationQualityCriterion";
|
|
28
|
+
const STATEESTIMATION_QUALITY_PER_REGION = "stateEstimationQualityPerRegion";
|
|
29
|
+
const STATEESTIMATION_RESULT = "stateEstimationResult";
|
|
30
|
+
const PCCMIN_ANALYSIS_RESULT_SORT_STORE = "pccminAnalysisResult";
|
|
31
|
+
const PCCMIN_ANALYSIS_PAGINATION_STORE_FIELD = "pccminAnalysisPagination";
|
|
32
|
+
const PCCMIN_RESULT = "pccMinResults";
|
|
33
|
+
export {
|
|
34
|
+
ALL_BUSES,
|
|
35
|
+
DYNAMIC_SIMULATION_RESULT_SORT_STORE,
|
|
36
|
+
LOADFLOW_CURRENT_LIMIT_VIOLATION,
|
|
37
|
+
LOADFLOW_RESULT,
|
|
38
|
+
LOADFLOW_RESULT_SORT_STORE,
|
|
39
|
+
LOADFLOW_VOLTAGE_LIMIT_VIOLATION,
|
|
40
|
+
LOGS_PAGINATION_STORE_FIELD,
|
|
41
|
+
ONE_BUS,
|
|
42
|
+
PCCMIN_ANALYSIS_PAGINATION_STORE_FIELD,
|
|
43
|
+
PCCMIN_ANALYSIS_RESULT_SORT_STORE,
|
|
44
|
+
PCCMIN_RESULT,
|
|
45
|
+
SECURITY_ANALYSIS_PAGINATION_STORE_FIELD,
|
|
46
|
+
SECURITY_ANALYSIS_RESULT_N,
|
|
47
|
+
SECURITY_ANALYSIS_RESULT_N_K,
|
|
48
|
+
SECURITY_ANALYSIS_RESULT_SORT_STORE,
|
|
49
|
+
SENSITIVITY_ANALYSIS_PAGINATION_STORE_FIELD,
|
|
50
|
+
SENSITIVITY_ANALYSIS_RESULT_SORT_STORE,
|
|
51
|
+
SENSITIVITY_AT_NODE_N,
|
|
52
|
+
SENSITIVITY_AT_NODE_N_K,
|
|
53
|
+
SENSITIVITY_IN_DELTA_A_N,
|
|
54
|
+
SENSITIVITY_IN_DELTA_A_N_K,
|
|
55
|
+
SENSITIVITY_IN_DELTA_MW_N,
|
|
56
|
+
SENSITIVITY_IN_DELTA_MW_N_K,
|
|
57
|
+
SHORTCIRCUIT_ANALYSIS_PAGINATION_STORE_FIELD,
|
|
58
|
+
SHORTCIRCUIT_ANALYSIS_RESULT_SORT_STORE,
|
|
59
|
+
SPREADSHEET_SORT_STORE,
|
|
60
|
+
STATEESTIMATION_QUALITY_CRITERION,
|
|
61
|
+
STATEESTIMATION_QUALITY_PER_REGION,
|
|
62
|
+
STATEESTIMATION_RESULT,
|
|
63
|
+
STATEESTIMATION_RESULT_SORT_STORE,
|
|
64
|
+
TABLE_SORT_STORE,
|
|
65
|
+
TIMELINE
|
|
66
|
+
};
|
package/dist/utils/styles.d.ts
CHANGED
|
@@ -6,6 +6,6 @@ export declare const makeComposeClasses: (generateGlobalClass: (className: strin
|
|
|
6
6
|
export declare const toNestedGlobalSelectors: (styles: object, generateGlobalClass: (className: string) => string) => {
|
|
7
7
|
[k: string]: any;
|
|
8
8
|
};
|
|
9
|
-
export declare const mergeSx: (...allSx: (SxProps<Theme> | undefined)[]) =>
|
|
9
|
+
export declare const mergeSx: (...allSx: (SxProps<Theme> | undefined)[]) => SxProps<Theme>;
|
|
10
10
|
export type SxStyle = SxProps<Theme>;
|
|
11
11
|
export type MuiStyles = Record<string, SxStyle>;
|
package/dist/utils/ts-utils.d.ts
CHANGED
|
@@ -18,3 +18,4 @@ export declare const getObjectId: (object: string | {
|
|
|
18
18
|
export declare const richTypeEquals: (a: unknown, b: unknown) => boolean;
|
|
19
19
|
export declare function getIdOrValue(value: any): any;
|
|
20
20
|
export declare function getLabelOrValue(value: any): any;
|
|
21
|
+
export declare const isNonEmptyStringOrArray: (value: unknown) => value is string | unknown[];
|
package/dist/utils/ts-utils.js
CHANGED
|
@@ -43,12 +43,19 @@ function getIdOrValue(value) {
|
|
|
43
43
|
function getLabelOrValue(value) {
|
|
44
44
|
return typeof value !== "string" ? value?.label ?? null : value;
|
|
45
45
|
}
|
|
46
|
+
const isNonEmptyStringOrArray = (value) => {
|
|
47
|
+
if (typeof value === "string" && value.length > 0) {
|
|
48
|
+
return true;
|
|
49
|
+
}
|
|
50
|
+
return Array.isArray(value) && value.length > 0;
|
|
51
|
+
};
|
|
46
52
|
export {
|
|
47
53
|
areIdsEqual,
|
|
48
54
|
getIdOrSelf,
|
|
49
55
|
getIdOrValue,
|
|
50
56
|
getLabelOrValue,
|
|
51
57
|
getObjectId,
|
|
58
|
+
isNonEmptyStringOrArray,
|
|
52
59
|
notNull,
|
|
53
60
|
notUndefined,
|
|
54
61
|
parseIntData,
|