@gridsuite/commons-ui 0.238.0 → 0.239.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/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 +1 -1
- 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-right-buttons.d.ts +1 -1
- 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/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/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 +1 -1
- 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 +1 -1
- package/dist/components/composite/grid/grid-section.d.ts +1 -1
- package/dist/components/composite/index.d.ts +1 -0
- package/dist/components/composite/index.js +67 -0
- 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/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/RuleValueEditor.d.ts +1 -1
- 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 +67 -0
- 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/modifyElementSelection/ModifyElementSelection.d.ts +1 -1
- 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/MidFormError.d.ts +1 -1
- package/dist/components/ui/reactHookForm/expandableInput/DeletableRow.d.ts +1 -1
- 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/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/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/AuthenticationRouterErrorDisplay.d.ts +1 -1
- 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 +6 -0
- 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 +6 -0
- 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 +6 -0
- package/dist/features/network-modifications/battery/modification/BatteryModificationForm.d.ts +1 -1
- 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/modification-by-assignment-form.d.ts +1 -1
- package/dist/features/network-modifications/by-filter/deletion/ByFilterDeletionForm.d.ts +1 -1
- package/dist/features/network-modifications/common/activePowerControl/ActivePowerControlForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/BranchConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/ConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/PositionForm.d.ts +1 -1
- package/dist/features/network-modifications/common/connectivity/VoltageLevelConnectivityForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/BranchActiveReactivePowerMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/BusbarSectionVoltageMeasurementsForm.js +6 -0
- package/dist/features/network-modifications/common/measurements/PowerMeasurementsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/measurements/PowerWithValidityForm.d.ts +1 -1
- 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/PropertyForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/ReactiveLimitsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveRowForm.d.ts +1 -1
- package/dist/features/network-modifications/common/reactiveLimits/reactiveCapabilityCurve/ReactiveCapabilityCurveTableForm.d.ts +1 -1
- 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/setpoints/SetPointsForm.d.ts +1 -1
- package/dist/features/network-modifications/common/shortCircuit/ShortCircuitForm.d.ts +1 -1
- package/dist/features/network-modifications/common/voltageRegulation/VoltageRegulationForm.d.ts +1 -1
- 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 +6 -0
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/HvdcLccDeletionSpecificForm.d.ts +1 -1
- package/dist/features/network-modifications/equipmentDeletion/hvdcLccDeletion/ShuntCompensatorSelectionForm.d.ts +1 -1
- 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 +6 -0
- 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 +6 -0
- 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 +6 -0
- package/dist/features/network-modifications/generator/modification/GeneratorModificationForm.d.ts +1 -1
- 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 +6 -0
- 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/LoadForm.d.ts +1 -1
- 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.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 +6 -0
- 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 +6 -0
- 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 +6 -0
- 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 +6 -0
- 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 +7 -1
- 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/structureTab/StructureTab.d.ts +1 -1
- 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/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/substationTab/SubstationCreationSection.d.ts +1 -1
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationCreationSection.js +6 -0
- package/dist/features/network-modifications/voltageLevel/creation/tabs/substationTab/SubstationTab.d.ts +1 -1
- 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 +7 -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/computing-type.d.ts +1 -19
- package/dist/features/parameters/common/computing-type.js +16 -26
- 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/name-element-editor/name-element-editor-form.d.ts +1 -1
- package/dist/features/parameters/common/parameter-field.d.ts +1 -1
- package/dist/features/parameters/common/parameter-table-field/parameter-table-field.d.ts +1 -1
- 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/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-group.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-line-directory-items-input.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-line-slider.d.ts +1 -1
- package/dist/features/parameters/common/widget/parameter-switch.d.ts +1 -1
- 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-inline.d.ts +2 -2
- package/dist/features/parameters/dynamic-margin-calculation/loads-variations-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-margin-calculation/time-delay-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/contingency-parameters.js +2 -2
- 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-parameters-form.d.ts +1 -1
- package/dist/features/parameters/dynamic-security-analysis/dynamic-security-analysis-parameters-form.js +2 -2
- package/dist/features/parameters/dynamic-security-analysis/scenario-parameters.d.ts +1 -1
- 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/curve-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/curve-parameters.js +6 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-preview.js +6 -0
- package/dist/features/parameters/dynamic-simulation/curve/dialog/curve-selector-dialog.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/curve/dialog/equipment-filter.js +2 -0
- package/dist/features/parameters/dynamic-simulation/dynamic-simulation-inline.d.ts +2 -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 +2 -2
- package/dist/features/parameters/dynamic-simulation/mapping/mapping-parameters.d.ts +1 -1
- package/dist/features/parameters/dynamic-simulation/network/network-parameters.d.ts +1 -1
- 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/time-delay/time-delay-parameters.d.ts +1 -1
- 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 +3 -3
- 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-header.d.ts +1 -1
- package/dist/features/parameters/loadflow/load-flow-parameters-inline.d.ts +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 +2 -2
- package/dist/features/parameters/network-visualizations/network-area-diagram-parameters.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/network-visualizations-form.d.ts +1 -1
- 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/single-line-diagram-parameters.d.ts +1 -1
- package/dist/features/parameters/network-visualizations/single-line-diagram-parameters.js +2 -2
- 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-inline.d.ts +1 -1
- 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-inline.d.ts +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 +1 -1
- package/dist/features/parameters/security-analysis/security-analysis-violations-hiding.d.ts +1 -1
- 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-inline.d.ts +2 -3
- package/dist/features/parameters/sensi/sensitivity-parameters-fields.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.d.ts +1 -1
- package/dist/features/parameters/sensi/sensitivity-parameters-selector.js +1 -1
- package/dist/features/parameters/sensi/use-sensitivity-analysis-parameters.d.ts +1 -2
- 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 +1 -1
- 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-inline.d.ts +2 -3
- 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 +2 -2
- package/dist/features/parameters/short-circuit/short-circuit-study-area-tab-panel.js +3 -3
- 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/general-parameters.d.ts +1 -1
- package/dist/features/parameters/voltage-init/general-parameters.js +3 -3
- 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 +1 -1
- package/dist/features/parameters/voltage-init/voltage-init-parameters-inline.d.ts +1 -1
- package/dist/features/parameters/voltage-init/voltage-limits-parameters.d.ts +1 -1
- 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 +1 -1
- 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 +73 -4
- 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 +2 -1
|
@@ -55,6 +55,12 @@ import "../../../components/composite/agGridTable/BottomTableButtons.js";
|
|
|
55
55
|
import "../../../components/composite/agGridTable/CustomAgGridTable.js";
|
|
56
56
|
import "ag-grid-community";
|
|
57
57
|
import "../../../components/composite/customAGGrid/customAggrid.js";
|
|
58
|
+
import "../../../components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
59
|
+
import "mathjs";
|
|
60
|
+
import "../../../components/composite/report/report-viewer/log-table/log-table.js";
|
|
61
|
+
import "react-window";
|
|
62
|
+
import "../../../components/composite/report/report-treeview/treeview-item.js";
|
|
63
|
+
import "../../../components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
58
64
|
function UpdateSAProcessConfigDialog({
|
|
59
65
|
onClose,
|
|
60
66
|
open,
|
|
@@ -3,5 +3,5 @@ interface UpdateSaProcessConfigProps {
|
|
|
3
3
|
directory: UUID;
|
|
4
4
|
processConfigName: string;
|
|
5
5
|
}
|
|
6
|
-
export declare function UpdateSaProcessConfig({ directory, processConfigName }: Readonly<UpdateSaProcessConfigProps>): import("react
|
|
6
|
+
export declare function UpdateSaProcessConfig({ directory, processConfigName }: Readonly<UpdateSaProcessConfigProps>): import("react").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -58,6 +58,8 @@ import "../../parameters/dynamic-simulation/curve/dialog/curve-preview.js";
|
|
|
58
58
|
import "../../parameters/dynamic-simulation/curve/dialog/curve-selector.js";
|
|
59
59
|
import "../../parameters/dynamic-simulation/curve/common/grid-search.js";
|
|
60
60
|
import "../../../components/composite/customAGGrid/customAggrid.js";
|
|
61
|
+
import "../../../components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
62
|
+
import "mathjs";
|
|
61
63
|
import "../../parameters/dynamic-security-analysis/use-dynamic-security-analysis-parameters-form.js";
|
|
62
64
|
import "../../parameters/dynamic-security-analysis/scenario-parameters.js";
|
|
63
65
|
import "../../parameters/dynamic-security-analysis/contingency-parameters.js";
|
|
@@ -53,6 +53,12 @@ import "../../components/composite/agGridTable/BottomTableButtons.js";
|
|
|
53
53
|
import "../../components/composite/agGridTable/CustomAgGridTable.js";
|
|
54
54
|
import "ag-grid-community";
|
|
55
55
|
import "../../components/composite/customAGGrid/customAggrid.js";
|
|
56
|
+
import "../../components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
57
|
+
import "mathjs";
|
|
58
|
+
import "../../components/composite/report/report-viewer/log-table/log-table.js";
|
|
59
|
+
import "react-window";
|
|
60
|
+
import "../../components/composite/report/report-treeview/treeview-item.js";
|
|
61
|
+
import "../../components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
56
62
|
function UpdateProcessConfigModifications({ name }) {
|
|
57
63
|
const intl = useIntl();
|
|
58
64
|
const useFieldArrayModifications = useFieldArray({
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SecurityAnalysisResultNmkProps } from './security-analysis.type';
|
|
2
|
-
export declare function SecurityAnalysisResultNmk({ result, columnDefs, nmkType, paginationProps, isLoadingResult, resultStatusMessages, securityAnalysisStatus, onGridReady, }: SecurityAnalysisResultNmkProps): import("react
|
|
2
|
+
export declare function SecurityAnalysisResultNmk({ result, columnDefs, nmkType, paginationProps, isLoadingResult, resultStatusMessages, securityAnalysisStatus, onGridReady, }: SecurityAnalysisResultNmkProps): import("react").JSX.Element;
|
|
@@ -54,6 +54,12 @@ import "../../../components/composite/agGridTable/BottomTableButtons.js";
|
|
|
54
54
|
import "../../../components/composite/agGridTable/CustomAgGridTable.js";
|
|
55
55
|
import "ag-grid-community";
|
|
56
56
|
import "../../../components/composite/customAGGrid/customAggrid.js";
|
|
57
|
+
import "../../../components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
58
|
+
import "mathjs";
|
|
59
|
+
import "../../../components/composite/report/report-viewer/log-table/log-table.js";
|
|
60
|
+
import "react-window";
|
|
61
|
+
import "../../../components/composite/report/report-treeview/treeview-item.js";
|
|
62
|
+
import "../../../components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
57
63
|
import { mapNmKResultsCutOffPower, flattenNmKResultsConstraints, flattenNmKResultsContingencies, handlePostSortRows, getNoRowsMessage, PAGE_OPTIONS } from "./utils.js";
|
|
58
64
|
const styles = {
|
|
59
65
|
container: {
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SecurityAnalysisTableProps } from './security-analysis.type';
|
|
2
|
-
export declare function SecurityAnalysisTable({ rowData, columnDefs, overlayNoRowsTemplate, agGridProps, onGridReady, }: SecurityAnalysisTableProps): import("react
|
|
2
|
+
export declare function SecurityAnalysisTable({ rowData, columnDefs, overlayNoRowsTemplate, agGridProps, onGridReady, }: SecurityAnalysisTableProps): import("react").JSX.Element;
|
|
@@ -51,6 +51,12 @@ import "../../../components/composite/agGridTable/CustomAgGridTable.js";
|
|
|
51
51
|
import "ag-grid-community";
|
|
52
52
|
import { CustomAGGrid } from "../../../components/composite/customAGGrid/customAggrid.js";
|
|
53
53
|
import { DefaultCellRenderer } from "../../../components/composite/customAGGrid/cell-renderers.js";
|
|
54
|
+
import "../../../components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
55
|
+
import "mathjs";
|
|
56
|
+
import "../../../components/composite/report/report-viewer/log-table/log-table.js";
|
|
57
|
+
import "react-window";
|
|
58
|
+
import "../../../components/composite/report/report-treeview/treeview-item.js";
|
|
59
|
+
import "../../../components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
54
60
|
import { AGGRID_LOCALES } from "../../../translations/not-intl/aggrid-locales.js";
|
|
55
61
|
function SecurityAnalysisTable({
|
|
56
62
|
rowData,
|
|
@@ -22,5 +22,5 @@ export interface AboutDialogProps {
|
|
|
22
22
|
additionalModulesPromise?: () => Promise<GridSuiteModule[]>;
|
|
23
23
|
logo?: ReactNode;
|
|
24
24
|
}
|
|
25
|
-
export declare function AboutDialog({ open, onClose, globalVersionPromise, appName, appVersion, appGitTag, appLicense, additionalModulesPromise, logo, }: AboutDialogProps): import("react
|
|
25
|
+
export declare function AboutDialog({ open, onClose, globalVersionPromise, appName, appVersion, appGitTag, appLicense, additionalModulesPromise, logo, }: AboutDialogProps): import("react").JSX.Element;
|
|
26
26
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsxs, jsx, Fragment } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useEffect, useCallback } from "react";
|
|
3
|
-
import { useTheme, Dialog,
|
|
3
|
+
import { useTheme, Dialog, DialogTitle, Collapse, Alert, Box, Fade, CircularProgress, Typography, DialogContent, Accordion, AccordionSummary, AccordionDetails, Grid, DialogActions, Button, useMediaQuery, Zoom, Stack, tooltipClasses } from "@mui/material";
|
|
4
4
|
import { LoadingButton } from "@mui/lab";
|
|
5
5
|
import { Refresh, Gavel, ExpandMore, Apps, QuestionMark, DnsOutlined, WidgetsOutlined } from "@mui/icons-material";
|
|
6
6
|
import { FormattedMessage } from "react-intl";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function DevModeBanner(): import("react
|
|
1
|
+
export declare function DevModeBanner(): import("react").JSX.Element;
|
|
@@ -4,8 +4,8 @@ export interface GridLogoProps extends Omit<LogoTextProps, 'style'> {
|
|
|
4
4
|
appLogo: ReactNode;
|
|
5
5
|
dense?: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare function LogoText({ appName, appColor, style, onClick, dense }: Readonly<Partial<LogoTextProps>>): import("react
|
|
8
|
-
export declare function GridLogo({ appLogo, appName, appColor, onClick, dense }: Readonly<Partial<GridLogoProps>>): import("react
|
|
7
|
+
export declare function LogoText({ appName, appColor, style, onClick, dense }: Readonly<Partial<LogoTextProps>>): import("react").JSX.Element;
|
|
8
|
+
export declare function GridLogo({ appLogo, appName, appColor, onClick, dense }: Readonly<Partial<GridLogoProps>>): import("react").JSX.Element;
|
|
9
9
|
export interface LogoTextProps {
|
|
10
10
|
appName: string;
|
|
11
11
|
appColor: string;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import {
|
|
2
|
+
import { Box, Typography } from "@mui/material";
|
|
3
3
|
import { BrokenImage } from "@mui/icons-material";
|
|
4
4
|
import { useMemo } from "react";
|
|
5
5
|
import { mergeSx } from "../../utils/styles.js";
|
|
@@ -22,4 +22,4 @@ export type TopBarProps = Omit<GridLogoProps, 'onClick'> & Omit<LogoutProps, 'di
|
|
|
22
22
|
onDeveloperModeClick?: (value: boolean) => void;
|
|
23
23
|
dense?: boolean;
|
|
24
24
|
};
|
|
25
|
-
export declare function TopBar({ appName, appColor, appLogo, appVersion, appLicense, logoAboutDialog, onLogoutClick, onLogoClick, userProfile, children, appsAndUrls, onAboutClick, globalVersionPromise, additionalModulesPromise, onThemeClick, theme, developerMode, onDeveloperModeClick, onEquipmentLabellingClick, equipmentLabelling, onLanguageClick, language, dense, }: PropsWithChildren<TopBarProps>): import("react
|
|
25
|
+
export declare function TopBar({ appName, appColor, appLogo, appVersion, appLicense, logoAboutDialog, onLogoutClick, onLogoClick, userProfile, children, appsAndUrls, onAboutClick, globalVersionPromise, additionalModulesPromise, onThemeClick, theme, developerMode, onDeveloperModeClick, onEquipmentLabellingClick, equipmentLabelling, onLanguageClick, language, dense, }: PropsWithChildren<TopBarProps>): import("react").JSX.Element;
|
|
@@ -4,5 +4,5 @@ interface UserInformationDialogProps {
|
|
|
4
4
|
onClose: () => void;
|
|
5
5
|
userProfile: UserProfile | undefined;
|
|
6
6
|
}
|
|
7
|
-
declare function UserInformationDialog({ openDialog, userProfile, onClose }: UserInformationDialogProps): import("react
|
|
7
|
+
declare function UserInformationDialog({ openDialog, userProfile, onClose }: UserInformationDialogProps): import("react").JSX.Element;
|
|
8
8
|
export default UserInformationDialog;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { jsxs, jsx } from "react/jsx-runtime";
|
|
2
|
-
import { Dialog, DialogTitle, DialogContent,
|
|
2
|
+
import { Dialog, DialogTitle, DialogContent, Grid2, Typography, Box, DialogActions } from "@mui/material";
|
|
3
3
|
import { FormattedMessage } from "react-intl";
|
|
4
4
|
import { useState, useEffect, Fragment } from "react";
|
|
5
5
|
import { CancelButton } from "../../components/ui/reactHookForm/utils/CancelButton.js";
|
|
@@ -8,7 +8,7 @@ const styles = {
|
|
|
8
8
|
DialogTitle: { fontSize: "1.5rem" },
|
|
9
9
|
DialogContent: { marginTop: "10px" },
|
|
10
10
|
quotasBox: { marginTop: "60px" },
|
|
11
|
-
|
|
11
|
+
quotasTypography: { marginTop: "30px", marginBottom: "25px", fontSize: "1.15rem" },
|
|
12
12
|
usedTopography: { marginLeft: "15%" }
|
|
13
13
|
};
|
|
14
14
|
function UserInformationDialog({ openDialog, userProfile, onClose }) {
|
|
@@ -33,9 +33,9 @@ function UserInformationDialog({ openDialog, userProfile, onClose }) {
|
|
|
33
33
|
return /* @__PURE__ */ jsxs(Dialog, { open: openDialog && !!userProfile && !!userDetails, onClose, children: [
|
|
34
34
|
/* @__PURE__ */ jsx(DialogTitle, { fontWeight: "bold", sx: styles.DialogTitle, children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/title" }) }),
|
|
35
35
|
/* @__PURE__ */ jsxs(DialogContent, { children: [
|
|
36
|
-
/* @__PURE__ */ jsxs(
|
|
37
|
-
/* @__PURE__ */ jsx(
|
|
38
|
-
/* @__PURE__ */ jsx(
|
|
36
|
+
/* @__PURE__ */ jsxs(Grid2, { container: true, spacing: 2, sx: styles.DialogContent, children: [
|
|
37
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/role" }) }) }),
|
|
38
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: rolesList.length > 0 ? /* @__PURE__ */ jsx(Typography, { children: rolesList.map((role, index) => /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
39
39
|
index > 0 && " | ",
|
|
40
40
|
/* @__PURE__ */ jsx(
|
|
41
41
|
FormattedMessage,
|
|
@@ -45,14 +45,14 @@ function UserInformationDialog({ openDialog, userProfile, onClose }) {
|
|
|
45
45
|
}
|
|
46
46
|
)
|
|
47
47
|
] }, role)) }) : /* @__PURE__ */ jsx(Typography, { children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/no-roles" }) }) }),
|
|
48
|
-
/* @__PURE__ */ jsx(
|
|
49
|
-
/* @__PURE__ */ jsx(
|
|
48
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/profile" }) }) }),
|
|
49
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: userDetails?.profileName === null ? /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/no-profile" }) : /* @__PURE__ */ jsx(Typography, { children: userDetails?.profileName }) })
|
|
50
50
|
] }),
|
|
51
51
|
/* @__PURE__ */ jsxs(Box, { mt: 3, sx: styles.quotasBox, children: [
|
|
52
|
-
/* @__PURE__ */ jsx(Typography, { fontWeight: "bold", sx: styles.
|
|
53
|
-
/* @__PURE__ */ jsxs(
|
|
54
|
-
/* @__PURE__ */ jsx(
|
|
55
|
-
/* @__PURE__ */ jsx(
|
|
52
|
+
/* @__PURE__ */ jsx(Typography, { fontWeight: "bold", sx: styles.quotasTypography, children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/quotas" }) }),
|
|
53
|
+
/* @__PURE__ */ jsxs(Grid2, { container: true, spacing: 2, children: [
|
|
54
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-cases-or-studies" }) }) }),
|
|
55
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsxs(Typography, { children: [
|
|
56
56
|
userDetails?.maxAllowedCases,
|
|
57
57
|
/* @__PURE__ */ jsxs(Box, { component: "span", sx: styles.usedTopography, children: [
|
|
58
58
|
"( ",
|
|
@@ -61,9 +61,34 @@ function UserInformationDialog({ openDialog, userProfile, onClose }) {
|
|
|
61
61
|
` ${userDetails?.numberCasesUsed}`,
|
|
62
62
|
" )"
|
|
63
63
|
] })
|
|
64
|
-
] }) })
|
|
65
|
-
|
|
66
|
-
|
|
64
|
+
] }) })
|
|
65
|
+
] }),
|
|
66
|
+
/* @__PURE__ */ jsx(Typography, { fontWeight: "bold", sx: styles.quotasTypography, children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/quotas-per-study" }) }),
|
|
67
|
+
/* @__PURE__ */ jsxs(Grid2, { container: true, spacing: 2, children: [
|
|
68
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-builds-per-study" }) }) }),
|
|
69
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedBuilds }) }),
|
|
70
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-loadflow-per-study" }) }) }),
|
|
71
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedLoadflow }) }),
|
|
72
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-security-per-study" }) }) }),
|
|
73
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedSecurity }) }),
|
|
74
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-sensitivity-per-study" }) }) }),
|
|
75
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedSensitivity }) }),
|
|
76
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-shortCircuit-per-study" }) }) }),
|
|
77
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedShortCircuit }) }),
|
|
78
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-voltageInit-per-study" }) }) }),
|
|
79
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedVoltageInit }) }),
|
|
80
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-pccMin-per-study" }) }) }),
|
|
81
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedPccMin }) }),
|
|
82
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-stateEstimation-per-study" }) }) }),
|
|
83
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedStateEstimation }) }),
|
|
84
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-balanceAdjustement-per-study" }) }) }),
|
|
85
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedBalanceAdjustement }) }),
|
|
86
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-dynamicSimulation-per-study" }) }) }),
|
|
87
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedDynamicSimulation }) }),
|
|
88
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-dynamicSecurity-per-study" }) }) }),
|
|
89
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedDynamicSecurity }) }),
|
|
90
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { fontWeight: "bold", children: /* @__PURE__ */ jsx(FormattedMessage, { id: "user-information-dialog/number-of-dynamicMargin-per-study" }) }) }),
|
|
91
|
+
/* @__PURE__ */ jsx(Grid2, { size: 6, children: /* @__PURE__ */ jsx(Typography, { children: userDetails?.maxAllowedDynamicMargin }) })
|
|
67
92
|
] })
|
|
68
93
|
] })
|
|
69
94
|
] }),
|
|
@@ -4,5 +4,5 @@ interface UserSettingsDialogProps {
|
|
|
4
4
|
developerMode?: boolean;
|
|
5
5
|
onDeveloperModeClick?: (value: boolean) => void;
|
|
6
6
|
}
|
|
7
|
-
declare function UserSettingsDialog({ openDialog, onClose, developerMode, onDeveloperModeClick }: UserSettingsDialogProps): import("react
|
|
7
|
+
declare function UserSettingsDialog({ openDialog, onClose, developerMode, onDeveloperModeClick }: UserSettingsDialogProps): import("react").JSX.Element;
|
|
8
8
|
export default UserSettingsDialog;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { UUID } from 'node:crypto';
|
|
2
2
|
import { UserProfile } from 'oidc-client-ts';
|
|
3
|
-
import { ComputingType } from '../features/parameters/common/computing-type';
|
|
4
3
|
import { BackendFunctions, UseParametersBackendReturnProps } from '../utils/types/parameters.type';
|
|
4
|
+
import { ComputingType } from '../utils';
|
|
5
5
|
export declare enum OptionalServicesStatus {
|
|
6
6
|
Up = "UP",
|
|
7
7
|
Down = "DOWN",
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { useRef, useMemo } from "react";
|
|
2
|
+
function useStableComputedArray(compute, deps) {
|
|
3
|
+
const prevRef = useRef([]);
|
|
4
|
+
return useMemo(() => {
|
|
5
|
+
const newArray = compute();
|
|
6
|
+
const prevArray = prevRef.current;
|
|
7
|
+
const hasChanged = newArray.length !== prevArray.length || newArray.some((v, i) => v !== prevArray[i]);
|
|
8
|
+
if (hasChanged) {
|
|
9
|
+
prevRef.current = newArray;
|
|
10
|
+
}
|
|
11
|
+
return prevRef.current;
|
|
12
|
+
}, deps);
|
|
13
|
+
}
|
|
14
|
+
export {
|
|
15
|
+
useStableComputedArray
|
|
16
|
+
};
|
|
@@ -3,14 +3,14 @@ export declare const useModificationLabelComputer: () => {
|
|
|
3
3
|
computeLabel: (modif: NetworkModificationMetadata, formatBold?: boolean) => {
|
|
4
4
|
action: string;
|
|
5
5
|
energizedEnd: string;
|
|
6
|
-
computedLabel: string | import("react
|
|
6
|
+
computedLabel: string | import("react").JSX.Element;
|
|
7
7
|
} | {
|
|
8
8
|
equipmentAttributeName: string;
|
|
9
9
|
equipmentAttributeValue: string;
|
|
10
|
-
computedLabel: string | import("react
|
|
10
|
+
computedLabel: string | import("react").JSX.Element;
|
|
11
11
|
} | {
|
|
12
|
-
voltageLevelEquipmentId: string | import("react
|
|
13
|
-
substationEquipmentId: string | import("react
|
|
12
|
+
voltageLevelEquipmentId: string | import("react").JSX.Element;
|
|
13
|
+
substationEquipmentId: string | import("react").JSX.Element;
|
|
14
14
|
} | {
|
|
15
15
|
computedLabel: any;
|
|
16
16
|
};
|
package/dist/index.js
CHANGED
|
@@ -128,8 +128,33 @@ import { CUSTOM_AGGRID_THEME, styles } from "./components/composite/customAGGrid
|
|
|
128
128
|
import { CustomAGGrid } from "./components/composite/customAGGrid/customAggrid.js";
|
|
129
129
|
import { SeparatorCellRenderer } from "./components/composite/customAGGrid/separatorCellRenderer.js";
|
|
130
130
|
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./components/composite/customAGGrid/cell-renderers.js";
|
|
131
|
+
import { CustomAggridFilterContext, CustomAggridSortContext, useCustomAggridFilterContext, useCustomAggridSortContext } from "./components/composite/customAGGrid/context/custom-aggrid-context.js";
|
|
132
|
+
import { useCustomAggridSort } from "./components/composite/customAGGrid/hooks/use-custom-aggrid-sort.js";
|
|
133
|
+
import { CustomAggridAutocompleteFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.js";
|
|
134
|
+
import { CustomAggridComparatorFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-filter.js";
|
|
135
|
+
import { CustomAggridComparatorSelector } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-selector.js";
|
|
136
|
+
import { CustomAggridFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-filter.js";
|
|
137
|
+
import { CustomAggridTextFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-aggrid-text-filter.js";
|
|
138
|
+
import { CustomFilterIcon } from "./components/composite/customAGGrid/custom-aggrid-filters/custom-filter-icon.js";
|
|
139
|
+
import { useCustomAggridColumnFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-column-filter.js";
|
|
140
|
+
import { useCustomAggridComparatorFilter } from "./components/composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-comparator-filter.js";
|
|
141
|
+
import { addToleranceToFilter, computeTolerance } from "./components/composite/customAGGrid/custom-aggrid-filters/utils/filter-tolerance-utils.js";
|
|
142
|
+
import { ColumnTypes, FilterDataTypes, FilterNumberComparators, FilterTextComparators, SortWay, TableType, UndisplayedFilterNumberComparators } from "./components/composite/customAGGrid/custom-aggrid-types.js";
|
|
143
|
+
import { CustomHeaderComponent } from "./components/composite/customAGGrid/custom-aggrid-header.js";
|
|
144
|
+
import { CustomMenu } from "./components/composite/customAGGrid/custom-aggrid-menu.js";
|
|
145
|
+
import { CustomAggridSort } from "./components/composite/customAGGrid/custom-aggrid-sort.js";
|
|
146
|
+
import { DisplayRounding } from "./components/composite/customAGGrid/display-rounding.js";
|
|
147
|
+
import { makeAgGridCustomHeaderColumn } from "./components/composite/customAGGrid/utils/custom-aggrid-header-utils.js";
|
|
148
|
+
import { ReportViewer } from "./components/composite/report/report-viewer/report-viewer.js";
|
|
149
|
+
import { ReportFetcherContext, ReportFilterContext, useReportFetcherContext, useReportFilterContext } from "./components/composite/report/report-viewer/context/report-viewer-context.js";
|
|
150
|
+
import { default as default3 } from "./components/composite/report/report-viewer/log-table/log-table.js";
|
|
151
|
+
import { REPORT_SEVERITY, getContainerDefaultSeverityList, getDefaultSeverityFilter, sortSeverityList } from "./components/composite/report/report-severity.js";
|
|
152
|
+
import { mapReportLogs } from "./components/composite/report/report-log.mapper.js";
|
|
153
|
+
import { ReportType } from "./components/composite/report/report.type.js";
|
|
154
|
+
import { GLOBAL_REPORT_NODE_LABEL, NETWORK_MODIFICATION } from "./components/composite/report/report.constant.js";
|
|
155
|
+
import { QuickSearch } from "./components/composite/report/QuickSearch.js";
|
|
131
156
|
import { AuthenticationRouter } from "./features/authentication/AuthenticationRouter.js";
|
|
132
|
-
import { default as
|
|
157
|
+
import { default as default4 } from "./features/authentication/AuthenticationRouterErrorDisplay.js";
|
|
133
158
|
import { Login } from "./features/authentication/Login.js";
|
|
134
159
|
import { Logout } from "./features/authentication/Logout.js";
|
|
135
160
|
import { SignInCallbackHandler } from "./features/authentication/SignInCallbackHandler.js";
|
|
@@ -148,7 +173,7 @@ import { AboutDialog } from "./features/topBar/AboutDialog.js";
|
|
|
148
173
|
import { GridLogo, LogoText } from "./features/topBar/GridLogo.js";
|
|
149
174
|
import { DevModeBanner } from "./features/topBar/DevModeBanner.js";
|
|
150
175
|
import { TopBar } from "./features/topBar/TopBar.js";
|
|
151
|
-
import {
|
|
176
|
+
import { formatComputingTypeLabel, isValidComputingType } from "./features/parameters/common/computing-type.js";
|
|
152
177
|
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
178
|
import { LineSeparator } from "./features/parameters/common/line-separator.js";
|
|
154
179
|
import { LabelledButton, SwitchWithLabel, TabPanel } from "./features/parameters/common/parameters.js";
|
|
@@ -275,7 +300,8 @@ import { DistributionType, SensitivityType, mapSensitivityAnalysisParameters } f
|
|
|
275
300
|
import { CalculationType, LoadModelsRule } from "./utils/types/dynamic-margin-calculation.type.js";
|
|
276
301
|
import { OperationType } from "./utils/types/network-modification-types.js";
|
|
277
302
|
import { mapPccMinParameters } from "./utils/types/pcc-min.type.js";
|
|
278
|
-
import {
|
|
303
|
+
import { ComputingType } from "./utils/types/computing-type.js";
|
|
304
|
+
import { areIdsEqual, getIdOrSelf, getIdOrValue, getLabelOrValue, getObjectId, isNonEmptyStringOrArray, notNull, notUndefined, parseIntData, removeNullFields, richTypeEquals, sanitizeString } from "./utils/ts-utils.js";
|
|
279
305
|
import { toNumber, validateValueIsANumber } from "./utils/validation-functions.js";
|
|
280
306
|
import { NO_ITEM_SELECTION_FOR_COPY } from "./utils/directory-utils.js";
|
|
281
307
|
import { fetchAppsMetadata, fetchBaseVoltages, fetchDefaultCountry, fetchEnv, fetchFavoriteAndDefaultCountries, fetchStudyMetadata, isExploreMetadata, isStudyMetadata } from "./services/appsMetadata.js";
|
|
@@ -467,7 +493,7 @@ export {
|
|
|
467
493
|
ArrowsOutputIcon,
|
|
468
494
|
DataType2 as AssignmentDataType,
|
|
469
495
|
AuthenticationRouter,
|
|
470
|
-
|
|
496
|
+
default4 as AuthenticationRouterErrorDisplay,
|
|
471
497
|
AutocompleteInput,
|
|
472
498
|
AutocompleteWithFavorites,
|
|
473
499
|
BALANCE_TYPE,
|
|
@@ -530,6 +556,7 @@ export {
|
|
|
530
556
|
CheckboxInput,
|
|
531
557
|
CheckboxNullableInput,
|
|
532
558
|
ChipItemsInput,
|
|
559
|
+
ColumnTypes,
|
|
533
560
|
CombinatorSelector,
|
|
534
561
|
CombinatorType,
|
|
535
562
|
ComputingType,
|
|
@@ -544,9 +571,20 @@ export {
|
|
|
544
571
|
CsvPicker,
|
|
545
572
|
CustomAGGrid,
|
|
546
573
|
CustomAgGridTable,
|
|
574
|
+
CustomAggridAutocompleteFilter,
|
|
575
|
+
CustomAggridComparatorFilter,
|
|
576
|
+
CustomAggridComparatorSelector,
|
|
577
|
+
CustomAggridFilter,
|
|
578
|
+
CustomAggridFilterContext,
|
|
579
|
+
CustomAggridSort,
|
|
580
|
+
CustomAggridSortContext,
|
|
581
|
+
CustomAggridTextFilter,
|
|
547
582
|
CustomError,
|
|
583
|
+
CustomFilterIcon,
|
|
548
584
|
CustomFormContext,
|
|
549
585
|
CustomFormProvider,
|
|
586
|
+
CustomHeaderComponent,
|
|
587
|
+
CustomMenu,
|
|
550
588
|
CustomMenuItem,
|
|
551
589
|
CustomMuiDialog,
|
|
552
590
|
CustomNestedMenuItem,
|
|
@@ -593,6 +631,7 @@ export {
|
|
|
593
631
|
DirectoryItemInput,
|
|
594
632
|
DirectoryItemSelector,
|
|
595
633
|
DirectoryItemsInput,
|
|
634
|
+
DisplayRounding,
|
|
596
635
|
DistributionType,
|
|
597
636
|
DndColumnType,
|
|
598
637
|
DndTable,
|
|
@@ -652,7 +691,10 @@ export {
|
|
|
652
691
|
FieldLabel,
|
|
653
692
|
FieldType,
|
|
654
693
|
FilterCreationDialog,
|
|
694
|
+
FilterDataTypes,
|
|
655
695
|
FilterForm,
|
|
696
|
+
FilterNumberComparators,
|
|
697
|
+
FilterTextComparators,
|
|
656
698
|
FilterType,
|
|
657
699
|
FlatParameters,
|
|
658
700
|
FloatInput,
|
|
@@ -660,6 +702,7 @@ export {
|
|
|
660
702
|
GENERAL_APPLY_MODIFICATIONS,
|
|
661
703
|
GENERATORS_SELECTION_TYPE,
|
|
662
704
|
GENERATOR_TAB_FIELDS,
|
|
705
|
+
GLOBAL_REPORT_NODE_LABEL,
|
|
663
706
|
GRIDSUITE_DEFAULT_PRECISION,
|
|
664
707
|
Generator,
|
|
665
708
|
GeneratorCreationForm,
|
|
@@ -731,6 +774,7 @@ export {
|
|
|
731
774
|
LoadFlowParametersInline,
|
|
732
775
|
LoadForm,
|
|
733
776
|
LoadModelsRule,
|
|
777
|
+
default3 as LogTable,
|
|
734
778
|
Login,
|
|
735
779
|
LogoText,
|
|
736
780
|
Logout,
|
|
@@ -769,6 +813,7 @@ export {
|
|
|
769
813
|
NAD_POSITIONS_GENERATION_MODE,
|
|
770
814
|
NAD_POSITIONS_GENERATION_MODE_LABEL,
|
|
771
815
|
NAME,
|
|
816
|
+
NETWORK_MODIFICATION,
|
|
772
817
|
NODE_CLUSTER,
|
|
773
818
|
NODE_CLUSTER_FILTER_IDS,
|
|
774
819
|
NO_ITEM_SELECTION_FOR_COPY,
|
|
@@ -855,6 +900,7 @@ export {
|
|
|
855
900
|
PropertyForm,
|
|
856
901
|
PropertyValueEditor,
|
|
857
902
|
ProviderParam,
|
|
903
|
+
QuickSearch,
|
|
858
904
|
RATIO_REGULATION_MODE_OPTIONS,
|
|
859
905
|
RATIO_TAP_CHANGER_POSITION,
|
|
860
906
|
RATIO_TAP_CHANGER_TARGET_V,
|
|
@@ -864,6 +910,7 @@ export {
|
|
|
864
910
|
REGULATION_TYPES,
|
|
865
911
|
REGULATION_TYPE_OPTIONS,
|
|
866
912
|
REMOVE,
|
|
913
|
+
REPORT_SEVERITY,
|
|
867
914
|
RESET_AUTHENTICATION_ROUTER_ERROR,
|
|
868
915
|
RULES,
|
|
869
916
|
RadioInput,
|
|
@@ -877,6 +924,10 @@ export {
|
|
|
877
924
|
ReadOnlyInput,
|
|
878
925
|
RegulatingTerminalForm,
|
|
879
926
|
RemoveButton,
|
|
927
|
+
ReportFetcherContext,
|
|
928
|
+
ReportFilterContext,
|
|
929
|
+
ReportType,
|
|
930
|
+
ReportViewer,
|
|
880
931
|
ResizeHandle,
|
|
881
932
|
RootNetworkCellRenderer,
|
|
882
933
|
RootNetworkChipCell,
|
|
@@ -947,6 +998,7 @@ export {
|
|
|
947
998
|
SliderInput,
|
|
948
999
|
SnackbarProvider,
|
|
949
1000
|
SolverType,
|
|
1001
|
+
SortWay,
|
|
950
1002
|
SubmitButton,
|
|
951
1003
|
Substation,
|
|
952
1004
|
SubstationCreationForm,
|
|
@@ -967,6 +1019,7 @@ export {
|
|
|
967
1019
|
TabValues,
|
|
968
1020
|
TableNumericalInput,
|
|
969
1021
|
TableTextInput,
|
|
1022
|
+
TableType,
|
|
970
1023
|
TagRenderer,
|
|
971
1024
|
TextFieldWithAdornment,
|
|
972
1025
|
TextInput,
|
|
@@ -984,6 +1037,7 @@ export {
|
|
|
984
1037
|
USER_VALIDATION_ERROR,
|
|
985
1038
|
USE_REACTIVE_LIMITS,
|
|
986
1039
|
UnauthorizedAccessAlert,
|
|
1040
|
+
UndisplayedFilterNumberComparators,
|
|
987
1041
|
UniqueNameInput,
|
|
988
1042
|
UpdateSAProcessConfigDialog,
|
|
989
1043
|
UserManagerMock,
|
|
@@ -1017,6 +1071,7 @@ export {
|
|
|
1017
1071
|
YUP_NOT_TYPE_NUMBER,
|
|
1018
1072
|
YUP_POSITIVE,
|
|
1019
1073
|
YUP_REQUIRED,
|
|
1074
|
+
addToleranceToFilter,
|
|
1020
1075
|
alertThresholdMarks,
|
|
1021
1076
|
areArrayElementsUnique,
|
|
1022
1077
|
areIdsEqual,
|
|
@@ -1050,6 +1105,7 @@ export {
|
|
|
1050
1105
|
componentsFr,
|
|
1051
1106
|
computeSwitchedOnValue,
|
|
1052
1107
|
computeTagMinSize,
|
|
1108
|
+
computeTolerance,
|
|
1053
1109
|
convertInputValue,
|
|
1054
1110
|
convertOutputValue,
|
|
1055
1111
|
copyEquipmentPropertiesForCreation,
|
|
@@ -1212,11 +1268,13 @@ export {
|
|
|
1212
1268
|
getConnectivityWithoutPositionEmptyFormData,
|
|
1213
1269
|
getConnectivityWithoutPositionValidationSchema,
|
|
1214
1270
|
getCont1Cont2WithPositionEmptyFormData,
|
|
1271
|
+
getContainerDefaultSeverityList,
|
|
1215
1272
|
getContingencyListsInfosFormSchema,
|
|
1216
1273
|
getCreateSwitchesEmptyFormData,
|
|
1217
1274
|
getCreateSwitchesValidationSchema,
|
|
1218
1275
|
getCsvDelimiter,
|
|
1219
1276
|
getDefaultRowData,
|
|
1277
|
+
getDefaultSeverityFilter,
|
|
1220
1278
|
getEnergySourceLabel,
|
|
1221
1279
|
getEquipmentTypeShortLabel,
|
|
1222
1280
|
getEquipmentsInfosForSearchBar,
|
|
@@ -1323,6 +1381,7 @@ export {
|
|
|
1323
1381
|
isFloatNumber,
|
|
1324
1382
|
isInjection,
|
|
1325
1383
|
isIntegerNumber,
|
|
1384
|
+
isNonEmptyStringOrArray,
|
|
1326
1385
|
isObjectEmpty,
|
|
1327
1386
|
isProcessType,
|
|
1328
1387
|
isStudyMetadata,
|
|
@@ -1343,10 +1402,12 @@ export {
|
|
|
1343
1402
|
loginEn,
|
|
1344
1403
|
loginFr,
|
|
1345
1404
|
logout,
|
|
1405
|
+
makeAgGridCustomHeaderColumn,
|
|
1346
1406
|
makeComposeClasses,
|
|
1347
1407
|
mapDynamicSimulationParameters,
|
|
1348
1408
|
mapNmKResultsCutOffPower,
|
|
1349
1409
|
mapPccMinParameters,
|
|
1410
|
+
mapReportLogs,
|
|
1350
1411
|
mapSecurityAnalysisParameters,
|
|
1351
1412
|
mapSensitivityAnalysisParameters,
|
|
1352
1413
|
mergeModificationAndEquipmentProperties,
|
|
@@ -1412,6 +1473,7 @@ export {
|
|
|
1412
1473
|
shuntCompensatorModificationFormSchema,
|
|
1413
1474
|
shuntCompensatorModificationFormToDto,
|
|
1414
1475
|
snackWithFallback,
|
|
1476
|
+
sortSeverityList,
|
|
1415
1477
|
standardTextField,
|
|
1416
1478
|
styles,
|
|
1417
1479
|
subscribeToUserState,
|
|
@@ -1465,6 +1527,11 @@ export {
|
|
|
1465
1527
|
useConfidentialityWarning,
|
|
1466
1528
|
useConvertValue,
|
|
1467
1529
|
useCsvExport,
|
|
1530
|
+
useCustomAggridColumnFilter,
|
|
1531
|
+
useCustomAggridComparatorFilter,
|
|
1532
|
+
useCustomAggridFilterContext,
|
|
1533
|
+
useCustomAggridSort,
|
|
1534
|
+
useCustomAggridSortContext,
|
|
1468
1535
|
useCustomFormContext,
|
|
1469
1536
|
useDebounce,
|
|
1470
1537
|
useElementSearch,
|
|
@@ -1482,6 +1549,8 @@ export {
|
|
|
1482
1549
|
useParametersForm,
|
|
1483
1550
|
usePredefinedProperties,
|
|
1484
1551
|
usePrevious,
|
|
1552
|
+
useReportFetcherContext,
|
|
1553
|
+
useReportFilterContext,
|
|
1485
1554
|
useSelectAppearance,
|
|
1486
1555
|
useSnackMessage,
|
|
1487
1556
|
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;
|