@adaptabletools/adaptable 19.2.4 → 20.0.0-canary.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agGrid.d.ts +1 -1
- package/base.css +3903 -1294
- package/base.css.map +1 -1
- package/index.css +2967 -2120
- package/index.css.map +1 -1
- package/package.json +17 -16
- package/src/AdaptableInterfaces/AdaptableNoCodeWizard.d.ts +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +28 -32
- package/src/AdaptableOptions/ActionColumnOptions.d.ts +17 -4
- package/src/AdaptableOptions/AdaptableOptions.d.ts +14 -31
- package/src/AdaptableOptions/AdaptablePlugin.d.ts +2 -2
- package/src/AdaptableOptions/AlertOptions.d.ts +6 -6
- package/src/AdaptableOptions/CellSummaryOptions.d.ts +9 -4
- package/src/AdaptableOptions/ColumnMenuOptions.d.ts +4 -3
- package/src/AdaptableOptions/ColumnOptions.d.ts +5 -1
- package/src/AdaptableOptions/ContextMenuOptions.d.ts +13 -9
- package/src/AdaptableOptions/DashboardOptions.d.ts +12 -8
- package/src/AdaptableOptions/DataImportOptions.d.ts +1 -1
- package/src/AdaptableOptions/DefaultAdaptableOptions.d.ts +1 -1
- package/src/AdaptableOptions/DefaultAdaptableOptions.js +234 -251
- package/src/AdaptableOptions/EditOptions.d.ts +27 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +128 -55
- package/src/AdaptableOptions/ExpressionOptions.d.ts +3 -7
- package/src/AdaptableOptions/Fdc3Options.d.ts +7 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +219 -0
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +1 -1
- package/src/AdaptableOptions/LayoutOptions.d.ts +4 -45
- package/src/AdaptableOptions/MasterDetailPluginOptions.d.ts +1 -1
- package/src/AdaptableOptions/PredicateOptions.d.ts +6 -0
- package/src/AdaptableOptions/QuickSearchOptions.d.ts +11 -28
- package/src/AdaptableOptions/RowFormOptions.d.ts +116 -0
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -3
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +13 -121
- package/src/Api/ActionColumnApi.d.ts +5 -0
- package/src/Api/AdaptableApi.d.ts +10 -19
- package/src/Api/AlertApi.d.ts +2 -2
- package/src/Api/CalculatedColumnApi.d.ts +4 -0
- package/src/Api/CellSummaryApi.d.ts +6 -6
- package/src/Api/ChartingApi.d.ts +1 -1
- package/src/Api/ColumnApi.d.ts +41 -65
- package/src/Api/ColumnFilterApi.d.ts +3 -3
- package/src/Api/ColumnMenuApi.d.ts +62 -0
- package/src/Api/ColumnScopeApi.d.ts +1 -1
- package/src/Api/CommentApi.d.ts +4 -4
- package/src/Api/ConfigApi.d.ts +1 -3
- package/src/Api/ContextMenuApi.d.ts +62 -0
- package/src/Api/DashboardApi.d.ts +1 -1
- package/src/Api/EventApi.d.ts +22 -22
- package/src/Api/Events/AdaptableReady.d.ts +3 -3
- package/src/Api/Events/AdaptableStateChanged.d.ts +2 -10
- package/src/Api/Events/AdaptableStateReloaded.d.ts +2 -6
- package/src/Api/Events/AlertFired.d.ts +2 -2
- package/src/Api/Events/CalculatedColumnChanged.d.ts +2 -2
- package/src/Api/Events/CellChanged.d.ts +3 -3
- package/src/Api/Events/CellSelectionChanged.d.ts +2 -2
- package/src/Api/Events/ChartChanged.d.ts +2 -3
- package/src/Api/Events/ColumnFilterApplied.d.ts +2 -3
- package/src/Api/Events/CommentChanged.d.ts +2 -3
- package/src/Api/Events/CustomToolbarConfigured.d.ts +2 -2
- package/src/Api/Events/DashboardChanged.d.ts +2 -2
- package/src/Api/Events/DataImported.d.ts +3 -3
- package/src/Api/Events/DataSetSelected.d.ts +2 -3
- package/src/Api/Events/Fdc3MessageInfo.d.ts +3 -3
- package/src/Api/Events/FlashingCellDisplayed.d.ts +2 -2
- package/src/Api/Events/GridFilterApplied.d.ts +2 -3
- package/src/Api/Events/GridSorted.d.ts +3 -17
- package/src/Api/Events/LayoutChanged.d.ts +2 -2
- package/src/Api/Events/LiveDataChanged.d.ts +2 -2
- package/src/Api/Events/RowChanged.d.ts +11 -0
- package/src/Api/Events/RowFormSubmitted.d.ts +54 -0
- package/src/Api/Events/RowSelectionChanged.d.ts +2 -2
- package/src/Api/Events/ScheduleTriggered.d.ts +2 -2
- package/src/Api/Events/SystemStatusMessageDisplayed.d.ts +2 -2
- package/src/Api/Events/TeamSharingEntityChanged.d.ts +2 -2
- package/src/Api/Events/ThemeChanged.d.ts +2 -2
- package/src/Api/ExportApi.d.ts +75 -69
- package/src/Api/ExpressionApi.d.ts +2 -2
- package/src/Api/Fdc3Api.d.ts +1 -9
- package/src/Api/FilterApi.d.ts +18 -0
- package/src/Api/FormatColumnApi.d.ts +7 -2
- package/src/Api/FreeTextColumnApi.d.ts +1 -1
- package/src/Api/GridApi.d.ts +51 -35
- package/src/Api/GridFilterApi.d.ts +1 -2
- package/src/Api/IPushPullApi.d.ts +1 -1
- package/src/Api/Implementation/ActionColumnApiImpl.d.ts +5 -2
- package/src/Api/Implementation/ActionColumnApiImpl.js +8 -31
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +5 -8
- package/src/Api/Implementation/AdaptableApiImpl.js +6 -11
- package/src/Api/Implementation/AlertApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AlertApiImpl.js +42 -48
- package/src/Api/Implementation/ApiBase.d.ts +10 -7
- package/src/Api/Implementation/ApiBase.js +21 -18
- package/src/Api/Implementation/BulkUpdateApiImpl.js +1 -1
- package/src/Api/Implementation/CalculatedColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/CalculatedColumnApiImpl.js +26 -22
- package/src/Api/Implementation/CellSummaryApiImpl.d.ts +3 -3
- package/src/Api/Implementation/CellSummaryApiImpl.js +6 -8
- package/src/Api/Implementation/ChartingApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ChartingApiImpl.js +30 -24
- package/src/Api/Implementation/ColumnApiImpl.d.ts +22 -16
- package/src/Api/Implementation/ColumnApiImpl.js +180 -112
- package/src/Api/Implementation/ColumnFilterApiImpl.d.ts +4 -4
- package/src/Api/Implementation/ColumnFilterApiImpl.js +53 -51
- package/src/Api/Implementation/ColumnMenuApiImpl.d.ts +13 -0
- package/src/Api/Implementation/ColumnMenuApiImpl.js +51 -0
- package/src/Api/Implementation/ColumnScopeApiImpl.d.ts +1 -1
- package/src/Api/Implementation/ColumnScopeApiImpl.js +16 -21
- package/src/Api/Implementation/CommentsApiImpl.d.ts +4 -4
- package/src/Api/Implementation/CommentsApiImpl.js +8 -11
- package/src/Api/Implementation/ConfigApiImpl.d.ts +1 -3
- package/src/Api/Implementation/ConfigApiImpl.js +17 -25
- package/src/Api/Implementation/ContextMenuApiImpl.d.ts +13 -0
- package/src/Api/Implementation/ContextMenuApiImpl.js +51 -0
- package/src/Api/Implementation/CustomSortApiImpl.js +5 -3
- package/src/Api/Implementation/DashboardApiImpl.js +8 -7
- package/src/Api/Implementation/DataChangeHistoryApiImpl.js +10 -11
- package/src/Api/Implementation/DataSetApiImpl.js +5 -6
- package/src/Api/Implementation/EntitlementApiImpl.js +6 -2
- package/src/Api/Implementation/EventApiImpl.d.ts +2 -0
- package/src/Api/Implementation/EventApiImpl.js +2 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +22 -19
- package/src/Api/Implementation/ExportApiImpl.js +105 -58
- package/src/Api/Implementation/ExpressionApiImpl.d.ts +2 -2
- package/src/Api/Implementation/ExpressionApiImpl.js +11 -5
- package/src/Api/Implementation/Fdc3ApiImpl.d.ts +1 -3
- package/src/Api/Implementation/Fdc3ApiImpl.js +1 -33
- package/src/Api/Implementation/FilterApiImpl.d.ts +13 -0
- package/src/Api/Implementation/FilterApiImpl.js +16 -0
- package/src/Api/Implementation/FlashingCellApiImpl.js +16 -25
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/FormatColumnApiImpl.js +19 -12
- package/src/Api/Implementation/FreeTextColumnApiImpl.d.ts +1 -1
- package/src/Api/Implementation/FreeTextColumnApiImpl.js +5 -6
- package/src/Api/Implementation/GridApiImpl.d.ts +15 -12
- package/src/Api/Implementation/GridApiImpl.js +92 -82
- package/src/Api/Implementation/GridFilterApiImpl.js +6 -4
- package/src/Api/Implementation/LayoutApiImpl.d.ts +7 -9
- package/src/Api/Implementation/LayoutApiImpl.js +45 -50
- package/src/Api/Implementation/LayoutHelpers.d.ts +23 -0
- package/src/Api/Implementation/LayoutHelpers.js +303 -0
- package/src/Api/Implementation/NamedQueryApiImpl.js +1 -1
- package/src/Api/Implementation/NoteApiImpl.js +4 -1
- package/src/Api/Implementation/OptionsApiImpl.d.ts +9 -12
- package/src/Api/Implementation/OptionsApiImpl.js +25 -11
- package/src/Api/Implementation/PlusMinusApiImpl.js +2 -3
- package/src/Api/Implementation/PredicateApiImpl.d.ts +1 -0
- package/src/Api/Implementation/PredicateApiImpl.js +22 -8
- package/src/Api/Implementation/QuickSearchApiImpl.js +3 -3
- package/src/Api/Implementation/RowFormApiImpl.d.ts +11 -0
- package/src/Api/Implementation/{ActionRowApiImpl.js → RowFormApiImpl.js} +8 -16
- package/src/Api/Implementation/ScheduleApiImpl.d.ts +0 -2
- package/src/Api/Implementation/ScheduleApiImpl.js +10 -14
- package/src/Api/Implementation/ShortcutApiImpl.js +3 -3
- package/src/Api/Implementation/SmartEditApiImpl.js +7 -8
- package/src/Api/Implementation/StatusBarApiImpl.d.ts +1 -1
- package/src/Api/Implementation/StyledColumnApiImpl.js +1 -2
- package/src/Api/Implementation/SystemStatusApiImpl.js +8 -7
- package/src/Api/Implementation/TeamSharingApiImpl.js +5 -6
- package/src/Api/Implementation/ThemeApiImpl.js +6 -11
- package/src/Api/Implementation/ToolPanelApiImpl.js +3 -6
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +2 -15
- package/src/Api/Implementation/UserInterfaceApiImpl.js +29 -117
- package/src/Api/Internal/ActionColumnInternalApi.d.ts +13 -0
- package/src/Api/Internal/ActionColumnInternalApi.js +139 -0
- package/src/Api/Internal/AdaptableInternalApi.d.ts +27 -28
- package/src/Api/Internal/AdaptableInternalApi.js +70 -126
- package/src/Api/Internal/AlertInternalApi.d.ts +15 -18
- package/src/Api/Internal/AlertInternalApi.js +158 -139
- package/src/Api/Internal/CalculatedColumnInternalApi.d.ts +2 -2
- package/src/Api/Internal/CalculatedColumnInternalApi.js +37 -29
- package/src/Api/Internal/ChartingInternalApi.js +33 -18
- package/src/Api/Internal/ColumnFilterInternalApi.d.ts +6 -22
- package/src/Api/Internal/ColumnFilterInternalApi.js +69 -91
- package/src/Api/Internal/ColumnInternalApi.d.ts +4 -1
- package/src/Api/Internal/ColumnInternalApi.js +30 -2
- package/src/Api/Internal/CommentsInternalApi.d.ts +1 -1
- package/src/Api/Internal/CommentsInternalApi.js +2 -3
- package/src/Api/Internal/CustomSortInternalApi.d.ts +2 -0
- package/src/Api/Internal/CustomSortInternalApi.js +22 -7
- package/src/Api/Internal/DashboardInternalApi.d.ts +0 -4
- package/src/Api/Internal/DashboardInternalApi.js +3 -38
- package/src/Api/Internal/DataImportInternalApi.d.ts +0 -6
- package/src/Api/Internal/DataImportInternalApi.js +22 -21
- package/src/Api/Internal/DataSetInternalApi.d.ts +1 -5
- package/src/Api/Internal/DataSetInternalApi.js +15 -8
- package/src/Api/Internal/EntitlementInternalApi.js +2 -2
- package/src/Api/Internal/EventInternalApi.d.ts +27 -0
- package/src/Api/Internal/EventInternalApi.js +194 -0
- package/src/Api/Internal/ExportInternalApi.d.ts +19 -26
- package/src/Api/Internal/ExportInternalApi.js +175 -399
- package/src/Api/Internal/ExpressionInternalApi.js +21 -17
- package/src/Api/Internal/Fdc3InternalApi.d.ts +3 -2
- package/src/Api/Internal/Fdc3InternalApi.js +66 -34
- package/src/Api/Internal/FilterInternalApi.d.ts +3 -0
- package/src/Api/Internal/FilterInternalApi.js +3 -0
- package/src/Api/Internal/FlashingCellInternalApi.js +3 -4
- package/src/Api/Internal/FormatColumnInternalApi.d.ts +1 -1
- package/src/Api/Internal/FormatColumnInternalApi.js +34 -23
- package/src/Api/Internal/FreeTextColumnInternalApi.d.ts +2 -1
- package/src/Api/Internal/FreeTextColumnInternalApi.js +32 -26
- package/src/Api/Internal/GridFilterInternalApi.d.ts +0 -1
- package/src/Api/Internal/GridFilterInternalApi.js +1 -11
- package/src/Api/Internal/GridInternalApi.d.ts +24 -73
- package/src/Api/Internal/GridInternalApi.js +88 -382
- package/src/Api/Internal/LayoutInternalApi.d.ts +7 -24
- package/src/Api/Internal/LayoutInternalApi.js +93 -107
- package/src/Api/Internal/NamedQueryInternalApi.d.ts +2 -0
- package/src/Api/Internal/NamedQueryInternalApi.js +38 -3
- package/src/Api/Internal/NoteInternalApi.js +1 -2
- package/src/Api/Internal/PredicateInternalApi.js +40 -19
- package/src/Api/Internal/RowFormInternalApi.d.ts +22 -0
- package/src/Api/Internal/RowFormInternalApi.js +200 -0
- package/src/Api/Internal/ScheduleInternalApi.d.ts +1 -8
- package/src/Api/Internal/ScheduleInternalApi.js +1 -11
- package/src/Api/Internal/StyledColumnInternalApi.d.ts +1 -1
- package/src/Api/Internal/StyledColumnInternalApi.js +19 -22
- package/src/Api/Internal/SystemStatusInternalApi.d.ts +0 -5
- package/src/Api/Internal/SystemStatusInternalApi.js +3 -11
- package/src/Api/Internal/TeamSharingInternalApi.d.ts +0 -5
- package/src/Api/Internal/TeamSharingInternalApi.js +2 -13
- package/src/Api/Internal/UserInterfaceInternalApi.d.ts +2 -1
- package/src/Api/Internal/UserInterfaceInternalApi.js +11 -0
- package/src/Api/LayoutApi.d.ts +14 -23
- package/src/Api/OptionsApi.d.ts +31 -17
- package/src/Api/PredicateApi.d.ts +1 -0
- package/src/Api/RowFormApi.d.ts +19 -0
- package/src/Api/StatusBarApi.d.ts +1 -1
- package/src/Api/UserInterfaceApi.d.ts +9 -42
- package/src/EnvVars.js +1 -1
- package/src/PredefinedConfig/AdaptableState.d.ts +2 -4
- package/src/PredefinedConfig/AlertState.d.ts +6 -6
- package/src/PredefinedConfig/ChartingState.d.ts +1 -1
- package/src/PredefinedConfig/CommentState.d.ts +2 -3
- package/src/PredefinedConfig/Common/AdaptableAlert.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +37 -7
- package/src/PredefinedConfig/Common/AdaptableColumn.js +5 -6
- package/src/PredefinedConfig/Common/AdaptableColumnContext.d.ts +11 -0
- package/src/PredefinedConfig/Common/AdaptableComparerFunction.d.ts +1 -2
- package/src/PredefinedConfig/Common/AdaptableForm.js +1 -2
- package/src/PredefinedConfig/Common/AdaptableIcon.d.ts +1 -1
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +2 -0
- package/src/PredefinedConfig/Common/AdaptablePredicate.d.ts +3 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +99 -129
- package/src/PredefinedConfig/Common/AdaptableSortState.d.ts +15 -0
- package/src/PredefinedConfig/Common/AggregationColumns.d.ts +11 -5
- package/src/PredefinedConfig/Common/AggregationColumns.js +7 -1
- package/src/PredefinedConfig/Common/BaseContext.d.ts +14 -2
- package/src/PredefinedConfig/Common/CellDataChangedInfo.d.ts +1 -1
- package/src/PredefinedConfig/Common/CellSummary.d.ts +5 -5
- package/src/PredefinedConfig/Common/ColumnFilter.d.ts +7 -15
- package/src/PredefinedConfig/Common/ColumnScope.d.ts +1 -1
- package/src/PredefinedConfig/Common/ColumnSetupInfo.d.ts +8 -0
- package/src/PredefinedConfig/Common/CustomWindowConfig.d.ts +1 -1
- package/src/PredefinedConfig/Common/Enums.d.ts +0 -11
- package/src/PredefinedConfig/Common/Enums.js +0 -13
- package/src/PredefinedConfig/Common/Menu.d.ts +7 -5
- package/src/PredefinedConfig/Common/Menu.js +26 -23
- package/src/PredefinedConfig/Common/ProgressIndicatorConfig.d.ts +1 -1
- package/src/PredefinedConfig/Common/RowDataChangedInfo.d.ts +23 -0
- package/src/PredefinedConfig/Common/RowScope.d.ts +2 -2
- package/src/PredefinedConfig/Common/SpecialColumnSettings.d.ts +2 -1
- package/src/PredefinedConfig/Common/Types.d.ts +0 -4
- package/src/PredefinedConfig/Common/Types.js +2 -2
- package/src/PredefinedConfig/CustomSortState.d.ts +2 -2
- package/src/PredefinedConfig/ExportState.d.ts +70 -15
- package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
- package/src/PredefinedConfig/FormatColumnState.d.ts +1 -1
- package/src/PredefinedConfig/InternalState.d.ts +118 -7
- package/src/PredefinedConfig/LayoutState.d.ts +152 -32
- package/src/PredefinedConfig/PopupState.d.ts +7 -2
- package/src/PredefinedConfig/PredefinedConfig.d.ts +18 -18
- package/src/PredefinedConfig/Selection/GridCell.d.ts +16 -9
- package/src/PredefinedConfig/Selection/GridRow.d.ts +1 -1
- package/src/PredefinedConfig/Selection/SelectedRowInfo.d.ts +1 -1
- package/src/PredefinedConfig/ShortcutState.d.ts +1 -1
- package/src/PredefinedConfig/StatusBarState.d.ts +1 -1
- package/src/PredefinedConfig/StyledColumnState.d.ts +7 -6
- package/src/PredefinedConfig/TeamSharingState.d.ts +2 -2
- package/src/Redux/ActionsReducers/AlertRedux.js +26 -8
- package/src/Redux/ActionsReducers/CalculatedColumnRedux.js +11 -5
- package/src/Redux/ActionsReducers/ChartingRedux.js +41 -14
- package/src/Redux/ActionsReducers/CommentsRedux.js +49 -24
- package/src/Redux/ActionsReducers/CustomSortRedux.js +26 -8
- package/src/Redux/ActionsReducers/DashboardRedux.js +9 -9
- package/src/Redux/ActionsReducers/ExportRedux.d.ts +6 -16
- package/src/Redux/ActionsReducers/ExportRedux.js +17 -20
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +31 -10
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +38 -11
- package/src/Redux/ActionsReducers/FreeTextColumnRedux.js +12 -7
- package/src/Redux/ActionsReducers/InternalRedux.d.ts +349 -0
- package/src/Redux/ActionsReducers/InternalRedux.js +893 -0
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +13 -1
- package/src/Redux/ActionsReducers/LayoutRedux.js +140 -65
- package/src/Redux/ActionsReducers/NamedQueryRedux.js +12 -6
- package/src/Redux/ActionsReducers/NoteRedux.js +11 -6
- package/src/Redux/ActionsReducers/PluginsRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/PluginsRedux.js +1 -1
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +36 -13
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +10 -1
- package/src/Redux/ActionsReducers/PopupRedux.js +63 -6
- package/src/Redux/ActionsReducers/QuickSearchRedux.js +2 -1
- package/src/Redux/ActionsReducers/ScheduleRedux.js +104 -32
- package/src/Redux/ActionsReducers/ShortcutRedux.js +26 -8
- package/src/Redux/ActionsReducers/SmartEditRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/SmartEditRedux.js +1 -1
- package/src/Redux/ActionsReducers/StatusBarRedux.js +4 -1
- package/src/Redux/ActionsReducers/StyledColumnRedux.js +26 -8
- package/src/Redux/ActionsReducers/TeamSharingRedux.js +1 -1
- package/src/Redux/ActionsReducers/ThemeRedux.js +2 -1
- package/src/Redux/ActionsReducers/ToolPanelRedux.js +9 -8
- package/src/Redux/ActionsReducers/utils.js +13 -4
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.d.ts +1 -1
- package/src/Redux/Store/AdaptableReduxLocalStorageEngine.js +8 -27
- package/src/Redux/Store/AdaptableReduxMerger.js +4 -5
- package/src/Redux/Store/AdaptableStore.d.ts +1 -1
- package/src/Redux/Store/AdaptableStore.js +408 -540
- package/src/Strategy/AlertModule.d.ts +10 -5
- package/src/Strategy/AlertModule.js +55 -27
- package/src/Strategy/BulkUpdateModule.d.ts +1 -1
- package/src/Strategy/BulkUpdateModule.js +6 -6
- package/src/Strategy/CalculatedColumnModule.d.ts +12 -11
- package/src/Strategy/CalculatedColumnModule.js +41 -16
- package/src/Strategy/CellSummaryModule.d.ts +18 -11
- package/src/Strategy/CellSummaryModule.js +83 -45
- package/src/Strategy/ChartingModule.d.ts +2 -1
- package/src/Strategy/ChartingModule.js +17 -3
- package/src/Strategy/ColumnFilterModule.d.ts +1 -2
- package/src/Strategy/ColumnFilterModule.js +27 -29
- package/src/Strategy/ColumnInfoModule.d.ts +2 -2
- package/src/Strategy/ColumnInfoModule.js +1 -1
- package/src/Strategy/CommentModule.d.ts +1 -2
- package/src/Strategy/CommentModule.js +18 -14
- package/src/Strategy/CustomSortModule.d.ts +2 -13
- package/src/Strategy/CustomSortModule.js +1 -1
- package/src/Strategy/DashboardModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.d.ts +8 -3
- package/src/Strategy/DataChangeHistoryModule.js +22 -10
- package/src/Strategy/DataSetModule.js +4 -7
- package/src/Strategy/ExportModule.d.ts +5 -17
- package/src/Strategy/ExportModule.js +70 -282
- package/src/Strategy/Fdc3Module.d.ts +1 -1
- package/src/Strategy/Fdc3Module.js +10 -12
- package/src/Strategy/FlashingCellModule.d.ts +12 -9
- package/src/Strategy/FlashingCellModule.js +139 -108
- package/src/Strategy/FormatColumnModule.d.ts +1 -1
- package/src/Strategy/FormatColumnModule.js +5 -5
- package/src/Strategy/FreeTextColumnModule.d.ts +10 -9
- package/src/Strategy/FreeTextColumnModule.js +39 -17
- package/src/Strategy/GridFilterModule.d.ts +3 -1
- package/src/Strategy/GridFilterModule.js +13 -1
- package/src/Strategy/GridInfoModule.d.ts +2 -2
- package/src/Strategy/Interface/ICellDataChangeListenerModule.d.ts +6 -0
- package/src/Strategy/Interface/ICellSummaryModule.d.ts +2 -2
- package/src/Strategy/Interface/{IShortcutModule.d.ts → IKeyDownListenerModule.d.ts} +1 -1
- package/src/Strategy/Interface/IModule.d.ts +4 -0
- package/src/Strategy/Interface/IPlusMinusModule.d.ts +2 -3
- package/src/Strategy/LayoutModule.d.ts +6 -25
- package/src/Strategy/LayoutModule.js +109 -64
- package/src/Strategy/NamedQueryModule.d.ts +2 -15
- package/src/Strategy/NamedQueryModule.js +2 -2
- package/src/Strategy/NoteModule.d.ts +3 -1
- package/src/Strategy/NoteModule.js +12 -7
- package/src/Strategy/PlusMinusModule.d.ts +3 -2
- package/src/Strategy/PlusMinusModule.js +32 -24
- package/src/Strategy/ScheduleModule.js +2 -2
- package/src/Strategy/SettingsPanelModule.d.ts +2 -2
- package/src/Strategy/ShortcutModule.d.ts +3 -2
- package/src/Strategy/ShortcutModule.js +10 -2
- package/src/Strategy/SmartEditModule.d.ts +1 -1
- package/src/Strategy/SmartEditModule.js +10 -6
- package/src/Strategy/StatusBarModule.d.ts +1 -1
- package/src/Strategy/StyledColumnModule.d.ts +1 -1
- package/src/Strategy/StyledColumnModule.js +47 -20
- package/src/Strategy/SystemStatusModule.d.ts +2 -2
- package/src/Strategy/TeamSharingModule.js +9 -9
- package/src/Strategy/Utilities/Alert/getAlertPreviewViewItems.js +1 -2
- package/src/Strategy/Utilities/CustomSort/getCustomSortSortOrderViewItems.d.ts +1 -1
- package/src/Strategy/Utilities/Export/getExportRowsViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnSettingsViewItems.js +4 -5
- package/src/Strategy/Utilities/FormatColumn/getFormatColumnStyleViewItems.d.ts +2 -2
- package/src/Strategy/Utilities/Layout/getLayoutFilterViewItems.js +11 -18
- package/src/Strategy/Utilities/Layout/getLayoutSortViewItems.js +1 -2
- package/src/Strategy/Utilities/Shortcut/getShortcutSettingsViewItems.js +2 -3
- package/src/Utilities/Constants/DocumentationLinkConstants.d.ts +15 -15
- package/src/Utilities/Constants/GeneralConstants.d.ts +31 -85
- package/src/Utilities/Constants/GeneralConstants.js +53 -111
- package/src/Utilities/Constants/ModuleConstants.d.ts +28 -30
- package/src/Utilities/Constants/ModuleConstants.js +28 -31
- package/src/Utilities/Constants/ObjectDefaultConstants.d.ts +7 -0
- package/src/Utilities/Constants/ObjectDefaultConstants.js +6 -0
- package/src/Utilities/Constants/ReduxConstants.d.ts +7 -0
- package/src/Utilities/Constants/ReduxConstants.js +25 -0
- package/src/Utilities/Defaults/DefaultSettingsPanel.d.ts +1 -1
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +5 -4
- package/src/Utilities/ExpressionFunctions/aggregatedBooleanExpressionFunctions.js +2 -3
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.d.ts +2 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +365 -71
- package/src/Utilities/ExpressionFunctions/booleanExpressionFunctions.js +2 -4
- package/src/Utilities/ExpressionFunctions/deepMap.d.ts +1 -0
- package/src/Utilities/ExpressionFunctions/deepMap.js +7 -8
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.d.ts +8 -8
- package/src/Utilities/ExpressionFunctions/expressionFunctionUtils.js +12 -13
- package/src/Utilities/ExpressionFunctions/groupingMap.js +4 -5
- package/src/Utilities/ExpressionFunctions/observableExpressionFunctions.js +13 -17
- package/src/Utilities/ExpressionFunctions/scalarAggregationHelper.js +2 -3
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.d.ts +1 -1
- package/src/Utilities/ExpressionFunctions/scalarExpressionFunctions.js +96 -10
- package/src/Utilities/Extensions/ArrayExtensions.d.ts +5 -4
- package/src/Utilities/Extensions/ArrayExtensions.js +3 -3
- package/src/Utilities/Extensions/NumberExtensions.d.ts +6 -2
- package/src/Utilities/Extensions/NumberExtensions.js +57 -2
- package/src/Utilities/Extensions/ObjectExtensions.js +8 -3
- package/src/Utilities/Extensions/TypeExtensions.d.ts +5 -0
- package/src/Utilities/Helpers/AdaptableHelper.d.ts +4 -4
- package/src/Utilities/Helpers/AdaptableHelper.js +16 -5
- package/src/Utilities/Helpers/FormatHelper.d.ts +1 -1
- package/src/Utilities/Helpers/FormatHelper.js +5 -6
- package/src/Utilities/Helpers/Helper.d.ts +1 -1
- package/src/Utilities/Helpers/Helper.js +19 -33
- package/src/Utilities/Helpers/StyleHelper.js +7 -4
- package/src/Utilities/Interface/Preview.d.ts +1 -1
- package/src/Utilities/MenuItem.d.ts +3 -3
- package/src/Utilities/MenuItem.js +3 -3
- package/src/Utilities/ObjectFactory.d.ts +13 -10
- package/src/Utilities/ObjectFactory.js +63 -32
- package/src/Utilities/Services/AggregatedScalarLiveValue.d.ts +1 -1
- package/src/Utilities/Services/AggregatedScalarLiveValue.js +4 -7
- package/src/Utilities/Services/AlertService.js +4 -4
- package/src/Utilities/Services/{CellPopupService.d.ts → AnnotationsService.d.ts} +7 -3
- package/src/Utilities/Services/{CellPopupService.js → AnnotationsService.js} +45 -31
- package/src/Utilities/Services/CalculatedColumnExpressionService.d.ts +5 -1
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +36 -43
- package/src/Utilities/Services/ChartingService.d.ts +1 -1
- package/src/Utilities/Services/ChartingService.js +22 -12
- package/src/Utilities/Services/DataService.d.ts +7 -7
- package/src/Utilities/Services/DataService.js +23 -18
- package/src/Utilities/Services/Fdc3Service.js +66 -29
- package/src/Utilities/Services/FlashingCellService.d.ts +1 -1
- package/src/Utilities/Services/FlashingCellService.js +2 -2
- package/src/Utilities/Services/Interface/IAlertService.d.ts +7 -7
- package/src/Utilities/Services/Interface/IAlertService.js +2 -2
- package/src/Utilities/Services/Interface/ICalculatedColumnExpressionService.d.ts +5 -1
- package/src/Utilities/Services/Interface/IChartingService.d.ts +1 -1
- package/src/Utilities/Services/Interface/IDataService.d.ts +6 -5
- package/src/Utilities/Services/Interface/IModuleService.d.ts +2 -1
- package/src/Utilities/Services/Interface/IQueryLanguageService.d.ts +4 -4
- package/src/Utilities/Services/LicenseService/index.js +1 -1
- package/src/Utilities/Services/MetamodelService.js +15 -15
- package/src/Utilities/Services/ModuleService.d.ts +4 -1
- package/src/Utilities/Services/ModuleService.js +34 -23
- package/src/Utilities/Services/QueryLanguageService.d.ts +4 -4
- package/src/Utilities/Services/QueryLanguageService.js +79 -59
- package/src/Utilities/Services/{RowEditService.d.ts → RowFormService.d.ts} +2 -2
- package/src/Utilities/Services/RowFormService.js +45 -0
- package/src/Utilities/Services/RowSummaryService.d.ts +3 -3
- package/src/Utilities/Services/RowSummaryService.js +22 -21
- package/src/Utilities/Services/TeamSharingService.js +29 -21
- package/src/Utilities/Services/ThemeService.js +1 -2
- package/src/Utilities/Services/ValidationService.js +30 -14
- package/src/Utilities/adaptableQlUtils.d.ts +1 -0
- package/src/Utilities/adaptableQlUtils.js +31 -4
- package/src/{agGrid → Utilities}/buildSortedColumnStateForLayout.d.ts +2 -2
- package/src/{agGrid → Utilities}/buildSortedColumnStateForLayout.js +39 -28
- package/src/{agGrid → Utilities}/createAgStatusPanelComponent.d.ts +3 -3
- package/src/{agGrid → Utilities}/createAgStatusPanelComponent.js +1 -2
- package/src/Utilities/getExpressionViewItems.d.ts +3 -0
- package/src/{Strategy/Utilities → Utilities}/getExpressionViewItems.js +2 -2
- package/src/Utilities/getObjectTagsViewItems.d.ts +3 -0
- package/src/{Strategy/Utilities → Utilities}/getObjectTagsViewItems.js +9 -8
- package/src/{Strategy/Utilities → Utilities}/getRuleViewItems.d.ts +1 -1
- package/src/Utilities/getRuleViewItems.js +10 -0
- package/src/Utilities/getScopeViewItems.d.ts +3 -0
- package/src/Utilities/isPivotLayout.d.ts +2 -0
- package/src/Utilities/isPivotLayout.js +2 -0
- package/src/Utilities/license/decode.js +1 -1
- package/src/Utilities/logDeprecation.d.ts +3 -3
- package/src/Utilities/logDeprecation.js +2 -2
- package/src/Utilities/runIfNotResolvedIn.js +1 -1
- package/src/{Strategy/Utilities → Utilities}/updateSingleToMultiplePredicates.js +1 -2
- package/src/{agGrid → Utilities}/weightedAverage.d.ts +1 -1
- package/src/{agGrid → Utilities}/weightedAverage.js +2 -3
- package/src/View/AdaptablePopover/index.d.ts +1 -1
- package/src/View/AdaptablePopover/index.js +3 -4
- package/src/View/AdaptableView.js +6 -9
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableConfig.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/AdaptableOptionsForm.js +16 -13
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.d.ts +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +25 -18
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/Components/FormBox.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +25 -11
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +2 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +23 -13
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/FinanceForm/FinanceForm.js +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.d.ts +3 -3
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +12 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +20 -10
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +22 -8
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.d.ts +1 -1
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +1 -5
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/useSelection.js +5 -2
- package/src/View/AdaptableWizardView/Wizard.d.ts +2 -2
- package/src/View/AdaptableWizardView/Wizard.js +24 -7
- package/src/View/AdaptableWizardView/helper.d.ts +1 -1
- package/src/View/AdaptableWizardView/helper.js +20 -11
- package/src/View/AdaptableWizardView/index.js +1 -1
- package/src/View/Alert/ActiveAlertsPanel.js +1 -1
- package/src/View/Alert/ActiveAlertsPanelItemLabel.js +1 -1
- package/src/View/Alert/AlertEmptyView.js +1 -1
- package/src/View/Alert/AlertStatusSubPanel.d.ts +2 -2
- package/src/View/Alert/AlertStatusSubPanel.js +5 -3
- package/src/View/Alert/AlertViewPanel.d.ts +7 -5
- package/src/View/Alert/AlertViewPanel.js +4 -4
- package/src/View/Alert/AlertsPanel.js +1 -2
- package/src/View/Alert/Utilities/getAlertType.js +7 -8
- package/src/View/Alert/Utilities/getAvailablePredicates.js +1 -8
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.d.ts +2 -1
- package/src/View/Alert/Utilities/getDefaultAlertDefinition.js +5 -6
- package/src/View/Alert/Utilities/mapAlertDefinition.js +9 -10
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.d.ts +4 -4
- package/src/View/Alert/Wizard/AlertBehaviourWizardSection.js +7 -1
- package/src/View/Alert/Wizard/AlertButtonsEditor.d.ts +2 -2
- package/src/View/Alert/Wizard/AlertButtonsEditor.js +77 -52
- package/src/View/Alert/Wizard/AlertMessageWizardSection.d.ts +3 -3
- package/src/View/Alert/Wizard/AlertMessageWizardSection.js +14 -5
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.d.ts +2 -2
- package/src/View/Alert/Wizard/AlertNotificationWizardSection.js +38 -20
- package/src/View/Alert/Wizard/AlertRulesWizardSection.d.ts +4 -4
- package/src/View/Alert/Wizard/AlertRulesWizardSection.js +20 -11
- package/src/View/Alert/Wizard/AlertScopeWizardSection.d.ts +2 -2
- package/src/View/Alert/Wizard/AlertScopeWizardSection.js +1 -1
- package/src/View/Alert/Wizard/AlertTypeWizardSection.d.ts +3 -3
- package/src/View/Alert/Wizard/AlertWizard.d.ts +2 -2
- package/src/View/Alert/Wizard/AlertWizard.js +8 -10
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.d.ts +2 -2
- package/src/View/Alert/Wizard/BaseAlertScopeWizardSection.js +1 -1
- package/src/View/Alert/Wizard/isValidAlertRules.js +1 -2
- package/src/View/BulkUpdate/BulkUpdatePopup.d.ts +7 -5
- package/src/View/BulkUpdate/BulkUpdatePopup.js +12 -13
- package/src/View/BulkUpdate/BulkUpdateViewPanel.d.ts +7 -6
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +11 -14
- package/src/View/CalculatedColumn/CalculatedColumnSummary.d.ts +6 -3
- package/src/View/CalculatedColumn/Utilities/getCalculatedColumnSettingsTags.js +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.d.ts +3 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnDefinitionWizardSection.js +17 -7
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.d.ts +3 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +16 -5
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.d.ts +3 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +28 -14
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnTypeSection.d.ts +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.d.ts +2 -2
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnWizard.js +13 -10
- package/src/View/CalculatedColumn/utils.js +1 -2
- package/src/View/CellSummary/CellSummaryDetails.d.ts +3 -3
- package/src/View/CellSummary/CellSummaryDetails.js +5 -5
- package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -2
- package/src/View/CellSummary/CellSummaryPopup.d.ts +8 -6
- package/src/View/CellSummary/CellSummaryPopup.js +5 -6
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.d.ts +2 -2
- package/src/View/CellSummary/CellSummaryStatusPanel.js +4 -5
- package/src/View/CellSummary/CellSummaryViewPanel.d.ts +9 -8
- package/src/View/CellSummary/CellSummaryViewPanel.js +9 -13
- package/src/View/Charting/ChartingWizard/AgChargingWizard/AgChargingWizard.js +1 -2
- package/src/View/Charting/ChartingWizard/AgChargingWizard/PreviewChartSection.js +6 -3
- package/src/View/Charting/ChartingWizard/AgChargingWizard/SettingsSection.js +33 -5
- package/src/View/Charting/ChartingWizard/ChartingWizard.js +3 -4
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/ExternalChartingWizard.js +2 -4
- package/src/View/Charting/ChartingWizard/ExternalChartingWizard/SettingsSection.js +4 -1
- package/src/View/Charting/ShowChartButton.js +18 -17
- package/src/View/Charting/useAgChartState.js +6 -7
- package/src/View/Charting/useChartingElements.d.ts +6 -6
- package/src/View/Charting/useChartingElements.js +4 -5
- package/src/View/ColumnInfo/ColumnInfo.js +144 -98
- package/src/View/ColumnInfo/ColumnInfoPopup.js +1 -2
- package/src/View/Comments/CommentsEditor.js +23 -23
- package/src/View/Comments/CommentsPopup.js +3 -4
- package/src/View/Components/AdaptableButton/index.js +1 -1
- package/src/View/Components/AdaptableDateInput/index.d.ts +4 -2
- package/src/View/Components/AdaptableDateInput/index.js +24 -18
- package/src/View/Components/AdaptableIconComponent/index.js +1 -1
- package/src/View/Components/AdaptableIconSelector/index.js +3 -4
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.d.ts +3 -2
- package/src/View/Components/AdaptableInput/AdaptableDateInlineInput.js +4 -7
- package/src/View/Components/AdaptableInput/index.d.ts +5 -3
- package/src/View/Components/AdaptableInput/index.js +3 -4
- package/src/View/Components/AdaptableObjectCollection/index.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +10 -12
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +18 -28
- package/src/View/Components/Badge/index.js +1 -1
- package/src/View/Components/Buttons/ButtonApply.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonApply.js +1 -1
- package/src/View/Components/Buttons/ButtonBase/index.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonBase/index.js +1 -1
- package/src/View/Components/Buttons/ButtonClear.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonClear.js +1 -1
- package/src/View/Components/Buttons/ButtonClone.d.ts +2 -2
- package/src/View/Components/Buttons/ButtonClone.js +1 -1
- package/src/View/Components/Buttons/ButtonClose.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonClose.js +1 -1
- package/src/View/Components/Buttons/ButtonConfigure.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonConfigure.js +1 -1
- package/src/View/Components/Buttons/ButtonDelete.d.ts +3 -8
- package/src/View/Components/Buttons/ButtonDelete.js +17 -29
- package/src/View/Components/Buttons/ButtonEdit.js +1 -2
- package/src/View/Components/Buttons/ButtonExpand.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonExpand.js +1 -1
- package/src/View/Components/Buttons/ButtonExport.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonExport.js +1 -1
- package/src/View/Components/Buttons/ButtonFunction.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonFunction.js +1 -1
- package/src/View/Components/Buttons/ButtonGeneral.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonGeneral.js +1 -1
- package/src/View/Components/Buttons/ButtonInfo.js +1 -1
- package/src/View/Components/Buttons/ButtonInvalid.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonInvalid.js +1 -1
- package/src/View/Components/Buttons/ButtonLogin.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonLogin.js +1 -1
- package/src/View/Components/Buttons/ButtonLogout.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonLogout.js +1 -1
- package/src/View/Components/Buttons/ButtonMaximise.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonMaximise.js +1 -1
- package/src/View/Components/Buttons/ButtonMinimise.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonMinimise.js +1 -1
- package/src/View/Components/Buttons/ButtonNew.d.ts +2 -2
- package/src/View/Components/Buttons/ButtonNew.js +1 -1
- package/src/View/Components/Buttons/ButtonNewPage.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonNewPage.js +2 -2
- package/src/View/Components/Buttons/ButtonOpen.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonOpen.js +1 -1
- package/src/View/Components/Buttons/ButtonPause.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonPause.js +13 -15
- package/src/View/Components/Buttons/ButtonPlay.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonPlay.js +3 -5
- package/src/View/Components/Buttons/ButtonPreviewDelete.d.ts +2 -2
- package/src/View/Components/Buttons/ButtonPreviewDelete.js +1 -1
- package/src/View/Components/Buttons/ButtonSave.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonSave.js +1 -1
- package/src/View/Components/Buttons/ButtonSchedule.d.ts +1 -3
- package/src/View/Components/Buttons/ButtonSchedule.js +3 -5
- package/src/View/Components/Buttons/ButtonShare.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonShare.js +2 -4
- package/src/View/Components/Buttons/ButtonShow.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonShow.js +1 -1
- package/src/View/Components/Buttons/ButtonShowChart.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonShowChart.js +1 -1
- package/src/View/Components/Buttons/ButtonStop.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonStop.js +1 -1
- package/src/View/Components/Buttons/ButtonUndo.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonUndo.js +1 -1
- package/src/View/Components/Buttons/ButtonUnsuspend.d.ts +1 -1
- package/src/View/Components/Buttons/ButtonUnsuspend.js +1 -1
- package/src/View/Components/Buttons/EntityListActionButtons.d.ts +1 -1
- package/src/View/Components/CellPopup/index.js +1 -2
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.d.ts +12 -0
- package/src/View/Components/ColumnFilter/AdaptableColumnFilter.js +11 -0
- package/src/View/Components/ColumnFilter/AdaptableFloatingFilter.d.ts +9 -0
- package/src/View/Components/ColumnFilter/AdaptableFloatingFilter.js +31 -0
- package/src/View/Components/ColumnFilter/ColumnFilter.d.ts +13 -0
- package/src/View/Components/ColumnFilter/ColumnFilter.js +144 -0
- package/src/View/Components/ColumnFilter/ColumnFilterWindow.d.ts +3 -0
- package/src/View/Components/ColumnFilter/ColumnFilterWindow.js +32 -0
- package/src/View/Components/ColumnFilter/FloatingFilter.d.ts +12 -0
- package/src/View/Components/ColumnFilter/FloatingFilter.js +84 -0
- package/src/View/Components/ColumnFilter/LayoutColumnFilter.d.ts +6 -0
- package/src/View/Components/ColumnFilter/LayoutColumnFilter.js +25 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterInput.d.ts +27 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterInput.js +117 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.d.ts +13 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterInputList.js +56 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterMenu.d.ts +12 -0
- package/src/View/Components/ColumnFilter/components/ColumnFilterMenu.js +17 -0
- package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.d.ts +13 -0
- package/src/View/Components/ColumnFilter/components/FloatingFilterInputList.js +58 -0
- package/src/View/Components/ColumnFilter/components/FloatingFilterValues.d.ts +44 -0
- package/src/View/Components/ColumnFilter/components/FloatingFilterValues.js +108 -0
- package/src/View/Components/ColumnFilter/hooks.d.ts +2 -0
- package/src/View/Components/ColumnFilter/hooks.js +10 -0
- package/src/View/Components/ColumnFilter/useAdaptableFilterWrapper.d.ts +12 -0
- package/src/View/Components/ColumnFilter/useAdaptableFilterWrapper.js +62 -0
- package/src/View/Components/ColumnFilter/utils.d.ts +8 -0
- package/src/View/Components/ColumnFilter/utils.js +118 -0
- package/src/View/Components/ColumnSelector/index.d.ts +2 -2
- package/src/View/Components/ColumnSelector/index.js +1 -3
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicateEditor.js +18 -16
- package/src/View/Components/EntityRulesEditor/EntityRulePredicatesEditor/EntityRulePredicatesEditor.js +23 -17
- package/src/View/Components/EntityRulesEditor/Utilities.js +11 -12
- package/src/View/Components/EntityRulesEditor/index.d.ts +2 -2
- package/src/View/Components/EntityRulesEditor/index.js +47 -28
- package/src/View/Components/ExpressionWizard.d.ts +1 -1
- package/src/View/Components/ExpressionWizard.js +2 -3
- package/src/View/Components/ExternalRenderer.js +7 -15
- package/src/View/Components/FilterForm/ListBoxFilterForm.d.ts +8 -15
- package/src/View/Components/FilterForm/ListBoxFilterForm.js +27 -73
- package/src/View/Components/FilterForm/ListBoxMenu.d.ts +1 -1
- package/src/View/Components/FilterForm/Waiting.js +2 -3
- package/src/View/Components/Forms/AdaptableFormControlTextClear.d.ts +2 -1
- package/src/View/Components/Forms/AdaptableFormControlTextClear.js +6 -1
- package/src/View/Components/ListBox/DualListBoxEditor.d.ts +1 -1
- package/src/View/Components/ListBox/DualListBoxEditor.js +4 -4
- package/src/View/Components/ListBox/ListBoxFilterSortComponent.d.ts +1 -1
- package/src/View/Components/ModuleValueSelector/index.d.ts +2 -2
- package/src/View/Components/ModuleValueSelector/index.js +4 -5
- package/src/View/Components/NewScopeComponent.d.ts +2 -2
- package/src/View/Components/NewScopeComponent.js +22 -27
- package/src/View/Components/Panels/PanelDashboard/index.d.ts +3 -3
- package/src/View/Components/Panels/PanelDashboard/index.js +4 -4
- package/src/View/Components/Panels/PanelFooter.js +2 -3
- package/src/View/Components/Panels/PanelToolPanel/index.d.ts +1 -1
- package/src/View/Components/Panels/PanelToolPanel/index.js +25 -3
- package/src/View/Components/Panels/PanelWithButton.d.ts +1 -3
- package/src/View/Components/Panels/PanelWithButton.js +15 -21
- package/src/View/Components/Panels/PanelWithImage.js +6 -3
- package/src/View/Components/Panels/PanelWithRow.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithTwoButtons.d.ts +1 -1
- package/src/View/Components/Panels/PanelWithTwoButtons.js +1 -1
- package/src/View/Components/Panels/ToolPanelSettingsPanel.d.ts +1 -1
- package/src/View/Components/Popups/AdaptableLoadingScreen.d.ts +2 -2
- package/src/View/Components/Popups/AdaptableLoadingScreen.js +2 -2
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopup.js +7 -8
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupBody.js +2 -3
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +13 -12
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupModuleView.js +36 -34
- package/src/View/Components/Popups/AdaptablePopup/Navigation.js +7 -7
- package/src/View/Components/Popups/AdaptablePopup/TopBar.js +1 -2
- package/src/View/Components/Popups/AdaptablePopup/useMenuItems.js +9 -11
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +2 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.js +7 -5
- package/src/View/Components/Popups/AdaptablePopupConfirmation.js +3 -3
- package/src/View/Components/Popups/AdaptablePopupPrompt.js +1 -2
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.d.ts +2 -2
- package/src/View/Components/Popups/AdaptablePopupTeamSharing.js +3 -3
- package/src/View/Components/Popups/FormPopups/FormPopups.js +6 -3
- package/src/View/Components/Popups/GridCellPopup/GridCellPopup.js +13 -14
- package/src/View/Components/Popups/WindowPopups/WindowPopups.d.ts +1 -1
- package/src/View/Components/Popups/WindowPopups/WindowPopups.js +22 -11
- package/src/View/Components/Popups/WindowPopups/windowFactory.d.ts +1 -1
- package/src/View/Components/Popups/WindowPopups/windowFactory.js +3 -3
- package/src/View/Components/PredicateEditor/PredicateEditor.js +46 -29
- package/src/View/Components/PreviewResultsPanel.js +23 -32
- package/src/View/Components/RangesComponent.d.ts +1 -1
- package/src/View/Components/RangesComponent.js +21 -10
- package/src/View/Components/ReorderDraggable/index.d.ts +12 -0
- package/src/View/Components/ReorderDraggable/index.js +40 -0
- package/src/View/Components/Selectors/{ColumnValueSelector.d.ts → BulkUpdateValueSelector.d.ts} +2 -2
- package/src/View/Components/Selectors/{ColumnValueSelector.js → BulkUpdateValueSelector.js} +30 -12
- package/src/View/Components/Selectors/ColumnSelector.d.ts +3 -2
- package/src/View/Components/Selectors/ColumnSelector.js +9 -7
- package/src/View/Components/Selectors/ColumnSelectorOld.d.ts +1 -1
- package/src/View/Components/Selectors/ColumnSelectorOld.js +1 -2
- package/src/View/Components/Selectors/FieldSelector.js +5 -9
- package/src/View/Components/Selectors/PermittedValuesSelector.d.ts +13 -2
- package/src/View/Components/Selectors/PermittedValuesSelector.js +37 -8
- package/src/View/Components/StyleComponent.d.ts +1 -1
- package/src/View/Components/StyleComponent.js +3 -4
- package/src/View/Components/TagValueSelector/index.d.ts +3 -3
- package/src/View/Components/TagValueSelector/index.js +1 -2
- package/src/View/Components/ToolPanel/AdaptableToolPanel.d.ts +11 -8
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +15 -27
- package/src/View/Components/ToolPanel/CustomToolPanelContent.d.ts +2 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +19 -8
- package/src/View/Components/ToolPanel/ToolPanelPopup.d.ts +7 -4
- package/src/View/Components/ToolPanel/ToolPanelPopup.js +7 -9
- package/src/View/Components/ToolPanel/ToolPanelWrapper.d.ts +2 -2
- package/src/View/Components/ToolPanel/ToolPanelWrapper.js +1 -2
- package/src/View/Components/ValueSelector/index.d.ts +20 -2
- package/src/View/Components/ValueSelector/index.js +52 -39
- package/src/View/Components/WizardSummaryPage.d.ts +2 -2
- package/src/View/Components/WizardSummaryPage.js +4 -4
- package/src/View/CustomSort/CustomSortSummary.d.ts +3 -1
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.d.ts +3 -3
- package/src/View/CustomSort/Wizard/CustomSortColumnWizardSection.js +6 -2
- package/src/View/CustomSort/Wizard/CustomSortSummaryWizard.js +1 -1
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.d.ts +3 -3
- package/src/View/CustomSort/Wizard/CustomSortValuesWizardSection.js +21 -5
- package/src/View/CustomSort/Wizard/CustomSortWizard.d.ts +2 -2
- package/src/View/CustomSort/Wizard/CustomSortWizard.js +5 -7
- package/src/View/Dashboard/CustomDashboardButton.d.ts +2 -2
- package/src/View/Dashboard/CustomDashboardButton.js +6 -4
- package/src/View/Dashboard/CustomToolbar.d.ts +3 -3
- package/src/View/Dashboard/CustomToolbar.js +13 -20
- package/src/View/Dashboard/Dashboard.d.ts +8 -6
- package/src/View/Dashboard/Dashboard.js +13 -10
- package/src/View/Dashboard/DashboardPopup.d.ts +6 -4
- package/src/View/Dashboard/DashboardPopup.js +5 -5
- package/src/View/Dashboard/DashboardToolbarFactory.js +1 -1
- package/src/View/Dashboard/DashboardViewPanel.d.ts +4 -2
- package/src/View/Dashboard/ModuleToolbarWrapper.d.ts +1 -1
- package/src/View/Dashboard/ModuleToolbarWrapper.js +1 -1
- package/src/View/Dashboard/PinnedDashboard.js +1 -2
- package/src/View/Dashboard/PinnedToolbarsSelector.js +1 -1
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.d.ts +2 -2
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +31 -38
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.d.ts +10 -8
- package/src/View/DataChangeHistory/DataChangeHistoryPopup.js +9 -9
- package/src/View/DataChangeHistory/DataChangeHistoryViewPanel.js +10 -11
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +1 -1
- package/src/View/DataChangeHistory/buildActionColumnButton.js +9 -4
- package/src/View/DataImport/DataImportPopup.js +4 -6
- package/src/View/DataImport/DataImportWizard/DataImportWizard.d.ts +2 -2
- package/src/View/DataImport/DataImportWizard/DataImportWizard.js +26 -23
- package/src/View/DataImport/DataImportWizard/sections/ColumnsSection.js +27 -14
- package/src/View/DataImport/DataImportWizard/sections/DataPreview.js +14 -13
- package/src/View/DataImport/systemFileHandlers.js +1 -2
- package/src/View/DataSet/DataSetSelector.js +2 -2
- package/src/View/DataSet/DataSetViewPanel.d.ts +9 -4
- package/src/View/DataSet/DataSetViewPanel.js +4 -5
- package/src/View/Export/ExportDestinationPicker.d.ts +9 -0
- package/src/View/Export/ExportDestinationPicker.js +22 -0
- package/src/View/Export/ExportStatusBar.d.ts +2 -0
- package/src/View/Export/ExportStatusBar.js +16 -0
- package/src/View/Export/ExportViewPanel.d.ts +2 -26
- package/src/View/Export/ExportViewPanel.js +39 -127
- package/src/View/Export/ReportFormatSelector.d.ts +10 -0
- package/src/View/Export/ReportFormatSelector.js +22 -0
- package/src/View/Export/{ReportExportDropdown.d.ts → ReportListItem.d.ts} +1 -1
- package/src/View/Export/ReportListItem.js +13 -0
- package/src/View/Export/ReportNameSelector.d.ts +10 -0
- package/src/View/Export/ReportNameSelector.js +20 -0
- package/src/View/Export/Wizard/NewReportWizard.d.ts +2 -2
- package/src/View/Export/Wizard/NewReportWizard.js +2 -3
- package/src/View/Export/Wizard/ReportColumnTypeWizard.d.ts +1 -1
- package/src/View/Export/Wizard/ReportColumnsWizardSection.d.ts +3 -3
- package/src/View/Export/Wizard/ReportColumnsWizardSection.js +5 -2
- package/src/View/Export/Wizard/ReportNameWizardSection.d.ts +3 -3
- package/src/View/Export/Wizard/ReportNameWizardSection.js +5 -2
- package/src/View/Export/Wizard/ReportRowTypeWizard.d.ts +1 -1
- package/src/View/Export/Wizard/ReportRowsWizardSection.d.ts +3 -3
- package/src/View/Export/Wizard/ReportRowsWizardSection.js +11 -7
- package/src/View/Filter/ActiveFiltersPanel.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +4 -1
- package/src/View/Filter/FilterSummary.js +3 -3
- package/src/View/Filter/FilterViewPanel.d.ts +9 -5
- package/src/View/Filter/FilterViewPanel.js +15 -21
- package/src/View/FlashingCell/FlashingCellStyle.js +2 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.d.ts +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellRulesWizardSection.js +1 -2
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.d.ts +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellScopeWizardSection.js +1 -1
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.d.ts +3 -3
- package/src/View/FlashingCell/Wizard/FlashingCellSettingsWizardSection.js +15 -15
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.d.ts +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellStyleWizardSection.js +6 -8
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.d.ts +2 -2
- package/src/View/FlashingCell/Wizard/FlashingCellWizard.js +3 -4
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -2
- package/src/View/FormatColumn/FormatColumnSummary.d.ts +3 -1
- package/src/View/FormatColumn/FormatColumnSummary.js +1 -2
- package/src/View/FormatColumn/MoveFormatColumn.js +1 -1
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.d.ts +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +37 -45
- package/src/View/FormatColumn/Wizard/FormatColumnRuleWizardSection.d.ts +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.d.ts +3 -3
- package/src/View/FormatColumn/Wizard/FormatColumnScopeWizardSection.js +2 -3
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.d.ts +3 -3
- package/src/View/FormatColumn/Wizard/FormatColumnSettingsWizardSection.js +29 -13
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.d.ts +4 -4
- package/src/View/FormatColumn/Wizard/FormatColumnStyleWizardSection.js +8 -5
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.d.ts +2 -2
- package/src/View/FormatColumn/Wizard/FormatColumnWizard.js +10 -13
- package/src/View/FreeTextColumn/FreeTextColumnSummary.d.ts +3 -1
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.d.ts +3 -12
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +48 -24
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.d.ts +2 -2
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnWizard.js +2 -4
- package/src/View/GridFilter/GridFilterExpressionEditor.d.ts +2 -2
- package/src/View/GridFilter/GridFilterExpressionEditor.js +3 -4
- package/src/View/GridFilter/GridFilterPopup.d.ts +2 -2
- package/src/View/GridFilter/GridFilterPopup.js +2 -2
- package/src/View/GridFilter/GridFilterStatusbar.js +2 -3
- package/src/View/GridFilter/GridFilterViewPanel.d.ts +2 -2
- package/src/View/GridFilter/GridFilterViewPanel.js +2 -2
- package/src/View/GridFilter/NamedQuerySelector.d.ts +3 -3
- package/src/View/GridFilter/NamedQuerySelector.js +1 -2
- package/src/View/GridFilter/useGridFilterExpressionEditor.js +19 -21
- package/src/View/GridFilter/useGridFilterOptionsForExpressionEditor.js +1 -1
- package/src/View/GridInfo/GridInfoPopup/AdaptableObjectsSummary.js +3 -4
- package/src/View/GridInfo/GridInfoPopup/AdaptableOptionsComponent.d.ts +2 -2
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.d.ts +2 -2
- package/src/View/GridInfo/GridInfoPopup/GridInfoPopup.js +21 -15
- package/src/View/KeyHint.d.ts +2 -2
- package/src/View/KeyHint.js +1 -1
- package/src/View/Layout/EditCurrentLayoutButton.js +5 -1
- package/src/View/Layout/LayoutCloneButton.js +3 -2
- package/src/View/Layout/LayoutRadioSelector.js +1 -1
- package/src/View/Layout/LayoutViewPanel.d.ts +18 -10
- package/src/View/Layout/LayoutViewPanel.js +65 -40
- package/src/View/Layout/PivotDetailsPopoup.js +23 -7
- package/src/View/Layout/TransposedPopup.d.ts +2 -2
- package/src/View/Layout/TransposedPopup.js +8 -14
- package/src/View/Layout/Wizard/Components/ColumnLabels.d.ts +1 -1
- package/src/View/Layout/Wizard/Components/ColumnLabels.js +2 -3
- package/src/View/Layout/Wizard/LayoutWizard.js +115 -32
- package/src/View/Layout/Wizard/getGridFilterPreview.d.ts +2 -2
- package/src/View/Layout/Wizard/getGridFilterPreview.js +1 -2
- package/src/View/Layout/Wizard/sections/AggregationsSection.d.ts +2 -2
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +78 -37
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +213 -52
- package/src/View/Layout/Wizard/sections/FilterSection.js +28 -30
- package/src/View/Layout/Wizard/sections/GridFilterSection.js +12 -14
- package/src/View/Layout/Wizard/sections/PivotAggregationsSection.d.ts +9 -0
- package/src/View/Layout/Wizard/sections/PivotAggregationsSection.js +186 -0
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.d.ts +2 -2
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +7 -7
- package/src/View/Layout/Wizard/sections/PivotRowGroupingSection.d.ts +8 -0
- package/src/View/Layout/Wizard/sections/PivotRowGroupingSection.js +41 -0
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +78 -34
- package/src/View/Layout/Wizard/sections/RowSummarySection.d.ts +4 -4
- package/src/View/Layout/Wizard/sections/RowSummarySection.js +74 -39
- package/src/View/Layout/Wizard/sections/SettingsSection.js +12 -10
- package/src/View/Layout/Wizard/sections/SortSection.js +19 -15
- package/src/View/Layout/Wizard/sections/Utilities.js +1 -1
- package/src/View/License/LicenseWatermark.js +1 -1
- package/src/View/NamedQuery/EditCurrentQueryButton.d.ts +2 -2
- package/src/View/NamedQuery/EditCurrentQueryButton.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.d.ts +3 -3
- package/src/View/NamedQuery/Wizard/NamedQueryExpressionWizardSection.js +1 -1
- package/src/View/NamedQuery/Wizard/NamedQuerySettingsWizardSection.d.ts +3 -3
- package/src/View/NamedQuery/Wizard/NamedQuerySettingsWizardSection.js +4 -1
- package/src/View/NamedQuery/Wizard/NamedQueryWizard.d.ts +2 -2
- package/src/View/NamedQuery/Wizard/NamedQueryWizard.js +1 -2
- package/src/View/Note/NoteEditor.js +2 -4
- package/src/View/PlusMinus/MovePlusMinus.js +1 -1
- package/src/View/PlusMinus/PlusMinusSummary.d.ts +3 -1
- package/src/View/PlusMinus/PlusMinusSummary.js +1 -2
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.d.ts +3 -3
- package/src/View/PlusMinus/Wizard/PlusMinusRuleWizardSection.js +4 -2
- package/src/View/PlusMinus/Wizard/PlusMinusScopeWizardSection.js +9 -3
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.js +7 -7
- package/src/View/PlusMinus/Wizard/PlusMinusWizard.js +9 -8
- package/src/View/QuickSearch/FloatingQuickSearch/FloatingQuickSearch.js +2 -2
- package/src/View/QuickSearch/QuickSearchInput.js +1 -2
- package/src/View/QuickSearch/QuickSearchPopup.d.ts +4 -2
- package/src/View/QuickSearch/QuickSearchPopup.js +2 -2
- package/src/View/QuickSearch/useQuickSearchDebounced.js +1 -2
- package/src/View/Schedule/Wizard/ScheduleScheduleWizard.js +40 -20
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsIPushPull.js +28 -8
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsOpenFin.js +8 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReminder.js +29 -14
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.d.ts +2 -3
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsReport.js +16 -10
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsSummary.js +13 -13
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/ScheduleSettingsWizard.js +7 -7
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.d.ts +1 -1
- package/src/View/Schedule/Wizard/ScheduleSettingsWizard/isSettingsValid.js +9 -10
- package/src/View/Schedule/Wizard/ScheduleWizard.js +3 -4
- package/src/View/Shortcut/Wizard/ShortcutScopeWizardSection.js +9 -3
- package/src/View/Shortcut/Wizard/ShortcutSettingsWizard.js +15 -8
- package/src/View/Shortcut/Wizard/ShortcutWizard.js +4 -8
- package/src/View/SmartEdit/SmartEditPopup.d.ts +9 -6
- package/src/View/SmartEdit/SmartEditPopup.js +9 -9
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +8 -7
- package/src/View/SmartEdit/SmartEditViewPanel.js +11 -13
- package/src/View/SpecialColumnSettingsWizardStep.js +20 -19
- package/src/View/StateManagement/components/ClearButton.js +1 -1
- package/src/View/StateManagement/components/ExportDropdown.js +1 -1
- package/src/View/StateManagement/components/LoadButton.js +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.d.ts +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.js +12 -12
- package/src/View/StatusBar/StatusBarPanel.d.ts +1 -1
- package/src/View/StatusBar/StatusBarPanel.js +3 -5
- package/src/View/StatusBar/StatusBarPopup.js +4 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnBadgeSection.js +47 -19
- package/src/View/StyledColumn/Wizard/StyledColumnSparklineSettingsSection.js +53 -116
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.d.ts +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizard.js +12 -15
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.d.ts +3 -3
- package/src/View/StyledColumn/Wizard/StyledColumnWizardColumnSection.js +14 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.d.ts +3 -3
- package/src/View/StyledColumn/Wizard/StyledColumnWizardSettingsSection.js +36 -11
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/Components/StyledColumnBadgePreview.js +9 -5
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.d.ts +2 -2
- package/src/View/StyledColumn/Wizard/StyledColumnWizardStyleSection/StyledColumnWizardStyleSection.js +74 -30
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.d.ts +1 -1
- package/src/View/StyledColumn/Wizard/StyledColumnWizardTypeSection.js +3 -1
- package/src/View/SystemStatus/SystemStatusEntityRow.js +1 -2
- package/src/View/SystemStatus/SystemStatusPopup.d.ts +6 -4
- package/src/View/SystemStatus/SystemStatusPopup.js +4 -4
- package/src/View/SystemStatus/SystemStatusStatusBarContent.js +1 -1
- package/src/View/SystemStatus/SystemStatusViewPanel.d.ts +7 -2
- package/src/View/SystemStatus/SystemStatusViewPanel.js +2 -2
- package/src/View/SystemStatus/Utilities/getStatusItemStyle.js +1 -2
- package/src/View/TeamSharing/SharedEntityDependencies.js +4 -2
- package/src/View/TeamSharing/SharedEntityObjectView.d.ts +2 -3
- package/src/View/TeamSharing/SharedEntityObjectView.js +4 -5
- package/src/View/Theme/ThemeEditor.js +29 -13
- package/src/View/Theme/ThemePopup.d.ts +4 -2
- package/src/View/Theme/ThemeStatusbar.d.ts +2 -2
- package/src/View/Theme/ThemeViewPanel.d.ts +2 -2
- package/src/View/Theme/VariantSelector.js +1 -2
- package/src/View/UIHelper.d.ts +2 -2
- package/src/View/UIHelper.js +10 -11
- package/src/View/Wizard/AdaptableWizard.d.ts +2 -2
- package/src/View/Wizard/AdaptableWizard.js +8 -3
- package/src/View/Wizard/ObjectTagsWizardSection.d.ts +3 -3
- package/src/View/Wizard/ObjectTagsWizardSection.js +2 -3
- package/src/View/Wizard/OnePageAdaptableWizard.d.ts +2 -2
- package/src/View/Wizard/OnePageAdaptableWizard.js +30 -11
- package/src/View/Wizard/OnePageWizards.d.ts +1 -1
- package/src/View/Wizard/OnePageWizards.js +40 -34
- package/src/View/Wizard/TypeRadio.d.ts +5 -4
- package/src/View/Wizard/TypeRadio.js +1 -1
- package/src/View/Wizard/useKeyboardNavigation.d.ts +1 -1
- package/src/View/renderWithAdaptableContext.d.ts +2 -1
- package/src/agGrid/Adaptable.d.ts +1 -1
- package/src/agGrid/Adaptable.js +12 -11
- package/src/agGrid/AdaptableAgGrid.d.ts +63 -78
- package/src/agGrid/AdaptableAgGrid.js +822 -1589
- package/src/{AdaptableOptions → agGrid}/AdaptableFrameworkComponent.d.ts +1 -7
- package/src/agGrid/AdaptableLogger.d.ts +1 -0
- package/src/agGrid/AdaptableLogger.js +19 -11
- package/src/agGrid/AgGridAdapter.d.ts +25 -10
- package/src/agGrid/AgGridAdapter.js +329 -203
- package/src/agGrid/AgGridColumnAdapter.d.ts +6 -4
- package/src/agGrid/AgGridColumnAdapter.js +209 -142
- package/src/agGrid/AgGridExportAdapter.d.ts +52 -0
- package/src/agGrid/AgGridExportAdapter.js +773 -0
- package/src/agGrid/AgGridMenuAdapter.d.ts +5 -6
- package/src/agGrid/AgGridMenuAdapter.js +116 -104
- package/src/agGrid/AgGridOptionsService.d.ts +1 -1
- package/src/agGrid/AgGridOptionsService.js +1 -1
- package/src/agGrid/FilterWrapper.js +16 -14
- package/src/agGrid/FloatingFilterWrapper.js +7 -7
- package/src/agGrid/agGridDataTypeDefinitions.d.ts +8 -0
- package/src/agGrid/agGridDataTypeDefinitions.js +74 -0
- package/src/agGrid/agGridModules.d.ts +3 -0
- package/src/agGrid/agGridModules.js +15 -0
- package/src/agGrid/{ActionColumnRenderer.d.ts → cellRenderers/ActionColumnRenderer.d.ts} +3 -3
- package/src/agGrid/{ActionColumnRenderer.js → cellRenderers/ActionColumnRenderer.js} +35 -27
- package/src/agGrid/cellRenderers/BadgeRenderer.d.ts +4 -0
- package/src/agGrid/{BadgeRenderer.js → cellRenderers/BadgeRenderer.js} +28 -19
- package/src/agGrid/cellRenderers/PercentBarRenderer.d.ts +4 -0
- package/src/agGrid/{PercentBarRenderer.js → cellRenderers/PercentBarRenderer.js} +2 -3
- package/src/agGrid/editors/AdaptableDateEditor/InternalAdaptableDateEditor.js +11 -8
- package/src/agGrid/editors/AdaptableDateEditor/index.d.ts +2 -2
- package/src/agGrid/editors/AdaptableDateEditor/index.js +24 -20
- package/src/agGrid/editors/AdaptableNumberEditor/InternalAdaptableNumberEditor.js +17 -7
- package/src/agGrid/editors/AdaptableNumberEditor/index.d.ts +2 -2
- package/src/agGrid/editors/AdaptableNumberEditor/index.js +20 -18
- package/src/agGrid/editors/AdaptablePercentageEditor/InternalAdaptablePercentageEditor.js +10 -7
- package/src/agGrid/editors/AdaptablePercentageEditor/index.d.ts +1 -1
- package/src/agGrid/editors/AdaptablePercentageEditor/index.js +23 -22
- package/src/components/Accordion.js +2 -4
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.d.ts +3 -3
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +22 -28
- package/src/components/CheckBox/index.d.ts +2 -2
- package/src/components/CheckBox/index.js +5 -7
- package/src/components/CodeBlock/index.d.ts +2 -2
- package/src/components/CodeBlock/index.js +1 -1
- package/src/components/ColorPicker/ColorPicker.d.ts +1 -1
- package/src/components/ColorPicker/ColorPicker.js +5 -7
- package/src/components/Dashboard/Dashboard.d.ts +2 -1
- package/src/components/Dashboard/Dashboard.js +1 -2
- package/src/components/Dashboard/DashboardToolbar.d.ts +2 -1
- package/src/components/Dashboard/DashboardToolbar.js +1 -1
- package/src/components/Datepicker/DatepickerContext.d.ts +2 -0
- package/src/components/Datepicker/index.d.ts +2 -1
- package/src/components/Datepicker/index.js +29 -37
- package/src/components/Dialog/index.js +5 -6
- package/src/components/DragAndDropContext/ModuleManager.js +18 -5
- package/src/components/DragAndDropContext/TabList.d.ts +5 -5
- package/src/components/DragAndDropContext/TabList.js +11 -9
- package/src/components/DragAndDropContext/UnusedPanel.d.ts +2 -2
- package/src/components/DragAndDropContext/UnusedPanel.js +16 -6
- package/src/components/Drawer/index.js +1 -2
- package/src/components/Dropdown/Arrows.d.ts +2 -2
- package/src/components/Dropdown/index.d.ts +1 -1
- package/src/components/Dropdown/index.js +8 -5
- package/src/components/DropdownButton/index.d.ts +3 -1
- package/src/components/DropdownButton/index.js +36 -18
- package/src/components/DropdownButton/renderItem.d.ts +1 -1
- package/src/components/DropdownButton/renderItem.js +2 -2
- package/src/components/EllipsisContainer/index.d.ts +1 -1
- package/src/components/EllipsisContainer/index.js +6 -10
- package/src/components/EmptyContent/index.d.ts +2 -1
- package/src/components/EmptyContent/index.js +2 -4
- package/src/components/ErrorBox/index.d.ts +2 -2
- package/src/components/ErrorBox/index.js +1 -1
- package/src/components/ExpressionEditor/BaseEditorInput.d.ts +2 -1
- package/src/components/ExpressionEditor/BaseEditorInput.js +12 -6
- package/src/components/ExpressionEditor/DataTableEditor.d.ts +2 -2
- package/src/components/ExpressionEditor/DataTableEditor.js +6 -9
- package/src/components/ExpressionEditor/EditorButton.d.ts +2 -2
- package/src/components/ExpressionEditor/EditorButton.js +6 -9
- package/src/components/ExpressionEditor/EditorInput.d.ts +2 -2
- package/src/components/ExpressionEditor/EditorInput.js +4 -1
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.d.ts +2 -2
- package/src/components/ExpressionEditor/EditorInputWithWhereClause.js +4 -1
- package/src/components/ExpressionEditor/ExpressionFunctionDocumentation.d.ts +2 -2
- package/src/components/ExpressionEditor/ExpressionPreview.js +1 -2
- package/src/components/ExpressionEditor/NamedQueryEditor.d.ts +2 -2
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilder.js +8 -6
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.d.ts +6 -6
- package/src/components/ExpressionEditor/QueryBuilder/QueryBuilderInputs.js +14 -18
- package/src/components/ExpressionEditor/QueryBuilder/QueryPredicateBuilder.js +58 -32
- package/src/components/ExpressionEditor/QueryBuilder/utils.d.ts +1 -2
- package/src/components/ExpressionEditor/QueryBuilder/utils.js +9 -25
- package/src/components/ExpressionEditor/index.d.ts +1 -1
- package/src/components/ExpressionEditor/index.js +20 -24
- package/src/components/FieldWrap/index.d.ts +2 -2
- package/src/components/FieldWrap/index.js +2 -2
- package/src/components/FileDroppable/index.d.ts +1 -1
- package/src/components/FileDroppable/index.js +4 -6
- package/src/components/FileDroppable/reducer.js +17 -4
- package/src/components/Flex.d.ts +1 -0
- package/src/components/Flex.js +1 -0
- package/src/components/FlexWithFooter.d.ts +1 -1
- package/src/components/FlexWithFooter.js +3 -4
- package/src/components/FormLayout/index.d.ts +4 -5
- package/src/components/FormLayout/index.js +7 -4
- package/src/components/HelpBlock/index.d.ts +2 -2
- package/src/components/HelpBlock/index.js +1 -1
- package/src/components/Icon/index.d.ts +2 -2
- package/src/components/Icon/index.js +9 -10
- package/src/components/IconSelector/IconSelector.js +4 -5
- package/src/components/InfiniteTable/index.d.ts +3 -1
- package/src/components/InfiniteTable/index.js +6 -7
- package/src/components/Input/NumberInput.d.ts +1 -1
- package/src/components/Input/NumberInput.js +4 -7
- package/src/components/Input/index.d.ts +1 -1
- package/src/components/Input/index.js +2 -3
- package/src/components/InputGroup/InputGroup.d.ts +1 -1
- package/src/components/InputGroup/InputGroup.js +2 -5
- package/src/components/List/GridList/index.d.ts +2 -1
- package/src/components/List/GridList/index.js +4 -5
- package/src/components/List/ListGroup/index.d.ts +2 -2
- package/src/components/List/ListGroup/index.js +2 -3
- package/src/components/List/ListGroupItem/index.d.ts +2 -3
- package/src/components/List/ListGroupItem/index.js +3 -4
- package/src/components/Logo/index.js +1 -1
- package/src/components/Modal/Backdrop.d.ts +2 -2
- package/src/components/Modal/Backdrop.js +4 -1
- package/src/components/Modal/index.d.ts +1 -0
- package/src/components/Modal/index.js +14 -3
- package/src/components/NotifyResize/index.d.ts +2 -2
- package/src/components/OverlayTrigger/Overlay.js +3 -5
- package/src/components/OverlayTrigger/index.d.ts +1 -0
- package/src/components/OverlayTrigger/index.js +12 -11
- package/src/components/Panel/index.d.ts +3 -1
- package/src/components/Panel/index.js +16 -13
- package/src/components/PopupWithFooter.js +2 -3
- package/src/components/ProgressIndicator/ProgressIndicator.js +2 -1
- package/src/components/Radio/index.d.ts +4 -3
- package/src/components/Radio/index.js +13 -7
- package/src/components/ResizeObserver/index.d.ts +1 -1
- package/src/components/ResizeObserver/index.js +2 -5
- package/src/components/Select/Select.d.ts +17 -1
- package/src/components/Select/Select.js +279 -51
- package/src/components/SelectableList/index.d.ts +2 -1
- package/src/components/SelectableList/index.js +2 -2
- package/src/components/SimpleButton/index.d.ts +1 -1
- package/src/components/SimpleButton/index.js +8 -9
- package/src/components/SizedContainer/index.d.ts +2 -1
- package/src/components/SizedContainer/index.js +3 -4
- package/src/components/StylePreview.js +1 -4
- package/src/components/Table/index.d.ts +2 -1
- package/src/components/Table/index.js +1 -1
- package/src/components/Tabs/index.d.ts +6 -5
- package/src/components/Tabs/index.js +11 -14
- package/src/components/Tag/Tag.js +1 -4
- package/src/components/Textarea/index.d.ts +1 -1
- package/src/components/Textarea/index.js +5 -8
- package/src/components/Toggle/Toggle.js +2 -4
- package/src/components/Tooltip/index.d.ts +1 -1
- package/src/components/WarningBox/index.d.ts +2 -2
- package/src/components/WarningBox/index.js +1 -1
- package/src/components/WindowModal/WindowModal.js +4 -4
- package/src/components/WindowModal/useStacking.js +1 -2
- package/src/components/WizardPanel/index.d.ts +2 -2
- package/src/components/WizardPanel/index.js +1 -1
- package/src/components/dnd/index.d.ts +13 -0
- package/src/components/dnd/index.js +55 -0
- package/src/components/icons/DefaultIcon.d.ts +2 -2
- package/src/components/icons/DefaultIcon.js +6 -5
- package/src/components/icons/add-row.d.ts +2 -2
- package/src/components/icons/add-row.js +1 -1
- package/src/components/icons/alert.d.ts +2 -2
- package/src/components/icons/alert.js +1 -1
- package/src/components/icons/align-center.d.ts +2 -2
- package/src/components/icons/align-center.js +1 -1
- package/src/components/icons/align-justify.d.ts +2 -2
- package/src/components/icons/align-justify.js +1 -1
- package/src/components/icons/align-left.d.ts +2 -2
- package/src/components/icons/align-left.js +1 -1
- package/src/components/icons/align-right.d.ts +2 -2
- package/src/components/icons/align-right.js +1 -1
- package/src/components/icons/analysis.d.ts +2 -2
- package/src/components/icons/analysis.js +1 -1
- package/src/components/icons/application.d.ts +2 -2
- package/src/components/icons/application.js +1 -1
- package/src/components/icons/arrow-down-long.d.ts +2 -2
- package/src/components/icons/arrow-down-long.js +1 -1
- package/src/components/icons/arrow-down.d.ts +2 -2
- package/src/components/icons/arrow-down.js +1 -1
- package/src/components/icons/arrow-expand.d.ts +2 -2
- package/src/components/icons/arrow-expand.js +1 -1
- package/src/components/icons/arrow-left.d.ts +2 -2
- package/src/components/icons/arrow-left.js +1 -1
- package/src/components/icons/arrow-right.d.ts +2 -2
- package/src/components/icons/arrow-right.js +1 -1
- package/src/components/icons/arrow-up-long.d.ts +2 -2
- package/src/components/icons/arrow-up-long.js +1 -1
- package/src/components/icons/arrow-up.d.ts +2 -2
- package/src/components/icons/arrow-up.js +1 -1
- package/src/components/icons/attach-file.d.ts +2 -2
- package/src/components/icons/attach-file.js +1 -1
- package/src/components/icons/badge.d.ts +2 -2
- package/src/components/icons/badge.js +1 -1
- package/src/components/icons/blanks.d.ts +2 -2
- package/src/components/icons/blanks.js +1 -1
- package/src/components/icons/bold.d.ts +2 -2
- package/src/components/icons/bold.js +1 -1
- package/src/components/icons/boolean-list.d.ts +2 -2
- package/src/components/icons/boolean-list.js +1 -1
- package/src/components/icons/brush.d.ts +2 -2
- package/src/components/icons/brush.js +1 -1
- package/src/components/icons/build.d.ts +2 -2
- package/src/components/icons/build.js +1 -1
- package/src/components/icons/bulk-update.d.ts +2 -2
- package/src/components/icons/bulk-update.js +2 -6
- package/src/components/icons/calculated-column.d.ts +2 -2
- package/src/components/icons/calculated-column.js +1 -1
- package/src/components/icons/calendar.d.ts +2 -2
- package/src/components/icons/calendar.js +1 -1
- package/src/components/icons/call.d.ts +2 -2
- package/src/components/icons/call.js +1 -1
- package/src/components/icons/campaign.d.ts +2 -2
- package/src/components/icons/campaign.js +1 -1
- package/src/components/icons/case-lower.d.ts +2 -2
- package/src/components/icons/case-lower.js +1 -1
- package/src/components/icons/case-sentence.d.ts +2 -2
- package/src/components/icons/case-sentence.js +1 -1
- package/src/components/icons/case-upper.d.ts +2 -2
- package/src/components/icons/case-upper.js +1 -1
- package/src/components/icons/cell-summary.d.ts +2 -2
- package/src/components/icons/cell-summary.js +1 -1
- package/src/components/icons/cell-validation.d.ts +2 -2
- package/src/components/icons/cell-validation.js +1 -1
- package/src/components/icons/chart.d.ts +2 -2
- package/src/components/icons/chart.js +1 -1
- package/src/components/icons/chat.d.ts +2 -2
- package/src/components/icons/chat.js +1 -1
- package/src/components/icons/check-box-outline.d.ts +2 -2
- package/src/components/icons/check-box-outline.js +1 -1
- package/src/components/icons/check-box.d.ts +2 -2
- package/src/components/icons/check-box.js +1 -1
- package/src/components/icons/check-circle.d.ts +2 -2
- package/src/components/icons/check-circle.js +1 -1
- package/src/components/icons/check.d.ts +2 -2
- package/src/components/icons/check.js +1 -1
- package/src/components/icons/clone.d.ts +2 -2
- package/src/components/icons/clone.js +1 -1
- package/src/components/icons/close.d.ts +2 -2
- package/src/components/icons/close.js +1 -1
- package/src/components/icons/cloud-upload.d.ts +2 -2
- package/src/components/icons/cloud-upload.js +1 -1
- package/src/components/icons/collapse-all.d.ts +2 -2
- package/src/components/icons/collapse-all.js +1 -1
- package/src/components/icons/collapse.d.ts +2 -2
- package/src/components/icons/collapse.js +1 -1
- package/src/components/icons/column-add.d.ts +2 -2
- package/src/components/icons/column-add.js +1 -1
- package/src/components/icons/column-chooser.d.ts +2 -2
- package/src/components/icons/column-chooser.js +1 -1
- package/src/components/icons/column-filter.d.ts +2 -2
- package/src/components/icons/column-filter.js +1 -1
- package/src/components/icons/column-info.d.ts +2 -2
- package/src/components/icons/column-info.js +1 -1
- package/src/components/icons/column-outline.d.ts +2 -2
- package/src/components/icons/column-outline.js +1 -1
- package/src/components/icons/comment.d.ts +2 -2
- package/src/components/icons/comment.js +1 -1
- package/src/components/icons/comments.d.ts +2 -2
- package/src/components/icons/comments.js +1 -1
- package/src/components/icons/contact.d.ts +2 -2
- package/src/components/icons/contact.js +1 -1
- package/src/components/icons/contains.d.ts +2 -2
- package/src/components/icons/contains.js +2 -2
- package/src/components/icons/copy.d.ts +2 -2
- package/src/components/icons/copy.js +1 -1
- package/src/components/icons/csv.d.ts +2 -2
- package/src/components/icons/csv.js +1 -1
- package/src/components/icons/custom-sort.d.ts +2 -2
- package/src/components/icons/custom-sort.js +1 -1
- package/src/components/icons/dashboard.d.ts +2 -2
- package/src/components/icons/dashboard.js +1 -1
- package/src/components/icons/data-object.d.ts +2 -2
- package/src/components/icons/data-object.js +1 -1
- package/src/components/icons/data-set.d.ts +2 -2
- package/src/components/icons/data-set.js +1 -1
- package/src/components/icons/date-range.d.ts +2 -2
- package/src/components/icons/date-range.js +1 -1
- package/src/components/icons/delete.d.ts +2 -2
- package/src/components/icons/delete.js +1 -1
- package/src/components/icons/division.d.ts +2 -2
- package/src/components/icons/division.js +1 -1
- package/src/components/icons/dock.d.ts +2 -2
- package/src/components/icons/dock.js +1 -1
- package/src/components/icons/dollar.d.ts +2 -2
- package/src/components/icons/dollar.js +1 -1
- package/src/components/icons/drag.d.ts +2 -2
- package/src/components/icons/drag.js +1 -1
- package/src/components/icons/edit.d.ts +2 -2
- package/src/components/icons/edit.js +1 -1
- package/src/components/icons/ends-with.d.ts +2 -2
- package/src/components/icons/ends-with.js +1 -1
- package/src/components/icons/equal.d.ts +2 -2
- package/src/components/icons/equal.js +1 -1
- package/src/components/icons/equation.d.ts +2 -2
- package/src/components/icons/equation.js +1 -1
- package/src/components/icons/error.d.ts +2 -2
- package/src/components/icons/error.js +1 -1
- package/src/components/icons/excel.d.ts +2 -2
- package/src/components/icons/excel.js +1 -1
- package/src/components/icons/expand-all.d.ts +2 -2
- package/src/components/icons/expand-all.js +1 -1
- package/src/components/icons/expand.d.ts +2 -2
- package/src/components/icons/expand.js +1 -1
- package/src/components/icons/exponent.d.ts +2 -2
- package/src/components/icons/exponent.js +1 -1
- package/src/components/icons/export.d.ts +2 -2
- package/src/components/icons/export.js +1 -1
- package/src/components/icons/fast-backward.d.ts +2 -2
- package/src/components/icons/fast-backward.js +1 -1
- package/src/components/icons/fast-forward.d.ts +2 -2
- package/src/components/icons/fast-forward.js +1 -1
- package/src/components/icons/fdc3.d.ts +2 -2
- package/src/components/icons/fdc3.js +1 -1
- package/src/components/icons/filter-off.d.ts +2 -2
- package/src/components/icons/filter-off.js +1 -1
- package/src/components/icons/filter.d.ts +2 -2
- package/src/components/icons/filter.js +1 -1
- package/src/components/icons/flashing-cell.d.ts +2 -2
- package/src/components/icons/flashing-cell.js +1 -1
- package/src/components/icons/folder-open.d.ts +2 -2
- package/src/components/icons/folder-open.js +1 -1
- package/src/components/icons/folder-shared.d.ts +2 -2
- package/src/components/icons/folder-shared.js +1 -1
- package/src/components/icons/folder.d.ts +2 -2
- package/src/components/icons/folder.js +1 -1
- package/src/components/icons/format-column.d.ts +2 -2
- package/src/components/icons/format-column.js +1 -1
- package/src/components/icons/freetext-column.d.ts +2 -2
- package/src/components/icons/freetext-column.js +1 -1
- package/src/components/icons/function.d.ts +2 -2
- package/src/components/icons/function.js +1 -1
- package/src/components/icons/gradient-column.d.ts +2 -2
- package/src/components/icons/gradient-column.js +1 -1
- package/src/components/icons/gradient.d.ts +2 -2
- package/src/components/icons/gradient.js +1 -1
- package/src/components/icons/greater-than-or-equal.d.ts +2 -2
- package/src/components/icons/greater-than-or-equal.js +1 -1
- package/src/components/icons/greater-than.d.ts +2 -2
- package/src/components/icons/greater-than.js +1 -1
- package/src/components/icons/grid-filter.d.ts +2 -2
- package/src/components/icons/grid-filter.js +1 -1
- package/src/components/icons/grid-info.d.ts +2 -2
- package/src/components/icons/grid-info.js +1 -1
- package/src/components/icons/hide-column.d.ts +2 -2
- package/src/components/icons/hide-column.js +1 -1
- package/src/components/icons/history.d.ts +2 -2
- package/src/components/icons/history.js +1 -1
- package/src/components/icons/home.d.ts +2 -2
- package/src/components/icons/home.js +1 -1
- package/src/components/icons/import-export.d.ts +2 -2
- package/src/components/icons/import-export.js +1 -1
- package/src/components/icons/import.d.ts +2 -2
- package/src/components/icons/import.js +1 -1
- package/src/components/icons/index.d.ts +7 -4
- package/src/components/icons/index.js +35 -32
- package/src/components/icons/info.d.ts +2 -2
- package/src/components/icons/info.js +1 -1
- package/src/components/icons/instrument.d.ts +2 -2
- package/src/components/icons/instrument.js +1 -1
- package/src/components/icons/interactions.d.ts +2 -2
- package/src/components/icons/interactions.js +1 -1
- package/src/components/icons/invalid.d.ts +2 -2
- package/src/components/icons/invalid.js +1 -1
- package/src/components/icons/ipushpull.d.ts +2 -2
- package/src/components/icons/ipushpull.js +1 -1
- package/src/components/icons/italic.d.ts +2 -2
- package/src/components/icons/italic.js +1 -1
- package/src/components/icons/justify.d.ts +2 -2
- package/src/components/icons/justify.js +1 -1
- package/src/components/icons/layout.d.ts +2 -2
- package/src/components/icons/layout.js +1 -1
- package/src/components/icons/less-than-or-equal.d.ts +2 -2
- package/src/components/icons/less-than-or-equal.js +1 -1
- package/src/components/icons/less-than.d.ts +2 -2
- package/src/components/icons/less-than.js +1 -1
- package/src/components/icons/list.d.ts +2 -2
- package/src/components/icons/list.js +1 -1
- package/src/components/icons/login.d.ts +2 -2
- package/src/components/icons/login.js +1 -1
- package/src/components/icons/logout copy.d.ts +2 -2
- package/src/components/icons/logout copy.js +1 -1
- package/src/components/icons/logout.d.ts +2 -2
- package/src/components/icons/logout.js +1 -1
- package/src/components/icons/mail.d.ts +2 -2
- package/src/components/icons/mail.js +1 -1
- package/src/components/icons/menu.d.ts +2 -2
- package/src/components/icons/menu.js +1 -1
- package/src/components/icons/minus.d.ts +2 -2
- package/src/components/icons/minus.js +1 -1
- package/src/components/icons/money.d.ts +2 -2
- package/src/components/icons/money.js +1 -1
- package/src/components/icons/multiplication.d.ts +2 -2
- package/src/components/icons/multiplication.js +1 -1
- package/src/components/icons/newpage.d.ts +2 -2
- package/src/components/icons/newpage.js +1 -1
- package/src/components/icons/news.d.ts +2 -2
- package/src/components/icons/news.js +1 -1
- package/src/components/icons/non-blanks.d.ts +2 -2
- package/src/components/icons/non-blanks.js +1 -1
- package/src/components/icons/not-contains.d.ts +2 -2
- package/src/components/icons/not-contains.js +2 -2
- package/src/components/icons/not-equal.d.ts +2 -2
- package/src/components/icons/not-equal.js +1 -1
- package/src/components/icons/note.d.ts +2 -2
- package/src/components/icons/note.js +1 -1
- package/src/components/icons/open-in-new.d.ts +2 -2
- package/src/components/icons/open-in-new.js +1 -1
- package/src/components/icons/order.d.ts +2 -2
- package/src/components/icons/order.js +1 -1
- package/src/components/icons/organisation.d.ts +2 -2
- package/src/components/icons/organisation.js +1 -1
- package/src/components/icons/overline.d.ts +2 -2
- package/src/components/icons/overline.js +1 -1
- package/src/components/icons/pause.d.ts +2 -2
- package/src/components/icons/pause.js +1 -1
- package/src/components/icons/percent-bar.d.ts +2 -2
- package/src/components/icons/percent-bar.js +1 -1
- package/src/components/icons/percent.d.ts +2 -2
- package/src/components/icons/percent.js +1 -1
- package/src/components/icons/person.d.ts +2 -2
- package/src/components/icons/person.js +1 -1
- package/src/components/icons/pie-chart.d.ts +2 -2
- package/src/components/icons/pie-chart.js +1 -1
- package/src/components/icons/play.d.ts +2 -2
- package/src/components/icons/play.js +1 -1
- package/src/components/icons/plus-minus.d.ts +2 -2
- package/src/components/icons/plus-minus.js +1 -1
- package/src/components/icons/plus.d.ts +2 -2
- package/src/components/icons/plus.js +1 -1
- package/src/components/icons/query.d.ts +2 -2
- package/src/components/icons/query.js +1 -1
- package/src/components/icons/quick-search.d.ts +2 -2
- package/src/components/icons/quick-search.js +1 -1
- package/src/components/icons/quote.d.ts +2 -2
- package/src/components/icons/quote.js +1 -1
- package/src/components/icons/refresh.d.ts +2 -2
- package/src/components/icons/refresh.js +1 -1
- package/src/components/icons/regex.d.ts +2 -2
- package/src/components/icons/regex.js +1 -1
- package/src/components/icons/reminder.d.ts +2 -2
- package/src/components/icons/reminder.js +1 -1
- package/src/components/icons/resume.d.ts +2 -2
- package/src/components/icons/resume.js +1 -1
- package/src/components/icons/rows.d.ts +2 -2
- package/src/components/icons/rows.js +1 -1
- package/src/components/icons/save.d.ts +2 -2
- package/src/components/icons/save.js +1 -1
- package/src/components/icons/schedule.d.ts +2 -2
- package/src/components/icons/schedule.js +1 -1
- package/src/components/icons/science.d.ts +2 -2
- package/src/components/icons/science.js +1 -1
- package/src/components/icons/select-all.d.ts +2 -2
- package/src/components/icons/select-all.js +1 -1
- package/src/components/icons/select-fwd.d.ts +2 -2
- package/src/components/icons/select-fwd.js +1 -1
- package/src/components/icons/select-off.d.ts +2 -2
- package/src/components/icons/select-off.js +1 -1
- package/src/components/icons/settings.d.ts +2 -2
- package/src/components/icons/settings.js +1 -1
- package/src/components/icons/shortcut.d.ts +2 -2
- package/src/components/icons/shortcut.js +1 -1
- package/src/components/icons/show-column.d.ts +2 -2
- package/src/components/icons/show-column.js +1 -1
- package/src/components/icons/smart-edit.d.ts +2 -2
- package/src/components/icons/smart-edit.js +1 -1
- package/src/components/icons/sort-asc.d.ts +2 -2
- package/src/components/icons/sort-asc.js +1 -1
- package/src/components/icons/sort-desc.d.ts +2 -2
- package/src/components/icons/sort-desc.js +1 -1
- package/src/components/icons/spark-line.d.ts +2 -2
- package/src/components/icons/spark-line.js +1 -1
- package/src/components/icons/starts-with.d.ts +2 -2
- package/src/components/icons/starts-with.js +1 -1
- package/src/components/icons/state-management.d.ts +2 -2
- package/src/components/icons/state-management.js +1 -1
- package/src/components/icons/statusbar.d.ts +2 -2
- package/src/components/icons/statusbar.js +1 -1
- package/src/components/icons/stop.d.ts +2 -2
- package/src/components/icons/stop.js +1 -1
- package/src/components/icons/strikethrough.d.ts +2 -2
- package/src/components/icons/strikethrough.js +1 -1
- package/src/components/icons/styled-grid.d.ts +3 -0
- package/src/components/icons/styled-grid.js +5 -0
- package/src/components/icons/sync.d.ts +2 -2
- package/src/components/icons/sync.js +1 -1
- package/src/components/icons/system-status.d.ts +2 -2
- package/src/components/icons/system-status.js +1 -1
- package/src/components/icons/tab-unselected.d.ts +2 -2
- package/src/components/icons/tab-unselected.js +1 -1
- package/src/components/icons/table-arrow-right.d.ts +2 -2
- package/src/components/icons/table-arrow-right.js +1 -1
- package/src/components/icons/team-share.d.ts +2 -2
- package/src/components/icons/team-share.js +1 -1
- package/src/components/icons/theme.d.ts +2 -2
- package/src/components/icons/theme.js +1 -1
- package/src/components/icons/tool-panel.d.ts +2 -2
- package/src/components/icons/tool-panel.js +1 -1
- package/src/components/icons/track-changes.d.ts +2 -2
- package/src/components/icons/track-changes.js +1 -1
- package/src/components/icons/triangle-down.d.ts +2 -2
- package/src/components/icons/triangle-down.js +1 -1
- package/src/components/icons/triangle-up.d.ts +2 -2
- package/src/components/icons/triangle-up.js +1 -1
- package/src/components/icons/unchecked.d.ts +2 -2
- package/src/components/icons/unchecked.js +1 -1
- package/src/components/icons/underline.d.ts +2 -2
- package/src/components/icons/underline.js +1 -1
- package/src/components/icons/undo.d.ts +2 -2
- package/src/components/icons/undo.js +1 -1
- package/src/components/icons/updated-row.d.ts +2 -2
- package/src/components/icons/updated-row.js +1 -1
- package/src/components/icons/upload.d.ts +2 -2
- package/src/components/icons/upload.js +1 -1
- package/src/components/icons/user-filter.d.ts +2 -2
- package/src/components/icons/user-filter.js +1 -1
- package/src/components/icons/visibility-off.d.ts +2 -2
- package/src/components/icons/visibility-off.js +1 -1
- package/src/components/icons/visibility.d.ts +2 -2
- package/src/components/icons/visibility.js +1 -1
- package/src/components/icons/warning.d.ts +2 -2
- package/src/components/icons/warning.js +1 -1
- package/src/components/utils/useContainerScrollObserver/index.js +1 -2
- package/src/components/utils/useDraggable.d.ts +1 -1
- package/src/components/utils/useDraggable.js +2 -3
- package/src/components/utils/useLatest.d.ts +1 -1
- package/src/components/utils/useProperty.d.ts +1 -1
- package/src/components/utils/useSelectionRange.js +1 -1
- package/src/env.d.ts +1 -1
- package/src/env.js +3 -3
- package/src/layout-manager/src/LMEmitter.d.ts +25 -0
- package/src/layout-manager/src/LMEmitter.js +55 -0
- package/src/layout-manager/src/LMLogger.d.ts +20 -0
- package/src/layout-manager/src/LMLogger.js +62 -0
- package/src/layout-manager/src/LayoutManagerModel.d.ts +111 -0
- package/src/layout-manager/src/index.d.ts +75 -0
- package/src/layout-manager/src/index.js +1042 -0
- package/src/layout-manager/src/isLayoutEqual.d.ts +4 -0
- package/src/layout-manager/src/isLayoutEqual.js +25 -0
- package/src/layout-manager/src/isPivotLayoutModel.d.ts +2 -0
- package/src/layout-manager/src/isPivotLayoutModel.js +3 -0
- package/src/layout-manager/src/normalizeLayoutModel.d.ts +12 -0
- package/src/layout-manager/src/normalizeLayoutModel.js +151 -0
- package/src/layout-manager/src/simplifyLayoutModel.d.ts +4 -0
- package/src/layout-manager/src/simplifyLayoutModel.js +82 -0
- package/src/layout-manager/src/sortColumnIdsByOrder.d.ts +7 -0
- package/src/layout-manager/src/sortColumnIdsByOrder.js +84 -0
- package/src/metamodel/adaptable.metamodel.d.ts +428 -574
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/migration/AdaptableUpgradeHelper.js +5 -4
- package/src/migration/VersionUpgrade17.js +56 -50
- package/src/migration/VersionUpgrade20.d.ts +7 -0
- package/src/migration/VersionUpgrade20.js +130 -0
- package/src/parser/src/predicate/mapExpressionToQlPredicate.js +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.d.ts +1 -1
- package/src/parser/src/predicate/mapQlPredicateToExpression.js +2 -2
- package/src/parser/src/predicate/types.d.ts +11 -1
- package/src/parser/src/types.d.ts +6 -2
- package/src/parser/src/types.js +1 -1
- package/src/renderReactRoot.d.ts +3 -3
- package/src/types.d.ts +32 -31
- package/tsconfig.esm.tsbuildinfo +1 -1
- package/src/AdaptableOptions/ActionRowOptions.d.ts +0 -175
- package/src/AdaptableOptions/ColumnFilterOptions.d.ts +0 -311
- package/src/AdaptableOptions/GridFilterOptions.d.ts +0 -26
- package/src/AdaptableOptions/GroupingOptions.d.ts +0 -19
- package/src/Api/ActionRowApi.d.ts +0 -24
- package/src/Api/Events/ActionRowSubmitted.d.ts +0 -54
- package/src/Api/Events/AdaptableSearchState.d.ts +0 -22
- package/src/Api/Events/BaseEventInfo.d.ts +0 -18
- package/src/Api/Events/GridDataChanged.d.ts +0 -26
- package/src/Api/Implementation/ActionRowApiImpl.d.ts +0 -12
- package/src/Api/Internal/ActionRowInternalApi.d.ts +0 -29
- package/src/Api/Internal/ActionRowInternalApi.js +0 -280
- package/src/PredefinedConfig/GridState.d.ts +0 -23
- package/src/PredefinedConfig/SystemState.d.ts +0 -110
- package/src/Redux/ActionsReducers/GridRedux.d.ts +0 -224
- package/src/Redux/ActionsReducers/GridRedux.js +0 -398
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +0 -330
- package/src/Redux/ActionsReducers/SystemRedux.js +0 -716
- package/src/Redux/DeadRedux.d.ts +0 -27
- package/src/Redux/DeadRedux.js +0 -72
- package/src/Strategy/Interface/IExportModule.d.ts +0 -6
- package/src/Strategy/Interface/IShortcutModule.js +0 -1
- package/src/Strategy/Utilities/getExpressionViewItems.d.ts +0 -4
- package/src/Strategy/Utilities/getObjectTagsViewItems.d.ts +0 -4
- package/src/Strategy/Utilities/getRuleViewItems.js +0 -11
- package/src/Strategy/Utilities/getScopeViewItems.d.ts +0 -3
- package/src/Utilities/Constants/ConfigConstants.d.ts +0 -10
- package/src/Utilities/Constants/ConfigConstants.js +0 -11
- package/src/Utilities/Constants/FilterConstants.d.ts +0 -10
- package/src/Utilities/Constants/FilterConstants.js +0 -8
- package/src/Utilities/Services/RowEditService.js +0 -35
- package/src/Utilities/divideBy100.d.ts +0 -1
- package/src/Utilities/divideBy100.js +0 -30
- package/src/Utilities/times100.d.ts +0 -1
- package/src/Utilities/times100.js +0 -23
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.d.ts +0 -6
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +0 -30
- package/src/View/Components/FilterForm/FilterForm.d.ts +0 -18
- package/src/View/Components/FilterForm/FilterForm.js +0 -293
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +0 -7
- package/src/View/Components/FilterForm/QuickFilterForm.js +0 -250
- package/src/View/Components/FilterForm/QuickFilterValues.d.ts +0 -19
- package/src/View/Components/FilterForm/QuickFilterValues.js +0 -196
- package/src/View/Components/Panels/FilterFormPanel.d.ts +0 -22
- package/src/View/Components/Panels/FilterFormPanel.js +0 -36
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.d.ts +0 -8
- package/src/View/Components/PermittedValuesSelector/PermitedValuesSelector.js +0 -22
- package/src/View/Components/PermittedValuesSelector/index.d.ts +0 -1
- package/src/View/Components/PermittedValuesSelector/index.js +0 -1
- package/src/View/Export/ExportSelector.d.ts +0 -4
- package/src/View/Export/ExportSelector.js +0 -70
- package/src/View/Export/ExportTablePopup.d.ts +0 -3
- package/src/View/Export/ExportTablePopup.js +0 -56
- package/src/View/Export/ReportExportDropdown.js +0 -34
- package/src/View/Export/constants.d.ts +0 -2
- package/src/View/Export/constants.js +0 -2
- package/src/View/Layout/SaveLayoutButton.d.ts +0 -2
- package/src/View/Layout/SaveLayoutButton.js +0 -24
- package/src/agGrid/BadgeRenderer.d.ts +0 -4
- package/src/agGrid/ColumnSetupInfo.d.ts +0 -8
- package/src/agGrid/PercentBarRenderer.d.ts +0 -4
- package/src/agGrid/attachAddaptableColumnTypes.d.ts +0 -16
- package/src/agGrid/attachAddaptableColumnTypes.js +0 -19
- package/src/components/Datepicker/Caption.d.ts +0 -7
- package/src/components/Datepicker/Caption.js +0 -42
- package/src/components/Datepicker/CaptionLabel.d.ts +0 -8
- package/src/components/Datepicker/CaptionLabel.js +0 -20
- /package/src/AdaptableOptions/{ActionRowOptions.js → FilterOptions.js} +0 -0
- /package/src/AdaptableOptions/{AdaptableFrameworkComponent.js → RowFormOptions.js} +0 -0
- /package/src/{AdaptableOptions/ColumnFilterOptions.js → Api/Events/RowChanged.js} +0 -0
- /package/src/{AdaptableOptions/GridFilterOptions.js → Api/Events/RowFormSubmitted.js} +0 -0
- /package/src/{AdaptableOptions/GroupingOptions.js → Api/FilterApi.js} +0 -0
- /package/src/Api/{ActionRowApi.js → RowFormApi.js} +0 -0
- /package/src/{Api/Events/ActionRowSubmitted.js → PredefinedConfig/Common/AdaptableColumnContext.js} +0 -0
- /package/src/{Api/Events/AdaptableSearchState.js → PredefinedConfig/Common/AdaptableSortState.js} +0 -0
- /package/src/{agGrid → PredefinedConfig/Common}/ColumnSetupInfo.js +0 -0
- /package/src/{Api/Events/BaseEventInfo.js → PredefinedConfig/Common/RowDataChangedInfo.js} +0 -0
- /package/src/{Api/Events/GridDataChanged.js → Strategy/Interface/ICellDataChangeListenerModule.js} +0 -0
- /package/src/{PredefinedConfig/GridState.js → Strategy/Interface/IKeyDownListenerModule.js} +0 -0
- /package/src/{Strategy/Utilities → Utilities}/getScopeViewItems.js +0 -0
- /package/src/{agGrid → Utilities}/sortColumnStateForVisibleColumns.d.ts +0 -0
- /package/src/{agGrid → Utilities}/sortColumnStateForVisibleColumns.js +0 -0
- /package/src/{Strategy/Utilities → Utilities}/updateSingleToMultiplePredicates.d.ts +0 -0
- /package/src/{PredefinedConfig/SystemState.js → agGrid/AdaptableFrameworkComponent.js} +0 -0
- /package/src/{Strategy/Interface/IExportModule.js → layout-manager/src/LayoutManagerModel.js} +0 -0
|
@@ -4,6 +4,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4
4
|
kind: string;
|
|
5
5
|
desc: string;
|
|
6
6
|
};
|
|
7
|
+
ActionButtonCommand: {
|
|
8
|
+
name: string;
|
|
9
|
+
kind: string;
|
|
10
|
+
desc: string;
|
|
11
|
+
};
|
|
7
12
|
ActionColumn: {
|
|
8
13
|
name: string;
|
|
9
14
|
kind: string;
|
|
@@ -28,17 +33,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
28
33
|
ref?: undefined;
|
|
29
34
|
})[];
|
|
30
35
|
};
|
|
31
|
-
|
|
32
|
-
name: string;
|
|
33
|
-
kind: string;
|
|
34
|
-
desc: string;
|
|
35
|
-
props: {
|
|
36
|
-
name: string;
|
|
37
|
-
kind: string;
|
|
38
|
-
desc: string;
|
|
39
|
-
}[];
|
|
40
|
-
};
|
|
41
|
-
ActionColumnDefaultConfiguration: {
|
|
36
|
+
ActionColumnButton: {
|
|
42
37
|
name: string;
|
|
43
38
|
kind: string;
|
|
44
39
|
desc: string;
|
|
@@ -47,10 +42,10 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
47
42
|
kind: string;
|
|
48
43
|
desc: string;
|
|
49
44
|
isOpt: boolean;
|
|
50
|
-
|
|
45
|
+
ref: string;
|
|
51
46
|
}[];
|
|
52
47
|
};
|
|
53
|
-
|
|
48
|
+
ActionColumnContext: {
|
|
54
49
|
name: string;
|
|
55
50
|
kind: string;
|
|
56
51
|
desc: string;
|
|
@@ -58,11 +53,9 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
58
53
|
name: string;
|
|
59
54
|
kind: string;
|
|
60
55
|
desc: string;
|
|
61
|
-
isOpt: boolean;
|
|
62
|
-
defVal: string;
|
|
63
56
|
}[];
|
|
64
57
|
};
|
|
65
|
-
|
|
58
|
+
ActionColumnDefaultConfiguration: {
|
|
66
59
|
name: string;
|
|
67
60
|
kind: string;
|
|
68
61
|
desc: string;
|
|
@@ -72,31 +65,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
72
65
|
desc: string;
|
|
73
66
|
isOpt: boolean;
|
|
74
67
|
defVal: string;
|
|
68
|
+
ref?: undefined;
|
|
75
69
|
} | {
|
|
76
70
|
name: string;
|
|
77
71
|
kind: string;
|
|
78
72
|
desc: string;
|
|
79
73
|
isOpt: boolean;
|
|
80
|
-
defVal
|
|
81
|
-
})[];
|
|
82
|
-
};
|
|
83
|
-
ActionHandler: {
|
|
84
|
-
name: string;
|
|
85
|
-
kind: string;
|
|
86
|
-
desc: string;
|
|
87
|
-
};
|
|
88
|
-
ActionRowButtonConfigurationContext: {
|
|
89
|
-
name: string;
|
|
90
|
-
kind: string;
|
|
91
|
-
desc: string;
|
|
92
|
-
props: {
|
|
93
|
-
name: string;
|
|
94
|
-
kind: string;
|
|
95
|
-
desc: string;
|
|
74
|
+
defVal: string;
|
|
96
75
|
ref: string;
|
|
97
|
-
}[];
|
|
76
|
+
})[];
|
|
98
77
|
};
|
|
99
|
-
|
|
78
|
+
ActionColumnOptions: {
|
|
100
79
|
name: string;
|
|
101
80
|
kind: string;
|
|
102
81
|
desc: string;
|
|
@@ -108,33 +87,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
108
87
|
defVal: string;
|
|
109
88
|
}[];
|
|
110
89
|
};
|
|
111
|
-
|
|
112
|
-
name: string;
|
|
113
|
-
kind: string;
|
|
114
|
-
desc: string;
|
|
115
|
-
};
|
|
116
|
-
ActionRowButtonType: {
|
|
117
|
-
name: string;
|
|
118
|
-
kind: string;
|
|
119
|
-
desc: string;
|
|
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
|
-
};
|
|
132
|
-
ActionRowFormContext: {
|
|
133
|
-
name: string;
|
|
134
|
-
kind: string;
|
|
135
|
-
desc: string;
|
|
136
|
-
};
|
|
137
|
-
ActionRowFormOptions: {
|
|
90
|
+
ActionColumnSettings: {
|
|
138
91
|
name: string;
|
|
139
92
|
kind: string;
|
|
140
93
|
desc: string;
|
|
@@ -143,42 +96,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
143
96
|
kind: string;
|
|
144
97
|
desc: string;
|
|
145
98
|
isOpt: boolean;
|
|
146
|
-
defVal
|
|
99
|
+
defVal: string;
|
|
147
100
|
} | {
|
|
148
101
|
name: string;
|
|
149
102
|
kind: string;
|
|
150
103
|
desc: string;
|
|
151
104
|
isOpt: boolean;
|
|
152
|
-
defVal
|
|
105
|
+
defVal?: undefined;
|
|
153
106
|
})[];
|
|
154
107
|
};
|
|
155
|
-
ActionRowOptions: {
|
|
156
|
-
name: string;
|
|
157
|
-
kind: string;
|
|
158
|
-
desc: string;
|
|
159
|
-
props: {
|
|
160
|
-
name: string;
|
|
161
|
-
kind: string;
|
|
162
|
-
desc: string;
|
|
163
|
-
isOpt: boolean;
|
|
164
|
-
defVal: string;
|
|
165
|
-
}[];
|
|
166
|
-
};
|
|
167
|
-
ActionRowParamContext: {
|
|
168
|
-
name: string;
|
|
169
|
-
kind: string;
|
|
170
|
-
desc: string;
|
|
171
|
-
};
|
|
172
|
-
ActionRowParamFieldContext: {
|
|
173
|
-
name: string;
|
|
174
|
-
kind: string;
|
|
175
|
-
desc: string;
|
|
176
|
-
};
|
|
177
|
-
ActionRowType: {
|
|
178
|
-
name: string;
|
|
179
|
-
kind: string;
|
|
180
|
-
desc: string;
|
|
181
|
-
};
|
|
182
108
|
AdaptableAggregatedBooleanQuery: {
|
|
183
109
|
name: string;
|
|
184
110
|
kind: string;
|
|
@@ -204,11 +130,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
204
130
|
kind: string;
|
|
205
131
|
desc: string;
|
|
206
132
|
};
|
|
207
|
-
AdaptableAlertAction: {
|
|
208
|
-
name: string;
|
|
209
|
-
kind: string;
|
|
210
|
-
desc: string;
|
|
211
|
-
};
|
|
212
133
|
AdaptableAlertBase: {
|
|
213
134
|
name: string;
|
|
214
135
|
kind: string;
|
|
@@ -225,6 +146,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
225
146
|
ref?: undefined;
|
|
226
147
|
})[];
|
|
227
148
|
};
|
|
149
|
+
AdaptableAlertCommand: {
|
|
150
|
+
name: string;
|
|
151
|
+
kind: string;
|
|
152
|
+
desc: string;
|
|
153
|
+
};
|
|
228
154
|
AdaptableAlertQuery: {
|
|
229
155
|
name: string;
|
|
230
156
|
kind: string;
|
|
@@ -342,10 +268,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
342
268
|
isOpt?: undefined;
|
|
343
269
|
})[];
|
|
344
270
|
};
|
|
345
|
-
|
|
271
|
+
AdaptableColumnContext: {
|
|
346
272
|
name: string;
|
|
347
273
|
kind: string;
|
|
348
274
|
desc: string;
|
|
275
|
+
props: {
|
|
276
|
+
name: string;
|
|
277
|
+
kind: string;
|
|
278
|
+
desc: string;
|
|
279
|
+
}[];
|
|
349
280
|
};
|
|
350
281
|
AdaptableColumnGroup: {
|
|
351
282
|
name: string;
|
|
@@ -606,6 +537,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
606
537
|
kind: string;
|
|
607
538
|
desc: string;
|
|
608
539
|
props: ({
|
|
540
|
+
name: string;
|
|
541
|
+
kind: string;
|
|
542
|
+
desc: string;
|
|
543
|
+
ref: string;
|
|
544
|
+
isOpt?: undefined;
|
|
545
|
+
} | {
|
|
609
546
|
name: string;
|
|
610
547
|
kind: string;
|
|
611
548
|
desc: string;
|
|
@@ -615,8 +552,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
615
552
|
name: string;
|
|
616
553
|
kind: string;
|
|
617
554
|
desc: string;
|
|
618
|
-
isOpt?: undefined;
|
|
619
555
|
ref?: undefined;
|
|
556
|
+
isOpt?: undefined;
|
|
620
557
|
} | {
|
|
621
558
|
name: string;
|
|
622
559
|
kind: string;
|
|
@@ -826,11 +763,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
826
763
|
name: string;
|
|
827
764
|
kind: string;
|
|
828
765
|
desc: string;
|
|
829
|
-
isOpt: boolean;
|
|
830
766
|
defVal: string;
|
|
767
|
+
ref: string;
|
|
768
|
+
isOpt?: undefined;
|
|
831
769
|
gridInfo?: undefined;
|
|
832
770
|
noCode?: undefined;
|
|
833
|
-
ref?: undefined;
|
|
834
771
|
} | {
|
|
835
772
|
name: string;
|
|
836
773
|
kind: string;
|
|
@@ -912,30 +849,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
912
849
|
kind: string;
|
|
913
850
|
desc: string;
|
|
914
851
|
};
|
|
915
|
-
AdaptableReportColumn: {
|
|
916
|
-
name: string;
|
|
917
|
-
kind: string;
|
|
918
|
-
desc: string;
|
|
919
|
-
props: ({
|
|
920
|
-
name: string;
|
|
921
|
-
kind: string;
|
|
922
|
-
desc: string;
|
|
923
|
-
ref?: undefined;
|
|
924
|
-
isOpt?: undefined;
|
|
925
|
-
} | {
|
|
926
|
-
name: string;
|
|
927
|
-
kind: string;
|
|
928
|
-
desc: string;
|
|
929
|
-
ref: string;
|
|
930
|
-
isOpt?: undefined;
|
|
931
|
-
} | {
|
|
932
|
-
name: string;
|
|
933
|
-
kind: string;
|
|
934
|
-
desc: string;
|
|
935
|
-
isOpt: boolean;
|
|
936
|
-
ref?: undefined;
|
|
937
|
-
})[];
|
|
938
|
-
};
|
|
939
852
|
AdaptableRowChangedAlert: {
|
|
940
853
|
name: string;
|
|
941
854
|
kind: string;
|
|
@@ -997,6 +910,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
997
910
|
kind: string;
|
|
998
911
|
desc: string;
|
|
999
912
|
};
|
|
913
|
+
AdaptableSortState: {
|
|
914
|
+
name: string;
|
|
915
|
+
kind: string;
|
|
916
|
+
desc: string;
|
|
917
|
+
props: {
|
|
918
|
+
name: string;
|
|
919
|
+
kind: string;
|
|
920
|
+
desc: string;
|
|
921
|
+
}[];
|
|
922
|
+
};
|
|
1000
923
|
AdaptableState: {
|
|
1001
924
|
name: string;
|
|
1002
925
|
kind: string;
|
|
@@ -1228,11 +1151,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1228
1151
|
isOpt?: undefined;
|
|
1229
1152
|
})[];
|
|
1230
1153
|
};
|
|
1231
|
-
AggregationColumns: {
|
|
1232
|
-
name: string;
|
|
1233
|
-
kind: string;
|
|
1234
|
-
desc: string;
|
|
1235
|
-
};
|
|
1236
1154
|
AgGridColumnMenuItemType: {
|
|
1237
1155
|
name: string;
|
|
1238
1156
|
kind: string;
|
|
@@ -1278,13 +1196,13 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1278
1196
|
kind: string;
|
|
1279
1197
|
desc: string;
|
|
1280
1198
|
isOpt: boolean;
|
|
1281
|
-
ref
|
|
1199
|
+
ref: string;
|
|
1282
1200
|
} | {
|
|
1283
1201
|
name: string;
|
|
1284
1202
|
kind: string;
|
|
1285
1203
|
desc: string;
|
|
1286
1204
|
isOpt: boolean;
|
|
1287
|
-
ref
|
|
1205
|
+
ref?: undefined;
|
|
1288
1206
|
} | {
|
|
1289
1207
|
name: string;
|
|
1290
1208
|
kind: string;
|
|
@@ -1589,16 +1507,23 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1589
1507
|
ref?: undefined;
|
|
1590
1508
|
})[];
|
|
1591
1509
|
};
|
|
1592
|
-
|
|
1510
|
+
BaseExportContext: {
|
|
1593
1511
|
name: string;
|
|
1594
1512
|
kind: string;
|
|
1595
1513
|
desc: string;
|
|
1596
|
-
props: {
|
|
1514
|
+
props: ({
|
|
1515
|
+
name: string;
|
|
1516
|
+
kind: string;
|
|
1517
|
+
desc: string;
|
|
1518
|
+
isOpt: boolean;
|
|
1519
|
+
ref: string;
|
|
1520
|
+
} | {
|
|
1597
1521
|
name: string;
|
|
1598
1522
|
kind: string;
|
|
1599
1523
|
desc: string;
|
|
1600
1524
|
ref: string;
|
|
1601
|
-
|
|
1525
|
+
isOpt?: undefined;
|
|
1526
|
+
})[];
|
|
1602
1527
|
};
|
|
1603
1528
|
BroadcastConfig: {
|
|
1604
1529
|
name: string;
|
|
@@ -1623,26 +1548,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1623
1548
|
kind: string;
|
|
1624
1549
|
desc: string;
|
|
1625
1550
|
};
|
|
1626
|
-
BulkUpdatePermittedValues: {
|
|
1627
|
-
name: string;
|
|
1628
|
-
kind: string;
|
|
1629
|
-
desc: string;
|
|
1630
|
-
props: {
|
|
1631
|
-
name: string;
|
|
1632
|
-
kind: string;
|
|
1633
|
-
desc: string;
|
|
1634
|
-
}[];
|
|
1635
|
-
};
|
|
1636
|
-
BulkUpdatePermittedValuesContext: {
|
|
1637
|
-
name: string;
|
|
1638
|
-
kind: string;
|
|
1639
|
-
desc: string;
|
|
1640
|
-
props: {
|
|
1641
|
-
name: string;
|
|
1642
|
-
kind: string;
|
|
1643
|
-
desc: string;
|
|
1644
|
-
}[];
|
|
1645
|
-
};
|
|
1646
1551
|
ButtonStyle: {
|
|
1647
1552
|
name: string;
|
|
1648
1553
|
kind: string;
|
|
@@ -1791,32 +1696,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1791
1696
|
ref?: undefined;
|
|
1792
1697
|
})[];
|
|
1793
1698
|
};
|
|
1794
|
-
CellSummaryOperation: {
|
|
1795
|
-
name: string;
|
|
1796
|
-
kind: string;
|
|
1797
|
-
desc: string;
|
|
1798
|
-
props: {
|
|
1799
|
-
name: string;
|
|
1800
|
-
kind: string;
|
|
1801
|
-
desc: string;
|
|
1802
|
-
}[];
|
|
1803
|
-
};
|
|
1804
|
-
CellSummaryOperationContext: {
|
|
1805
|
-
name: string;
|
|
1806
|
-
kind: string;
|
|
1807
|
-
desc: string;
|
|
1808
|
-
props: ({
|
|
1809
|
-
name: string;
|
|
1810
|
-
kind: string;
|
|
1811
|
-
desc: string;
|
|
1812
|
-
ref?: undefined;
|
|
1813
|
-
} | {
|
|
1814
|
-
name: string;
|
|
1815
|
-
kind: string;
|
|
1816
|
-
desc: string;
|
|
1817
|
-
ref: string;
|
|
1818
|
-
})[];
|
|
1819
|
-
};
|
|
1820
1699
|
CellSummaryOptions: {
|
|
1821
1700
|
name: string;
|
|
1822
1701
|
kind: string;
|
|
@@ -1828,7 +1707,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1828
1707
|
isOpt: boolean;
|
|
1829
1708
|
}[];
|
|
1830
1709
|
};
|
|
1831
|
-
|
|
1710
|
+
CellSummmaryInfo: {
|
|
1832
1711
|
name: string;
|
|
1833
1712
|
kind: string;
|
|
1834
1713
|
desc: string;
|
|
@@ -1947,6 +1826,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1947
1826
|
isOpt: boolean;
|
|
1948
1827
|
}[];
|
|
1949
1828
|
};
|
|
1829
|
+
ColumnBooleanFalseMap: {
|
|
1830
|
+
name: string;
|
|
1831
|
+
kind: string;
|
|
1832
|
+
desc: string;
|
|
1833
|
+
};
|
|
1950
1834
|
ColumnComparison: {
|
|
1951
1835
|
name: string;
|
|
1952
1836
|
kind: string;
|
|
@@ -1957,23 +1841,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1957
1841
|
desc: string;
|
|
1958
1842
|
}[];
|
|
1959
1843
|
};
|
|
1960
|
-
|
|
1844
|
+
ColumnDirectionMap: {
|
|
1961
1845
|
name: string;
|
|
1962
1846
|
kind: string;
|
|
1963
1847
|
desc: string;
|
|
1964
|
-
props: ({
|
|
1965
|
-
name: string;
|
|
1966
|
-
kind: string;
|
|
1967
|
-
desc: string;
|
|
1968
|
-
ref?: undefined;
|
|
1969
|
-
} | {
|
|
1970
|
-
name: string;
|
|
1971
|
-
kind: string;
|
|
1972
|
-
desc: string;
|
|
1973
|
-
ref: string;
|
|
1974
|
-
})[];
|
|
1975
1848
|
};
|
|
1976
|
-
|
|
1849
|
+
ColumnFilter: {
|
|
1977
1850
|
name: string;
|
|
1978
1851
|
kind: string;
|
|
1979
1852
|
desc: string;
|
|
@@ -1982,23 +1855,15 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
1982
1855
|
kind: string;
|
|
1983
1856
|
desc: string;
|
|
1984
1857
|
isOpt?: undefined;
|
|
1858
|
+
defVal?: undefined;
|
|
1985
1859
|
} | {
|
|
1986
1860
|
name: string;
|
|
1987
1861
|
kind: string;
|
|
1988
1862
|
desc: string;
|
|
1989
1863
|
isOpt: boolean;
|
|
1864
|
+
defVal: string;
|
|
1990
1865
|
})[];
|
|
1991
1866
|
};
|
|
1992
|
-
ColumnFilterContext: {
|
|
1993
|
-
name: string;
|
|
1994
|
-
kind: string;
|
|
1995
|
-
desc: string;
|
|
1996
|
-
props: {
|
|
1997
|
-
name: string;
|
|
1998
|
-
kind: string;
|
|
1999
|
-
desc: string;
|
|
2000
|
-
}[];
|
|
2001
|
-
};
|
|
2002
1867
|
ColumnFilterDef: {
|
|
2003
1868
|
name: string;
|
|
2004
1869
|
kind: string;
|
|
@@ -2016,7 +1881,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2016
1881
|
gridInfo: string;
|
|
2017
1882
|
noCode: string;
|
|
2018
1883
|
defVal: string;
|
|
2019
|
-
ref?: undefined;
|
|
2020
1884
|
} | {
|
|
2021
1885
|
name: string;
|
|
2022
1886
|
kind: string;
|
|
@@ -2025,25 +1889,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2025
1889
|
gridInfo: string;
|
|
2026
1890
|
defVal: string;
|
|
2027
1891
|
noCode?: undefined;
|
|
2028
|
-
ref?: undefined;
|
|
2029
1892
|
} | {
|
|
2030
1893
|
name: string;
|
|
2031
1894
|
kind: string;
|
|
2032
1895
|
desc: string;
|
|
2033
1896
|
isOpt: boolean;
|
|
2034
1897
|
defVal: string;
|
|
2035
|
-
ref: string;
|
|
2036
|
-
gridInfo?: undefined;
|
|
2037
|
-
noCode?: undefined;
|
|
2038
|
-
} | {
|
|
2039
|
-
name: string;
|
|
2040
|
-
kind: string;
|
|
2041
|
-
desc: string;
|
|
2042
|
-
isOpt: boolean;
|
|
2043
|
-
ref: string;
|
|
2044
1898
|
gridInfo?: undefined;
|
|
2045
1899
|
noCode?: undefined;
|
|
2046
|
-
defVal?: undefined;
|
|
2047
1900
|
} | {
|
|
2048
1901
|
name: string;
|
|
2049
1902
|
kind: string;
|
|
@@ -2052,7 +1905,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2052
1905
|
gridInfo?: undefined;
|
|
2053
1906
|
noCode?: undefined;
|
|
2054
1907
|
defVal?: undefined;
|
|
2055
|
-
ref?: undefined;
|
|
2056
1908
|
} | {
|
|
2057
1909
|
name: string;
|
|
2058
1910
|
kind: string;
|
|
@@ -2061,7 +1913,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2061
1913
|
noCode: string;
|
|
2062
1914
|
defVal: string;
|
|
2063
1915
|
gridInfo?: undefined;
|
|
2064
|
-
ref?: undefined;
|
|
2065
1916
|
})[];
|
|
2066
1917
|
};
|
|
2067
1918
|
ColumnFilterPredicate: {
|
|
@@ -2112,6 +1963,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2112
1963
|
isOpt: boolean;
|
|
2113
1964
|
}[];
|
|
2114
1965
|
};
|
|
1966
|
+
ColumnNumberMap: {
|
|
1967
|
+
name: string;
|
|
1968
|
+
kind: string;
|
|
1969
|
+
desc: string;
|
|
1970
|
+
};
|
|
2115
1971
|
ColumnOptions: {
|
|
2116
1972
|
name: string;
|
|
2117
1973
|
kind: string;
|
|
@@ -2149,10 +2005,20 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2149
2005
|
desc: string;
|
|
2150
2006
|
}[];
|
|
2151
2007
|
};
|
|
2008
|
+
ColumnStringMap: {
|
|
2009
|
+
name: string;
|
|
2010
|
+
kind: string;
|
|
2011
|
+
desc: string;
|
|
2012
|
+
};
|
|
2152
2013
|
ColumnTypesContext: {
|
|
2153
2014
|
name: string;
|
|
2154
2015
|
kind: string;
|
|
2155
2016
|
desc: string;
|
|
2017
|
+
props: {
|
|
2018
|
+
name: string;
|
|
2019
|
+
kind: string;
|
|
2020
|
+
desc: string;
|
|
2021
|
+
}[];
|
|
2156
2022
|
};
|
|
2157
2023
|
ColumnValuesComparer: {
|
|
2158
2024
|
name: string;
|
|
@@ -2170,7 +2036,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2170
2036
|
ref: string;
|
|
2171
2037
|
})[];
|
|
2172
2038
|
};
|
|
2173
|
-
|
|
2039
|
+
CommandHandler: {
|
|
2174
2040
|
name: string;
|
|
2175
2041
|
kind: string;
|
|
2176
2042
|
desc: string;
|
|
@@ -2289,7 +2155,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2289
2155
|
isOpt: boolean;
|
|
2290
2156
|
}[];
|
|
2291
2157
|
};
|
|
2292
|
-
|
|
2158
|
+
CreateRowFormContext: {
|
|
2293
2159
|
name: string;
|
|
2294
2160
|
kind: string;
|
|
2295
2161
|
desc: string;
|
|
@@ -2305,6 +2171,32 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2305
2171
|
isOpt?: undefined;
|
|
2306
2172
|
})[];
|
|
2307
2173
|
};
|
|
2174
|
+
CustomCellSummaryOperation: {
|
|
2175
|
+
name: string;
|
|
2176
|
+
kind: string;
|
|
2177
|
+
desc: string;
|
|
2178
|
+
props: {
|
|
2179
|
+
name: string;
|
|
2180
|
+
kind: string;
|
|
2181
|
+
desc: string;
|
|
2182
|
+
}[];
|
|
2183
|
+
};
|
|
2184
|
+
CustomCellSummaryOperationContext: {
|
|
2185
|
+
name: string;
|
|
2186
|
+
kind: string;
|
|
2187
|
+
desc: string;
|
|
2188
|
+
props: ({
|
|
2189
|
+
name: string;
|
|
2190
|
+
kind: string;
|
|
2191
|
+
desc: string;
|
|
2192
|
+
ref?: undefined;
|
|
2193
|
+
} | {
|
|
2194
|
+
name: string;
|
|
2195
|
+
kind: string;
|
|
2196
|
+
desc: string;
|
|
2197
|
+
ref: string;
|
|
2198
|
+
})[];
|
|
2199
|
+
};
|
|
2308
2200
|
CustomColumnMenuContext: {
|
|
2309
2201
|
name: string;
|
|
2310
2202
|
kind: string;
|
|
@@ -2324,11 +2216,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2324
2216
|
name: string;
|
|
2325
2217
|
kind: string;
|
|
2326
2218
|
desc: string;
|
|
2327
|
-
props: {
|
|
2219
|
+
props: ({
|
|
2328
2220
|
name: string;
|
|
2329
2221
|
kind: string;
|
|
2330
2222
|
desc: string;
|
|
2331
|
-
|
|
2223
|
+
ref?: undefined;
|
|
2224
|
+
} | {
|
|
2225
|
+
name: string;
|
|
2226
|
+
kind: string;
|
|
2227
|
+
desc: string;
|
|
2228
|
+
ref: string;
|
|
2229
|
+
})[];
|
|
2332
2230
|
};
|
|
2333
2231
|
CustomContextMenuItem: {
|
|
2334
2232
|
name: string;
|
|
@@ -2391,6 +2289,22 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2391
2289
|
ref?: undefined;
|
|
2392
2290
|
})[];
|
|
2393
2291
|
};
|
|
2292
|
+
CustomEditColumnValuesContext: {
|
|
2293
|
+
name: string;
|
|
2294
|
+
kind: string;
|
|
2295
|
+
desc: string;
|
|
2296
|
+
props: ({
|
|
2297
|
+
name: string;
|
|
2298
|
+
kind: string;
|
|
2299
|
+
desc: string;
|
|
2300
|
+
ref?: undefined;
|
|
2301
|
+
} | {
|
|
2302
|
+
name: string;
|
|
2303
|
+
kind: string;
|
|
2304
|
+
desc: string;
|
|
2305
|
+
ref: string;
|
|
2306
|
+
})[];
|
|
2307
|
+
};
|
|
2394
2308
|
CustomIcon: {
|
|
2395
2309
|
name: string;
|
|
2396
2310
|
kind: string;
|
|
@@ -2407,6 +2321,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2407
2321
|
ref?: undefined;
|
|
2408
2322
|
})[];
|
|
2409
2323
|
};
|
|
2324
|
+
CustomInFilterValuesContext: {
|
|
2325
|
+
name: string;
|
|
2326
|
+
kind: string;
|
|
2327
|
+
desc: string;
|
|
2328
|
+
props: {
|
|
2329
|
+
name: string;
|
|
2330
|
+
kind: string;
|
|
2331
|
+
desc: string;
|
|
2332
|
+
}[];
|
|
2333
|
+
};
|
|
2410
2334
|
CustomQueryVariableContext: {
|
|
2411
2335
|
name: string;
|
|
2412
2336
|
kind: string;
|
|
@@ -2535,16 +2459,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2535
2459
|
isOpt: boolean;
|
|
2536
2460
|
}[];
|
|
2537
2461
|
};
|
|
2538
|
-
CustomSortPermittedValues: {
|
|
2539
|
-
name: string;
|
|
2540
|
-
kind: string;
|
|
2541
|
-
desc: string;
|
|
2542
|
-
props: {
|
|
2543
|
-
name: string;
|
|
2544
|
-
kind: string;
|
|
2545
|
-
desc: string;
|
|
2546
|
-
}[];
|
|
2547
|
-
};
|
|
2548
2462
|
CustomSortState: {
|
|
2549
2463
|
name: string;
|
|
2550
2464
|
kind: string;
|
|
@@ -2815,7 +2729,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2815
2729
|
name: string;
|
|
2816
2730
|
kind: string;
|
|
2817
2731
|
desc: string;
|
|
2818
|
-
ref: string;
|
|
2819
2732
|
}[];
|
|
2820
2733
|
};
|
|
2821
2734
|
DataImportFileHandler: {
|
|
@@ -2958,33 +2871,27 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2958
2871
|
ref: string;
|
|
2959
2872
|
})[];
|
|
2960
2873
|
};
|
|
2961
|
-
|
|
2962
|
-
name: string;
|
|
2963
|
-
kind: string;
|
|
2964
|
-
desc: string;
|
|
2965
|
-
};
|
|
2966
|
-
EditActionRowFormContext: {
|
|
2874
|
+
EditOptions: {
|
|
2967
2875
|
name: string;
|
|
2968
2876
|
kind: string;
|
|
2969
2877
|
desc: string;
|
|
2970
|
-
props: {
|
|
2878
|
+
props: ({
|
|
2971
2879
|
name: string;
|
|
2972
2880
|
kind: string;
|
|
2973
2881
|
desc: string;
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
kind: string;
|
|
2979
|
-
desc: string;
|
|
2980
|
-
props: {
|
|
2882
|
+
isOpt: boolean;
|
|
2883
|
+
gridInfo?: undefined;
|
|
2884
|
+
defVal?: undefined;
|
|
2885
|
+
} | {
|
|
2981
2886
|
name: string;
|
|
2982
2887
|
kind: string;
|
|
2983
2888
|
desc: string;
|
|
2984
2889
|
isOpt: boolean;
|
|
2985
|
-
|
|
2890
|
+
gridInfo: string;
|
|
2891
|
+
defVal: string;
|
|
2892
|
+
})[];
|
|
2986
2893
|
};
|
|
2987
|
-
|
|
2894
|
+
EditRowFormContext: {
|
|
2988
2895
|
name: string;
|
|
2989
2896
|
kind: string;
|
|
2990
2897
|
desc: string;
|
|
@@ -2992,29 +2899,8 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
2992
2899
|
name: string;
|
|
2993
2900
|
kind: string;
|
|
2994
2901
|
desc: string;
|
|
2995
|
-
isOpt: boolean;
|
|
2996
2902
|
}[];
|
|
2997
2903
|
};
|
|
2998
|
-
EditOptions: {
|
|
2999
|
-
name: string;
|
|
3000
|
-
kind: string;
|
|
3001
|
-
desc: string;
|
|
3002
|
-
props: ({
|
|
3003
|
-
name: string;
|
|
3004
|
-
kind: string;
|
|
3005
|
-
desc: string;
|
|
3006
|
-
isOpt: boolean;
|
|
3007
|
-
gridInfo: string;
|
|
3008
|
-
defVal: string;
|
|
3009
|
-
} | {
|
|
3010
|
-
name: string;
|
|
3011
|
-
kind: string;
|
|
3012
|
-
desc: string;
|
|
3013
|
-
isOpt: boolean;
|
|
3014
|
-
gridInfo?: undefined;
|
|
3015
|
-
defVal?: undefined;
|
|
3016
|
-
})[];
|
|
3017
|
-
};
|
|
3018
2904
|
Entitlement: {
|
|
3019
2905
|
name: string;
|
|
3020
2906
|
kind: string;
|
|
@@ -3085,12 +2971,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3085
2971
|
name: string;
|
|
3086
2972
|
kind: string;
|
|
3087
2973
|
desc: string;
|
|
3088
|
-
props: {
|
|
3089
|
-
name: string;
|
|
3090
|
-
kind: string;
|
|
3091
|
-
desc: string;
|
|
3092
|
-
ref: string;
|
|
3093
|
-
}[];
|
|
3094
2974
|
};
|
|
3095
2975
|
ExportFormContext: {
|
|
3096
2976
|
name: string;
|
|
@@ -3114,7 +2994,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3114
2994
|
isOpt: boolean;
|
|
3115
2995
|
gridInfo: string;
|
|
3116
2996
|
defVal: string;
|
|
3117
|
-
ref?: undefined;
|
|
3118
2997
|
} | {
|
|
3119
2998
|
name: string;
|
|
3120
2999
|
kind: string;
|
|
@@ -3122,7 +3001,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3122
3001
|
isOpt: boolean;
|
|
3123
3002
|
gridInfo?: undefined;
|
|
3124
3003
|
defVal?: undefined;
|
|
3125
|
-
ref?: undefined;
|
|
3126
3004
|
} | {
|
|
3127
3005
|
name: string;
|
|
3128
3006
|
kind: string;
|
|
@@ -3130,27 +3008,25 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3130
3008
|
isOpt: boolean;
|
|
3131
3009
|
defVal: string;
|
|
3132
3010
|
gridInfo?: undefined;
|
|
3133
|
-
ref?: undefined;
|
|
3134
|
-
} | {
|
|
3135
|
-
name: string;
|
|
3136
|
-
kind: string;
|
|
3137
|
-
desc: string;
|
|
3138
|
-
isOpt: boolean;
|
|
3139
|
-
gridInfo: string;
|
|
3140
|
-
defVal: string;
|
|
3141
|
-
ref: string;
|
|
3142
3011
|
})[];
|
|
3143
3012
|
};
|
|
3144
3013
|
ExportState: {
|
|
3145
3014
|
name: string;
|
|
3146
3015
|
kind: string;
|
|
3147
3016
|
desc: string;
|
|
3148
|
-
props: {
|
|
3017
|
+
props: ({
|
|
3149
3018
|
name: string;
|
|
3150
3019
|
kind: string;
|
|
3151
3020
|
desc: string;
|
|
3152
3021
|
isOpt: boolean;
|
|
3153
|
-
|
|
3022
|
+
ref: string;
|
|
3023
|
+
} | {
|
|
3024
|
+
name: string;
|
|
3025
|
+
kind: string;
|
|
3026
|
+
desc: string;
|
|
3027
|
+
isOpt: boolean;
|
|
3028
|
+
ref?: undefined;
|
|
3029
|
+
})[];
|
|
3154
3030
|
};
|
|
3155
3031
|
ExpressionCategory: {
|
|
3156
3032
|
name: string;
|
|
@@ -3162,6 +3038,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3162
3038
|
kind: string;
|
|
3163
3039
|
desc: string;
|
|
3164
3040
|
props: ({
|
|
3041
|
+
name: string;
|
|
3042
|
+
kind: string;
|
|
3043
|
+
desc: string;
|
|
3044
|
+
isOpt: boolean;
|
|
3045
|
+
ref: string;
|
|
3046
|
+
} | {
|
|
3165
3047
|
name: string;
|
|
3166
3048
|
kind: string;
|
|
3167
3049
|
desc: string;
|
|
@@ -3471,7 +3353,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3471
3353
|
ref?: undefined;
|
|
3472
3354
|
})[];
|
|
3473
3355
|
};
|
|
3474
|
-
|
|
3356
|
+
FilterOptions: {
|
|
3475
3357
|
name: string;
|
|
3476
3358
|
kind: string;
|
|
3477
3359
|
desc: string;
|
|
@@ -3481,50 +3363,55 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3481
3363
|
desc: string;
|
|
3482
3364
|
isOpt: boolean;
|
|
3483
3365
|
gridInfo: string;
|
|
3366
|
+
noCode: string;
|
|
3484
3367
|
defVal: string;
|
|
3368
|
+
ref?: undefined;
|
|
3369
|
+
} | {
|
|
3370
|
+
name: string;
|
|
3371
|
+
kind: string;
|
|
3372
|
+
desc: string;
|
|
3373
|
+
isOpt: boolean;
|
|
3374
|
+
ref: string;
|
|
3375
|
+
gridInfo?: undefined;
|
|
3485
3376
|
noCode?: undefined;
|
|
3377
|
+
defVal?: undefined;
|
|
3486
3378
|
} | {
|
|
3487
3379
|
name: string;
|
|
3488
3380
|
kind: string;
|
|
3489
3381
|
desc: string;
|
|
3490
3382
|
isOpt: boolean;
|
|
3491
|
-
gridInfo
|
|
3492
|
-
noCode
|
|
3493
|
-
defVal
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
FilterPermittedValues: {
|
|
3497
|
-
name: string;
|
|
3498
|
-
kind: string;
|
|
3499
|
-
desc: string;
|
|
3500
|
-
props: ({
|
|
3383
|
+
gridInfo?: undefined;
|
|
3384
|
+
noCode?: undefined;
|
|
3385
|
+
defVal?: undefined;
|
|
3386
|
+
ref?: undefined;
|
|
3387
|
+
} | {
|
|
3501
3388
|
name: string;
|
|
3502
3389
|
kind: string;
|
|
3503
3390
|
desc: string;
|
|
3504
3391
|
isOpt: boolean;
|
|
3392
|
+
gridInfo: string;
|
|
3505
3393
|
defVal: string;
|
|
3394
|
+
noCode?: undefined;
|
|
3395
|
+
ref?: undefined;
|
|
3506
3396
|
} | {
|
|
3507
3397
|
name: string;
|
|
3508
3398
|
kind: string;
|
|
3509
3399
|
desc: string;
|
|
3510
|
-
isOpt
|
|
3511
|
-
defVal
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
kind: string;
|
|
3517
|
-
desc: string;
|
|
3518
|
-
props: {
|
|
3400
|
+
isOpt: boolean;
|
|
3401
|
+
defVal: string;
|
|
3402
|
+
ref: string;
|
|
3403
|
+
gridInfo?: undefined;
|
|
3404
|
+
noCode?: undefined;
|
|
3405
|
+
} | {
|
|
3519
3406
|
name: string;
|
|
3520
3407
|
kind: string;
|
|
3521
3408
|
desc: string;
|
|
3522
|
-
|
|
3523
|
-
|
|
3524
|
-
|
|
3525
|
-
|
|
3526
|
-
|
|
3527
|
-
|
|
3409
|
+
isOpt: boolean;
|
|
3410
|
+
noCode: string;
|
|
3411
|
+
defVal: string;
|
|
3412
|
+
gridInfo?: undefined;
|
|
3413
|
+
ref?: undefined;
|
|
3414
|
+
})[];
|
|
3528
3415
|
};
|
|
3529
3416
|
FlashingCellDefinition: {
|
|
3530
3417
|
name: string;
|
|
@@ -3716,6 +3603,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3716
3603
|
desc: string;
|
|
3717
3604
|
}[];
|
|
3718
3605
|
};
|
|
3606
|
+
GetDetailRowsContext: {
|
|
3607
|
+
name: string;
|
|
3608
|
+
kind: string;
|
|
3609
|
+
desc: string;
|
|
3610
|
+
props: {
|
|
3611
|
+
name: string;
|
|
3612
|
+
kind: string;
|
|
3613
|
+
desc: string;
|
|
3614
|
+
}[];
|
|
3615
|
+
};
|
|
3719
3616
|
GetPrimaryKeyValueContext: {
|
|
3720
3617
|
name: string;
|
|
3721
3618
|
kind: string;
|
|
@@ -3789,11 +3686,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3789
3686
|
isOpt: boolean;
|
|
3790
3687
|
}[];
|
|
3791
3688
|
};
|
|
3792
|
-
GridFilterEditor: {
|
|
3793
|
-
name: string;
|
|
3794
|
-
kind: string;
|
|
3795
|
-
desc: string;
|
|
3796
|
-
};
|
|
3797
3689
|
GridFilterEditors: {
|
|
3798
3690
|
name: string;
|
|
3799
3691
|
kind: string;
|
|
@@ -3803,23 +3695,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3803
3695
|
name: string;
|
|
3804
3696
|
kind: string;
|
|
3805
3697
|
desc: string;
|
|
3806
|
-
props:
|
|
3698
|
+
props: {
|
|
3807
3699
|
name: string;
|
|
3808
3700
|
kind: string;
|
|
3809
3701
|
desc: string;
|
|
3810
3702
|
isOpt: boolean;
|
|
3811
3703
|
defVal: string;
|
|
3812
3704
|
ref: string;
|
|
3813
|
-
|
|
3814
|
-
} | {
|
|
3815
|
-
name: string;
|
|
3816
|
-
kind: string;
|
|
3817
|
-
desc: string;
|
|
3818
|
-
isOpt: boolean;
|
|
3819
|
-
gridInfo: string;
|
|
3820
|
-
defVal: string;
|
|
3821
|
-
ref?: undefined;
|
|
3822
|
-
})[];
|
|
3705
|
+
}[];
|
|
3823
3706
|
};
|
|
3824
3707
|
GridRow: {
|
|
3825
3708
|
name: string;
|
|
@@ -3845,28 +3728,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3845
3728
|
ref: string;
|
|
3846
3729
|
})[];
|
|
3847
3730
|
};
|
|
3848
|
-
GroupingOptions: {
|
|
3849
|
-
name: string;
|
|
3850
|
-
kind: string;
|
|
3851
|
-
desc: string;
|
|
3852
|
-
props: ({
|
|
3853
|
-
name: string;
|
|
3854
|
-
kind: string;
|
|
3855
|
-
desc: string;
|
|
3856
|
-
isOpt: boolean;
|
|
3857
|
-
gridInfo: string;
|
|
3858
|
-
noCode: string;
|
|
3859
|
-
defVal: string;
|
|
3860
|
-
} | {
|
|
3861
|
-
name: string;
|
|
3862
|
-
kind: string;
|
|
3863
|
-
desc: string;
|
|
3864
|
-
isOpt: boolean;
|
|
3865
|
-
noCode: string;
|
|
3866
|
-
defVal: string;
|
|
3867
|
-
gridInfo?: undefined;
|
|
3868
|
-
})[];
|
|
3869
|
-
};
|
|
3870
3731
|
HandleFdc3Context: {
|
|
3871
3732
|
name: string;
|
|
3872
3733
|
kind: string;
|
|
@@ -3932,16 +3793,32 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
3932
3793
|
kind: string;
|
|
3933
3794
|
desc: string;
|
|
3934
3795
|
};
|
|
3935
|
-
|
|
3796
|
+
InFilterValueInfo: {
|
|
3936
3797
|
name: string;
|
|
3937
3798
|
kind: string;
|
|
3938
3799
|
desc: string;
|
|
3939
|
-
props: {
|
|
3800
|
+
props: ({
|
|
3940
3801
|
name: string;
|
|
3941
3802
|
kind: string;
|
|
3942
3803
|
desc: string;
|
|
3943
3804
|
isOpt: boolean;
|
|
3944
|
-
|
|
3805
|
+
} | {
|
|
3806
|
+
name: string;
|
|
3807
|
+
kind: string;
|
|
3808
|
+
desc: string;
|
|
3809
|
+
isOpt?: undefined;
|
|
3810
|
+
})[];
|
|
3811
|
+
};
|
|
3812
|
+
InteropioPluginOptions: {
|
|
3813
|
+
name: string;
|
|
3814
|
+
kind: string;
|
|
3815
|
+
desc: string;
|
|
3816
|
+
props: {
|
|
3817
|
+
name: string;
|
|
3818
|
+
kind: string;
|
|
3819
|
+
desc: string;
|
|
3820
|
+
isOpt: boolean;
|
|
3821
|
+
defVal: string;
|
|
3945
3822
|
}[];
|
|
3946
3823
|
};
|
|
3947
3824
|
IPushPullDomain: {
|
|
@@ -4023,18 +3900,44 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4023
3900
|
name: string;
|
|
4024
3901
|
kind: string;
|
|
4025
3902
|
desc: string;
|
|
3903
|
+
};
|
|
3904
|
+
LayoutArray: {
|
|
3905
|
+
name: string;
|
|
3906
|
+
kind: string;
|
|
3907
|
+
desc: string;
|
|
3908
|
+
};
|
|
3909
|
+
LayoutAssociatedObject: {
|
|
3910
|
+
name: string;
|
|
3911
|
+
kind: string;
|
|
3912
|
+
desc: string;
|
|
3913
|
+
};
|
|
3914
|
+
LayoutAvailableContext: {
|
|
3915
|
+
name: string;
|
|
3916
|
+
kind: string;
|
|
3917
|
+
desc: string;
|
|
3918
|
+
props: {
|
|
3919
|
+
name: string;
|
|
3920
|
+
kind: string;
|
|
3921
|
+
desc: string;
|
|
3922
|
+
ref: string;
|
|
3923
|
+
}[];
|
|
3924
|
+
};
|
|
3925
|
+
LayoutBase: {
|
|
3926
|
+
name: string;
|
|
3927
|
+
kind: string;
|
|
3928
|
+
desc: string;
|
|
4026
3929
|
props: ({
|
|
4027
3930
|
name: string;
|
|
4028
3931
|
kind: string;
|
|
4029
3932
|
desc: string;
|
|
4030
3933
|
isOpt: boolean;
|
|
4031
|
-
ref
|
|
3934
|
+
ref?: undefined;
|
|
4032
3935
|
} | {
|
|
4033
3936
|
name: string;
|
|
4034
3937
|
kind: string;
|
|
4035
3938
|
desc: string;
|
|
4036
3939
|
isOpt: boolean;
|
|
4037
|
-
ref
|
|
3940
|
+
ref: string;
|
|
4038
3941
|
} | {
|
|
4039
3942
|
name: string;
|
|
4040
3943
|
kind: string;
|
|
@@ -4043,22 +3946,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4043
3946
|
ref?: undefined;
|
|
4044
3947
|
})[];
|
|
4045
3948
|
};
|
|
4046
|
-
LayoutAssociatedObject: {
|
|
4047
|
-
name: string;
|
|
4048
|
-
kind: string;
|
|
4049
|
-
desc: string;
|
|
4050
|
-
};
|
|
4051
|
-
LayoutAvailableContext: {
|
|
4052
|
-
name: string;
|
|
4053
|
-
kind: string;
|
|
4054
|
-
desc: string;
|
|
4055
|
-
props: {
|
|
4056
|
-
name: string;
|
|
4057
|
-
kind: string;
|
|
4058
|
-
desc: string;
|
|
4059
|
-
ref: string;
|
|
4060
|
-
}[];
|
|
4061
|
-
};
|
|
4062
3949
|
LayoutExtension: {
|
|
4063
3950
|
name: string;
|
|
4064
3951
|
kind: string;
|
|
@@ -4079,49 +3966,34 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4079
3966
|
kind: string;
|
|
4080
3967
|
desc: string;
|
|
4081
3968
|
isOpt: boolean;
|
|
4082
|
-
|
|
4083
|
-
noCode: string;
|
|
4084
|
-
defVal: string;
|
|
4085
|
-
ref?: undefined;
|
|
3969
|
+
ref: string;
|
|
4086
3970
|
} | {
|
|
4087
3971
|
name: string;
|
|
4088
3972
|
kind: string;
|
|
4089
3973
|
desc: string;
|
|
4090
3974
|
isOpt: boolean;
|
|
4091
|
-
gridInfo: string;
|
|
4092
|
-
defVal: string;
|
|
4093
|
-
noCode?: undefined;
|
|
4094
3975
|
ref?: undefined;
|
|
4095
|
-
}
|
|
3976
|
+
})[];
|
|
3977
|
+
};
|
|
3978
|
+
LayoutState: {
|
|
3979
|
+
name: string;
|
|
3980
|
+
kind: string;
|
|
3981
|
+
desc: string;
|
|
3982
|
+
props: ({
|
|
4096
3983
|
name: string;
|
|
4097
3984
|
kind: string;
|
|
4098
3985
|
desc: string;
|
|
4099
3986
|
isOpt: boolean;
|
|
4100
|
-
|
|
4101
|
-
defVal: string;
|
|
4102
|
-
ref: string;
|
|
4103
|
-
noCode?: undefined;
|
|
3987
|
+
ref?: undefined;
|
|
4104
3988
|
} | {
|
|
4105
3989
|
name: string;
|
|
4106
3990
|
kind: string;
|
|
4107
3991
|
desc: string;
|
|
4108
|
-
isOpt: boolean;
|
|
4109
3992
|
ref: string;
|
|
4110
|
-
|
|
4111
|
-
noCode?: undefined;
|
|
4112
|
-
defVal?: undefined;
|
|
4113
|
-
} | {
|
|
4114
|
-
name: string;
|
|
4115
|
-
kind: string;
|
|
4116
|
-
desc: string;
|
|
4117
|
-
isOpt: boolean;
|
|
4118
|
-
gridInfo?: undefined;
|
|
4119
|
-
noCode?: undefined;
|
|
4120
|
-
defVal?: undefined;
|
|
4121
|
-
ref?: undefined;
|
|
3993
|
+
isOpt?: undefined;
|
|
4122
3994
|
})[];
|
|
4123
3995
|
};
|
|
4124
|
-
|
|
3996
|
+
LayoutTagOptions: {
|
|
4125
3997
|
name: string;
|
|
4126
3998
|
kind: string;
|
|
4127
3999
|
desc: string;
|
|
@@ -4130,9 +4002,10 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4130
4002
|
kind: string;
|
|
4131
4003
|
desc: string;
|
|
4132
4004
|
isOpt: boolean;
|
|
4005
|
+
defVal: string;
|
|
4133
4006
|
}[];
|
|
4134
4007
|
};
|
|
4135
|
-
|
|
4008
|
+
LayoutViewOptions: {
|
|
4136
4009
|
name: string;
|
|
4137
4010
|
kind: string;
|
|
4138
4011
|
desc: string;
|
|
@@ -4144,17 +4017,25 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4144
4017
|
defVal: string;
|
|
4145
4018
|
}[];
|
|
4146
4019
|
};
|
|
4147
|
-
|
|
4020
|
+
LoadingScreenOptions: {
|
|
4148
4021
|
name: string;
|
|
4149
4022
|
kind: string;
|
|
4150
4023
|
desc: string;
|
|
4151
|
-
props: {
|
|
4024
|
+
props: ({
|
|
4152
4025
|
name: string;
|
|
4153
4026
|
kind: string;
|
|
4154
4027
|
desc: string;
|
|
4155
4028
|
isOpt: boolean;
|
|
4156
4029
|
defVal: string;
|
|
4157
|
-
|
|
4030
|
+
noCode?: undefined;
|
|
4031
|
+
} | {
|
|
4032
|
+
name: string;
|
|
4033
|
+
kind: string;
|
|
4034
|
+
desc: string;
|
|
4035
|
+
isOpt: boolean;
|
|
4036
|
+
noCode: string;
|
|
4037
|
+
defVal: string;
|
|
4038
|
+
})[];
|
|
4158
4039
|
};
|
|
4159
4040
|
MasterDetailPluginOptions: {
|
|
4160
4041
|
name: string;
|
|
@@ -4412,26 +4293,29 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4412
4293
|
defVal?: undefined;
|
|
4413
4294
|
})[];
|
|
4414
4295
|
};
|
|
4415
|
-
|
|
4296
|
+
PivotLayout: {
|
|
4416
4297
|
name: string;
|
|
4417
4298
|
kind: string;
|
|
4418
4299
|
desc: string;
|
|
4419
|
-
props: {
|
|
4300
|
+
props: ({
|
|
4420
4301
|
name: string;
|
|
4421
4302
|
kind: string;
|
|
4422
4303
|
desc: string;
|
|
4423
4304
|
isOpt: boolean;
|
|
4424
|
-
|
|
4425
|
-
|
|
4426
|
-
PermittedValuesContext: {
|
|
4427
|
-
name: string;
|
|
4428
|
-
kind: string;
|
|
4429
|
-
desc: string;
|
|
4430
|
-
props: {
|
|
4305
|
+
ref: string;
|
|
4306
|
+
} | {
|
|
4431
4307
|
name: string;
|
|
4432
4308
|
kind: string;
|
|
4433
4309
|
desc: string;
|
|
4434
|
-
|
|
4310
|
+
isOpt?: undefined;
|
|
4311
|
+
ref?: undefined;
|
|
4312
|
+
} | {
|
|
4313
|
+
name: string;
|
|
4314
|
+
kind: string;
|
|
4315
|
+
desc: string;
|
|
4316
|
+
isOpt: boolean;
|
|
4317
|
+
ref?: undefined;
|
|
4318
|
+
})[];
|
|
4435
4319
|
};
|
|
4436
4320
|
PivotPreviewColumnsContext: {
|
|
4437
4321
|
name: string;
|
|
@@ -4493,13 +4377,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4493
4377
|
name: string;
|
|
4494
4378
|
kind: string;
|
|
4495
4379
|
desc: string;
|
|
4496
|
-
props: {
|
|
4380
|
+
props: ({
|
|
4497
4381
|
name: string;
|
|
4498
4382
|
kind: string;
|
|
4499
4383
|
desc: string;
|
|
4500
4384
|
isOpt: boolean;
|
|
4501
4385
|
ref: string;
|
|
4502
|
-
}
|
|
4386
|
+
} | {
|
|
4387
|
+
name: string;
|
|
4388
|
+
kind: string;
|
|
4389
|
+
desc: string;
|
|
4390
|
+
ref: string;
|
|
4391
|
+
isOpt?: undefined;
|
|
4392
|
+
})[];
|
|
4503
4393
|
};
|
|
4504
4394
|
PredicateDefHandlerContext: {
|
|
4505
4395
|
name: string;
|
|
@@ -4560,6 +4450,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4560
4450
|
gridInfo?: undefined;
|
|
4561
4451
|
noCode?: undefined;
|
|
4562
4452
|
defVal?: undefined;
|
|
4453
|
+
} | {
|
|
4454
|
+
name: string;
|
|
4455
|
+
kind: string;
|
|
4456
|
+
desc: string;
|
|
4457
|
+
isOpt: boolean;
|
|
4458
|
+
noCode: string;
|
|
4459
|
+
defVal: string;
|
|
4460
|
+
gridInfo?: undefined;
|
|
4563
4461
|
})[];
|
|
4564
4462
|
};
|
|
4565
4463
|
PreProcessExportContext: {
|
|
@@ -4610,63 +4508,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4610
4508
|
name: string;
|
|
4611
4509
|
kind: string;
|
|
4612
4510
|
desc: string;
|
|
4613
|
-
props: {
|
|
4614
|
-
name: string;
|
|
4615
|
-
kind: string;
|
|
4616
|
-
desc: string;
|
|
4617
|
-
ref: string;
|
|
4618
|
-
}[];
|
|
4619
|
-
};
|
|
4620
|
-
QuickFilterOptions: {
|
|
4621
|
-
name: string;
|
|
4622
|
-
kind: string;
|
|
4623
|
-
desc: string;
|
|
4624
|
-
props: ({
|
|
4625
|
-
name: string;
|
|
4626
|
-
kind: string;
|
|
4627
|
-
desc: string;
|
|
4628
|
-
isOpt: boolean;
|
|
4629
|
-
defVal: string;
|
|
4630
|
-
gridInfo?: undefined;
|
|
4631
|
-
noCode?: undefined;
|
|
4632
|
-
ref?: undefined;
|
|
4633
|
-
} | {
|
|
4634
|
-
name: string;
|
|
4635
|
-
kind: string;
|
|
4636
|
-
desc: string;
|
|
4637
|
-
isOpt: boolean;
|
|
4638
|
-
gridInfo: string;
|
|
4639
|
-
defVal: string;
|
|
4640
|
-
noCode?: undefined;
|
|
4641
|
-
ref?: undefined;
|
|
4642
|
-
} | {
|
|
4643
|
-
name: string;
|
|
4644
|
-
kind: string;
|
|
4645
|
-
desc: string;
|
|
4646
|
-
isOpt: boolean;
|
|
4647
|
-
gridInfo: string;
|
|
4648
|
-
noCode: string;
|
|
4649
|
-
defVal: string;
|
|
4650
|
-
ref: string;
|
|
4651
|
-
} | {
|
|
4652
|
-
name: string;
|
|
4653
|
-
kind: string;
|
|
4654
|
-
desc: string;
|
|
4655
|
-
isOpt: boolean;
|
|
4656
|
-
defVal?: undefined;
|
|
4657
|
-
gridInfo?: undefined;
|
|
4658
|
-
noCode?: undefined;
|
|
4659
|
-
ref?: undefined;
|
|
4660
|
-
} | {
|
|
4661
|
-
name: string;
|
|
4662
|
-
kind: string;
|
|
4663
|
-
desc: string;
|
|
4664
|
-
isOpt: boolean;
|
|
4665
|
-
noCode: string;
|
|
4666
|
-
defVal: string;
|
|
4667
|
-
gridInfo?: undefined;
|
|
4668
|
-
ref?: undefined;
|
|
4669
|
-
})[];
|
|
4670
4511
|
};
|
|
4671
4512
|
QuickSearchContext: {
|
|
4672
4513
|
name: string;
|
|
@@ -4696,14 +4537,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4696
4537
|
gridInfo: string;
|
|
4697
4538
|
defVal: string;
|
|
4698
4539
|
noCode?: undefined;
|
|
4699
|
-
} | {
|
|
4700
|
-
name: string;
|
|
4701
|
-
kind: string;
|
|
4702
|
-
desc: string;
|
|
4703
|
-
isOpt: boolean;
|
|
4704
|
-
defVal: string;
|
|
4705
|
-
gridInfo?: undefined;
|
|
4706
|
-
noCode?: undefined;
|
|
4707
4540
|
} | {
|
|
4708
4541
|
name: string;
|
|
4709
4542
|
kind: string;
|
|
@@ -4811,20 +4644,14 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4811
4644
|
name: string;
|
|
4812
4645
|
kind: string;
|
|
4813
4646
|
desc: string;
|
|
4647
|
+
ref: string;
|
|
4814
4648
|
isOpt?: undefined;
|
|
4815
|
-
ref?: undefined;
|
|
4816
4649
|
} | {
|
|
4817
4650
|
name: string;
|
|
4818
4651
|
kind: string;
|
|
4819
4652
|
desc: string;
|
|
4820
4653
|
isOpt: boolean;
|
|
4821
4654
|
ref: string;
|
|
4822
|
-
} | {
|
|
4823
|
-
name: string;
|
|
4824
|
-
kind: string;
|
|
4825
|
-
desc: string;
|
|
4826
|
-
ref: string;
|
|
4827
|
-
isOpt?: undefined;
|
|
4828
4655
|
})[];
|
|
4829
4656
|
};
|
|
4830
4657
|
ReportColumnScope: {
|
|
@@ -4847,11 +4674,17 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4847
4674
|
name: string;
|
|
4848
4675
|
kind: string;
|
|
4849
4676
|
desc: string;
|
|
4850
|
-
props: {
|
|
4677
|
+
props: ({
|
|
4851
4678
|
name: string;
|
|
4852
4679
|
kind: string;
|
|
4853
4680
|
desc: string;
|
|
4854
|
-
|
|
4681
|
+
isOpt?: undefined;
|
|
4682
|
+
} | {
|
|
4683
|
+
name: string;
|
|
4684
|
+
kind: string;
|
|
4685
|
+
desc: string;
|
|
4686
|
+
isOpt: boolean;
|
|
4687
|
+
})[];
|
|
4855
4688
|
};
|
|
4856
4689
|
ReportFileNameContext: {
|
|
4857
4690
|
name: string;
|
|
@@ -4876,14 +4709,20 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4876
4709
|
name: string;
|
|
4877
4710
|
kind: string;
|
|
4878
4711
|
desc: string;
|
|
4879
|
-
isOpt
|
|
4880
|
-
ref
|
|
4712
|
+
isOpt: boolean;
|
|
4713
|
+
ref: string;
|
|
4881
4714
|
} | {
|
|
4882
4715
|
name: string;
|
|
4883
4716
|
kind: string;
|
|
4884
4717
|
desc: string;
|
|
4885
|
-
isOpt: boolean;
|
|
4886
4718
|
ref: string;
|
|
4719
|
+
isOpt?: undefined;
|
|
4720
|
+
} | {
|
|
4721
|
+
name: string;
|
|
4722
|
+
kind: string;
|
|
4723
|
+
desc: string;
|
|
4724
|
+
isOpt?: undefined;
|
|
4725
|
+
ref?: undefined;
|
|
4887
4726
|
})[];
|
|
4888
4727
|
};
|
|
4889
4728
|
ResolveContextDataContext: {
|
|
@@ -4910,6 +4749,54 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4910
4749
|
ref?: undefined;
|
|
4911
4750
|
})[];
|
|
4912
4751
|
};
|
|
4752
|
+
RowDataChangeTrigger: {
|
|
4753
|
+
name: string;
|
|
4754
|
+
kind: string;
|
|
4755
|
+
desc: string;
|
|
4756
|
+
};
|
|
4757
|
+
RowFormContext: {
|
|
4758
|
+
name: string;
|
|
4759
|
+
kind: string;
|
|
4760
|
+
desc: string;
|
|
4761
|
+
};
|
|
4762
|
+
RowFormFieldContext: {
|
|
4763
|
+
name: string;
|
|
4764
|
+
kind: string;
|
|
4765
|
+
desc: string;
|
|
4766
|
+
};
|
|
4767
|
+
RowFormOptions: {
|
|
4768
|
+
name: string;
|
|
4769
|
+
kind: string;
|
|
4770
|
+
desc: string;
|
|
4771
|
+
props: ({
|
|
4772
|
+
name: string;
|
|
4773
|
+
kind: string;
|
|
4774
|
+
desc: string;
|
|
4775
|
+
isOpt: boolean;
|
|
4776
|
+
defVal: string;
|
|
4777
|
+
} | {
|
|
4778
|
+
name: string;
|
|
4779
|
+
kind: string;
|
|
4780
|
+
desc: string;
|
|
4781
|
+
isOpt: boolean;
|
|
4782
|
+
defVal?: undefined;
|
|
4783
|
+
})[];
|
|
4784
|
+
};
|
|
4785
|
+
RowFormTitleContext: {
|
|
4786
|
+
name: string;
|
|
4787
|
+
kind: string;
|
|
4788
|
+
desc: string;
|
|
4789
|
+
};
|
|
4790
|
+
RowGroupValues: {
|
|
4791
|
+
name: string;
|
|
4792
|
+
kind: string;
|
|
4793
|
+
desc: string;
|
|
4794
|
+
};
|
|
4795
|
+
RowGroupValuesWithExceptionKeys: {
|
|
4796
|
+
name: string;
|
|
4797
|
+
kind: string;
|
|
4798
|
+
desc: string;
|
|
4799
|
+
};
|
|
4913
4800
|
RowHighlightInfo: {
|
|
4914
4801
|
name: string;
|
|
4915
4802
|
kind: string;
|
|
@@ -4949,6 +4836,12 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
4949
4836
|
name: string;
|
|
4950
4837
|
kind: string;
|
|
4951
4838
|
desc: string;
|
|
4839
|
+
props: {
|
|
4840
|
+
name: string;
|
|
4841
|
+
kind: string;
|
|
4842
|
+
desc: string;
|
|
4843
|
+
isOpt: boolean;
|
|
4844
|
+
}[];
|
|
4952
4845
|
};
|
|
4953
4846
|
RowsHighlightInfo: {
|
|
4954
4847
|
name: string;
|
|
@@ -5225,7 +5118,7 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5225
5118
|
desc: string;
|
|
5226
5119
|
}[];
|
|
5227
5120
|
};
|
|
5228
|
-
|
|
5121
|
+
SparklineStyle: {
|
|
5229
5122
|
name: string;
|
|
5230
5123
|
kind: string;
|
|
5231
5124
|
desc: string;
|
|
@@ -5240,16 +5133,19 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5240
5133
|
desc: string;
|
|
5241
5134
|
isOpt: boolean;
|
|
5242
5135
|
defVal: string;
|
|
5136
|
+
ref?: undefined;
|
|
5243
5137
|
} | {
|
|
5244
5138
|
name: string;
|
|
5245
5139
|
kind: string;
|
|
5246
5140
|
desc: string;
|
|
5247
5141
|
isOpt: boolean;
|
|
5248
5142
|
defVal?: undefined;
|
|
5143
|
+
ref?: undefined;
|
|
5249
5144
|
} | {
|
|
5250
5145
|
name: string;
|
|
5251
5146
|
kind: string;
|
|
5252
5147
|
desc: string;
|
|
5148
|
+
ref: string;
|
|
5253
5149
|
isOpt?: undefined;
|
|
5254
5150
|
defVal?: undefined;
|
|
5255
5151
|
})[];
|
|
@@ -5376,11 +5272,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5376
5272
|
kind: string;
|
|
5377
5273
|
desc: string;
|
|
5378
5274
|
};
|
|
5379
|
-
SystemExportDestinations: {
|
|
5380
|
-
name: string;
|
|
5381
|
-
kind: string;
|
|
5382
|
-
desc: string;
|
|
5383
|
-
};
|
|
5384
5275
|
SystemFilterPredicateId: {
|
|
5385
5276
|
name: string;
|
|
5386
5277
|
kind: string;
|
|
@@ -5427,6 +5318,11 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5427
5318
|
ref?: undefined;
|
|
5428
5319
|
})[];
|
|
5429
5320
|
};
|
|
5321
|
+
SystemReportFormat: {
|
|
5322
|
+
name: string;
|
|
5323
|
+
kind: string;
|
|
5324
|
+
desc: string;
|
|
5325
|
+
};
|
|
5430
5326
|
SystemReportName: {
|
|
5431
5327
|
name: string;
|
|
5432
5328
|
kind: string;
|
|
@@ -5461,6 +5357,30 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5461
5357
|
isOpt?: undefined;
|
|
5462
5358
|
})[];
|
|
5463
5359
|
};
|
|
5360
|
+
TableLayout: {
|
|
5361
|
+
name: string;
|
|
5362
|
+
kind: string;
|
|
5363
|
+
desc: string;
|
|
5364
|
+
props: ({
|
|
5365
|
+
name: string;
|
|
5366
|
+
kind: string;
|
|
5367
|
+
desc: string;
|
|
5368
|
+
isOpt: boolean;
|
|
5369
|
+
ref?: undefined;
|
|
5370
|
+
} | {
|
|
5371
|
+
name: string;
|
|
5372
|
+
kind: string;
|
|
5373
|
+
desc: string;
|
|
5374
|
+
isOpt: boolean;
|
|
5375
|
+
ref: string;
|
|
5376
|
+
} | {
|
|
5377
|
+
name: string;
|
|
5378
|
+
kind: string;
|
|
5379
|
+
desc: string;
|
|
5380
|
+
isOpt?: undefined;
|
|
5381
|
+
ref?: undefined;
|
|
5382
|
+
})[];
|
|
5383
|
+
};
|
|
5464
5384
|
TeamSharingOptions: {
|
|
5465
5385
|
name: string;
|
|
5466
5386
|
kind: string;
|
|
@@ -5538,6 +5458,16 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5538
5458
|
kind: string;
|
|
5539
5459
|
desc: string;
|
|
5540
5460
|
};
|
|
5461
|
+
ToolbarAction: {
|
|
5462
|
+
name: string;
|
|
5463
|
+
kind: string;
|
|
5464
|
+
desc: string;
|
|
5465
|
+
};
|
|
5466
|
+
ToolbarActions: {
|
|
5467
|
+
name: string;
|
|
5468
|
+
kind: string;
|
|
5469
|
+
desc: string;
|
|
5470
|
+
};
|
|
5541
5471
|
ToolPanelButtonContext: {
|
|
5542
5472
|
name: string;
|
|
5543
5473
|
kind: string;
|
|
@@ -5780,82 +5710,6 @@ export declare const ADAPTABLE_METAMODEL: {
|
|
|
5780
5710
|
isOpt?: undefined;
|
|
5781
5711
|
})[];
|
|
5782
5712
|
};
|
|
5783
|
-
ValuesFilterOptions: {
|
|
5784
|
-
name: string;
|
|
5785
|
-
kind: string;
|
|
5786
|
-
desc: string;
|
|
5787
|
-
props: ({
|
|
5788
|
-
name: string;
|
|
5789
|
-
kind: string;
|
|
5790
|
-
desc: string;
|
|
5791
|
-
isOpt: boolean;
|
|
5792
|
-
noCode: string;
|
|
5793
|
-
defVal: string;
|
|
5794
|
-
gridInfo?: undefined;
|
|
5795
|
-
ref?: undefined;
|
|
5796
|
-
} | {
|
|
5797
|
-
name: string;
|
|
5798
|
-
kind: string;
|
|
5799
|
-
desc: string;
|
|
5800
|
-
isOpt: boolean;
|
|
5801
|
-
gridInfo: string;
|
|
5802
|
-
noCode: string;
|
|
5803
|
-
defVal: string;
|
|
5804
|
-
ref?: undefined;
|
|
5805
|
-
} | {
|
|
5806
|
-
name: string;
|
|
5807
|
-
kind: string;
|
|
5808
|
-
desc: string;
|
|
5809
|
-
isOpt: boolean;
|
|
5810
|
-
gridInfo: string;
|
|
5811
|
-
defVal: string;
|
|
5812
|
-
noCode?: undefined;
|
|
5813
|
-
ref?: undefined;
|
|
5814
|
-
} | {
|
|
5815
|
-
name: string;
|
|
5816
|
-
kind: string;
|
|
5817
|
-
desc: string;
|
|
5818
|
-
isOpt: boolean;
|
|
5819
|
-
ref: string;
|
|
5820
|
-
noCode?: undefined;
|
|
5821
|
-
defVal?: undefined;
|
|
5822
|
-
gridInfo?: undefined;
|
|
5823
|
-
})[];
|
|
5824
|
-
};
|
|
5825
|
-
ValuesFilterPredicateContext: {
|
|
5826
|
-
name: string;
|
|
5827
|
-
kind: string;
|
|
5828
|
-
desc: string;
|
|
5829
|
-
props: ({
|
|
5830
|
-
name: string;
|
|
5831
|
-
kind: string;
|
|
5832
|
-
desc: string;
|
|
5833
|
-
ref?: undefined;
|
|
5834
|
-
} | {
|
|
5835
|
-
name: string;
|
|
5836
|
-
kind: string;
|
|
5837
|
-
desc: string;
|
|
5838
|
-
ref: string;
|
|
5839
|
-
})[];
|
|
5840
|
-
};
|
|
5841
|
-
ValuesFilterPredicateOptions: {
|
|
5842
|
-
name: string;
|
|
5843
|
-
kind: string;
|
|
5844
|
-
desc: string;
|
|
5845
|
-
props: ({
|
|
5846
|
-
name: string;
|
|
5847
|
-
kind: string;
|
|
5848
|
-
desc: string;
|
|
5849
|
-
isOpt?: undefined;
|
|
5850
|
-
defVal?: undefined;
|
|
5851
|
-
} | {
|
|
5852
|
-
name: string;
|
|
5853
|
-
kind: string;
|
|
5854
|
-
desc: string;
|
|
5855
|
-
isOpt: boolean;
|
|
5856
|
-
defVal: string;
|
|
5857
|
-
})[];
|
|
5858
|
-
};
|
|
5859
5713
|
VueFrameworkComponent: {
|
|
5860
5714
|
name: string;
|
|
5861
5715
|
kind: string;
|