@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
package/dist/components/index.js
CHANGED
|
@@ -127,6 +127,31 @@ import { CUSTOM_AGGRID_THEME, styles } from "./composite/customAGGrid/customAggr
|
|
|
127
127
|
import { CustomAGGrid } from "./composite/customAGGrid/customAggrid.js";
|
|
128
128
|
import { SeparatorCellRenderer } from "./composite/customAGGrid/separatorCellRenderer.js";
|
|
129
129
|
import { BooleanCellRenderer, BooleanNullableCellRenderer, ContingencyCellRenderer, DefaultCellRenderer, ErrorCellRenderer, MessageLogCellRenderer, NetworkModificationNameCellRenderer, NumericCellRenderer } from "./composite/customAGGrid/cell-renderers.js";
|
|
130
|
+
import { CustomAggridFilterContext, CustomAggridSortContext, useCustomAggridFilterContext, useCustomAggridSortContext } from "./composite/customAGGrid/context/custom-aggrid-context.js";
|
|
131
|
+
import { useCustomAggridSort } from "./composite/customAGGrid/hooks/use-custom-aggrid-sort.js";
|
|
132
|
+
import { CustomAggridAutocompleteFilter } from "./composite/customAGGrid/custom-aggrid-filters/custom-aggrid-autocomplete-filter.js";
|
|
133
|
+
import { CustomAggridComparatorFilter } from "./composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-filter.js";
|
|
134
|
+
import { CustomAggridComparatorSelector } from "./composite/customAGGrid/custom-aggrid-filters/custom-aggrid-comparator-selector.js";
|
|
135
|
+
import { CustomAggridFilter } from "./composite/customAGGrid/custom-aggrid-filters/custom-aggrid-filter.js";
|
|
136
|
+
import { CustomAggridTextFilter } from "./composite/customAGGrid/custom-aggrid-filters/custom-aggrid-text-filter.js";
|
|
137
|
+
import { CustomFilterIcon } from "./composite/customAGGrid/custom-aggrid-filters/custom-filter-icon.js";
|
|
138
|
+
import { useCustomAggridColumnFilter } from "./composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-column-filter.js";
|
|
139
|
+
import { useCustomAggridComparatorFilter } from "./composite/customAGGrid/custom-aggrid-filters/hooks/use-custom-aggrid-comparator-filter.js";
|
|
140
|
+
import { addToleranceToFilter, computeTolerance } from "./composite/customAGGrid/custom-aggrid-filters/utils/filter-tolerance-utils.js";
|
|
141
|
+
import { ColumnTypes, FilterDataTypes, FilterNumberComparators, FilterTextComparators, SortWay, TableType, UndisplayedFilterNumberComparators } from "./composite/customAGGrid/custom-aggrid-types.js";
|
|
142
|
+
import { CustomHeaderComponent } from "./composite/customAGGrid/custom-aggrid-header.js";
|
|
143
|
+
import { CustomMenu } from "./composite/customAGGrid/custom-aggrid-menu.js";
|
|
144
|
+
import { CustomAggridSort } from "./composite/customAGGrid/custom-aggrid-sort.js";
|
|
145
|
+
import { DisplayRounding } from "./composite/customAGGrid/display-rounding.js";
|
|
146
|
+
import { makeAgGridCustomHeaderColumn } from "./composite/customAGGrid/utils/custom-aggrid-header-utils.js";
|
|
147
|
+
import { ReportViewer } from "./composite/report/report-viewer/report-viewer.js";
|
|
148
|
+
import { ReportFetcherContext, ReportFilterContext, useReportFetcherContext, useReportFilterContext } from "./composite/report/report-viewer/context/report-viewer-context.js";
|
|
149
|
+
import { default as default2 } from "./composite/report/report-viewer/log-table/log-table.js";
|
|
150
|
+
import { REPORT_SEVERITY, getContainerDefaultSeverityList, getDefaultSeverityFilter, sortSeverityList } from "./composite/report/report-severity.js";
|
|
151
|
+
import { mapReportLogs } from "./composite/report/report-log.mapper.js";
|
|
152
|
+
import { ReportType } from "./composite/report/report.type.js";
|
|
153
|
+
import { GLOBAL_REPORT_NODE_LABEL, NETWORK_MODIFICATION } from "./composite/report/report.constant.js";
|
|
154
|
+
import { QuickSearch } from "./composite/report/QuickSearch.js";
|
|
130
155
|
export {
|
|
131
156
|
ActivableChip,
|
|
132
157
|
AddButton,
|
|
@@ -149,6 +174,7 @@ export {
|
|
|
149
174
|
CheckboxInput,
|
|
150
175
|
CheckboxNullableInput,
|
|
151
176
|
ChipItemsInput,
|
|
177
|
+
ColumnTypes,
|
|
152
178
|
CombinatorSelector,
|
|
153
179
|
CombinatorType,
|
|
154
180
|
ContingencyCellRenderer,
|
|
@@ -159,8 +185,19 @@ export {
|
|
|
159
185
|
CsvPicker,
|
|
160
186
|
CustomAGGrid,
|
|
161
187
|
CustomAgGridTable,
|
|
188
|
+
CustomAggridAutocompleteFilter,
|
|
189
|
+
CustomAggridComparatorFilter,
|
|
190
|
+
CustomAggridComparatorSelector,
|
|
191
|
+
CustomAggridFilter,
|
|
192
|
+
CustomAggridFilterContext,
|
|
193
|
+
CustomAggridSort,
|
|
194
|
+
CustomAggridSortContext,
|
|
195
|
+
CustomAggridTextFilter,
|
|
196
|
+
CustomFilterIcon,
|
|
162
197
|
CustomFormContext,
|
|
163
198
|
CustomFormProvider,
|
|
199
|
+
CustomHeaderComponent,
|
|
200
|
+
CustomMenu,
|
|
164
201
|
CustomMenuItem,
|
|
165
202
|
CustomMuiDialog,
|
|
166
203
|
CustomNestedMenuItem,
|
|
@@ -181,6 +218,7 @@ export {
|
|
|
181
218
|
DirectoryItemInput,
|
|
182
219
|
DirectoryItemSelector,
|
|
183
220
|
DirectoryItemsInput,
|
|
221
|
+
DisplayRounding,
|
|
184
222
|
DndColumnType,
|
|
185
223
|
DndTable,
|
|
186
224
|
DndTableAddRowsDialog,
|
|
@@ -212,10 +250,14 @@ export {
|
|
|
212
250
|
FieldErrorAlert,
|
|
213
251
|
FieldLabel,
|
|
214
252
|
FilterCreationDialog,
|
|
253
|
+
FilterDataTypes,
|
|
215
254
|
FilterForm,
|
|
255
|
+
FilterNumberComparators,
|
|
256
|
+
FilterTextComparators,
|
|
216
257
|
FilterType,
|
|
217
258
|
FlatParameters,
|
|
218
259
|
FloatInput,
|
|
260
|
+
GLOBAL_REPORT_NODE_LABEL,
|
|
219
261
|
GroupValueEditor,
|
|
220
262
|
HelperPreviousValue,
|
|
221
263
|
InputWithPopupConfirmation,
|
|
@@ -223,6 +265,7 @@ export {
|
|
|
223
265
|
LOAD_TYPE_OPTIONS,
|
|
224
266
|
LeftPanelCloseIcon,
|
|
225
267
|
LeftPanelOpenIcon,
|
|
268
|
+
default2 as LogTable,
|
|
226
269
|
MAX_ROWS_NUMBER,
|
|
227
270
|
MessageLogCellRenderer,
|
|
228
271
|
MidFormError,
|
|
@@ -231,6 +274,7 @@ export {
|
|
|
231
274
|
MultipleAutocompleteInput,
|
|
232
275
|
MultipleSelectionDialog,
|
|
233
276
|
NAME,
|
|
277
|
+
NETWORK_MODIFICATION,
|
|
234
278
|
NetworkModificationNameCellRenderer,
|
|
235
279
|
NumericCellRenderer,
|
|
236
280
|
NumericEditor,
|
|
@@ -244,8 +288,10 @@ export {
|
|
|
244
288
|
PHASE_REGULATION_MODE_OPTIONS,
|
|
245
289
|
PopupConfirmationDialog,
|
|
246
290
|
PropertyValueEditor,
|
|
291
|
+
QuickSearch,
|
|
247
292
|
RATIO_REGULATION_MODE_OPTIONS,
|
|
248
293
|
REGULATION_TYPE_OPTIONS,
|
|
294
|
+
REPORT_SEVERITY,
|
|
249
295
|
RULES,
|
|
250
296
|
RadioInput,
|
|
251
297
|
RangeInput,
|
|
@@ -253,6 +299,10 @@ export {
|
|
|
253
299
|
RawReadOnlyInput,
|
|
254
300
|
ReadOnlyInput,
|
|
255
301
|
RemoveButton,
|
|
302
|
+
ReportFetcherContext,
|
|
303
|
+
ReportFilterContext,
|
|
304
|
+
ReportType,
|
|
305
|
+
ReportViewer,
|
|
256
306
|
ResizeHandle,
|
|
257
307
|
RuleValueEditor,
|
|
258
308
|
SELECTED,
|
|
@@ -264,19 +314,24 @@ export {
|
|
|
264
314
|
SeparatorCellRenderer,
|
|
265
315
|
SliderInput,
|
|
266
316
|
SnackbarProvider,
|
|
317
|
+
SortWay,
|
|
267
318
|
SubmitButton,
|
|
268
319
|
SwitchInput,
|
|
269
320
|
TableNumericalInput,
|
|
270
321
|
TableTextInput,
|
|
322
|
+
TableType,
|
|
271
323
|
TagRenderer,
|
|
272
324
|
TextFieldWithAdornment,
|
|
273
325
|
TextInput,
|
|
274
326
|
TextValueEditor,
|
|
275
327
|
TranslatedValueEditor,
|
|
276
328
|
TreeViewFinder,
|
|
329
|
+
UndisplayedFilterNumberComparators,
|
|
277
330
|
UniqueNameInput,
|
|
278
331
|
ValueEditor,
|
|
279
332
|
ValueSelector,
|
|
333
|
+
addToleranceToFilter,
|
|
334
|
+
computeTolerance,
|
|
280
335
|
countRules,
|
|
281
336
|
directoryItemSchema,
|
|
282
337
|
doesNodeHasChildren,
|
|
@@ -288,7 +343,9 @@ export {
|
|
|
288
343
|
genHelperError,
|
|
289
344
|
generateTreeViewFinderClass,
|
|
290
345
|
getAbsenceLabelKeyFromType,
|
|
346
|
+
getContainerDefaultSeverityList,
|
|
291
347
|
getDefaultRowData,
|
|
348
|
+
getDefaultSeverityFilter,
|
|
292
349
|
getExpertFilterEmptyFormData,
|
|
293
350
|
getExplicitNamingFilterEmptyFormData,
|
|
294
351
|
getNumberOfSiblings,
|
|
@@ -301,10 +358,13 @@ export {
|
|
|
301
358
|
isFieldRequired,
|
|
302
359
|
isFloatNumber,
|
|
303
360
|
isIntegerNumber,
|
|
361
|
+
makeAgGridCustomHeaderColumn,
|
|
362
|
+
mapReportLogs,
|
|
304
363
|
queryValidator,
|
|
305
364
|
recursiveRemove,
|
|
306
365
|
saveExpertFilter,
|
|
307
366
|
saveExplicitNamingFilter,
|
|
367
|
+
sortSeverityList,
|
|
308
368
|
styles,
|
|
309
369
|
suppressNonNumericKeyboardEvent,
|
|
310
370
|
testQuery,
|
|
@@ -312,7 +372,14 @@ export {
|
|
|
312
372
|
unscrollableDialogStyles,
|
|
313
373
|
useConvertValue,
|
|
314
374
|
useCsvExport,
|
|
375
|
+
useCustomAggridColumnFilter,
|
|
376
|
+
useCustomAggridComparatorFilter,
|
|
377
|
+
useCustomAggridFilterContext,
|
|
378
|
+
useCustomAggridSort,
|
|
379
|
+
useCustomAggridSortContext,
|
|
315
380
|
useCustomFormContext,
|
|
316
381
|
useElementSearch,
|
|
382
|
+
useReportFetcherContext,
|
|
383
|
+
useReportFilterContext,
|
|
317
384
|
useValid
|
|
318
385
|
};
|
|
@@ -7,4 +7,4 @@ export interface AddButtonProps extends ButtonProps {
|
|
|
7
7
|
label: string;
|
|
8
8
|
mode?: AddButtonMode;
|
|
9
9
|
}
|
|
10
|
-
export declare function AddButton({ label, mode, ...buttonProps }: Readonly<AddButtonProps>): import("react
|
|
10
|
+
export declare function AddButton({ label, mode, ...buttonProps }: Readonly<AddButtonProps>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CheckboxListProps } from './checkBoxList.type';
|
|
2
|
-
export declare function CheckBoxList<T>({ isDndActive, onDragStart, onDragEnd, isDragDisable, sx, ...props }: CheckboxListProps<T>): import("react
|
|
2
|
+
export declare function CheckBoxList<T>({ isDndActive, onDragStart, onDragEnd, isDragDisable, sx, ...props }: CheckboxListProps<T>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CheckBoxListItemProps } from './checkBoxList.type';
|
|
2
|
-
export declare function CheckBoxListItem<T>({ item, sx, secondaryAction, getItemId, divider, onItemClick, isItemClickable, disabled, ...props }: Readonly<CheckBoxListItemProps<T>>): import("react
|
|
2
|
+
export declare function CheckBoxListItem<T>({ item, sx, secondaryAction, getItemId, divider, onItemClick, isItemClickable, disabled, ...props }: Readonly<CheckBoxListItemProps<T>>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CheckBoxListItemContentProps } from './checkBoxList.type';
|
|
2
|
-
export declare function CheckBoxListItemContent({ sx, label, secondary, onClick, ...props }: Readonly<CheckBoxListItemContentProps>): import("react
|
|
2
|
+
export declare function CheckBoxListItemContent({ sx, label, secondary, onClick, ...props }: Readonly<CheckBoxListItemContentProps>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CheckBoxListItemsProps } from './checkBoxList.type';
|
|
2
|
-
export declare function CheckBoxListItems<T>({ items, selectedItems, onSelectionChange, getItemId, sx, secondaryAction, addSelectAllCheckbox, selectAllCheckBoxLabel, getItemLabel, getItemLabelSecondary, isDisabled, isDndActive, isDragDisable, divider, onItemClick, isItemClickable, ...props }: Readonly<CheckBoxListItemsProps<T>>): import("react
|
|
2
|
+
export declare function CheckBoxListItems<T>({ items, selectedItems, onSelectionChange, getItemId, sx, secondaryAction, addSelectAllCheckbox, selectAllCheckBoxLabel, getItemLabel, getItemLabelSecondary, isDisabled, isDndActive, isDragDisable, divider, onItemClick, isItemClickable, ...props }: Readonly<CheckBoxListItemsProps<T>>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DraggableCheckBoxListItemProps } from './checkBoxList.type';
|
|
2
|
-
export declare function DraggableCheckBoxListItem<T>({ item, sx, secondaryAction, getItemId, isDragDisable, provided, divider, onItemClick, isItemClickable, disabled, ...props }: Readonly<DraggableCheckBoxListItemProps<T>>): import("react
|
|
2
|
+
export declare function DraggableCheckBoxListItem<T>({ item, sx, secondaryAction, getItemId, isDragDisable, provided, divider, onItemClick, isItemClickable, disabled, ...props }: Readonly<DraggableCheckBoxListItemProps<T>>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { DraggableCheckBoxListItemContentProps } from './checkBoxList.type';
|
|
2
|
-
export declare function DraggableCheckBoxListItemContent({ provided, isHighlighted, sx, ...props }: Readonly<DraggableCheckBoxListItemContentProps>): import("react
|
|
2
|
+
export declare function DraggableCheckBoxListItemContent({ provided, isHighlighted, sx, ...props }: Readonly<DraggableCheckBoxListItemContentProps>): import("react").JSX.Element;
|
|
@@ -4,4 +4,4 @@ export interface ExportButtonProps {
|
|
|
4
4
|
isDownloadLoading?: boolean;
|
|
5
5
|
isDownloadSuccessful?: boolean;
|
|
6
6
|
}
|
|
7
|
-
export declare function ExportCsvButton({ onClick, disabled, isDownloadLoading: isCsvLoading, isDownloadSuccessful, }: Readonly<ExportButtonProps>): import("react
|
|
7
|
+
export declare function ExportCsvButton({ onClick, disabled, isDownloadLoading: isCsvLoading, isDownloadSuccessful, }: Readonly<ExportButtonProps>): import("react").JSX.Element;
|
|
@@ -8,4 +8,4 @@ export interface CsvPickerConfirmationDialogProps<TData = unknown> {
|
|
|
8
8
|
onAppend: (results: ParseResult<TData>, file: File) => void;
|
|
9
9
|
onClose: () => void;
|
|
10
10
|
}
|
|
11
|
-
export declare function CsvPickerConfirmationDialog<TData = unknown>({ pendingImport, onReplace, onAppend, onClose, }: CsvPickerConfirmationDialogProps<TData>): import("react
|
|
11
|
+
export declare function CsvPickerConfirmationDialog<TData = unknown>({ pendingImport, onReplace, onAppend, onClose, }: CsvPickerConfirmationDialogProps<TData>): import("react").JSX.Element;
|
|
@@ -20,5 +20,5 @@ export type CsvPickerProps<TData = unknown> = {
|
|
|
20
20
|
onFileError: (error: string | undefined) => void;
|
|
21
21
|
getTableData?: () => unknown[];
|
|
22
22
|
} & CsvPickerCallbacks<TData>;
|
|
23
|
-
export declare function CsvPicker<TData = unknown>({ label, header, maxLineNumber, disabled, language, parseConfig, selectedFile, onFileChange, onFileError, onComplete, onAppend, onReplace, getTableData, }: CsvPickerProps<TData>): import("react
|
|
23
|
+
export declare function CsvPicker<TData = unknown>({ label, header, maxLineNumber, disabled, language, parseConfig, selectedFile, onFileChange, onFileError, onComplete, onAppend, onReplace, getTableData, }: CsvPickerProps<TData>): import("react").JSX.Element;
|
|
24
24
|
export {};
|
|
@@ -48,4 +48,4 @@ export declare const unscrollableDialogStyles: {
|
|
|
48
48
|
readonly padding: 1;
|
|
49
49
|
};
|
|
50
50
|
};
|
|
51
|
-
export declare function CustomMuiDialog<T extends FieldValues = FieldValues>({ open, formContext, onClose, onSave, isDataFetching, onValidationError, titleId, disabledSave, onCancel, children, confirmationMessageKey, unscrollableFullHeight, ...dialogProps }: Readonly<CustomMuiDialogProps<T>>): import("react
|
|
51
|
+
export declare function CustomMuiDialog<T extends FieldValues = FieldValues>({ open, formContext, onClose, onSave, isDataFetching, onValidationError, titleId, disabledSave, onCancel, children, confirmationMessageKey, unscrollableFullHeight, ...dialogProps }: Readonly<CustomMuiDialogProps<T>>): import("react").JSX.Element;
|
package/dist/components/ui/dialogs/descriptionModificationDialog/DescriptionModificationDialog.d.ts
CHANGED
|
@@ -11,4 +11,4 @@ export interface DescriptionModificationDialogProps {
|
|
|
11
11
|
updateElement?: (data: Record<string, string>) => Promise<Response>;
|
|
12
12
|
updateForm?: (data: Record<string, string>) => void;
|
|
13
13
|
}
|
|
14
|
-
export declare function DescriptionModificationDialog({ description, open, onClose, updateElement, updateForm, }: Readonly<DescriptionModificationDialogProps>): import("react
|
|
14
|
+
export declare function DescriptionModificationDialog({ description, open, onClose, updateElement, updateForm, }: Readonly<DescriptionModificationDialogProps>): import("react").JSX.Element;
|
|
@@ -53,5 +53,5 @@ export type ElementSaveDialogProps = {
|
|
|
53
53
|
/** or directly a given directory */
|
|
54
54
|
initDirectory?: ElementAttributes;
|
|
55
55
|
});
|
|
56
|
-
export declare function ElementSaveDialog({ open, onSave, OnUpdate, onClose, type, titleId, prefixIdForGeneratedName, defaultName, studyUuid, initDirectory, initialOperation, selectorTitleId, createLabelId, updateLabelId, createOnlyMode, }: Readonly<ElementSaveDialogProps>): import("react
|
|
56
|
+
export declare function ElementSaveDialog({ open, onSave, OnUpdate, onClose, type, titleId, prefixIdForGeneratedName, defaultName, studyUuid, initDirectory, initialOperation, selectorTitleId, createLabelId, updateLabelId, createOnlyMode, }: Readonly<ElementSaveDialogProps>): import("react").JSX.Element;
|
|
57
57
|
export {};
|
|
@@ -8,4 +8,4 @@ export interface ModifyElementSelectionProps {
|
|
|
8
8
|
noElementMessageLabel?: string;
|
|
9
9
|
onElementValidated?: (elementId: UUID) => void;
|
|
10
10
|
}
|
|
11
|
-
export declare function ModifyElementSelection(props: ModifyElementSelectionProps): import("react
|
|
11
|
+
export declare function ModifyElementSelection(props: ModifyElementSelectionProps): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface MultipleSelectionDialogProps<T> extends CheckboxListProps<T> {
|
|
|
5
5
|
handleValidate: (options: T[]) => void;
|
|
6
6
|
titleId: string;
|
|
7
7
|
}
|
|
8
|
-
export declare function MultipleSelectionDialog<T>({ open, handleClose, handleValidate, selectedItems, titleId, ...props }: MultipleSelectionDialogProps<T>): import("react
|
|
8
|
+
export declare function MultipleSelectionDialog<T>({ open, handleClose, handleValidate, selectedItems, titleId, ...props }: MultipleSelectionDialogProps<T>): import("react").JSX.Element;
|
|
@@ -12,4 +12,4 @@ export interface PopupConfirmationDialogProps {
|
|
|
12
12
|
setOpenConfirmationPopup: (value: boolean) => void;
|
|
13
13
|
handlePopupConfirmation: () => void;
|
|
14
14
|
}
|
|
15
|
-
export declare function PopupConfirmationDialog({ message, isTranslationNeeded, validateButtonLabel, openConfirmationPopup, setOpenConfirmationPopup, handlePopupConfirmation, }: PopupConfirmationDialogProps): import("react
|
|
15
|
+
export declare function PopupConfirmationDialog({ message, isTranslationNeeded, validateButtonLabel, openConfirmationPopup, setOpenConfirmationPopup, handlePopupConfirmation, }: PopupConfirmationDialogProps): import("react").JSX.Element;
|
|
@@ -9,4 +9,4 @@ export interface DirectoryItemSelectorProps extends TreeViewFinderProps {
|
|
|
9
9
|
inline?: boolean;
|
|
10
10
|
selected?: UUID[];
|
|
11
11
|
}
|
|
12
|
-
export declare function DirectoryItemSelector({ open, inline, types, equipmentTypes, itemFilter, expanded, selected, onClose, ...otherTreeViewFinderProps }: Readonly<DirectoryItemSelectorProps>): import("react
|
|
12
|
+
export declare function DirectoryItemSelector({ open, inline, types, equipmentTypes, itemFilter, expanded, selected, onClose, ...otherTreeViewFinderProps }: Readonly<DirectoryItemSelectorProps>): import("react").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { PropsWithChildren, ReactNode } from 'react';
|
|
|
2
2
|
export interface ExpandableGroupProps extends PropsWithChildren {
|
|
3
3
|
renderHeader: ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare function ExpandableGroup({ renderHeader, children }: Readonly<ExpandableGroupProps>): import("react
|
|
5
|
+
export declare function ExpandableGroup({ renderHeader, children }: Readonly<ExpandableGroupProps>): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SvgIconProps } from '@mui/material';
|
|
2
|
-
export declare function ArrowsInputIcon(props: SvgIconProps): import("react
|
|
2
|
+
export declare function ArrowsInputIcon(props: SvgIconProps): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SvgIconProps } from '@mui/material';
|
|
2
|
-
export declare function ArrowsOutputIcon(props: SvgIconProps): import("react
|
|
2
|
+
export declare function ArrowsOutputIcon(props: SvgIconProps): import("react").JSX.Element;
|
|
@@ -2,5 +2,5 @@ import { SvgIconProps } from '@mui/material';
|
|
|
2
2
|
type EditNoteIconProps = SvgIconProps & {
|
|
3
3
|
empty?: boolean;
|
|
4
4
|
};
|
|
5
|
-
export declare function EditNoteIcon({ empty, ...props }: Readonly<EditNoteIconProps>): import("react
|
|
5
|
+
export declare function EditNoteIcon({ empty, ...props }: Readonly<EditNoteIconProps>): import("react").JSX.Element;
|
|
6
6
|
export {};
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SvgIconProps } from '@mui/material';
|
|
2
|
-
export declare function LeftPanelCloseIcon(props: SvgIconProps): import("react
|
|
2
|
+
export declare function LeftPanelCloseIcon(props: SvgIconProps): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SvgIconProps } from '@mui/material';
|
|
2
|
-
export declare function LeftPanelOpenIcon(props: SvgIconProps): import("react
|
|
2
|
+
export declare function LeftPanelOpenIcon(props: SvgIconProps): import("react").JSX.Element;
|
|
@@ -11,4 +11,4 @@ export interface ActivableChipProps {
|
|
|
11
11
|
onClick: () => void;
|
|
12
12
|
isDisabled?: boolean;
|
|
13
13
|
}
|
|
14
|
-
export declare function ActivableChip(props: Readonly<ActivableChipProps>): import("react
|
|
14
|
+
export declare function ActivableChip(props: Readonly<ActivableChipProps>): import("react").JSX.Element;
|
|
@@ -8,5 +8,5 @@ export interface SelectClearableProps extends Omit<AutocompleteProps<SelectOptio
|
|
|
8
8
|
onChange: (value: string | null) => void;
|
|
9
9
|
label?: string;
|
|
10
10
|
}
|
|
11
|
-
export declare function SelectClearable(props: Readonly<SelectClearableProps>): import("react
|
|
11
|
+
export declare function SelectClearable(props: Readonly<SelectClearableProps>): import("react").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -8,5 +8,5 @@ interface CheckboxAutocompleteProps<Value> extends Omit<AutocompleteProps<Value,
|
|
|
8
8
|
value: Value[];
|
|
9
9
|
onChange: (value: Value[]) => void;
|
|
10
10
|
}
|
|
11
|
-
export declare function CheckboxAutocomplete<Value>({ id, virtualize, maxSelection, options, getOptionLabel, onChange, ...otherProps }: Readonly<CheckboxAutocompleteProps<Value>>): import("react
|
|
11
|
+
export declare function CheckboxAutocomplete<Value>({ id, virtualize, maxSelection, options, getOptionLabel, onChange, ...otherProps }: Readonly<CheckboxAutocompleteProps<Value>>): import("react").JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState } from "react";
|
|
3
|
-
import { styled, Popper, autocompleteClasses, Autocomplete,
|
|
3
|
+
import { styled, Popper, autocompleteClasses, Autocomplete, TextField, lighten } from "@mui/material";
|
|
4
4
|
import { useIntl } from "react-intl";
|
|
5
5
|
import VirtualizedList from "./virtualized-list.js";
|
|
6
6
|
import CheckboxItem from "./checkbox-item.js";
|
|
@@ -4,5 +4,5 @@ interface CheckboxItemProps<Value> extends HTMLAttributes<HTMLElement> {
|
|
|
4
4
|
selected: boolean;
|
|
5
5
|
getOptionLabel: (option: Value) => string;
|
|
6
6
|
}
|
|
7
|
-
declare function CheckboxItem<Value>({ option, selected, getOptionLabel, ...otherProps }: Readonly<CheckboxItemProps<Value>>): import("react
|
|
7
|
+
declare function CheckboxItem<Value>({ option, selected, getOptionLabel, ...otherProps }: Readonly<CheckboxItemProps<Value>>): import("react").JSX.Element;
|
|
8
8
|
export default CheckboxItem;
|
|
@@ -11,5 +11,5 @@ export type VirtualizedItem = [
|
|
|
11
11
|
];
|
|
12
12
|
declare function VirtualizedListItem({ index, itemData, style, }: RowComponentProps & {
|
|
13
13
|
itemData: VirtualizedItem[];
|
|
14
|
-
}): import("react
|
|
14
|
+
}): import("react").JSX.Element;
|
|
15
15
|
export default VirtualizedListItem;
|
|
@@ -5,6 +5,6 @@ import { SxStyle } from '../../../utils/styles';
|
|
|
5
5
|
interface CustomNestedMenuItemProps extends PropsWithChildren, Omit<NestedMenuItemProps, 'parentMenuOpen'> {
|
|
6
6
|
sx?: SxStyle;
|
|
7
7
|
}
|
|
8
|
-
export declare function CustomNestedMenuItem({ sx, children, ...other }: Readonly<CustomNestedMenuItemProps>): import("react
|
|
9
|
-
export declare function CustomMenuItem({ sx, ...other }: Readonly<MenuItemProps>): import("react
|
|
8
|
+
export declare function CustomNestedMenuItem({ sx, children, ...other }: Readonly<CustomNestedMenuItemProps>): import("react").JSX.Element;
|
|
9
|
+
export declare function CustomMenuItem({ sx, ...other }: Readonly<MenuItemProps>): import("react").JSX.Element;
|
|
10
10
|
export {};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { jsx } from "react/jsx-runtime";
|
|
2
2
|
import { useState, useRef } from "react";
|
|
3
3
|
import { NestedMenuItem } from "mui-nested-menu";
|
|
4
|
-
import {
|
|
4
|
+
import { MenuItem, Box } from "@mui/material";
|
|
5
5
|
import { mergeSx } from "../../../utils/styles.js";
|
|
6
6
|
const styles = {
|
|
7
7
|
highlightedParentLine: {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ReactNode } from 'react';
|
|
1
|
+
import { FunctionComponent, ReactNode } from 'react';
|
|
2
2
|
import { BoxProps } from '@mui/material';
|
|
3
3
|
import { Style } from 'node:util';
|
|
4
4
|
import { SxStyle } from '../../../utils';
|
|
@@ -8,4 +8,4 @@ export interface OverflowableTextProps extends BoxProps {
|
|
|
8
8
|
tooltipStyle?: Style;
|
|
9
9
|
tooltipSx?: SxStyle;
|
|
10
10
|
}
|
|
11
|
-
export declare const OverflowableText:
|
|
11
|
+
export declare const OverflowableText: FunctionComponent<OverflowableTextProps>;
|
|
@@ -11,5 +11,5 @@ interface CheckboxNullableInputProps {
|
|
|
11
11
|
color: string;
|
|
12
12
|
};
|
|
13
13
|
}
|
|
14
|
-
export declare function CheckboxNullableInput({ name, label, id, formProps, previousValue, nullDisabled, onChange, style, }: Readonly<CheckboxNullableInputProps>): import("react
|
|
14
|
+
export declare function CheckboxNullableInput({ name, label, id, formProps, previousValue, nullDisabled, onChange, style, }: Readonly<CheckboxNullableInputProps>): import("react").JSX.Element;
|
|
15
15
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AutocompleteInputProps } from './autocompleteInputs';
|
|
2
2
|
interface CountrySelectionInputProps extends Omit<AutocompleteInputProps, 'options' | 'getOptionLabel'> {
|
|
3
3
|
}
|
|
4
|
-
export declare function CountrySelectionInput(props: Readonly<CountrySelectionInputProps>): import("react
|
|
4
|
+
export declare function CountrySelectionInput(props: Readonly<CountrySelectionInputProps>): import("react").JSX.Element;
|
|
5
5
|
export {};
|
|
@@ -22,4 +22,4 @@ export declare function DirectoryItemsInput<CP extends OverflowableChipProps = O
|
|
|
22
22
|
equipmentTypes, // Mostly used for filters, it allows the user to get elements of specific equipment only
|
|
23
23
|
itemFilter, // Used to further filter the results displayed according to specific requirement
|
|
24
24
|
titleId, // title of directory item selector dialogue
|
|
25
|
-
hideErrorMessage, onChange, disable, allowMultiSelect, labelRequiredFromContext, ChipComponent, chipProps, fullHeight, fullWidth, }: Readonly<DirectoryItemsInputProps<CP>>): import("react
|
|
25
|
+
hideErrorMessage, onChange, disable, allowMultiSelect, labelRequiredFromContext, ChipComponent, chipProps, fullHeight, fullWidth, }: Readonly<DirectoryItemsInputProps<CP>>): import("react").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { BoxProps, ChipProps } from '@mui/material';
|
|
|
2
2
|
export interface OverflowableChipProps extends ChipProps {
|
|
3
3
|
boxSx?: BoxProps['sx'];
|
|
4
4
|
}
|
|
5
|
-
export declare function OverflowableChip({ label, boxSx, ...otherProps }: Readonly<OverflowableChipProps>): import("react
|
|
5
|
+
export declare function OverflowableChip({ label, boxSx, ...otherProps }: Readonly<OverflowableChipProps>): import("react").JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { OverflowableChipProps } from './OverflowableChip';
|
|
|
2
2
|
export interface OverflowableChipWithHelperTextProps extends OverflowableChipProps {
|
|
3
3
|
helperText?: string;
|
|
4
4
|
}
|
|
5
|
-
export declare function OverflowableChipWithHelperText({ helperText, boxSx, ...otherProps }: Readonly<OverflowableChipWithHelperTextProps>): import("react
|
|
5
|
+
export declare function OverflowableChipWithHelperText({ helperText, boxSx, ...otherProps }: Readonly<OverflowableChipWithHelperTextProps>): import("react").JSX.Element;
|
|
@@ -17,4 +17,4 @@ export interface AutocompleteInputProps extends Omit<AutocompleteProps<Option, b
|
|
|
17
17
|
export declare function AutocompleteInput({ name, label, options, outputTransform, // transform materialUi input value before sending it to react hook form, mostly used to deal with select fields that need to return a string
|
|
18
18
|
inputTransform, // transform react hook form value before sending it to materialUi input, mostly used to deal with select fields that need to return a string
|
|
19
19
|
readOnly, previousValue, allowNewValue, onChangeCallback, // method called when input value is changing
|
|
20
|
-
formProps, disabledTooltip, onCheckNewValue, ...props }: AutocompleteInputProps): import("react
|
|
20
|
+
formProps, disabledTooltip, onCheckNewValue, ...props }: AutocompleteInputProps): import("react").JSX.Element;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function MultipleAutocompleteInput({ name, ...props }: any): import("react
|
|
1
|
+
export declare function MultipleAutocompleteInput({ name, ...props }: any): import("react").JSX.Element;
|
|
@@ -8,5 +8,5 @@ export type BooleanInputProps<TInput extends InputTypes> = {
|
|
|
8
8
|
formProps?: InputProps<TInput>;
|
|
9
9
|
Input: TInput;
|
|
10
10
|
};
|
|
11
|
-
export declare function BooleanInput<TInput extends InputTypes>({ name, label, formProps, Input, ...props }: Readonly<BooleanInputProps<TInput>>):
|
|
11
|
+
export declare function BooleanInput<TInput extends InputTypes>({ name, label, formProps, Input, ...props }: Readonly<BooleanInputProps<TInput>>): JSX.Element;
|
|
12
12
|
export {};
|
|
@@ -4,4 +4,4 @@ export interface CheckboxInputProps {
|
|
|
4
4
|
label?: string;
|
|
5
5
|
formProps?: CheckboxProps;
|
|
6
6
|
}
|
|
7
|
-
export declare function CheckboxInput({ name, label, formProps }: CheckboxInputProps): import("react
|
|
7
|
+
export declare function CheckboxInput({ name, label, formProps }: CheckboxInputProps): import("react").JSX.Element;
|
|
@@ -10,5 +10,5 @@ export interface RadioInputProps {
|
|
|
10
10
|
options: RadioOptions;
|
|
11
11
|
formProps?: Omit<RadioGroupProps, 'value'>;
|
|
12
12
|
}
|
|
13
|
-
export declare function RadioInput({ name, label, id, options, formProps }: Readonly<RadioInputProps>): import("react
|
|
13
|
+
export declare function RadioInput({ name, label, id, options, formProps }: Readonly<RadioInputProps>): import("react").JSX.Element;
|
|
14
14
|
export {};
|
|
@@ -4,4 +4,4 @@ export interface SwitchInputProps {
|
|
|
4
4
|
label?: string;
|
|
5
5
|
formProps?: SwitchProps;
|
|
6
6
|
}
|
|
7
|
-
export declare function SwitchInput({ name, label, formProps, ...props }: SwitchInputProps): import("react
|
|
7
|
+
export declare function SwitchInput({ name, label, formProps, ...props }: SwitchInputProps): import("react").JSX.Element;
|
|
@@ -9,5 +9,5 @@ interface ChipItemsInputProps {
|
|
|
9
9
|
name: string;
|
|
10
10
|
hideErrorMessage?: boolean;
|
|
11
11
|
}
|
|
12
|
-
export declare function ChipItemsInput({ label, name, hideErrorMessage }: Readonly<ChipItemsInputProps>): import("react
|
|
12
|
+
export declare function ChipItemsInput({ label, name, hideErrorMessage }: Readonly<ChipItemsInputProps>): import("react").JSX.Element;
|
|
13
13
|
export {};
|
|
@@ -2,4 +2,4 @@ import { DirectoryItemSelectorProps } from '../../directoryItemSelector';
|
|
|
2
2
|
export interface DirectoryItemSelectorInputProps extends Omit<DirectoryItemSelectorProps, 'onClose' | 'open'> {
|
|
3
3
|
name: string;
|
|
4
4
|
}
|
|
5
|
-
export declare function DirectoryItemInput({ name, types, ...props }: Readonly<DirectoryItemSelectorInputProps>): import("react
|
|
5
|
+
export declare function DirectoryItemInput({ name, types, ...props }: Readonly<DirectoryItemSelectorInputProps>): import("react").JSX.Element;
|
|
@@ -9,4 +9,4 @@ export interface ErrorInputProps {
|
|
|
9
9
|
message: string | React.ReactNode;
|
|
10
10
|
}) => React.ReactNode;
|
|
11
11
|
}
|
|
12
|
-
export declare function ErrorInput({ name, InputField }: ErrorInputProps): "" |
|
|
12
|
+
export declare function ErrorInput({ name, InputField }: ErrorInputProps): "" | React.JSX.Element | undefined;
|
|
@@ -2,4 +2,4 @@ import { default as React } from 'react';
|
|
|
2
2
|
export interface FieldErrorAlertProps {
|
|
3
3
|
message: string | React.ReactNode;
|
|
4
4
|
}
|
|
5
|
-
export declare function FieldErrorAlert({ message }: Readonly<FieldErrorAlertProps>):
|
|
5
|
+
export declare function FieldErrorAlert({ message }: Readonly<FieldErrorAlertProps>): React.JSX.Element;
|
|
@@ -2,4 +2,4 @@ import { ReactNode } from 'react';
|
|
|
2
2
|
export type MidFormErrorProps = {
|
|
3
3
|
message: string | ReactNode;
|
|
4
4
|
};
|
|
5
|
-
export declare function MidFormError({ message }: Readonly<MidFormErrorProps>): import("react
|
|
5
|
+
export declare function MidFormError({ message }: Readonly<MidFormErrorProps>): import("react").JSX.Element;
|
|
@@ -5,4 +5,4 @@ export interface DeletableRowProps extends PropsWithChildren {
|
|
|
5
5
|
deletionMark?: boolean | null;
|
|
6
6
|
disabledDeletion?: boolean | null;
|
|
7
7
|
}
|
|
8
|
-
export declare function DeletableRow({ alignItems, onClick, deletionMark, disabledDeletion, children, }: Readonly<DeletableRowProps>): import("react
|
|
8
|
+
export declare function DeletableRow({ alignItems, onClick, deletionMark, disabledDeletion, children, }: Readonly<DeletableRowProps>): import("react").JSX.Element;
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
import { TextInputProps } from '../text/TextInput';
|
|
2
2
|
export type FloatInputProps = Omit<TextInputProps, 'outputTransform' | 'inputTransform' | 'acceptValue'>;
|
|
3
|
-
export declare function FloatInput(props: FloatInputProps): import("react
|
|
3
|
+
export declare function FloatInput(props: FloatInputProps): import("react").JSX.Element;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TextInputProps } from '../text/TextInput';
|
|
2
|
-
export declare function IntegerInput(props: TextInputProps): import("react
|
|
2
|
+
export declare function IntegerInput(props: TextInputProps): import("react").JSX.Element;
|
|
@@ -37,5 +37,5 @@ interface RangeInputProps {
|
|
|
37
37
|
name: string;
|
|
38
38
|
label: string;
|
|
39
39
|
}
|
|
40
|
-
export declare function RangeInput({ name, label }: RangeInputProps): import("react
|
|
40
|
+
export declare function RangeInput({ name, label }: RangeInputProps): import("react").JSX.Element;
|
|
41
41
|
export {};
|
|
@@ -3,4 +3,4 @@ export interface SliderInputProps extends SliderProps {
|
|
|
3
3
|
name: string;
|
|
4
4
|
onValueChanged?: (value: number | number[]) => void;
|
|
5
5
|
}
|
|
6
|
-
export declare function SliderInput({ name, min, max, step, size, marks, valueLabelDisplay, valueLabelFormat, onValueChanged, ...otherProps }: SliderInputProps): import("react
|
|
6
|
+
export declare function SliderInput({ name, min, max, step, size, marks, valueLabelDisplay, valueLabelFormat, onValueChanged, ...otherProps }: SliderInputProps): import("react").JSX.Element;
|
|
@@ -12,5 +12,5 @@ type CustomFormContextProps<TFieldValues extends FieldValues = FieldValues> = {
|
|
|
12
12
|
};
|
|
13
13
|
export type MergedFormContextProps<TFieldValues extends FieldValues = FieldValues> = UseFormReturn<TFieldValues> & CustomFormContextProps<TFieldValues>;
|
|
14
14
|
export declare const CustomFormContext: import('react').Context<CustomFormContextProps<FieldValues>>;
|
|
15
|
-
export declare function CustomFormProvider<TFieldValues extends FieldValues = FieldValues>(props: PropsWithChildren<MergedFormContextProps<TFieldValues>>): import("react
|
|
15
|
+
export declare function CustomFormProvider<TFieldValues extends FieldValues = FieldValues>(props: PropsWithChildren<MergedFormContextProps<TFieldValues>>): import("react").JSX.Element;
|
|
16
16
|
export {};
|
|
@@ -3,5 +3,5 @@ interface ButtonReadOnlyInputProps extends PropsWithChildren {
|
|
|
3
3
|
name: string;
|
|
4
4
|
isNumerical?: boolean;
|
|
5
5
|
}
|
|
6
|
-
export declare function ButtonReadOnlyInput({ name, isNumerical, children }: Readonly<ButtonReadOnlyInputProps>): import("react
|
|
6
|
+
export declare function ButtonReadOnlyInput({ name, isNumerical, children }: Readonly<ButtonReadOnlyInputProps>): import("react").JSX.Element;
|
|
7
7
|
export {};
|
|
@@ -8,5 +8,5 @@ interface ReadOnlyInputProps {
|
|
|
8
8
|
name: string;
|
|
9
9
|
isNumerical?: boolean;
|
|
10
10
|
}
|
|
11
|
-
export declare function ReadOnlyInput({ name, isNumerical }: Readonly<ReadOnlyInputProps>): import("react
|
|
11
|
+
export declare function ReadOnlyInput({ name, isNumerical }: Readonly<ReadOnlyInputProps>): import("react").JSX.Element;
|
|
12
12
|
export default ReadOnlyInput;
|