@adaptabletools/adaptable 17.0.0-canary.0 → 17.0.0-canary.2
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 +9 -110
- 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 +193 -190
- package/src/agGrid/AdaptableLogger.js +15 -15
- 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 +16 -14
- 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/ColorPicker/ColorPicker.js +1 -1
- 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
|
@@ -118,6 +118,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
118
118
|
kind: string;
|
|
119
119
|
desc: string;
|
|
120
120
|
};
|
|
121
|
+
ActionRowFormColumnContext: {
|
|
122
|
+
name: string;
|
|
123
|
+
kind: string;
|
|
124
|
+
desc: string;
|
|
125
|
+
props: {
|
|
126
|
+
name: string;
|
|
127
|
+
kind: string;
|
|
128
|
+
desc: string;
|
|
129
|
+
ref: string;
|
|
130
|
+
}[];
|
|
131
|
+
};
|
|
121
132
|
ActionRowFormContext: {
|
|
122
133
|
name: string;
|
|
123
134
|
kind: string;
|
|
@@ -163,6 +174,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
163
174
|
kind: string;
|
|
164
175
|
desc: string;
|
|
165
176
|
};
|
|
177
|
+
ActionRowType: {
|
|
178
|
+
name: string;
|
|
179
|
+
kind: string;
|
|
180
|
+
desc: string;
|
|
181
|
+
};
|
|
166
182
|
AdaptableAggregatedBooleanQuery: {
|
|
167
183
|
name: string;
|
|
168
184
|
kind: string;
|
|
@@ -996,6 +1012,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
996
1012
|
kind: string;
|
|
997
1013
|
desc: string;
|
|
998
1014
|
};
|
|
1015
|
+
AgGridColumnMenuItemType: {
|
|
1016
|
+
name: string;
|
|
1017
|
+
kind: string;
|
|
1018
|
+
desc: string;
|
|
1019
|
+
};
|
|
999
1020
|
AgGridConfig: {
|
|
1000
1021
|
name: string;
|
|
1001
1022
|
kind: string;
|
|
@@ -1012,6 +1033,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1012
1033
|
ref?: undefined;
|
|
1013
1034
|
})[];
|
|
1014
1035
|
};
|
|
1036
|
+
AgGridContextMenuItemType: {
|
|
1037
|
+
name: string;
|
|
1038
|
+
kind: string;
|
|
1039
|
+
desc: string;
|
|
1040
|
+
};
|
|
1015
1041
|
AgGridMenuItem: {
|
|
1016
1042
|
name: string;
|
|
1017
1043
|
kind: string;
|
|
@@ -1240,6 +1266,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1240
1266
|
isOpt: boolean;
|
|
1241
1267
|
}[];
|
|
1242
1268
|
};
|
|
1269
|
+
AST_Expression: {
|
|
1270
|
+
name: string;
|
|
1271
|
+
kind: string;
|
|
1272
|
+
desc: string;
|
|
1273
|
+
};
|
|
1274
|
+
AST_Function: {
|
|
1275
|
+
name: string;
|
|
1276
|
+
kind: string;
|
|
1277
|
+
desc: string;
|
|
1278
|
+
};
|
|
1243
1279
|
AutoGenerateTagsForLayoutsContext: {
|
|
1244
1280
|
name: string;
|
|
1245
1281
|
kind: string;
|
|
@@ -1329,6 +1365,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1329
1365
|
ref?: undefined;
|
|
1330
1366
|
})[];
|
|
1331
1367
|
};
|
|
1368
|
+
BroadcastConfiguration: {
|
|
1369
|
+
name: string;
|
|
1370
|
+
kind: string;
|
|
1371
|
+
desc: string;
|
|
1372
|
+
};
|
|
1332
1373
|
BulkUpdatePermittedValues: {
|
|
1333
1374
|
name: string;
|
|
1334
1375
|
kind: string;
|
|
@@ -1572,6 +1613,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1572
1613
|
defVal?: undefined;
|
|
1573
1614
|
})[];
|
|
1574
1615
|
};
|
|
1616
|
+
ChartContext: {
|
|
1617
|
+
name: string;
|
|
1618
|
+
kind: string;
|
|
1619
|
+
desc: string;
|
|
1620
|
+
};
|
|
1621
|
+
ChartContextType: {
|
|
1622
|
+
name: string;
|
|
1623
|
+
kind: string;
|
|
1624
|
+
desc: string;
|
|
1625
|
+
};
|
|
1575
1626
|
ChartDefinition: {
|
|
1576
1627
|
name: string;
|
|
1577
1628
|
kind: string;
|
|
@@ -1642,6 +1693,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1642
1693
|
isOpt: boolean;
|
|
1643
1694
|
}[];
|
|
1644
1695
|
};
|
|
1696
|
+
ChatInitSettingsContext: {
|
|
1697
|
+
name: string;
|
|
1698
|
+
kind: string;
|
|
1699
|
+
desc: string;
|
|
1700
|
+
};
|
|
1701
|
+
ChatInitSettingsContextType: {
|
|
1702
|
+
name: string;
|
|
1703
|
+
kind: string;
|
|
1704
|
+
desc: string;
|
|
1705
|
+
};
|
|
1645
1706
|
ColumnComparison: {
|
|
1646
1707
|
name: string;
|
|
1647
1708
|
kind: string;
|
|
@@ -1735,27 +1796,18 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1735
1796
|
kind: string;
|
|
1736
1797
|
desc: string;
|
|
1737
1798
|
isOpt: boolean;
|
|
1738
|
-
|
|
1739
|
-
defVal: string;
|
|
1740
|
-
gridInfo?: undefined;
|
|
1741
|
-
ref?: undefined;
|
|
1742
|
-
} | {
|
|
1743
|
-
name: string;
|
|
1744
|
-
kind: string;
|
|
1745
|
-
desc: string;
|
|
1746
|
-
isOpt: boolean;
|
|
1747
|
-
defVal: string;
|
|
1799
|
+
ref: string;
|
|
1748
1800
|
gridInfo?: undefined;
|
|
1749
1801
|
noCode?: undefined;
|
|
1750
|
-
|
|
1802
|
+
defVal?: undefined;
|
|
1751
1803
|
} | {
|
|
1752
1804
|
name: string;
|
|
1753
1805
|
kind: string;
|
|
1754
1806
|
desc: string;
|
|
1755
1807
|
isOpt: boolean;
|
|
1808
|
+
noCode: string;
|
|
1809
|
+
defVal: string;
|
|
1756
1810
|
gridInfo?: undefined;
|
|
1757
|
-
noCode?: undefined;
|
|
1758
|
-
defVal?: undefined;
|
|
1759
1811
|
ref?: undefined;
|
|
1760
1812
|
})[];
|
|
1761
1813
|
};
|
|
@@ -1860,6 +1912,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1860
1912
|
isOpt: boolean;
|
|
1861
1913
|
}[];
|
|
1862
1914
|
};
|
|
1915
|
+
ContactContext: {
|
|
1916
|
+
name: string;
|
|
1917
|
+
kind: string;
|
|
1918
|
+
desc: string;
|
|
1919
|
+
};
|
|
1920
|
+
ContactContextType: {
|
|
1921
|
+
name: string;
|
|
1922
|
+
kind: string;
|
|
1923
|
+
desc: string;
|
|
1924
|
+
};
|
|
1925
|
+
ContactListContext: {
|
|
1926
|
+
name: string;
|
|
1927
|
+
kind: string;
|
|
1928
|
+
desc: string;
|
|
1929
|
+
};
|
|
1930
|
+
ContactListContextType: {
|
|
1931
|
+
name: string;
|
|
1932
|
+
kind: string;
|
|
1933
|
+
desc: string;
|
|
1934
|
+
};
|
|
1863
1935
|
ContainerOptions: {
|
|
1864
1936
|
name: string;
|
|
1865
1937
|
kind: string;
|
|
@@ -1889,6 +1961,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1889
1961
|
ref: string;
|
|
1890
1962
|
})[];
|
|
1891
1963
|
};
|
|
1964
|
+
CountryContext: {
|
|
1965
|
+
name: string;
|
|
1966
|
+
kind: string;
|
|
1967
|
+
desc: string;
|
|
1968
|
+
};
|
|
1969
|
+
CountryContextType: {
|
|
1970
|
+
name: string;
|
|
1971
|
+
kind: string;
|
|
1972
|
+
desc: string;
|
|
1973
|
+
};
|
|
1892
1974
|
CreateActionRowFormContext: {
|
|
1893
1975
|
name: string;
|
|
1894
1976
|
kind: string;
|
|
@@ -1905,6 +1987,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1905
1987
|
isOpt?: undefined;
|
|
1906
1988
|
})[];
|
|
1907
1989
|
};
|
|
1990
|
+
CurrencyContext: {
|
|
1991
|
+
name: string;
|
|
1992
|
+
kind: string;
|
|
1993
|
+
desc: string;
|
|
1994
|
+
};
|
|
1995
|
+
CurrencyContextType: {
|
|
1996
|
+
name: string;
|
|
1997
|
+
kind: string;
|
|
1998
|
+
desc: string;
|
|
1999
|
+
};
|
|
1908
2000
|
CustomColumnMenuContext: {
|
|
1909
2001
|
name: string;
|
|
1910
2002
|
kind: string;
|
|
@@ -2564,6 +2656,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2564
2656
|
defVal?: undefined;
|
|
2565
2657
|
})[];
|
|
2566
2658
|
};
|
|
2659
|
+
EmailContext: {
|
|
2660
|
+
name: string;
|
|
2661
|
+
kind: string;
|
|
2662
|
+
desc: string;
|
|
2663
|
+
};
|
|
2664
|
+
EmailContextType: {
|
|
2665
|
+
name: string;
|
|
2666
|
+
kind: string;
|
|
2667
|
+
desc: string;
|
|
2668
|
+
};
|
|
2567
2669
|
Entitlement: {
|
|
2568
2670
|
name: string;
|
|
2569
2671
|
kind: string;
|
|
@@ -2756,6 +2858,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2756
2858
|
kind: string;
|
|
2757
2859
|
desc: string;
|
|
2758
2860
|
};
|
|
2861
|
+
ExpressionFunctionInputType: {
|
|
2862
|
+
name: string;
|
|
2863
|
+
kind: string;
|
|
2864
|
+
desc: string;
|
|
2865
|
+
};
|
|
2759
2866
|
ExpressionFunctionMap: {
|
|
2760
2867
|
name: string;
|
|
2761
2868
|
kind: string;
|
|
@@ -2933,11 +3040,21 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2933
3040
|
ref?: undefined;
|
|
2934
3041
|
})[];
|
|
2935
3042
|
};
|
|
3043
|
+
Fdc3ContextType: {
|
|
3044
|
+
name: string;
|
|
3045
|
+
kind: string;
|
|
3046
|
+
desc: string;
|
|
3047
|
+
};
|
|
2936
3048
|
Fdc3CustomContext: {
|
|
2937
3049
|
name: string;
|
|
2938
3050
|
kind: string;
|
|
2939
3051
|
desc: string;
|
|
2940
3052
|
};
|
|
3053
|
+
Fdc3CustomContextType: {
|
|
3054
|
+
name: string;
|
|
3055
|
+
kind: string;
|
|
3056
|
+
desc: string;
|
|
3057
|
+
};
|
|
2941
3058
|
Fdc3CustomIntentType: {
|
|
2942
3059
|
name: string;
|
|
2943
3060
|
kind: string;
|
|
@@ -3019,6 +3136,28 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3019
3136
|
isOpt: boolean;
|
|
3020
3137
|
})[];
|
|
3021
3138
|
};
|
|
3139
|
+
FilterFormOptions: {
|
|
3140
|
+
name: string;
|
|
3141
|
+
kind: string;
|
|
3142
|
+
desc: string;
|
|
3143
|
+
props: ({
|
|
3144
|
+
name: string;
|
|
3145
|
+
kind: string;
|
|
3146
|
+
desc: string;
|
|
3147
|
+
isOpt: boolean;
|
|
3148
|
+
gridInfo: string;
|
|
3149
|
+
defVal: string;
|
|
3150
|
+
noCode?: undefined;
|
|
3151
|
+
} | {
|
|
3152
|
+
name: string;
|
|
3153
|
+
kind: string;
|
|
3154
|
+
desc: string;
|
|
3155
|
+
isOpt: boolean;
|
|
3156
|
+
gridInfo: string;
|
|
3157
|
+
noCode: string;
|
|
3158
|
+
defVal: string;
|
|
3159
|
+
})[];
|
|
3160
|
+
};
|
|
3022
3161
|
FilterPermittedValues: {
|
|
3023
3162
|
name: string;
|
|
3024
3163
|
kind: string;
|
|
@@ -3419,15 +3558,25 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3419
3558
|
isOpt: boolean;
|
|
3420
3559
|
}[];
|
|
3421
3560
|
};
|
|
3422
|
-
|
|
3423
|
-
name: string;
|
|
3424
|
-
kind: string;
|
|
3425
|
-
desc: string;
|
|
3426
|
-
};
|
|
3427
|
-
GridInfoSections: {
|
|
3561
|
+
GridFilterOptions: {
|
|
3428
3562
|
name: string;
|
|
3429
3563
|
kind: string;
|
|
3430
3564
|
desc: string;
|
|
3565
|
+
props: ({
|
|
3566
|
+
name: string;
|
|
3567
|
+
kind: string;
|
|
3568
|
+
desc: string;
|
|
3569
|
+
isOpt: boolean;
|
|
3570
|
+
defVal: string;
|
|
3571
|
+
gridInfo?: undefined;
|
|
3572
|
+
} | {
|
|
3573
|
+
name: string;
|
|
3574
|
+
kind: string;
|
|
3575
|
+
desc: string;
|
|
3576
|
+
isOpt: boolean;
|
|
3577
|
+
gridInfo: string;
|
|
3578
|
+
defVal: string;
|
|
3579
|
+
})[];
|
|
3431
3580
|
};
|
|
3432
3581
|
GridRow: {
|
|
3433
3582
|
name: string;
|
|
@@ -3556,6 +3705,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3556
3705
|
kind: string;
|
|
3557
3706
|
desc: string;
|
|
3558
3707
|
};
|
|
3708
|
+
InstrumentContext: {
|
|
3709
|
+
name: string;
|
|
3710
|
+
kind: string;
|
|
3711
|
+
desc: string;
|
|
3712
|
+
};
|
|
3713
|
+
InstrumentContextType: {
|
|
3714
|
+
name: string;
|
|
3715
|
+
kind: string;
|
|
3716
|
+
desc: string;
|
|
3717
|
+
};
|
|
3718
|
+
InstrumentListContext: {
|
|
3719
|
+
name: string;
|
|
3720
|
+
kind: string;
|
|
3721
|
+
desc: string;
|
|
3722
|
+
};
|
|
3723
|
+
InstrumentListContextType: {
|
|
3724
|
+
name: string;
|
|
3725
|
+
kind: string;
|
|
3726
|
+
desc: string;
|
|
3727
|
+
};
|
|
3559
3728
|
IPushPullDomain: {
|
|
3560
3729
|
name: string;
|
|
3561
3730
|
kind: string;
|
|
@@ -3874,6 +4043,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3874
4043
|
ref: string;
|
|
3875
4044
|
}[];
|
|
3876
4045
|
};
|
|
4046
|
+
NothingContext: {
|
|
4047
|
+
name: string;
|
|
4048
|
+
kind: string;
|
|
4049
|
+
desc: string;
|
|
4050
|
+
};
|
|
4051
|
+
NothingContextType: {
|
|
4052
|
+
name: string;
|
|
4053
|
+
kind: string;
|
|
4054
|
+
desc: string;
|
|
4055
|
+
};
|
|
3877
4056
|
NotificationsOptions: {
|
|
3878
4057
|
name: string;
|
|
3879
4058
|
kind: string;
|
|
@@ -3996,6 +4175,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3996
4175
|
kind: string;
|
|
3997
4176
|
desc: string;
|
|
3998
4177
|
};
|
|
4178
|
+
OrganizationContext: {
|
|
4179
|
+
name: string;
|
|
4180
|
+
kind: string;
|
|
4181
|
+
desc: string;
|
|
4182
|
+
};
|
|
4183
|
+
OrganizationContextType: {
|
|
4184
|
+
name: string;
|
|
4185
|
+
kind: string;
|
|
4186
|
+
desc: string;
|
|
4187
|
+
};
|
|
3999
4188
|
PercentBarStyle: {
|
|
4000
4189
|
name: string;
|
|
4001
4190
|
kind: string;
|
|
@@ -4088,6 +4277,26 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4088
4277
|
isOpt: boolean;
|
|
4089
4278
|
}[];
|
|
4090
4279
|
};
|
|
4280
|
+
PortfolioContext: {
|
|
4281
|
+
name: string;
|
|
4282
|
+
kind: string;
|
|
4283
|
+
desc: string;
|
|
4284
|
+
};
|
|
4285
|
+
PortfolioContextType: {
|
|
4286
|
+
name: string;
|
|
4287
|
+
kind: string;
|
|
4288
|
+
desc: string;
|
|
4289
|
+
};
|
|
4290
|
+
PositionContext: {
|
|
4291
|
+
name: string;
|
|
4292
|
+
kind: string;
|
|
4293
|
+
desc: string;
|
|
4294
|
+
};
|
|
4295
|
+
PositionContextType: {
|
|
4296
|
+
name: string;
|
|
4297
|
+
kind: string;
|
|
4298
|
+
desc: string;
|
|
4299
|
+
};
|
|
4091
4300
|
PredefinedConfig: {
|
|
4092
4301
|
name: string;
|
|
4093
4302
|
kind: string;
|
|
@@ -4198,6 +4407,52 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4198
4407
|
ref: string;
|
|
4199
4408
|
}[];
|
|
4200
4409
|
};
|
|
4410
|
+
QuickFilterOptions: {
|
|
4411
|
+
name: string;
|
|
4412
|
+
kind: string;
|
|
4413
|
+
desc: string;
|
|
4414
|
+
props: ({
|
|
4415
|
+
name: string;
|
|
4416
|
+
kind: string;
|
|
4417
|
+
desc: string;
|
|
4418
|
+
isOpt: boolean;
|
|
4419
|
+
defVal: string;
|
|
4420
|
+
gridInfo?: undefined;
|
|
4421
|
+
noCode?: undefined;
|
|
4422
|
+
} | {
|
|
4423
|
+
name: string;
|
|
4424
|
+
kind: string;
|
|
4425
|
+
desc: string;
|
|
4426
|
+
isOpt: boolean;
|
|
4427
|
+
gridInfo: string;
|
|
4428
|
+
defVal: string;
|
|
4429
|
+
noCode?: undefined;
|
|
4430
|
+
} | {
|
|
4431
|
+
name: string;
|
|
4432
|
+
kind: string;
|
|
4433
|
+
desc: string;
|
|
4434
|
+
isOpt: boolean;
|
|
4435
|
+
gridInfo: string;
|
|
4436
|
+
noCode: string;
|
|
4437
|
+
defVal: string;
|
|
4438
|
+
} | {
|
|
4439
|
+
name: string;
|
|
4440
|
+
kind: string;
|
|
4441
|
+
desc: string;
|
|
4442
|
+
isOpt: boolean;
|
|
4443
|
+
defVal?: undefined;
|
|
4444
|
+
gridInfo?: undefined;
|
|
4445
|
+
noCode?: undefined;
|
|
4446
|
+
} | {
|
|
4447
|
+
name: string;
|
|
4448
|
+
kind: string;
|
|
4449
|
+
desc: string;
|
|
4450
|
+
isOpt: boolean;
|
|
4451
|
+
noCode: string;
|
|
4452
|
+
defVal: string;
|
|
4453
|
+
gridInfo?: undefined;
|
|
4454
|
+
})[];
|
|
4455
|
+
};
|
|
4201
4456
|
QuickSearchContext: {
|
|
4202
4457
|
name: string;
|
|
4203
4458
|
kind: string;
|
|
@@ -4294,6 +4549,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4294
4549
|
ref?: undefined;
|
|
4295
4550
|
})[];
|
|
4296
4551
|
};
|
|
4552
|
+
RaiseIntentConfiguration: {
|
|
4553
|
+
name: string;
|
|
4554
|
+
kind: string;
|
|
4555
|
+
desc: string;
|
|
4556
|
+
};
|
|
4297
4557
|
RangeValueType: {
|
|
4298
4558
|
name: string;
|
|
4299
4559
|
kind: string;
|
|
@@ -4328,7 +4588,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4328
4588
|
isOpt?: undefined;
|
|
4329
4589
|
})[];
|
|
4330
4590
|
};
|
|
4331
|
-
|
|
4591
|
+
Report_2: {
|
|
4332
4592
|
name: string;
|
|
4333
4593
|
kind: string;
|
|
4334
4594
|
desc: string;
|
|
@@ -4765,13 +5025,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4765
5025
|
isOpt: boolean;
|
|
4766
5026
|
ref: string;
|
|
4767
5027
|
defVal?: undefined;
|
|
4768
|
-
} | {
|
|
4769
|
-
name: string;
|
|
4770
|
-
kind: string;
|
|
4771
|
-
desc: string;
|
|
4772
|
-
isOpt: boolean;
|
|
4773
|
-
ref?: undefined;
|
|
4774
|
-
defVal?: undefined;
|
|
4775
5028
|
} | {
|
|
4776
5029
|
name: string;
|
|
4777
5030
|
kind: string;
|
|
@@ -4982,6 +5235,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4982
5235
|
isOpt: boolean;
|
|
4983
5236
|
}[];
|
|
4984
5237
|
};
|
|
5238
|
+
TimeRangeContext: {
|
|
5239
|
+
name: string;
|
|
5240
|
+
kind: string;
|
|
5241
|
+
desc: string;
|
|
5242
|
+
};
|
|
5243
|
+
TimeRangeContextType: {
|
|
5244
|
+
name: string;
|
|
5245
|
+
kind: string;
|
|
5246
|
+
desc: string;
|
|
5247
|
+
};
|
|
4985
5248
|
TOAST_POSITIONS: {
|
|
4986
5249
|
name: string;
|
|
4987
5250
|
kind: string;
|
|
@@ -5227,6 +5490,46 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5227
5490
|
ref?: undefined;
|
|
5228
5491
|
})[];
|
|
5229
5492
|
};
|
|
5493
|
+
ValuationContext: {
|
|
5494
|
+
name: string;
|
|
5495
|
+
kind: string;
|
|
5496
|
+
desc: string;
|
|
5497
|
+
};
|
|
5498
|
+
ValuationContextType: {
|
|
5499
|
+
name: string;
|
|
5500
|
+
kind: string;
|
|
5501
|
+
desc: string;
|
|
5502
|
+
};
|
|
5503
|
+
ValuesFilterOptions: {
|
|
5504
|
+
name: string;
|
|
5505
|
+
kind: string;
|
|
5506
|
+
desc: string;
|
|
5507
|
+
props: ({
|
|
5508
|
+
name: string;
|
|
5509
|
+
kind: string;
|
|
5510
|
+
desc: string;
|
|
5511
|
+
isOpt: boolean;
|
|
5512
|
+
noCode: string;
|
|
5513
|
+
defVal: string;
|
|
5514
|
+
gridInfo?: undefined;
|
|
5515
|
+
} | {
|
|
5516
|
+
name: string;
|
|
5517
|
+
kind: string;
|
|
5518
|
+
desc: string;
|
|
5519
|
+
isOpt: boolean;
|
|
5520
|
+
gridInfo: string;
|
|
5521
|
+
noCode: string;
|
|
5522
|
+
defVal: string;
|
|
5523
|
+
} | {
|
|
5524
|
+
name: string;
|
|
5525
|
+
kind: string;
|
|
5526
|
+
desc: string;
|
|
5527
|
+
isOpt: boolean;
|
|
5528
|
+
gridInfo: string;
|
|
5529
|
+
defVal: string;
|
|
5530
|
+
noCode?: undefined;
|
|
5531
|
+
})[];
|
|
5532
|
+
};
|
|
5230
5533
|
WeightedAverageAggregation: {
|
|
5231
5534
|
name: string;
|
|
5232
5535
|
kind: string;
|