@adaptabletools/adaptable 17.0.0-canary.0 → 17.0.0-canary.1
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/base.css +1203 -1207
- package/base.css.map +1 -1
- package/index.css +28 -1989
- package/index.css.map +1 -1
- package/package.json +10 -108
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +2 -2
- package/src/AdaptableInterfaces/IAdaptable.d.ts +16 -11
- package/src/AdaptableOptions/ActionRowOptions.d.ts +25 -3
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +3 -3
- package/src/AdaptableOptions/AdaptableOptions.d.ts +10 -1
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +1 -1
- package/src/AdaptableOptions/AlertOptions.d.ts +2 -2
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +110 -91
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
- package/src/AdaptableOptions/DateInputOptions.d.ts +1 -1
- package/src/AdaptableOptions/EditOptions.d.ts +2 -2
- package/src/AdaptableOptions/ExportOptions.d.ts +3 -3
- package/src/AdaptableOptions/ExpressionOptions.d.ts +2 -2
- package/src/AdaptableOptions/Fdc3Options.d.ts +10 -4
- package/src/AdaptableOptions/GridFilterOptions.d.ts +18 -0
- package/src/AdaptableOptions/LayoutOptions.d.ts +1 -1
- package/src/AdaptableOptions/MenuOptions.d.ts +10 -4
- package/src/AdaptableOptions/NotificationsOptions.d.ts +1 -1
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +4 -4
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +1 -16
- package/src/Api/ColumnApi.d.ts +4 -0
- package/src/Api/ColumnFilterApi.d.ts +2 -5
- package/src/Api/DashboardApi.d.ts +0 -11
- package/src/Api/EventApi.d.ts +2 -30
- package/src/Api/Events/ActionRowSubmitted.d.ts +1 -5
- package/src/Api/Events/AdaptableSearchState.d.ts +2 -7
- package/src/Api/Events/Fdc3MessageInfo.d.ts +1 -1
- package/src/Api/Events/GridFilterApplied.d.ts +2 -1
- package/src/Api/ExportApi.d.ts +0 -4
- package/src/Api/GridFilterApi.d.ts +26 -8
- package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/ColumnApiImpl.js +4 -0
- package/src/Api/Implementation/ColumnFilterApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ColumnFilterApiImpl.js +3 -3
- package/src/Api/Implementation/ConfigApiImpl.js +1 -2
- package/src/Api/Implementation/DashboardApiImpl.d.ts +0 -2
- package/src/Api/Implementation/DashboardApiImpl.js +0 -14
- package/src/Api/Implementation/ExportApiImpl.d.ts +0 -1
- package/src/Api/Implementation/ExportApiImpl.js +0 -3
- package/src/Api/Implementation/GridApiImpl.js +2 -2
- package/src/Api/Implementation/GridFilterApiImpl.d.ts +6 -1
- package/src/Api/Implementation/GridFilterApiImpl.js +22 -3
- package/src/Api/Implementation/NamedQueryApiImpl.d.ts +2 -5
- package/src/Api/Implementation/NamedQueryApiImpl.js +2 -2
- package/src/Api/Implementation/OptionsApiImpl.d.ts +2 -1
- package/src/Api/Implementation/OptionsApiImpl.js +3 -0
- package/src/Api/Implementation/UserInterfaceApiImpl.js +2 -2
- package/src/Api/Internal/ActionRowInternalApi.d.ts +1 -0
- package/src/Api/Internal/ActionRowInternalApi.js +17 -3
- package/src/Api/Internal/AlertInternalApi.d.ts +1 -7
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +2 -2
- package/src/Api/Internal/ColumnFilterInternalApi.js +9 -9
- package/src/Api/Internal/ColumnInternalApi.d.ts +0 -10
- package/src/Api/Internal/ColumnInternalApi.js +0 -28
- package/src/Api/Internal/Fdc3InternalApi.d.ts +2 -2
- package/src/Api/Internal/FormatColumnInternalApi.js +6 -6
- package/src/Api/Internal/GridFilterInternalApi.d.ts +1 -1
- package/src/Api/Internal/GridFilterInternalApi.js +5 -5
- package/src/Api/Internal/GridInternalApi.js +31 -9
- package/src/Api/Internal/LayoutInternalApi.js +8 -0
- package/src/Api/Internal/PredicateInternalApi.js +3 -3
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +0 -3
- package/src/Api/Internal/StyledColumnInternalApi.js +0 -27
- package/src/Api/NamedQueryApi.d.ts +6 -5
- package/src/Api/OptionsApi.d.ts +5 -1
- package/src/PredefinedConfig/AlertState.d.ts +6 -6
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +1 -1
- package/src/PredefinedConfig/ChartingState.d.ts +4 -1
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableMessageType.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +45 -58
- package/src/PredefinedConfig/Common/AdaptableQuery.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableScope.d.ts +5 -5
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +1 -1
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +2 -2
- package/src/PredefinedConfig/Common/Entitlement.d.ts +1 -1
- package/src/PredefinedConfig/Common/Fdc3Context.d.ts +133 -37
- package/src/PredefinedConfig/Common/Fdc3Intent.d.ts +4 -4
- package/src/PredefinedConfig/Common/Schedule.d.ts +2 -2
- package/src/PredefinedConfig/Common/Types.d.ts +15 -15
- package/src/PredefinedConfig/ExportState.d.ts +4 -4
- package/src/PredefinedConfig/FlashingCellState.d.ts +4 -4
- package/src/PredefinedConfig/FormatColumnState.d.ts +4 -27
- package/src/PredefinedConfig/NotesState.d.ts +2 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -5
- package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +8 -13
- package/src/PredefinedConfig/SystemState.d.ts +3 -3
- package/src/PredefinedConfig/TeamSharingState.d.ts +3 -3
- package/src/PredefinedConfig/ToolPanelState.d.ts +1 -1
- package/src/PredefinedConfig/Uuid.d.ts +1 -1
- package/src/Redux/ActionsReducers/GridRedux.d.ts +6 -1
- package/src/Redux/ActionsReducers/GridRedux.js +18 -0
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +37 -16
- package/src/Redux/ActionsReducers/LayoutRedux.js +69 -16
- package/src/Redux/Store/AdaptableReduxMerger.d.ts +1 -1
- package/src/Redux/Store/AdaptableStore.d.ts +2 -2
- package/src/Redux/Store/AdaptableStore.js +46 -19
- package/src/Strategy/AdaptableModuleBase.d.ts +0 -1
- package/src/Strategy/AdaptableModuleBase.js +0 -30
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/ChartingModule.js +8 -5
- package/src/Strategy/ColumnFilterModule.d.ts +2 -0
- package/src/Strategy/ColumnFilterModule.js +78 -40
- package/src/Strategy/CustomSortModule.js +1 -1
- package/src/Strategy/FlashingCellModule.js +1 -1
- package/src/Strategy/Interface/IModule.d.ts +3 -3
- package/src/Strategy/LayoutModule.js +5 -0
- package/src/Strategy/StyledColumnModule.js +2 -53
- package/src/Utilities/Constants/GeneralConstants.d.ts +3 -0
- package/src/Utilities/Constants/GeneralConstants.js +3 -0
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +31 -23
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +1 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +2 -2
- package/src/Utilities/Emitter.d.ts +2 -2
- package/src/Utilities/Emitter.js +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.d.ts +3 -3
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +3 -3
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +55 -5
- package/src/Utilities/ExpressionFunctions/dateUtils.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/dateUtils.js +9 -0
- package/src/Utilities/ExpressionFunctions/deepMap.d.ts +3 -3
- package/src/Utilities/ExpressionFunctions/deepMap.js +7 -7
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/groupingMap.d.ts +7 -7
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.d.ts +7 -7
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +11 -1
- package/src/Utilities/Extensions/TypeExtensions.d.ts +8 -8
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -0
- package/src/Utilities/ObjectFactory.js +1 -1
- package/src/Utilities/Services/EntitlementService.d.ts +0 -1
- package/src/Utilities/Services/EntitlementService.js +0 -8
- package/src/Utilities/Services/Interface/IAlertService.d.ts +3 -3
- package/src/Utilities/Services/Interface/IEntitlementService.d.ts +0 -6
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +1 -1
- package/src/Utilities/Services/LicenseService/index.js +181 -1
- package/src/Utilities/Services/MetamodelService.js +1 -1
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/license/LicenseDetails.d.ts +1 -1
- package/src/Utilities/license/decode.js +65 -1
- package/src/Utilities/license/hashing.js +43 -1
- package/src/Utilities/logDeprecation.d.ts +5 -3
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +1 -1
- package/src/View/Alert/AlertEmptyView.js +1 -1
- package/src/View/Alert/Utilities/getAvailablePredicates.js +1 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +20 -4
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +21 -24
- package/src/View/Alert/Wizard/AlertMessageWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +1 -1
- package/src/View/Alert/Wizard/AlertWizard.js +1 -1
- package/src/View/Alert/Wizard/isValidAlertRules.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +3 -9
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +9 -18
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +2 -2
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +5 -1
- package/src/View/CellSummary/CellSummaryViewPanel.js +5 -5
- package/src/View/ColumnInfo/ColumnInfo.js +7 -8
- package/src/View/Components/AdaptableDateInput/index.d.ts +2 -2
- package/src/View/Components/AdaptableInput/index.d.ts +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +2 -2
- package/src/View/Components/Buttons/ButtonBase/index.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonOpen.d.ts +5 -0
- package/src/View/Components/Buttons/ButtonOpen.js +7 -0
- package/src/View/Components/Buttons/ButtonUnsuspend.d.ts +8 -0
- package/src/View/Components/Buttons/ButtonUnsuspend.js +17 -0
- package/src/View/Components/CellPopup/index.d.ts +1 -1
- package/src/View/Components/ColumnSelector/index.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.d.ts +2 -2
- package/src/View/Components/EntityRulesEditor/index.js +11 -3
- package/src/View/Components/ExternalRenderer.d.ts +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +24 -24
- package/src/View/Components/FilterForm/QuickFilterForm.js +3 -3
- package/src/View/Components/FilterForm/QuickFilterValues.d.ts +2 -2
- package/src/View/Components/FilterForm/QuickFilterValues.js +2 -2
- package/src/View/Components/FilterForm/Waiting.d.ts +1 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +1 -1
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +2 -2
- package/src/View/Components/PredicateEditor/PredicateEditor.js +10 -10
- package/src/View/Components/RangesComponent.js +11 -8
- package/src/View/Components/Selectors/ColumnSelector.d.ts +12 -17
- package/src/View/Components/Selectors/ColumnSelector.js +23 -42
- package/src/View/Components/Selectors/ColumnSelectorOld.d.ts +18 -0
- package/src/View/Components/Selectors/ColumnSelectorOld.js +46 -0
- package/src/View/Components/Selectors/ColumnValueSelector.d.ts +4 -23
- package/src/View/Components/Selectors/ColumnValueSelector.js +34 -126
- package/src/View/Components/Selectors/PermittedValuesSelector.d.ts +13 -0
- package/src/View/Components/Selectors/PermittedValuesSelector.js +46 -0
- package/src/View/Components/StyleComponent.d.ts +2 -3
- package/src/View/Components/StyleComponent.js +37 -40
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +2 -2
- package/src/View/Components/ToolPanel/ToolPanelWrapper.d.ts +1 -1
- package/src/View/Components/ValueSelector/index.d.ts +2 -2
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +1 -1
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.d.ts +1 -1
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +1 -1
- package/src/View/Dashboard/DashboardPopup.js +4 -4
- package/src/View/Dashboard/DashboardToolbarFactory.js +0 -1
- package/src/View/Dashboard/PinnedDashboard.js +6 -3
- package/src/View/Dashboard/PinnedToolbarsSelector.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +3 -1
- package/src/View/DataImport/DataImportPopup.js +1 -1
- package/src/View/DataImport/DataImportWizard/DataImportWizard.d.ts +1 -1
- package/src/View/DataImport/DataImportWizard/sections/UploadSection/UploadSection.d.ts +1 -1
- package/src/View/DataSet/DataSetViewPanel.js +3 -2
- package/src/View/Export/ExportViewPanel.js +12 -9
- package/src/View/Export/Wizard/ReportColumnsWizardSection.d.ts +1 -1
- package/src/View/Export/Wizard/ReportNameWizardSection.d.ts +1 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.d.ts +1 -1
- package/src/View/Filter/FilterViewPanel.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.d.ts +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.d.ts +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.d.ts +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +8 -8
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +10 -9
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +3 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +1 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +7 -17
- package/src/View/GridFilter/GridFilterExpressionEditor.js +62 -9
- package/src/View/GridFilter/GridFilterPopup.js +36 -6
- package/src/View/GridFilter/GridFilterStatusbar.js +0 -1
- package/src/View/GridFilter/GridFilterViewPanel.d.ts +2 -26
- package/src/View/GridFilter/GridFilterViewPanel.js +49 -150
- package/src/View/GridFilter/NamedQuerySelector.d.ts +16 -0
- package/src/View/GridFilter/NamedQuerySelector.js +50 -0
- package/src/View/GridFilter/useGridFilterExpressionEditor.d.ts +24 -0
- package/src/View/GridFilter/useGridFilterExpressionEditor.js +123 -0
- package/src/View/GridFilter/useGridFilterOptionsForExpressionEditor.d.ts +4 -0
- package/src/View/GridFilter/useGridFilterOptionsForExpressionEditor.js +27 -0
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +5 -3
- package/src/View/Layout/LayoutViewPanel.js +4 -3
- package/src/View/Layout/SaveLayoutButton.js +2 -1
- package/src/View/Layout/Wizard/LayoutWizard.js +10 -0
- package/src/View/Layout/Wizard/sections/FilterSection.js +15 -17
- package/src/View/Layout/Wizard/sections/GridFilterSection.d.ts +9 -0
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +37 -0
- package/src/View/License/LicenseWatermark.js +61 -1
- package/src/View/NamedQuery/EditCurrentQueryButton.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQuerySettingsWizardSection.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQueryWizard.js +2 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +1 -1
- package/src/View/QuickSearch/useQuickSearchDebounced.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +5 -2
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +6 -5
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +6 -7
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +4 -3
- package/src/View/SmartEdit/SmartEditViewPanel.js +7 -5
- package/src/View/SpecialColumnSettingsWizardStep.js +4 -1
- package/src/View/StateManagement/StateManagementPopup.js +6 -6
- package/src/View/StatusBar/StatusBarPopup.js +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +16 -8
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +20 -23
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +2 -3
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +7 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +4 -4
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +0 -8
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +2 -9
- package/src/View/SystemStatus/SystemStatusViewPanel.js +1 -1
- package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +1 -1
- package/src/View/Theme/ThemeEditor.d.ts +1 -1
- package/src/View/Theme/ThemeViewPanel.js +4 -3
- package/src/View/UIHelper.d.ts +1 -1
- package/src/View/Wizard/ObjectTagsWizardSection.d.ts +1 -1
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +1 -1
- package/src/View/Wizard/OnePageWizards.d.ts +2 -2
- package/src/agGrid/Adaptable.d.ts +20 -17
- package/src/agGrid/Adaptable.js +192 -189
- package/src/agGrid/AdaptableLogger.js +14 -14
- package/src/agGrid/CheckboxRenderer.d.ts +5 -0
- package/src/agGrid/CheckboxRenderer.js +5 -1
- package/src/agGrid/ColumnSetupInfo.d.ts +1 -1
- package/src/agGrid/agGridHelper.d.ts +0 -1
- package/src/agGrid/agGridHelper.js +15 -13
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.d.ts +2 -2
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.d.ts +2 -2
- package/src/components/CheckBox/index.d.ts +1 -1
- package/src/components/ColorPicker/ColorPicker.d.ts +2 -2
- package/src/components/ContainerProps.d.ts +2 -2
- package/src/components/Dashboard/Dashboard.d.ts +2 -2
- package/src/components/Dashboard/DashboardTab.d.ts +1 -1
- package/src/components/Dashboard/DashboardToolbar.d.ts +1 -1
- package/src/components/Datepicker/index.d.ts +2 -2
- package/src/components/Dialog/index.d.ts +2 -2
- package/src/components/Dropdown/index.d.ts +2 -2
- package/src/components/DropdownButton/DropdownButtonItem.d.ts +1 -1
- package/src/components/DropdownButton/index.d.ts +1 -1
- package/src/components/DropdownButton/renderItem.d.ts +1 -1
- package/src/components/DropdownButton/useExpanded.d.ts +1 -1
- package/src/components/EllipsisContainer/index.d.ts +1 -1
- package/src/components/EmptyContent/index.d.ts +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +1 -1
- package/src/components/ExpressionEditor/NamedQueryContext.d.ts +1 -1
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +45 -15
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +7 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +48 -33
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.d.ts +1 -1
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +6 -6
- package/src/components/ExpressionEditor/QueryBuilder/booleanExpressions.js +2 -0
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +2 -1
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +30 -0
- package/src/components/ExpressionEditor/index.d.ts +2 -1
- package/src/components/ExpressionEditor/index.js +81 -59
- package/src/components/FormLayout/index.d.ts +4 -4
- package/src/components/Input/NumberInput.d.ts +1 -1
- package/src/components/Input/index.d.ts +2 -2
- package/src/components/List/ListGroupItem/index.d.ts +2 -2
- package/src/components/Modal/Backdrop.d.ts +2 -2
- package/src/components/OverlayTrigger/index.d.ts +1 -1
- package/src/components/Panel/index.d.ts +1 -1
- package/src/components/Radio/index.d.ts +1 -1
- package/src/components/ResizeObserver/index.d.ts +1 -1
- package/src/components/Select/Select.d.ts +30 -0
- package/src/components/Select/Select.js +128 -0
- package/src/components/Select/index.d.ts +1 -0
- package/src/components/Select/index.js +1 -0
- package/src/components/SelectableList/index.d.ts +1 -1
- package/src/components/Tabs/index.d.ts +3 -3
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/Toggle/Toggle.d.ts +1 -1
- package/src/components/WarningBox/index.d.ts +4 -0
- package/src/components/WarningBox/index.js +7 -0
- package/src/components/WindowModal/WindowModal.d.ts +2 -2
- package/src/components/icons/DefaultIcon.d.ts +1 -1
- package/src/components/icons/index.js +2 -0
- package/src/components/icons/resume.d.ts +3 -0
- package/src/components/icons/resume.js +4 -0
- package/src/components/utils/useContainerScrollObserver/index.d.ts +1 -1
- package/src/components/utils/uuid.d.ts +1 -1
- package/src/metamodel/adaptable-metamodel-model.d.ts +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +330 -27
- package/src/metamodel/adaptable.metamodel.js +9435 -1
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +3 -0
- package/src/parser/src/predicate/types.d.ts +2 -2
- package/src/parser/src/types.d.ts +23 -11
- package/src/renderReactRoot.d.ts +2 -4
- package/src/renderReactRoot.js +5 -46
- package/src/types.d.ts +6 -6
- package/themes/dark.css +1 -1
- package/themes/dark.css.map +1 -1
- package/themes/light.css +1 -1
- package/themes/light.css.map +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -0
- package/publishTimestamp.d.ts +0 -2
- package/publishTimestamp.js +0 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +0 -216
- package/src/AdaptableOptions/FinancePluginOptions.d.ts +0 -6
- package/src/AdaptableOptions/FinancePluginOptions.js +0 -1
- package/src/Api/Events/ChexboxColumnClicked.d.ts +0 -24
- package/src/Api/Events/ChexboxColumnClicked.js +0 -1
- package/src/Api/Events/QueryRun.d.ts +0 -15
- package/src/Api/Events/QueryRun.js +0 -1
- package/src/PredefinedConfig/ConditionalStyleState.d.ts +0 -41
- package/src/PredefinedConfig/ConditionalStyleState.js +0 -1
- package/version.d.ts +0 -2
- package/version.js +0 -1
- /package/src/AdaptableOptions/{FilterOptions.js → GridFilterOptions.js} +0 -0
|
@@ -5,7 +5,6 @@ import FormLayout, { FormRow } from '../../components/FormLayout';
|
|
|
5
5
|
import { DataSource, InfiniteTable } from '../../components/InfiniteTable';
|
|
6
6
|
import Panel from '../../components/Panel';
|
|
7
7
|
import { Tabs } from '../../components/Tabs';
|
|
8
|
-
import { SelectionMode } from '../../PredefinedConfig/Common/Enums';
|
|
9
8
|
import { useAdaptable } from '../AdaptableContext';
|
|
10
9
|
import { AdaptableObjectList } from '../Components/AdaptableObjectList';
|
|
11
10
|
import { ButtonNew } from '../Components/Buttons/ButtonNew';
|
|
@@ -46,10 +45,6 @@ const ColumnDefPreview = (props) => {
|
|
|
46
45
|
Key: 'Header',
|
|
47
46
|
Value: props.column ? props.column.friendlyName : null,
|
|
48
47
|
},
|
|
49
|
-
{
|
|
50
|
-
Key: 'Aggregatable',
|
|
51
|
-
Value: props.column ? props.column.aggregatable : null,
|
|
52
|
-
},
|
|
53
48
|
{
|
|
54
49
|
Key: 'DataType',
|
|
55
50
|
Value: props.column ? props.column.dataType : null,
|
|
@@ -58,6 +53,10 @@ const ColumnDefPreview = (props) => {
|
|
|
58
53
|
Key: 'Groupable',
|
|
59
54
|
Value: props.column ? props.column.groupable : null,
|
|
60
55
|
},
|
|
56
|
+
{
|
|
57
|
+
Key: 'Aggregatable',
|
|
58
|
+
Value: props.column ? props.column.aggregatable : null,
|
|
59
|
+
},
|
|
61
60
|
{
|
|
62
61
|
Key: 'Filterable',
|
|
63
62
|
Value: props.column ? props.column.filterable : null,
|
|
@@ -118,7 +117,7 @@ const ModuleView = (props) => {
|
|
|
118
117
|
var _a, _b, _c, _d;
|
|
119
118
|
const adaptable = useAdaptable();
|
|
120
119
|
const module = adaptable.ModuleService.getModuleById(props.moduleName);
|
|
121
|
-
if (!module.isModuleAvailable()) {
|
|
120
|
+
if (!module || !module.isModuleAvailable()) {
|
|
122
121
|
return null;
|
|
123
122
|
}
|
|
124
123
|
const moduleInfo = module.moduleInfo;
|
|
@@ -168,10 +167,10 @@ export const ColumnInfo = (props) => {
|
|
|
168
167
|
React.createElement(Box, { mb: 3 },
|
|
169
168
|
React.createElement(FormLayout, null,
|
|
170
169
|
React.createElement(FormRow, { label: "Select Column" },
|
|
171
|
-
React.createElement(ColumnSelector, {
|
|
170
|
+
React.createElement(ColumnSelector, { value: selectedColumnId, onChange: (columnId) => setSelectedColumnId(columnId) })))),
|
|
172
171
|
selectedColumnId && (React.createElement(Tabs, { mb: 3 },
|
|
173
172
|
React.createElement(Tabs.Tab, null, "Config"),
|
|
174
|
-
React.createElement(Tabs.Tab, null, "
|
|
173
|
+
React.createElement(Tabs.Tab, null, "Column Summary"),
|
|
175
174
|
React.createElement(Tabs.Content, null, selectedColumnId && (React.createElement(Box, { className: BASE_CLASS_NAME }, MODULES_WITH_COLUMN.map((moduleName) => {
|
|
176
175
|
return (React.createElement(ModuleView, { key: moduleName, moduleName: moduleName, selectedColumnId: selectedColumnId }));
|
|
177
176
|
})))),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { AdaptableInputProps } from '../AdaptableInput';
|
|
3
|
-
export
|
|
4
|
-
declare const AdaptableDateInput: React.ForwardRefExoticComponent<Pick<import("../../../components/Input").InputProps, "
|
|
3
|
+
export type AdaptableDateInputProps = AdaptableInputProps;
|
|
4
|
+
declare const AdaptableDateInput: React.ForwardRefExoticComponent<Pick<import("../../../components/Input").InputProps, "children" | "size" | "name" | "tabIndex" | "color" | "style" | "cite" | "data" | "form" | "label" | "p" | "slot" | "span" | "summary" | "title" | "pattern" | "start" | "hidden" | "content" | "default" | "flex" | "wrap" | "open" | "padding" | "multiple" | "disabled" | "checked" | "download" | "list" | "order" | "target" | "src" | "className" | "onTransitionEnd" | "defaultChecked" | "defaultValue" | "suppressContentEditableWarning" | "suppressHydrationWarning" | "accessKey" | "contentEditable" | "contextMenu" | "dir" | "draggable" | "id" | "lang" | "placeholder" | "spellCheck" | "translate" | "radioGroup" | "role" | "about" | "datatype" | "inlist" | "prefix" | "property" | "resource" | "typeof" | "vocab" | "autoCapitalize" | "autoCorrect" | "autoSave" | "itemProp" | "itemScope" | "itemType" | "itemID" | "itemRef" | "results" | "security" | "unselectable" | "inputMode" | "is" | "aria-activedescendant" | "aria-atomic" | "aria-autocomplete" | "aria-busy" | "aria-checked" | "aria-colcount" | "aria-colindex" | "aria-colspan" | "aria-controls" | "aria-current" | "aria-describedby" | "aria-details" | "aria-disabled" | "aria-dropeffect" | "aria-errormessage" | "aria-expanded" | "aria-flowto" | "aria-grabbed" | "aria-haspopup" | "aria-hidden" | "aria-invalid" | "aria-keyshortcuts" | "aria-label" | "aria-labelledby" | "aria-level" | "aria-live" | "aria-modal" | "aria-multiline" | "aria-multiselectable" | "aria-orientation" | "aria-owns" | "aria-placeholder" | "aria-posinset" | "aria-pressed" | "aria-readonly" | "aria-relevant" | "aria-required" | "aria-roledescription" | "aria-rowcount" | "aria-rowindex" | "aria-rowspan" | "aria-selected" | "aria-setsize" | "aria-sort" | "aria-valuemax" | "aria-valuemin" | "aria-valuenow" | "aria-valuetext" | "dangerouslySetInnerHTML" | "onCopy" | "onCopyCapture" | "onCut" | "onCutCapture" | "onPaste" | "onPasteCapture" | "onCompositionEnd" | "onCompositionEndCapture" | "onCompositionStart" | "onCompositionStartCapture" | "onCompositionUpdate" | "onCompositionUpdateCapture" | "onFocus" | "onFocusCapture" | "onBlur" | "onBlurCapture" | "onChange" | "onChangeCapture" | "onBeforeInput" | "onBeforeInputCapture" | "onInput" | "onInputCapture" | "onReset" | "onResetCapture" | "onSubmit" | "onSubmitCapture" | "onInvalid" | "onInvalidCapture" | "onLoad" | "onLoadCapture" | "onError" | "onErrorCapture" | "onKeyDown" | "onKeyDownCapture" | "onKeyPress" | "onKeyPressCapture" | "onKeyUp" | "onKeyUpCapture" | "onAbort" | "onAbortCapture" | "onCanPlay" | "onCanPlayCapture" | "onCanPlayThrough" | "onCanPlayThroughCapture" | "onDurationChange" | "onDurationChangeCapture" | "onEmptied" | "onEmptiedCapture" | "onEncrypted" | "onEncryptedCapture" | "onEnded" | "onEndedCapture" | "onLoadedData" | "onLoadedDataCapture" | "onLoadedMetadata" | "onLoadedMetadataCapture" | "onLoadStart" | "onLoadStartCapture" | "onPause" | "onPauseCapture" | "onPlay" | "onPlayCapture" | "onPlaying" | "onPlayingCapture" | "onProgress" | "onProgressCapture" | "onRateChange" | "onRateChangeCapture" | "onSeeked" | "onSeekedCapture" | "onSeeking" | "onSeekingCapture" | "onStalled" | "onStalledCapture" | "onSuspend" | "onSuspendCapture" | "onTimeUpdate" | "onTimeUpdateCapture" | "onVolumeChange" | "onVolumeChangeCapture" | "onWaiting" | "onWaitingCapture" | "onAuxClick" | "onAuxClickCapture" | "onClick" | "onClickCapture" | "onContextMenu" | "onContextMenuCapture" | "onDoubleClick" | "onDoubleClickCapture" | "onDrag" | "onDragCapture" | "onDragEnd" | "onDragEndCapture" | "onDragEnter" | "onDragEnterCapture" | "onDragExit" | "onDragExitCapture" | "onDragLeave" | "onDragLeaveCapture" | "onDragOver" | "onDragOverCapture" | "onDragStart" | "onDragStartCapture" | "onDrop" | "onDropCapture" | "onMouseDown" | "onMouseDownCapture" | "onMouseEnter" | "onMouseLeave" | "onMouseMove" | "onMouseMoveCapture" | "onMouseOut" | "onMouseOutCapture" | "onMouseOver" | "onMouseOverCapture" | "onMouseUp" | "onMouseUpCapture" | "onSelect" | "onSelectCapture" | "onTouchCancel" | "onTouchCancelCapture" | "onTouchEnd" | "onTouchEndCapture" | "onTouchMove" | "onTouchMoveCapture" | "onTouchStart" | "onTouchStartCapture" | "onPointerDown" | "onPointerDownCapture" | "onPointerMove" | "onPointerMoveCapture" | "onPointerUp" | "onPointerUpCapture" | "onPointerCancel" | "onPointerCancelCapture" | "onPointerEnter" | "onPointerEnterCapture" | "onPointerLeave" | "onPointerLeaveCapture" | "onPointerOver" | "onPointerOverCapture" | "onPointerOut" | "onPointerOutCapture" | "onGotPointerCapture" | "onGotPointerCaptureCapture" | "onLostPointerCapture" | "onLostPointerCaptureCapture" | "onScroll" | "onScrollCapture" | "onWheel" | "onWheelCapture" | "onAnimationStart" | "onAnimationStartCapture" | "onAnimationEnd" | "onAnimationEndCapture" | "onAnimationIteration" | "onAnimationIterationCapture" | "onTransitionEndCapture" | "opacity" | "value" | "key" | "sizes" | "variant" | "tx" | "as" | "css" | "m" | "margin" | "mt" | "marginTop" | "mr" | "marginRight" | "mb" | "marginBottom" | "ml" | "marginLeft" | "mx" | "marginX" | "my" | "marginY" | "pt" | "paddingTop" | "pr" | "paddingRight" | "pb" | "paddingBottom" | "pl" | "paddingLeft" | "px" | "paddingX" | "py" | "paddingY" | "width" | "height" | "minWidth" | "minHeight" | "maxWidth" | "maxHeight" | "display" | "verticalAlign" | "overflow" | "overflowX" | "overflowY" | "fontFamily" | "fontSize" | "fontWeight" | "lineHeight" | "letterSpacing" | "fontStyle" | "textAlign" | "bg" | "backgroundColor" | "alignItems" | "alignContent" | "justifyItems" | "justifyContent" | "flexWrap" | "flexDirection" | "flexGrow" | "flexShrink" | "flexBasis" | "justifySelf" | "alignSelf" | "sx" | "accept" | "acceptCharset" | "action" | "allowFullScreen" | "allowTransparency" | "alt" | "async" | "autoComplete" | "autoFocus" | "autoPlay" | "capture" | "cellPadding" | "cellSpacing" | "charSet" | "challenge" | "classID" | "cols" | "colSpan" | "controls" | "coords" | "crossOrigin" | "dateTime" | "defer" | "encType" | "formAction" | "formEncType" | "formMethod" | "formNoValidate" | "formTarget" | "frameBorder" | "headers" | "high" | "href" | "hrefLang" | "htmlFor" | "httpEquiv" | "integrity" | "keyParams" | "keyType" | "kind" | "loop" | "low" | "manifest" | "marginHeight" | "marginWidth" | "max" | "maxLength" | "media" | "mediaGroup" | "method" | "min" | "minLength" | "muted" | "nonce" | "noValidate" | "optimum" | "playsInline" | "poster" | "preload" | "readOnly" | "rel" | "required" | "reversed" | "rows" | "rowSpan" | "sandbox" | "scope" | "scoped" | "scrolling" | "seamless" | "selected" | "shape" | "srcDoc" | "srcLang" | "srcSet" | "step" | "type" | "useMap" | "wmode" | "placehoder"> & React.RefAttributes<HTMLInputElement>>;
|
|
5
5
|
export default AdaptableDateInput;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
import { InputProps } from '../../../components/Input';
|
|
3
|
-
export
|
|
3
|
+
export type AdaptableInputProps = InputProps;
|
|
4
4
|
declare const AdaptableInput: (props: AdaptableInputProps) => JSX.Element;
|
|
5
5
|
export default AdaptableInput;
|
|
@@ -49,7 +49,7 @@ export const AdaptableObjectCompactListItem = (props) => {
|
|
|
49
49
|
: objectView.item.view,
|
|
50
50
|
Boolean(((_f = objectView.item) === null || _f === void 0 ? void 0 : _f.values) && ((_h = (_g = objectView.item) === null || _g === void 0 ? void 0 : _g.values) === null || _h === void 0 ? void 0 : _h.length)) && (React.createElement(Box, { mb: 2, className: `${baseClassName}__Item__Values` },
|
|
51
51
|
React.createElement(ValueOptionsTags, { style: { marginRight: 0 }, readOnly: true, options: objectView.item.values, value: objectView.item.values, allowWrap: true, toIdentifier: (c) => c, toLabel: (c) => React.createElement(React.Fragment, null, c) })))),
|
|
52
|
-
suspendAction && unSuspendAction && (React.createElement(SimpleButton, { onMouseDown: handleSuspendUnSuspend, tone: isSuspended ? 'neutral' : 'success', variant: "text", icon: isSuspended ? '
|
|
52
|
+
suspendAction && unSuspendAction && (React.createElement(SimpleButton, { onMouseDown: handleSuspendUnSuspend, tone: isSuspended ? 'neutral' : 'success', variant: "text", icon: isSuspended ? 'resume' : 'pause' })),
|
|
53
53
|
React.createElement(Flex, { ml: 1, flex: '0 0 auto' }, deleteAction && (React.createElement(SimpleButton, { iconSize: ICON_SIZE, icon: "delete", variant: "text", onMouseDown: handleDelete, accessLevel: moduleAccessLevel })))));
|
|
54
54
|
};
|
|
55
55
|
export const AdaptableObjectCompactList = (props) => {
|
|
@@ -80,7 +80,7 @@ export const AdaptableObjectCompactList = (props) => {
|
|
|
80
80
|
React.createElement(Flex, { className: `${baseClassName}__Header`, fontSize: 3 },
|
|
81
81
|
React.createElement(Flex, { className: `${baseClassName}__Title`, alignItems: 'center' }, props.module.moduleInfo.FriendlyName),
|
|
82
82
|
React.createElement(Box, { flex: 1 }),
|
|
83
|
-
suspendAllAction && unSuspendAllAction && (React.createElement(SimpleButton, { mr: 2, onMouseDown: handleSuspendUnsuspendAll, tone: isAtLeastOneAbObjectActive ? 'neutral' : 'success', variant: "raised", icon: isAtLeastOneAbObjectActive ? 'pause' : '
|
|
83
|
+
suspendAllAction && unSuspendAllAction && (React.createElement(SimpleButton, { mr: 2, onMouseDown: handleSuspendUnsuspendAll, tone: isAtLeastOneAbObjectActive ? 'neutral' : 'success', variant: "raised", icon: isAtLeastOneAbObjectActive ? 'pause' : 'resume', accessLevel: accessLevel }, isAtLeastOneAbObjectActive ? 'Suspend All' : 'Unsuspend All')),
|
|
84
84
|
deleteAllAction && (React.createElement(SimpleButton, { onMouseDown: () => dispatch(deleteAllAction), variant: "raised", tone: "neutral", accessLevel: accessLevel }, "Clear All"))),
|
|
85
85
|
React.createElement(Box, { className: `${baseClassName}__Body` }, props.abObjects.map((abObject) => {
|
|
86
86
|
return (React.createElement(AdaptableObjectCompactListItem, { key: abObject.Uuid, abObject: abObject, module: props.module }));
|
|
@@ -16,7 +16,7 @@ export interface ButtonBaseProps extends BtnProps {
|
|
|
16
16
|
iconPosition?: string;
|
|
17
17
|
hideToolTip?: boolean;
|
|
18
18
|
}
|
|
19
|
-
export
|
|
19
|
+
export type ButtonProps = ButtonBaseProps;
|
|
20
20
|
export declare class ButtonBase extends React.Component<ButtonBaseProps, {}> {
|
|
21
21
|
static defaultProps: ButtonBaseProps;
|
|
22
22
|
render(): JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SimpleButton from '../../../components/SimpleButton';
|
|
3
|
+
export class ButtonOpen extends React.Component {
|
|
4
|
+
render() {
|
|
5
|
+
return (React.createElement(SimpleButton, Object.assign({ "data-name": "open", iconSize: 20, icon: "folder-open", tooltip: "Open", variant: "text" }, this.props)));
|
|
6
|
+
}
|
|
7
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import { SimpleButtonProps } from '../../../components/SimpleButton';
|
|
3
|
+
export interface PauseButtonProps extends SimpleButtonProps {
|
|
4
|
+
fillColor?: 'neutral' | 'red';
|
|
5
|
+
}
|
|
6
|
+
export declare class ButtonUnsuspend extends React.Component<PauseButtonProps, {}> {
|
|
7
|
+
render(): JSX.Element;
|
|
8
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
import SimpleButton from '../../../components/SimpleButton';
|
|
3
|
+
export class ButtonUnsuspend extends React.Component {
|
|
4
|
+
render() {
|
|
5
|
+
const buttonIcon = this.props.fillColor === 'red'
|
|
6
|
+
? {
|
|
7
|
+
name: 'resume',
|
|
8
|
+
style: {
|
|
9
|
+
fill: 'red',
|
|
10
|
+
},
|
|
11
|
+
}
|
|
12
|
+
: {
|
|
13
|
+
name: 'resume',
|
|
14
|
+
};
|
|
15
|
+
return (React.createElement(SimpleButton, Object.assign({ "data-name": "unsuspend", tooltip: "Pause", iconSize: 20, icon: buttonIcon, variant: "text" }, this.props)));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
@@ -4,7 +4,7 @@ export interface CellPopupProps {
|
|
|
4
4
|
columnId: string;
|
|
5
5
|
primaryKeyValue: number | string;
|
|
6
6
|
}
|
|
7
|
-
export
|
|
7
|
+
export type CellPopupHandle = {
|
|
8
8
|
refreshContent: () => void;
|
|
9
9
|
};
|
|
10
10
|
export declare const CellPopup: React.ForwardRefExoticComponent<CellPopupProps & {
|
|
@@ -3,10 +3,10 @@ import { FlexProps } from 'rebass';
|
|
|
3
3
|
import type { AdaptableColumnPredicate, AdaptableModule, AdaptablePredicateDef, AdaptableScope } from '../../../types';
|
|
4
4
|
import type { XOR } from '../../../Utilities/Extensions/TypeExtensions';
|
|
5
5
|
import { AdaptableQuery } from '../../../PredefinedConfig/Common/AdaptableQuery';
|
|
6
|
-
export
|
|
6
|
+
export type RuleType = XOR<{
|
|
7
7
|
Predicates: AdaptableColumnPredicate[];
|
|
8
8
|
}, AdaptableQuery>;
|
|
9
|
-
export
|
|
9
|
+
export type EntityRulesEditorProps<T> = {
|
|
10
10
|
data: T;
|
|
11
11
|
module: AdaptableModule;
|
|
12
12
|
showNoRule?: boolean;
|
|
@@ -29,9 +29,17 @@ export const EntityRulesSummary = (props) => {
|
|
|
29
29
|
!((_e = data === null || data === void 0 ? void 0 : data.Rule) === null || _e === void 0 ? void 0 : _e.AggregatedBooleanExpression)) {
|
|
30
30
|
return React.createElement(Text, { fontSize: 2 }, "No Rule defined");
|
|
31
31
|
}
|
|
32
|
-
return (React.createElement(
|
|
33
|
-
|
|
34
|
-
|
|
32
|
+
return (React.createElement(
|
|
33
|
+
Text,
|
|
34
|
+
{ fontSize: 2 },
|
|
35
|
+
data.Rule.Predicates ? (React.createElement(React.Fragment, null, (_h = (_g = (_f = data.Rule) === null || _f === void 0 ? void 0 : _f.Predicates) === null || _g === void 0 ? void 0 : _g.map) === null || _h === void 0 ? void 0 : _h.call(_g, (predicate, index) => (
|
|
36
|
+
// predicate id is not unique
|
|
37
|
+
(React.createElement(
|
|
38
|
+
React.Fragment,
|
|
39
|
+
{ key: index },
|
|
40
|
+
props.renderPredicate(predicateApi.predicateToString(predicate))
|
|
41
|
+
)))))) : (React.createElement(React.Fragment, null, props.renderQueryExpression(internalApi.getAdaptableQueryExpressionText(data.Rule))))
|
|
42
|
+
));
|
|
35
43
|
};
|
|
36
44
|
const RuleTabTitle = (props) => {
|
|
37
45
|
return props.showRadio ? (React.createElement(Radio, { tabIndex: -1, margin: 0, checked: props.checked }, props.children)) : (React.createElement(React.Fragment, null, "props.children"));
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { CustomRenderContext } from '../../../types';
|
|
3
3
|
import { AdaptableFrameworkComponent } from '../../types';
|
|
4
|
-
|
|
4
|
+
type Render = (customRenderContext: CustomRenderContext) => string | null;
|
|
5
5
|
interface ExternalRendererProps {
|
|
6
6
|
componentName?: string;
|
|
7
7
|
render?: Render;
|
|
@@ -25,32 +25,11 @@ const panelStyle = {
|
|
|
25
25
|
minWidth: 150,
|
|
26
26
|
};
|
|
27
27
|
class FilterFormComponent extends React.Component {
|
|
28
|
-
constructor(props) {
|
|
29
|
-
super(props);
|
|
30
|
-
this._isMounted = false;
|
|
31
|
-
this.handleFilterChange = (filter) => {
|
|
32
|
-
if (this.state.suppressClientSideFilter) {
|
|
33
|
-
this.loadPermittedValues(filter);
|
|
34
|
-
}
|
|
35
|
-
};
|
|
36
|
-
this._isMounted = true;
|
|
37
|
-
const existingColumnFilter = FilterFormComponent.createColumnFilterFromProps(this.props);
|
|
38
|
-
this.state = {
|
|
39
|
-
columnFilters: props.columnFilters,
|
|
40
|
-
distinctColumnValues: [],
|
|
41
|
-
isDistinctColumnValuesLoading: false,
|
|
42
|
-
showTab: true,
|
|
43
|
-
selectedTab: ColumnMenuTab.Filter,
|
|
44
|
-
editedColumnFilter: existingColumnFilter,
|
|
45
|
-
currentTab: FilterFormComponent.getCurrentTab(existingColumnFilter),
|
|
46
|
-
suppressClientSideFilter: false,
|
|
47
|
-
};
|
|
48
|
-
}
|
|
49
28
|
static createColumnFilterFromProps(props) {
|
|
50
29
|
let existingColumnFilter = props.columnFilters.find((cf) => cf.ColumnId == props.currentColumn.columnId);
|
|
51
30
|
if (!existingColumnFilter) {
|
|
52
31
|
const columnFilterOptions = props.api.optionsApi.getColumnFilterOptions();
|
|
53
|
-
if (columnFilterOptions.defaultFilterFormTab == 'Values') {
|
|
32
|
+
if (columnFilterOptions.filterFormOptions.defaultFilterFormTab == 'Values') {
|
|
54
33
|
return ObjectFactory.CreateColumnFilter(props.currentColumn.columnId, 'Values', []);
|
|
55
34
|
}
|
|
56
35
|
if (props.currentColumn.dataType === 'Number') {
|
|
@@ -97,6 +76,27 @@ class FilterFormComponent extends React.Component {
|
|
|
97
76
|
: state.currentTab,
|
|
98
77
|
};
|
|
99
78
|
}
|
|
79
|
+
constructor(props) {
|
|
80
|
+
super(props);
|
|
81
|
+
this._isMounted = false;
|
|
82
|
+
this.handleFilterChange = (filter) => {
|
|
83
|
+
if (this.state.suppressClientSideFilter) {
|
|
84
|
+
this.loadPermittedValues(filter);
|
|
85
|
+
}
|
|
86
|
+
};
|
|
87
|
+
this._isMounted = true;
|
|
88
|
+
const existingColumnFilter = FilterFormComponent.createColumnFilterFromProps(this.props);
|
|
89
|
+
this.state = {
|
|
90
|
+
columnFilters: props.columnFilters,
|
|
91
|
+
distinctColumnValues: [],
|
|
92
|
+
isDistinctColumnValuesLoading: false,
|
|
93
|
+
showTab: true,
|
|
94
|
+
selectedTab: ColumnMenuTab.Filter,
|
|
95
|
+
editedColumnFilter: existingColumnFilter,
|
|
96
|
+
currentTab: FilterFormComponent.getCurrentTab(existingColumnFilter),
|
|
97
|
+
suppressClientSideFilter: false,
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
100
|
componentWillUnmount() {
|
|
101
101
|
this._isMounted = false;
|
|
102
102
|
}
|
|
@@ -106,7 +106,7 @@ class FilterFormComponent extends React.Component {
|
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
async loadPermittedValues(filter = '') {
|
|
109
|
-
const { values: distinctColumnValues, suppressClientSideFilter } = await runIfNotResolvedIn(this.props.api.gridApi.internalApi.getDistinctFilterDisplayValuesForColumn(this.props.currentColumn.columnId, filter, this.props.api.optionsApi.getColumnFilterOptions().showDistinctFilteredValuesOnly), () => this._isMounted && this.setState({ isDistinctColumnValuesLoading: true }));
|
|
109
|
+
const { values: distinctColumnValues, suppressClientSideFilter } = await runIfNotResolvedIn(this.props.api.gridApi.internalApi.getDistinctFilterDisplayValuesForColumn(this.props.currentColumn.columnId, filter, this.props.api.optionsApi.getColumnFilterOptions().valuesFilterOptions.showDistinctFilteredValuesOnly), () => this._isMounted && this.setState({ isDistinctColumnValuesLoading: true }));
|
|
110
110
|
if (this._isMounted) {
|
|
111
111
|
this.setState({
|
|
112
112
|
distinctColumnValues,
|
|
@@ -130,7 +130,7 @@ class FilterFormComponent extends React.Component {
|
|
|
130
130
|
Helper.objectNotExists(this.state.editedColumnFilter.Predicate.PredicateId);
|
|
131
131
|
let closeButton = (React.createElement(ButtonClose, { onClick: () => this.onCloseForm(), tooltip: null, accessLevel: 'Full' }));
|
|
132
132
|
let clearFilterButton = (React.createElement(ButtonClear, { onClick: () => this.onClearFilter(), disabled: isEmptyFilter, tooltip: null, accessLevel: 'Full', showText: true, showIcon: false }));
|
|
133
|
-
const useAgGridStyle = !!columnFilterOptions.useAgGridFilterFormStyle;
|
|
133
|
+
const useAgGridStyle = !!columnFilterOptions.filterFormOptions.useAgGridFilterFormStyle;
|
|
134
134
|
return (React.createElement("div", { className: "ab-FilterForm", "data-name": "filter-form" }, StringExtensions.IsNullOrEmpty(isFilterable) ? (React.createElement(FilterFormPanel, { style: panelStyle, ColumnMenuTab: this.state.selectedTab, ColumnMenuTabChanged: (e) => this.onSelectTab(e), IsAlwaysFilter: this.props.embedColumnMenu, clearFilterButton: clearFilterButton, closeButton: closeButton, showCloseButton: this.props.showCloseButton, autoApplyFilter: columnFilterOptions.autoApplyFilter ? true : false, useAgGridStyle: useAgGridStyle, applyFilterButtonDisabled: isEmptyFilter, onColumnFilterApplied: () => this.onColumnFilterApplied() }, this.state.selectedTab == ColumnMenuTab.Menu ? (React.createElement(ListBoxMenu, { MenuItems: this.props.api.gridApi.internalApi.buildStandaloneColumnHeader(this.props.currentColumn), onMenuItemClick: (menuItem) => this.onMenuItemClick(menuItem) })) : (React.createElement(React.Fragment, null,
|
|
135
135
|
this.state.showTab && (React.createElement(React.Fragment, null,
|
|
136
136
|
React.createElement(Radio, { "data-name": "values", flex: 1, marginLeft: 1, checked: this.state.currentTab == 'values', onChange: () => this.setState({ currentTab: 'values' }) },
|
|
@@ -53,7 +53,7 @@ class QuickFilterFormComponent extends React.Component {
|
|
|
53
53
|
hideEvent = 'blur';
|
|
54
54
|
}
|
|
55
55
|
let showQuickFilterDropdown = true;
|
|
56
|
-
let hideQuickFilterDropdownFunction = this.props.api.optionsApi.getColumnFilterOptions().hideQuickFilterDropdown;
|
|
56
|
+
let hideQuickFilterDropdownFunction = this.props.api.optionsApi.getColumnFilterOptions().quickFilterOptions.hideQuickFilterDropdown;
|
|
57
57
|
if (hideQuickFilterDropdownFunction) {
|
|
58
58
|
const columnFilterContext = {
|
|
59
59
|
column: this.props.currentColumn,
|
|
@@ -64,7 +64,7 @@ class QuickFilterFormComponent extends React.Component {
|
|
|
64
64
|
showQuickFilterDropdown = !hideQuickFilterDropdownFunction(columnFilterContext);
|
|
65
65
|
}
|
|
66
66
|
let showQuickFilterInput = true;
|
|
67
|
-
let hideQuickFilterInputFunction = this.props.api.optionsApi.getColumnFilterOptions().hideQuickFilterInput;
|
|
67
|
+
let hideQuickFilterInputFunction = this.props.api.optionsApi.getColumnFilterOptions().quickFilterOptions.hideQuickFilterInput;
|
|
68
68
|
if (hideQuickFilterInputFunction) {
|
|
69
69
|
const columnFilterContext = {
|
|
70
70
|
column: this.props.currentColumn,
|
|
@@ -248,5 +248,5 @@ function mapDispatchToProps(dispatch) {
|
|
|
248
248
|
const QuickFilterForm = connect(mapStateToProps, mapDispatchToProps)(QuickFilterFormComponent);
|
|
249
249
|
export const QuickFilterFormReact = (columnFilterProps) => {
|
|
250
250
|
var _a, _b, _c;
|
|
251
|
-
return renderWithAdaptableContext(React.createElement(QuickFilterForm, { api: columnFilterProps.Adaptable.api, quickFilterTrigger: (_a = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _a === void 0 ? void 0 : _a.quickFilterTrigger, quickFilterValuesTrigger: (_b = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _b === void 0 ? void 0 : _b.quickFilterValuesTrigger, quickFilterDebounce: (_c = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _c === void 0 ? void 0 : _c.quickFilterDebounce, currentColumn: columnFilterProps.Column, teamSharingActivated: false, embedColumnMenu: columnFilterProps.Adaptable.embedColumnMenu }), columnFilterProps.Adaptable);
|
|
251
|
+
return renderWithAdaptableContext(React.createElement(QuickFilterForm, { api: columnFilterProps.Adaptable.api, quickFilterTrigger: (_a = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _a === void 0 ? void 0 : _a.quickFilterOptions.quickFilterTrigger, quickFilterValuesTrigger: (_b = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _b === void 0 ? void 0 : _b.quickFilterOptions.quickFilterValuesTrigger, quickFilterDebounce: (_c = columnFilterProps.Adaptable.adaptableOptions.columnFilterOptions) === null || _c === void 0 ? void 0 : _c.quickFilterOptions.quickFilterDebounce, currentColumn: columnFilterProps.Column, teamSharingActivated: false, embedColumnMenu: columnFilterProps.Adaptable.embedColumnMenu }), columnFilterProps.Adaptable);
|
|
252
252
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { ColumnFilter } from '../../../PredefinedConfig/Common/ColumnFilter';
|
|
3
3
|
import { AdaptableApi } from '../../../Api/AdaptableApi';
|
|
4
4
|
import { AdaptableColumn } from '../../../PredefinedConfig/Common/AdaptableColumn';
|
|
5
|
-
import {
|
|
5
|
+
import { QuickFilterOptions } from '../../../types';
|
|
6
6
|
export interface QuickFilterValuesProps {
|
|
7
7
|
api: AdaptableApi;
|
|
8
8
|
currentColumn: AdaptableColumn;
|
|
@@ -14,6 +14,6 @@ export interface QuickFilterValuesProps {
|
|
|
14
14
|
show: () => any;
|
|
15
15
|
hide: () => any;
|
|
16
16
|
}) => void;
|
|
17
|
-
quickFilterValuesTrigger?:
|
|
17
|
+
quickFilterValuesTrigger?: QuickFilterOptions['quickFilterValuesTrigger'];
|
|
18
18
|
}
|
|
19
19
|
export declare const QuickFilterValues: (props: QuickFilterValuesProps) => JSX.Element;
|
|
@@ -47,7 +47,7 @@ export const QuickFilterValues = (props) => {
|
|
|
47
47
|
let ignore = false;
|
|
48
48
|
setIsDistinctColumnValuesLoading(true);
|
|
49
49
|
api.gridApi.internalApi
|
|
50
|
-
.getDistinctFilterDisplayValuesForColumn(props.columnFilter.ColumnId, textFilterValue, api.optionsApi.getColumnFilterOptions().showDistinctFilteredValuesOnly)
|
|
50
|
+
.getDistinctFilterDisplayValuesForColumn(props.columnFilter.ColumnId, textFilterValue, api.optionsApi.getColumnFilterOptions().valuesFilterOptions.showDistinctFilteredValuesOnly)
|
|
51
51
|
.then((distinctFilterDisplayValues) => {
|
|
52
52
|
if (ignore) {
|
|
53
53
|
return;
|
|
@@ -111,7 +111,7 @@ export const QuickFilterValues = (props) => {
|
|
|
111
111
|
return label !== null && label !== void 0 ? label : input;
|
|
112
112
|
}).join(', ');
|
|
113
113
|
}
|
|
114
|
-
const quickFilterValuesWidth = props.api.optionsApi.getAdaptableOptions().columnFilterOptions.quickFilterValuesWidth;
|
|
114
|
+
const quickFilterValuesWidth = props.api.optionsApi.getAdaptableOptions().columnFilterOptions.quickFilterOptions.quickFilterValuesWidth;
|
|
115
115
|
const getPopoverWidth = (targetWidth) => {
|
|
116
116
|
if (quickFilterValuesWidth === 'auto') {
|
|
117
117
|
return Math.max(180, targetWidth);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { FlexProps } from 'rebass';
|
|
3
|
-
export
|
|
3
|
+
export type WaitingProps = React.ClassAttributes<Waiting> & {
|
|
4
4
|
WaitingMessage: string;
|
|
5
5
|
} & FlexProps;
|
|
6
6
|
export declare class Waiting extends React.Component<WaitingProps, {}> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { InputProps } from '../../../components/Input';
|
|
2
2
|
import { CSSProperties } from 'react';
|
|
3
|
-
export
|
|
3
|
+
export type AdaptableFormControlTextClearProps = {
|
|
4
4
|
OnTextChange: (textValue: string) => void;
|
|
5
5
|
focusOnClear?: boolean;
|
|
6
6
|
autoFocus?: boolean;
|
|
@@ -93,7 +93,7 @@ export const AdaptablePopupModuleView = (props) => {
|
|
|
93
93
|
dispatch(unsuspendAllAction);
|
|
94
94
|
}
|
|
95
95
|
};
|
|
96
|
-
suspendButton = (React.createElement(SimpleButton, { mr: 2, onMouseDown: () => handleSuspendUnsuspendAll(), tone: isAtLeastOneAbObjectActive ? 'neutral' : 'success', variant: "raised", icon: isAtLeastOneAbObjectActive ? 'pause' : '
|
|
96
|
+
suspendButton = (React.createElement(SimpleButton, { mr: 2, onMouseDown: () => handleSuspendUnsuspendAll(), tone: isAtLeastOneAbObjectActive ? 'neutral' : 'success', variant: "raised", icon: isAtLeastOneAbObjectActive ? 'pause' : 'resume', accessLevel: props.accessLevel }, isAtLeastOneAbObjectActive ? 'Suspend All' : 'Unsuspend All'));
|
|
97
97
|
}
|
|
98
98
|
const handleWizardClose = () => {
|
|
99
99
|
var _a;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { useSelector } from 'react-redux';
|
|
3
|
-
import { STANDALONE_MODULE_POPUPS,
|
|
3
|
+
import { STANDALONE_MODULE_POPUPS, DEFAULT_SETTINGS_PANEL_NAVIGATION_ITEMS, } from '../../../../Utilities/Defaults/DefaultSettingsPanel';
|
|
4
4
|
import { useAdaptable } from '../../../AdaptableContext';
|
|
5
5
|
import * as PopupRedux from '../../../../Redux/ActionsReducers/PopupRedux';
|
|
6
6
|
export const useMenuItems = () => {
|
|
@@ -11,7 +11,7 @@ export const useMenuItems = () => {
|
|
|
11
11
|
var _a;
|
|
12
12
|
let navigationItems = (_a = settingsPanelOptions === null || settingsPanelOptions === void 0 ? void 0 : settingsPanelOptions.navigation) === null || _a === void 0 ? void 0 : _a.items;
|
|
13
13
|
if (!navigationItems) {
|
|
14
|
-
navigationItems = [...
|
|
14
|
+
navigationItems = [...DEFAULT_SETTINGS_PANEL_NAVIGATION_ITEMS];
|
|
15
15
|
if (settingsPanelOptions.customSettingsPanels) {
|
|
16
16
|
navigationItems.push(...settingsPanelOptions.customSettingsPanels.map((panel) => panel.name));
|
|
17
17
|
}
|
|
@@ -1,26 +1,22 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
2
|
import { Box, Flex } from 'rebass';
|
|
3
3
|
import { isAdaptableSystemIcon } from '../../../components/Icon';
|
|
4
|
-
import DropdownButton from '../../../components/DropdownButton';
|
|
5
4
|
import HelpBlock from '../../../components/HelpBlock';
|
|
6
5
|
import { Tag } from '../../../components/Tag';
|
|
7
6
|
import AdaptableInput from '../AdaptableInput';
|
|
8
7
|
import { PermitedValuesSelector } from '../PermittedValuesSelector';
|
|
9
8
|
import { AdaptableIconComponent } from '../AdaptableIconComponent';
|
|
9
|
+
import { Select } from '../../../components/Select';
|
|
10
10
|
const isValuesPredicateDef = (colDef) => colDef && ['Values', 'ExcludeValues'].includes(colDef.id);
|
|
11
11
|
export const PredicateEditor = (props) => {
|
|
12
|
-
var _a, _b
|
|
12
|
+
var _a, _b;
|
|
13
13
|
const baseClassName = 'ab-PredicateEditor';
|
|
14
|
-
const placeholder = (_a = props.placeholder) !== null && _a !== void 0 ? _a : 'Select Rule';
|
|
15
14
|
const predicateDefsOptions = React.useMemo(() => {
|
|
16
15
|
var _a;
|
|
17
16
|
return (_a = props === null || props === void 0 ? void 0 : props.predicateDefs) === null || _a === void 0 ? void 0 : _a.map((item) => ({
|
|
18
17
|
value: item.id,
|
|
19
18
|
label: item.label,
|
|
20
|
-
|
|
21
|
-
var _a;
|
|
22
|
-
props.onChange(Object.assign(Object.assign({}, props.predicate), { PredicateId: item.id, Inputs: ((_a = item === null || item === void 0 ? void 0 : item.inputs) !== null && _a !== void 0 ? _a : []).map((input) => { var _a; return (_a = input.defaultValue) !== null && _a !== void 0 ? _a : ''; }) }));
|
|
23
|
-
},
|
|
19
|
+
inputs: item.inputs,
|
|
24
20
|
}));
|
|
25
21
|
}, [props.predicateDefs, props.onChange]);
|
|
26
22
|
const handlePredicateInputChange = (e, index) => {
|
|
@@ -33,7 +29,7 @@ export const PredicateEditor = (props) => {
|
|
|
33
29
|
const handlePredicateValuesChange = (inputs) => {
|
|
34
30
|
props.onChange(Object.assign(Object.assign({}, props.predicate), { Inputs: inputs }));
|
|
35
31
|
};
|
|
36
|
-
const currentPredicateDef = (
|
|
32
|
+
const currentPredicateDef = (_a = props === null || props === void 0 ? void 0 : props.predicateDefs) === null || _a === void 0 ? void 0 : _a.find((item) => { var _a; return item.id === ((_a = props.predicate) === null || _a === void 0 ? void 0 : _a.PredicateId); });
|
|
37
33
|
let icon = null;
|
|
38
34
|
if (currentPredicateDef) {
|
|
39
35
|
if (isAdaptableSystemIcon(currentPredicateDef === null || currentPredicateDef === void 0 ? void 0 : currentPredicateDef.icon)) {
|
|
@@ -46,8 +42,12 @@ export const PredicateEditor = (props) => {
|
|
|
46
42
|
return (React.createElement(Box, { className: baseClassName },
|
|
47
43
|
React.createElement(Flex, { justifyContent: "stretch", alignItems: "center" },
|
|
48
44
|
icon && React.createElement(Tag, { mr: 2 }, icon),
|
|
49
|
-
React.createElement(
|
|
50
|
-
|
|
45
|
+
React.createElement(Select, { isClearable: true, options: predicateDefsOptions, "data-name": "select-predicate", placeholder: "Select Rule", value: currentPredicateDef === null || currentPredicateDef === void 0 ? void 0 : currentPredicateDef.id, onChange: (value) => {
|
|
46
|
+
var _a;
|
|
47
|
+
const option = predicateDefsOptions.find((x) => x.value === value);
|
|
48
|
+
props.onChange(Object.assign(Object.assign({}, props.predicate), { PredicateId: option === null || option === void 0 ? void 0 : option.value, Inputs: ((_a = option === null || option === void 0 ? void 0 : option.inputs) !== null && _a !== void 0 ? _a : []).map((input) => { var _a; return (_a = input.defaultValue) !== null && _a !== void 0 ? _a : ''; }) }));
|
|
49
|
+
} })),
|
|
50
|
+
React.createElement(Flex, null, (_b = currentPredicateDef === null || currentPredicateDef === void 0 ? void 0 : currentPredicateDef.inputs) === null || _b === void 0 ? void 0 : _b.map((predicateDefInput, index) => {
|
|
51
51
|
var _a, _b;
|
|
52
52
|
return (React.createElement(React.Fragment, null,
|
|
53
53
|
index > 0 && React.createElement(HelpBlock, { margin: 2 }, "AND"),
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from 'react';
|
|
2
|
-
import { Flex, Text } from 'rebass';
|
|
2
|
+
import { Box, Flex, Text } from 'rebass';
|
|
3
3
|
import { ColorPicker } from '../../components/ColorPicker';
|
|
4
4
|
import clamp from 'lodash/clamp';
|
|
5
5
|
import { CheckBox } from '../../components/CheckBox';
|
|
@@ -8,7 +8,6 @@ import { NumberInput } from '../../components/Input/NumberInput';
|
|
|
8
8
|
import SimpleButton from '../../components/SimpleButton';
|
|
9
9
|
import { getHexForName, GRAY, DARK_GREEN } from '../UIHelper';
|
|
10
10
|
import { ColumnSelector } from './Selectors/ColumnSelector';
|
|
11
|
-
import { SelectionMode } from '../../PredefinedConfig/Common/Enums';
|
|
12
11
|
import { Tabs } from '../../components/Tabs';
|
|
13
12
|
import Radio from '../../components/Radio';
|
|
14
13
|
export class RangesComponent extends React.Component {
|
|
@@ -89,11 +88,15 @@ export class RangesComponent extends React.Component {
|
|
|
89
88
|
React.createElement(FormLayout, { columns: ['label', 'first', 'or', 'second'], sizes: ['auto', 'auto', 'auto', '1fr'] },
|
|
90
89
|
React.createElement(FormRow, { label: "Min Value:", first: React.createElement(NumberInput, { disabled: this.props.disabled, type: "number", value: comparisonMinValueNumber, onChange: (value) => {
|
|
91
90
|
this.changeColumnComparisonMinValue(value);
|
|
92
|
-
} }), or: "OR", second: React.createElement(
|
|
91
|
+
} }), or: "OR", second: React.createElement(Box, { maxWidth: '15rem' },
|
|
92
|
+
React.createElement(ColumnSelector, { menuPosition: "fixed", disabled: this.props.disabled, value: comparisonMinValueColumnId, type: "Number", onChange: (columnId) => {
|
|
93
|
+
this.onMinColumnSelectedChanged(columnId);
|
|
94
|
+
} })) }),
|
|
93
95
|
' ',
|
|
94
96
|
React.createElement(FormRow, { label: "Max Value:", first: React.createElement(NumberInput, { disabled: this.props.disabled, type: "number", value: comparisonMaxValueNumber, onChange: (value) => {
|
|
95
97
|
this.changeColumnComparisonMaxValue(value);
|
|
96
|
-
} }), or: "OR", second: React.createElement(
|
|
98
|
+
} }), or: "OR", second: React.createElement(Box, { maxWidth: '15rem' },
|
|
99
|
+
React.createElement(ColumnSelector, { menuPosition: "fixed", disabled: this.props.disabled, value: comparisonMaxValueColumnId, type: "Number", onChange: (columnId) => this.onMaxColumnSelectedChanged(columnId) })) }),
|
|
97
100
|
React.createElement(FormRow, { label: `Bar ${this.props.api.internalApi.getCorrectEnglishVariant('Colour')}`, first: React.createElement(ColorPicker, { disabled: this.props.disabled, api: this.props.api, value: comparisonColor, onChange: (color) => {
|
|
98
101
|
this.changeColumnComparisonColor(color);
|
|
99
102
|
} }) }))))))));
|
|
@@ -208,9 +211,9 @@ export class RangesComponent extends React.Component {
|
|
|
208
211
|
columnComparison.MinValue = value;
|
|
209
212
|
this.props.updateColumnComparison(columnComparison);
|
|
210
213
|
}
|
|
211
|
-
onMinColumnSelectedChanged(
|
|
214
|
+
onMinColumnSelectedChanged(columnId) {
|
|
212
215
|
const { columnComparison } = this.props;
|
|
213
|
-
columnComparison.MinValue =
|
|
216
|
+
columnComparison.MinValue = columnId || undefined;
|
|
214
217
|
this.props.updateColumnComparison(columnComparison);
|
|
215
218
|
}
|
|
216
219
|
changeColumnComparisonMaxValue(value) {
|
|
@@ -218,9 +221,9 @@ export class RangesComponent extends React.Component {
|
|
|
218
221
|
columnComparison.MaxValue = value;
|
|
219
222
|
this.props.updateColumnComparison(columnComparison);
|
|
220
223
|
}
|
|
221
|
-
onMaxColumnSelectedChanged(
|
|
224
|
+
onMaxColumnSelectedChanged(columnId) {
|
|
222
225
|
const { columnComparison } = this.props;
|
|
223
|
-
columnComparison.MaxValue =
|
|
226
|
+
columnComparison.MaxValue = columnId || undefined;
|
|
224
227
|
this.props.updateColumnComparison(columnComparison);
|
|
225
228
|
}
|
|
226
229
|
changeColumnComparisonColor(value) {
|
|
@@ -1,18 +1,13 @@
|
|
|
1
|
-
|
|
2
|
-
import {
|
|
3
|
-
import { AdaptableColumn } from '../../../
|
|
4
|
-
export
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
onColumnChange: (SelectedColumns: AdaptableColumn[]) => void;
|
|
8
|
-
SelectionMode: SelectionMode;
|
|
9
|
-
className?: string;
|
|
10
|
-
placeHolder?: string;
|
|
11
|
-
showClearButton?: boolean;
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { SelectProps } from '../../../components/Select';
|
|
3
|
+
import { AdaptableColumn } from '../../../types';
|
|
4
|
+
export type ColumnSelectorProps<IsMulti extends boolean = false> = {
|
|
5
|
+
type?: AdaptableColumn['dataType'];
|
|
6
|
+
isMulti?: IsMulti;
|
|
12
7
|
disabled?: boolean;
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
8
|
+
menuPosition?: SelectProps<any>['menuPosition'];
|
|
9
|
+
filterColumn?: (column: AdaptableColumn) => boolean;
|
|
10
|
+
value?: IsMulti extends true ? string[] : string;
|
|
11
|
+
onChange: (column: IsMulti extends true ? string[] : string) => void;
|
|
12
|
+
};
|
|
13
|
+
export declare const ColumnSelector: <IsMulti extends boolean = false>(props: ColumnSelectorProps<IsMulti>) => JSX.Element;
|