@adaptabletools/adaptable 11.2.4 → 12.0.0-canary.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/base.css +568 -273
- package/bundle.cjs.js +120 -120
- package/index.css +642 -270
- package/package.json +2 -2
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +6 -1
- package/src/AdaptableOptions/ActionOptions.d.ts +1 -0
- package/src/AdaptableOptions/{FormatColumnOptions.js → ActionOptions.js} +0 -0
- package/src/AdaptableOptions/AdaptableFrameworkComponent.d.ts +5 -0
- package/src/AdaptableOptions/AdaptableOptions.d.ts +3 -10
- package/src/AdaptableOptions/AdaptableQLOptions.d.ts +5 -0
- package/src/AdaptableOptions/AlertOptions.d.ts +14 -1
- package/src/AdaptableOptions/ColumnOptions.d.ts +49 -0
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.js → ColumnOptions.js} +0 -0
- package/src/AdaptableOptions/DashboardOptions.d.ts +2 -7
- package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +19 -0
- package/src/AdaptableOptions/EditOptions.d.ts +91 -4
- package/src/AdaptableOptions/EntitlementOptions.d.ts +7 -1
- package/src/AdaptableOptions/ExportOptions.d.ts +9 -8
- package/src/AdaptableOptions/FilterOptions.d.ts +6 -1
- package/src/AdaptableOptions/GeneralOptions.d.ts +25 -23
- package/src/AdaptableOptions/{MasterDetailAgGridPluginOptions.d.ts → MasterDetailPluginOptions.d.ts} +2 -4
- package/src/AdaptableOptions/{SmartEdit.js → MasterDetailPluginOptions.js} +0 -0
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -6
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -49
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +95 -50
- package/src/Api/AdaptableApi.d.ts +6 -3
- package/src/Api/ColumnApi.d.ts +9 -4
- package/src/Api/ConditionalStyleApi.d.ts +10 -0
- package/src/Api/ConfigApi.d.ts +0 -12
- package/src/Api/DashboardApi.d.ts +6 -19
- package/src/Api/DataSetApi.d.ts +40 -0
- package/src/Api/{DataSourceApi.js → DataSetApi.js} +0 -0
- package/src/Api/EventApi.d.ts +29 -1
- package/src/Api/Events/DataSetChanged.d.ts +5 -0
- package/src/{PredefinedConfig/DataSourceState.js → Api/Events/DataSetChanged.js} +0 -0
- package/src/Api/Events/RowFormSubmitted.d.ts +19 -0
- package/src/{PredefinedConfig/FilterState.js → Api/Events/RowFormSubmitted.js} +0 -0
- package/src/Api/Events/SearchChanged.d.ts +4 -5
- package/src/Api/ExportApi.d.ts +2 -2
- package/src/Api/FilterApi.d.ts +28 -36
- package/src/Api/FormatColumnApi.d.ts +6 -0
- package/src/Api/GridApi.d.ts +15 -1
- package/src/Api/Implementation/AdaptableApiImpl.d.ts +2 -2
- package/src/Api/Implementation/AdaptableApiImpl.js +3 -3
- package/src/Api/Implementation/AlertApiImpl.js +5 -1
- package/src/Api/Implementation/ApiBase.d.ts +3 -0
- package/src/Api/Implementation/ApiBase.js +6 -0
- package/src/Api/Implementation/ColumnApiImpl.d.ts +4 -4
- package/src/Api/Implementation/ColumnApiImpl.js +17 -16
- package/src/Api/Implementation/ConditionalStyleApiImpl.d.ts +2 -0
- package/src/Api/Implementation/ConditionalStyleApiImpl.js +8 -0
- package/src/Api/Implementation/ConfigApiImpl.d.ts +0 -4
- package/src/Api/Implementation/ConfigApiImpl.js +2 -24
- package/src/Api/Implementation/DashboardApiImpl.d.ts +3 -6
- package/src/Api/Implementation/DashboardApiImpl.js +5 -29
- package/src/Api/Implementation/DataSetApiImpl.d.ts +12 -0
- package/src/Api/Implementation/DataSetApiImpl.js +42 -0
- package/src/Api/Implementation/EventApiImpl.js +1 -0
- package/src/Api/Implementation/ExportApiImpl.d.ts +2 -2
- package/src/Api/Implementation/FilterApiImpl.d.ts +11 -11
- package/src/Api/Implementation/FilterApiImpl.js +59 -72
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FormatColumnApiImpl.js +7 -2
- package/src/Api/Implementation/GridApiImpl.d.ts +4 -1
- package/src/Api/Implementation/GridApiImpl.js +45 -1
- package/src/Api/Implementation/InternalApiImpl.d.ts +7 -2
- package/src/Api/Implementation/InternalApiImpl.js +51 -10
- package/src/Api/Implementation/LayoutApiImpl.d.ts +3 -0
- package/src/Api/Implementation/LayoutApiImpl.js +20 -0
- package/src/Api/Implementation/PredicateApiImpl.d.ts +2 -0
- package/src/Api/Implementation/PredicateApiImpl.js +19 -1
- package/src/Api/Implementation/SmartEditApiImpl.d.ts +5 -2
- package/src/Api/Implementation/SmartEditApiImpl.js +9 -0
- package/src/Api/Implementation/TeamSharingApiImpl.d.ts +5 -3
- package/src/Api/Implementation/TeamSharingApiImpl.js +28 -10
- package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +1 -1
- package/src/Api/Implementation/UserInterfaceApiImpl.js +7 -25
- package/src/Api/InternalApi.d.ts +6 -2
- package/src/Api/LayoutApi.d.ts +16 -0
- package/src/Api/PredicateApi.d.ts +7 -0
- package/src/Api/SmartEditApi.d.ts +14 -3
- package/src/Api/TeamSharingApi.d.ts +18 -5
- package/src/Api/UserInterfaceApi.d.ts +4 -4
- package/src/PredefinedConfig/AdaptableState.d.ts +0 -4
- package/src/PredefinedConfig/CalculatedColumnState.d.ts +5 -0
- package/src/PredefinedConfig/Common/AdaptableButton.d.ts +3 -3
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +5 -1
- package/src/PredefinedConfig/Common/AdaptableForm.d.ts +3 -2
- package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -3
- package/src/PredefinedConfig/Common/AdaptableObject.d.ts +2 -11
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +18 -1
- package/src/PredefinedConfig/Common/BaseContext.d.ts +1 -1
- package/src/PredefinedConfig/{FilterState.d.ts → Common/ColumnFilter.d.ts} +2 -33
- package/src/PredefinedConfig/Common/ColumnFilter.js +2 -0
- package/src/PredefinedConfig/Common/Enums.d.ts +2 -2
- package/src/PredefinedConfig/Common/Enums.js +1 -1
- package/src/PredefinedConfig/Common/FormContext.d.ts +8 -0
- package/src/PredefinedConfig/Common/FormContext.js +2 -0
- package/src/PredefinedConfig/Common/Types.d.ts +6 -5
- package/src/PredefinedConfig/Common/Types.js +2 -3
- package/src/PredefinedConfig/LayoutState.d.ts +5 -0
- package/src/PredefinedConfig/PredefinedConfig.d.ts +0 -10
- package/src/PredefinedConfig/StatusBarState.d.ts +1 -2
- package/src/PredefinedConfig/SystemState.d.ts +4 -2
- package/src/Redux/ActionsReducers/LayoutRedux.d.ts +47 -0
- package/src/Redux/ActionsReducers/LayoutRedux.js +134 -1
- package/src/Redux/ActionsReducers/PopupRedux.d.ts +3 -2
- package/src/Redux/ActionsReducers/SystemRedux.d.ts +23 -1
- package/src/Redux/ActionsReducers/SystemRedux.js +39 -1
- package/src/Redux/Store/AdaptableStore.js +37 -39
- package/src/Strategy/AdaptableModuleBase.js +1 -2
- package/src/Strategy/AlertModule.d.ts +11 -0
- package/src/Strategy/AlertModule.js +14 -0
- package/src/Strategy/BulkUpdateModule.js +3 -4
- package/src/Strategy/CellSummaryModule.d.ts +3 -0
- package/src/Strategy/CellSummaryModule.js +29 -16
- package/src/Strategy/DataSetModule.d.ts +25 -0
- package/src/Strategy/DataSetModule.js +65 -0
- package/src/Strategy/ExportModule.js +6 -1
- package/src/Strategy/FilterModule.d.ts +7 -11
- package/src/Strategy/FilterModule.js +26 -20
- package/src/Strategy/FlashingCellModule.d.ts +1 -1
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Strategy/Interface/IModule.d.ts +3 -1
- package/src/Strategy/LayoutModule.js +25 -2
- package/src/Strategy/PlusMinusModule.js +1 -4
- package/src/Strategy/SmartEditModule.d.ts +1 -1
- package/src/Strategy/SmartEditModule.js +7 -8
- package/src/Strategy/StatusBarModule.js +1 -3
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +1 -4
- package/src/Utilities/Constants/GeneralConstants.d.ts +8 -2
- package/src/Utilities/Constants/GeneralConstants.js +8 -2
- package/src/Utilities/Constants/ModuleConstants.d.ts +1 -1
- package/src/Utilities/Constants/ModuleConstants.js +2 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +24 -13
- package/src/Utilities/Defaults/DefaultSettingsPanel.js +1 -1
- package/src/Utilities/Helpers/AdaptableHelper.js +4 -1
- package/src/Utilities/ObjectFactory.d.ts +3 -6
- package/src/Utilities/ObjectFactory.js +3 -7
- package/src/Utilities/Services/CalculatedColumnExpressionService.js +6 -7
- package/src/Utilities/Services/EntitlementService.js +7 -1
- package/src/Utilities/Services/Interface/IRowEditService.d.ts +8 -0
- package/src/Utilities/Services/Interface/IRowEditService.js +2 -0
- package/src/Utilities/Services/ModuleService.js +1 -1
- package/src/Utilities/Services/ReportService.js +2 -3
- package/src/Utilities/Services/RowEditService.d.ts +26 -0
- package/src/Utilities/Services/RowEditService.js +197 -0
- package/src/Utilities/Services/TeamSharingService.js +4 -4
- package/src/View/AdaptablePopover/index.d.ts +1 -0
- package/src/View/AdaptablePopover/index.js +5 -6
- package/src/View/AdaptableView.js +1 -1
- package/src/View/AdaptableViewFactory.js +2 -2
- package/src/View/Alert/ActiveAlertsPanel.d.ts +2 -0
- package/src/View/Alert/ActiveAlertsPanel.js +15 -0
- package/src/View/Alert/AlertStatusSubPanel.js +3 -8
- package/src/View/Alert/AlertViewPanel.js +2 -2
- package/src/View/Alert/Wizard/AlertDisplayWizardSection.js +1 -1
- package/src/View/BulkUpdate/BulkUpdatePopup.js +2 -3
- package/src/View/BulkUpdate/BulkUpdateViewPanel.js +1 -1
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnExpressionWizardSection.js +2 -3
- package/src/View/CalculatedColumn/Wizard/CalculatedColumnSettingsWizardSection.js +13 -7
- package/src/View/CellSummary/CellSummaryDetails.js +4 -4
- package/src/View/CellSummary/CellSummaryPopover.d.ts +2 -4
- package/src/View/CellSummary/CellSummaryPopover.js +3 -6
- package/src/View/CellSummary/CellSummaryPopup.js +8 -0
- package/src/View/CellSummary/CellSummaryStatusBarSubPanelPopover.js +1 -1
- package/src/View/CellSummary/CellSummaryStatusPanel.js +2 -2
- package/src/View/CellSummary/CellSummaryViewPanel.js +1 -1
- package/src/View/Components/AdaptableObjectList/AdaptableObjectCompactList.js +18 -8
- package/src/View/Components/AdaptableObjectList/AdaptableObjectList.js +1 -2
- package/src/View/Components/ExternalRenderer.d.ts +3 -6
- package/src/View/Components/ExternalRenderer.js +5 -5
- package/src/View/Components/FilterForm/FilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/FilterForm.js +10 -8
- package/src/View/Components/FilterForm/QuickFilterForm.d.ts +1 -1
- package/src/View/Components/FilterForm/QuickFilterForm.js +5 -4
- package/src/View/Components/FilterForm/getDefaultColumnFilterPredicate.d.ts +1 -1
- package/src/View/Components/Popups/AdaptablePopup/AdaptablePopupDialog.js +2 -0
- package/src/View/Components/Popups/AdaptablePopupAlert.d.ts +0 -2
- package/src/View/Components/Popups/AdaptablePopupAlert.js +13 -11
- package/src/View/Components/Popups/AdaptableToaster.js +29 -9
- package/src/View/Components/Popups/FormPopups/FormPopups.js +2 -2
- package/src/View/Components/PreviewResultsPanel.js +3 -3
- package/src/View/Components/ToolPanel/AdaptableToolPanel.js +3 -2
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +11 -9
- package/src/View/Components/WizardSummaryPage.js +2 -2
- package/src/View/Dashboard/CustomDashboardButton.d.ts +11 -0
- package/src/View/Dashboard/CustomDashboardButton.js +47 -0
- package/src/View/Dashboard/CustomToolbarWrapper.d.ts +1 -0
- package/src/View/Dashboard/CustomToolbarWrapper.js +30 -11
- package/src/View/Dashboard/Dashboard.d.ts +1 -0
- package/src/View/Dashboard/Dashboard.js +8 -34
- package/src/View/DataChangeHistory/DataChangeHistoryGrid.js +19 -36
- package/src/View/DataChangeHistory/buildActionColumnButton.d.ts +3 -0
- package/src/View/DataChangeHistory/buildActionColumnButton.js +70 -0
- package/src/View/DataSet/DataSetSelector.d.ts +7 -0
- package/src/View/DataSet/DataSetSelector.js +18 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.d.ts +2 -0
- package/src/View/DataSet/DataSetStatusPanelPopover.js +19 -0
- package/src/View/DataSet/DataSetViewPanel.d.ts +19 -0
- package/src/View/DataSet/DataSetViewPanel.js +58 -0
- package/src/View/Filter/ActiveFiltersPanel.js +1 -1
- package/src/View/Filter/FilterSummary.d.ts +5 -5
- package/src/View/Filter/FilterSummary.js +5 -4
- package/src/View/Filter/FilterViewPanel.d.ts +4 -4
- package/src/View/Filter/FilterViewPanel.js +10 -13
- package/src/View/FormatColumn/Wizard/FormatColumnFormatWizardSection.js +5 -7
- package/src/View/FreeTextColumn/Wizard/FreeTextColumnSettingsWizardSection.js +4 -5
- package/src/View/GridInfo/ColumnInfoComponent.js +1 -1
- package/src/View/GridInfo/GridInfoPopup.js +1 -1
- package/src/View/Layout/LayoutStatusBarSubPanelPopover.js +6 -24
- package/src/View/Layout/Wizard/LayoutEditor/index.js +1 -1
- package/src/View/Layout/Wizard/LayoutEditorWizard.d.ts +2 -1
- package/src/View/SmartEdit/SmartEditPopup.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditPopup.js +3 -4
- package/src/View/SmartEdit/SmartEditViewPanel.d.ts +1 -1
- package/src/View/SmartEdit/SmartEditViewPanel.js +3 -4
- package/src/View/SpecialColumnSettingsWizardStep.js +1 -1
- package/src/View/StatusBar/AdaptableStatusBar.js +1 -1
- package/src/View/StatusBar/StatusBarPanel.d.ts +1 -0
- package/src/View/StatusBar/StatusBarPanel.js +5 -4
- package/src/View/Theme/ThemeStatusPanelPopover.js +5 -25
- package/src/View/UIHelper.d.ts +4 -4
- package/src/View/UIHelper.js +10 -10
- package/src/agGrid/ActionColumnRenderer.d.ts +6 -1
- package/src/agGrid/ActionColumnRenderer.js +9 -6
- package/src/agGrid/Adaptable.d.ts +7 -2
- package/src/agGrid/Adaptable.js +213 -69
- package/src/agGrid/FilterWrapper.js +1 -1
- package/src/agGrid/agGridHelper.d.ts +7 -8
- package/src/agGrid/agGridHelper.js +68 -86
- package/src/agGrid/agGridMenuHelper.js +4 -1
- package/src/agGrid/rowEditIcons.d.ts +5 -0
- package/src/agGrid/rowEditIcons.js +10 -0
- package/src/components/AdaptableFormComponent/AdaptableFormComponent.js +9 -18
- package/src/components/Dashboard/DashboardToolbar.js +2 -2
- package/src/components/Datepicker/index.js +19 -18
- package/src/components/InfiniteTable/index.js +1 -0
- package/src/components/List/GridList/index.js +1 -1
- package/src/components/SelectList.d.ts +10 -0
- package/src/components/SelectList.js +9 -0
- package/src/components/WindowModal/WindowModal.d.ts +2 -0
- package/src/components/WindowModal/WindowModal.js +1 -1
- package/src/components/icons/{data-source.d.ts → add-row.d.ts} +0 -0
- package/src/components/icons/add-row.js +7 -0
- package/src/components/icons/data-set.d.ts +3 -0
- package/src/components/icons/{data-source.js → data-set.js} +0 -0
- package/src/components/icons/index.js +4 -2
- package/src/metamodel/adaptable.metamodel.d.ts +226 -69
- package/src/metamodel/adaptable.metamodel.js +532 -311
- package/src/types.d.ts +18 -13
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/src/AdaptableOptions/FormatColumnOptions.d.ts +0 -9
- package/src/AdaptableOptions/SmartEdit.d.ts +0 -34
- package/src/Api/DataSourceApi.d.ts +0 -58
- package/src/Api/Implementation/DataSourceApiImpl.d.ts +0 -15
- package/src/Api/Implementation/DataSourceApiImpl.js +0 -51
- package/src/PredefinedConfig/DataSourceState.d.ts +0 -34
- package/src/Redux/ActionsReducers/DataSourceRedux.d.ts +0 -42
- package/src/Redux/ActionsReducers/DataSourceRedux.js +0 -76
- package/src/Redux/ActionsReducers/FilterRedux.d.ts +0 -70
- package/src/Redux/ActionsReducers/FilterRedux.js +0 -126
- package/src/Strategy/DataSourceModule.d.ts +0 -20
- package/src/Strategy/DataSourceModule.js +0 -56
- package/src/View/Components/Forms/AdaptableForm.d.ts +0 -6
- package/src/View/Components/Forms/AdaptableForm.js +0 -21
- package/src/View/DataSource/DataSourceViewPanel.d.ts +0 -19
- package/src/View/DataSource/DataSourceViewPanel.js +0 -69
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.d.ts +0 -2
- package/src/View/DataSource/Wizard/DataSourceSettingsSummary.js +0 -17
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceSettingsWizard.js +0 -42
- package/src/View/DataSource/Wizard/DataSourceWizard.d.ts +0 -8
- package/src/View/DataSource/Wizard/DataSourceWizard.js +0 -53
|
@@ -8,20 +8,31 @@ const TeamSharingRedux_1 = require("../../Redux/ActionsReducers/TeamSharingRedux
|
|
|
8
8
|
const TeamSharingRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/TeamSharingRedux"));
|
|
9
9
|
const LoggingHelper_1 = require("../../Utilities/Helpers/LoggingHelper");
|
|
10
10
|
class TeamSharingApiImpl extends ApiBase_1.ApiBase {
|
|
11
|
-
|
|
12
|
-
|
|
11
|
+
async getSharedEntities() {
|
|
12
|
+
if (!this.isTeamSharingActivated()) {
|
|
13
|
+
LoggingHelper_1.ConsoleLogWarning('Team Sharing is not Activated so Entities cannot be loaded');
|
|
14
|
+
return [];
|
|
15
|
+
}
|
|
16
|
+
return this.adaptable.adaptableOptions.teamSharingOptions.getSharedEntities(this.adaptable.adaptableOptions.adaptableId);
|
|
13
17
|
}
|
|
14
|
-
|
|
15
|
-
|
|
18
|
+
async setSharedEntities(sharedEntities) {
|
|
19
|
+
if (!this.isTeamSharingActivated()) {
|
|
20
|
+
LoggingHelper_1.ConsoleLogWarning('Team Sharing is not Activated so Entities cannot be shared');
|
|
21
|
+
return false;
|
|
22
|
+
}
|
|
23
|
+
await this.adaptable.adaptableOptions.teamSharingOptions.setSharedEntities(this.adaptable.adaptableOptions.adaptableId, sharedEntities);
|
|
24
|
+
return true;
|
|
16
25
|
}
|
|
17
|
-
|
|
26
|
+
isTeamSharingAvailable() {
|
|
27
|
+
var _a, _b, _c;
|
|
18
28
|
return (!this.getAdaptableApi()
|
|
19
29
|
.internalApi.getEntitlementService()
|
|
20
|
-
.isModuleHiddenEntitlement(ModuleConstants.TeamSharingModuleId) &&
|
|
21
|
-
this.adaptable.adaptableOptions.teamSharingOptions &&
|
|
22
|
-
this.adaptable.adaptableOptions.teamSharingOptions.
|
|
23
|
-
|
|
24
|
-
|
|
30
|
+
.isModuleHiddenEntitlement(ModuleConstants.TeamSharingModuleId) && ((_a = this.adaptable.adaptableOptions.teamSharingOptions) === null || _a === void 0 ? void 0 : _a.enableTeamSharing) &&
|
|
31
|
+
!!((_b = this.adaptable.adaptableOptions.teamSharingOptions) === null || _b === void 0 ? void 0 : _b.getSharedEntities) &&
|
|
32
|
+
!!((_c = this.adaptable.adaptableOptions.teamSharingOptions) === null || _c === void 0 ? void 0 : _c.setSharedEntities));
|
|
33
|
+
}
|
|
34
|
+
isTeamSharingActivated() {
|
|
35
|
+
return this.isTeamSharingAvailable();
|
|
25
36
|
}
|
|
26
37
|
hasTeamSharingFullRights() {
|
|
27
38
|
return this.adaptable.api.internalApi
|
|
@@ -50,5 +61,12 @@ class TeamSharingApiImpl extends ApiBase_1.ApiBase {
|
|
|
50
61
|
}
|
|
51
62
|
this.dispatchAction(TeamSharingRedux.TeamSharingShare(entity, module, sharedEntityConfig));
|
|
52
63
|
}
|
|
64
|
+
unshareEntity(entityId) {
|
|
65
|
+
if (!this.isTeamSharingActivated()) {
|
|
66
|
+
LoggingHelper_1.ConsoleLogWarning('Team Sharing is not Activated so Entities cannot be unshared');
|
|
67
|
+
return;
|
|
68
|
+
}
|
|
69
|
+
this.dispatchAction(TeamSharingRedux.TeamSharingRemoveItem(entityId));
|
|
70
|
+
}
|
|
53
71
|
}
|
|
54
72
|
exports.TeamSharingApiImpl = TeamSharingApiImpl;
|
|
@@ -24,6 +24,6 @@ export declare class UserInterfaceApiImpl extends ApiBase implements UserInterfa
|
|
|
24
24
|
addContextMenuItem(userMenuItem: UserMenuItem<ContextMenuContext>): void;
|
|
25
25
|
getEditableCellStyle(): AdaptableStyle | undefined;
|
|
26
26
|
getReadOnlyCellStyle(): AdaptableStyle | undefined;
|
|
27
|
-
getAllActionColumn(): ActionColumn[];
|
|
28
27
|
getAdaptableObjectTags(): AdaptableObjectTag[] | undefined;
|
|
28
|
+
getAllActionColumn(): ActionColumn[];
|
|
29
29
|
}
|
|
@@ -134,25 +134,7 @@ class UserInterfaceApiImpl extends ApiBase_1.ApiBase {
|
|
|
134
134
|
if (!editLookUpItem || !gridCell || !gridCell.column) {
|
|
135
135
|
return undefined;
|
|
136
136
|
}
|
|
137
|
-
|
|
138
|
-
// first do the function then get hardcoded items
|
|
139
|
-
if (editLookUpValues != null && typeof editLookUpValues === 'function') {
|
|
140
|
-
const editLookUpContext = {
|
|
141
|
-
adaptableApi: this.adaptable.api,
|
|
142
|
-
column: gridCell.column,
|
|
143
|
-
gridCell: gridCell,
|
|
144
|
-
};
|
|
145
|
-
return editLookUpValues(editLookUpContext);
|
|
146
|
-
}
|
|
147
|
-
else {
|
|
148
|
-
let arr = editLookUpValues;
|
|
149
|
-
if (arr && ArrayExtensions_1.ArrayExtensions.IsNotNullOrEmpty(arr)) {
|
|
150
|
-
return arr;
|
|
151
|
-
}
|
|
152
|
-
}
|
|
153
|
-
// if no hard-coded values or function provided then just get the distinct values for the column
|
|
154
|
-
// this will use the columnapi method that first looks for permitted values and then distinct values
|
|
155
|
-
return this.adaptable.api.columnApi.getDistinctDisplayValuesForColumn(gridCell.column.columnId);
|
|
137
|
+
return this.adaptable.api.internalApi.getEditLookUpValuesForColumn(editLookUpItem, gridCell.column, gridCell);
|
|
156
138
|
}
|
|
157
139
|
addColumnMenuItem(userMenuItem) {
|
|
158
140
|
var _a;
|
|
@@ -168,14 +150,10 @@ class UserInterfaceApiImpl extends ApiBase_1.ApiBase {
|
|
|
168
150
|
getReadOnlyCellStyle() {
|
|
169
151
|
return this.getUserInterfaceOptions().readOnlyCellStyle;
|
|
170
152
|
}
|
|
171
|
-
getAllActionColumn() {
|
|
172
|
-
var _a;
|
|
173
|
-
return (_a = this.getUserInterfaceOptions().actionColumns) !== null && _a !== void 0 ? _a : [];
|
|
174
|
-
}
|
|
175
153
|
getAdaptableObjectTags() {
|
|
176
|
-
|
|
154
|
+
const objectTags = this.getUserInterfaceOptions().objectTags;
|
|
177
155
|
if (objectTags != null && typeof objectTags === 'function') {
|
|
178
|
-
return objectTags(this.
|
|
156
|
+
return objectTags({ adaptableApi: this.adaptable.api });
|
|
179
157
|
}
|
|
180
158
|
else {
|
|
181
159
|
let arr = objectTags;
|
|
@@ -184,5 +162,9 @@ class UserInterfaceApiImpl extends ApiBase_1.ApiBase {
|
|
|
184
162
|
}
|
|
185
163
|
}
|
|
186
164
|
}
|
|
165
|
+
getAllActionColumn() {
|
|
166
|
+
var _a, _b;
|
|
167
|
+
return (_b = (_a = this.getUserInterfaceOptions().actionOptions) === null || _a === void 0 ? void 0 : _a.actionColumns) !== null && _b !== void 0 ? _b : [];
|
|
168
|
+
}
|
|
187
169
|
}
|
|
188
170
|
exports.UserInterfaceApiImpl = UserInterfaceApiImpl;
|
package/src/Api/InternalApi.d.ts
CHANGED
|
@@ -17,7 +17,7 @@ import { AdaptableOptions } from '../AdaptableOptions/AdaptableOptions';
|
|
|
17
17
|
import { Layout } from '../PredefinedConfig/LayoutState';
|
|
18
18
|
import { AdaptableAlert, AdaptableCellChangedAlert, AdaptableRowChangedAlert } from '../PredefinedConfig/Common/AdaptableAlert';
|
|
19
19
|
import { IDataService } from '../Utilities/Services/Interface/IDataService';
|
|
20
|
-
import { AdaptableMessageType, AlertDefinition, BaseContext, CellDataChangedInfo, LayoutAssociatedObject, SystemStatusMessageInfo } from '../types';
|
|
20
|
+
import { AdaptableIcon, AdaptableMessageType, AlertDefinition, BaseContext, CellDataChangedInfo, EditLookUpPermittedValues, LayoutAssociatedObject, SharedEntity, SystemStatusMessageInfo } from '../types';
|
|
21
21
|
import { IEntitlementService } from '../Utilities/Services/Interface/IEntitlementService';
|
|
22
22
|
import { AdaptableFlashingCell } from '../PredefinedConfig/Common/AdaptableFlashingCell';
|
|
23
23
|
import { IQueryLanguageService } from '../Utilities/Services/Interface/IQueryLanguageService';
|
|
@@ -34,6 +34,7 @@ import { IMetamodelService } from '../Utilities/Services/Interface/IMetamodelSer
|
|
|
34
34
|
import { RowNode } from '@ag-grid-community/all-modules';
|
|
35
35
|
import { IModuleCollection } from '../Strategy/Interface/IModule';
|
|
36
36
|
import { AdaptableObjectTag } from '../PredefinedConfig/Common/AdaptableObject';
|
|
37
|
+
import { IRowEditService } from '../Utilities/Services/Interface/IRowEditService';
|
|
37
38
|
/**
|
|
38
39
|
* This set of api methods is designed for **internal use of Adaptable** only.
|
|
39
40
|
*
|
|
@@ -101,6 +102,7 @@ export interface InternalApi {
|
|
|
101
102
|
getAlertService(): IAlertService;
|
|
102
103
|
getTeamSharingService(): ITeamSharingService;
|
|
103
104
|
getMetamodelService(): IMetamodelService;
|
|
105
|
+
getRowEditService(): IRowEditService;
|
|
104
106
|
getModules(): IModuleCollection;
|
|
105
107
|
getModuleFriendlyName(adaptableModule: AdaptableModule): string;
|
|
106
108
|
runModuleInAdaptableQL(adaptableQLModule: AdaptableQLModule): boolean;
|
|
@@ -115,9 +117,10 @@ export interface InternalApi {
|
|
|
115
117
|
getLabelForButton(button: AdaptableButton<BaseContext>, context: BaseContext): string | undefined;
|
|
116
118
|
getTooltipForButton(button: AdaptableButton<BaseContext>, context: BaseContext): string | undefined;
|
|
117
119
|
getStyleForButton(button: AdaptableButton<BaseContext>, context: BaseContext): ButtonStyle | undefined;
|
|
120
|
+
getIconForButton(button: AdaptableButton<BaseContext>, context: BaseContext): AdaptableIcon | undefined;
|
|
118
121
|
dispatchReduxAction(action: Action): void;
|
|
119
122
|
waitForTeamSharingImportEnd(): Promise<boolean>;
|
|
120
|
-
|
|
123
|
+
getLocalTeamSharingEntities(): SharedEntity[];
|
|
121
124
|
createFrameworkComponent(containerDomNode: HTMLElement, frameworkComponent: AdaptableFrameworkComponent, componentType: 'toolPanel' | 'toolbar' | string): void;
|
|
122
125
|
destroyFrameworkComponent(containerDomNode: HTMLElement, frameworkComponent: AdaptableFrameworkComponent, componentType: 'toolPanel' | 'toolbar' | string): void;
|
|
123
126
|
initializeDataChangeHistory(): void;
|
|
@@ -133,4 +136,5 @@ export interface InternalApi {
|
|
|
133
136
|
showSettingsPanel(module: AdaptableModule, moduleParams?: ModuleParams): void;
|
|
134
137
|
getLabelForTag(adaptableObjectTag: AdaptableObjectTag): string;
|
|
135
138
|
getValueForTag(adaptableObjectTag: AdaptableObjectTag): string | number;
|
|
139
|
+
getEditLookUpValuesForColumn(editLookUpItem: EditLookUpPermittedValues, column: AdaptableColumn, gridCell?: GridCell): any[] | undefined;
|
|
136
140
|
}
|
package/src/Api/LayoutApi.d.ts
CHANGED
|
@@ -187,4 +187,20 @@ export interface LayoutApi {
|
|
|
187
187
|
* @param adaptableObject object to check
|
|
188
188
|
*/
|
|
189
189
|
isObjectAvailableInCurrentLayout(adaptableObject: LayoutAssociatedObject): boolean;
|
|
190
|
+
/**
|
|
191
|
+
* Removes a Column from the Current Layout
|
|
192
|
+
* @param columnId Column to remove
|
|
193
|
+
*/
|
|
194
|
+
removeColumnFromCurrentLayout(columnId: string): void;
|
|
195
|
+
/**
|
|
196
|
+
* Removes a Column from all Layouts
|
|
197
|
+
* @param columnId Column to remove
|
|
198
|
+
*/
|
|
199
|
+
removeColumnFromAllLayouts(columnId: string): void;
|
|
200
|
+
/**
|
|
201
|
+
* Removes a Column from a given Layout
|
|
202
|
+
* @param columnId Column to remove
|
|
203
|
+
* @param layoutName layout from which to remove Column
|
|
204
|
+
*/
|
|
205
|
+
removeColumnFromLayout(columnId: string, layoutName: string): void;
|
|
190
206
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { AdaptableColumnDataType } from '../../types';
|
|
1
2
|
import { AdaptablePredicateDef, AdaptablePredicate, PredicateDefHandlerParams, ModuleScope } from '../PredefinedConfig/Common/AdaptablePredicate';
|
|
3
|
+
import { SystemFilterPredicateId } from '../types';
|
|
2
4
|
/**
|
|
3
5
|
* Functions which manage the Predicate object in AdapTable
|
|
4
6
|
*/
|
|
@@ -52,4 +54,9 @@ export interface PredicateApi {
|
|
|
52
54
|
* @param defaultReturn Whether to return the default
|
|
53
55
|
*/
|
|
54
56
|
handlePredicate(predicate: AdaptablePredicate | undefined, params: Omit<PredicateDefHandlerParams, 'api' | 'inputs'>, defaultReturn: boolean): boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Gets the correct Equality-type System Predicate for a particular DataType
|
|
59
|
+
* @param dataType DataType of Column
|
|
60
|
+
*/
|
|
61
|
+
getEqualityPredicateForDataType(dataType: AdaptableColumnDataType): SystemFilterPredicateId;
|
|
55
62
|
}
|
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import { SmartEditOperation } from '../AdaptableOptions/
|
|
1
|
+
import { SmartEditOperation } from '../AdaptableOptions/EditOptions';
|
|
2
|
+
import { MathOperation } from '../PredefinedConfig/Common/Enums';
|
|
2
3
|
import { GridCell } from '../PredefinedConfig/Selection/GridCell';
|
|
4
|
+
import { SmartEditCustomOperation } from '../types';
|
|
3
5
|
/**
|
|
4
6
|
* Provides run-time access to the Smart Edit Module
|
|
5
7
|
**/
|
|
6
8
|
export interface SmartEditApi {
|
|
7
9
|
/**
|
|
8
|
-
* Sets Smart Edit
|
|
10
|
+
* Sets (shipped) Smart Edit Operation: 'Add','Subtract','Multiply','Divide'
|
|
9
11
|
* @param operation operation to run
|
|
10
12
|
*/
|
|
11
|
-
setSmartEditOperation(operation:
|
|
13
|
+
setSmartEditOperation(operation: MathOperation): void;
|
|
14
|
+
/**
|
|
15
|
+
* Sets current Smart Edit Operation to a Custom Operation
|
|
16
|
+
* @param customOperationName name of Custom Smart Edit Operation
|
|
17
|
+
*/
|
|
18
|
+
setCustomSmartEditOperation(customOperationName: string): void;
|
|
12
19
|
/**
|
|
13
20
|
* Gets current Smart Edit Operation
|
|
14
21
|
*/
|
|
@@ -31,4 +38,8 @@ export interface SmartEditApi {
|
|
|
31
38
|
* @param gridCells Cells to apply the Smart Edit
|
|
32
39
|
*/
|
|
33
40
|
applySmartEdit(gridCells: GridCell[]): void;
|
|
41
|
+
/**
|
|
42
|
+
* Retrieves an Smart Edit Custom Operations (provided in Edit Options)
|
|
43
|
+
*/
|
|
44
|
+
getSmartEditCustomOperations(): SmartEditCustomOperation[] | undefined;
|
|
34
45
|
}
|
|
@@ -1,22 +1,30 @@
|
|
|
1
1
|
import { AdaptableObject } from '../PredefinedConfig/Common/AdaptableObject';
|
|
2
2
|
import { SharedEntity } from '../PredefinedConfig/TeamSharingState';
|
|
3
|
-
import { AdaptableModule, SharedEntityConfig
|
|
3
|
+
import { AdaptableModule, SharedEntityConfig } from '../types';
|
|
4
4
|
/**
|
|
5
5
|
* Provides run-time access to Team Sharing Module and associated state
|
|
6
6
|
*/
|
|
7
7
|
export interface TeamSharingApi {
|
|
8
8
|
/**
|
|
9
|
-
* Retrieves
|
|
9
|
+
* Retrieves all shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.getSharedEntities(...)` method.
|
|
10
10
|
*/
|
|
11
|
-
|
|
11
|
+
getSharedEntities(): Promise<SharedEntity[]>;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Sets the shared entities which are currently shared. It is an asynchronous operation as it leverages the `TeamSharingOptions.setSharedEntities(...)` method.
|
|
14
|
+
* @param sharedEntities the shared entities
|
|
15
|
+
* @return either TRUE if the shared entities were successfully set or FALSE if the shared entities were not set
|
|
14
16
|
*/
|
|
15
|
-
|
|
17
|
+
setSharedEntities(sharedEntities: SharedEntity[]): Promise<boolean>;
|
|
16
18
|
/**
|
|
17
19
|
* Whether Team Sharing is Activated
|
|
20
|
+
*
|
|
21
|
+
* @deprecated use `Adaptable.isTeamSharingAvailable()` instead
|
|
18
22
|
*/
|
|
19
23
|
isTeamSharingActivated(): boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Whether Team Sharing is Available to use
|
|
26
|
+
*/
|
|
27
|
+
isTeamSharingAvailable(): boolean;
|
|
20
28
|
/**
|
|
21
29
|
* Whether current user has full Team Sharing rights (for creating & updating shared items)
|
|
22
30
|
*/
|
|
@@ -41,4 +49,9 @@ export interface TeamSharingApi {
|
|
|
41
49
|
* @param sharedEntityConfig Config info about the Sharing Actions
|
|
42
50
|
*/
|
|
43
51
|
shareEntity(entity: AdaptableObject, module: AdaptableModule, sharedEntityConfig: SharedEntityConfig): void;
|
|
52
|
+
/**
|
|
53
|
+
* Removes an Adaptable Object from the Team Share.
|
|
54
|
+
* @param entityId the ID of the AdaptableObject to be removed from Team Share
|
|
55
|
+
*/
|
|
56
|
+
unshareEntity(entityId: string): void;
|
|
44
57
|
}
|
|
@@ -70,12 +70,12 @@ export interface UserInterfaceApi {
|
|
|
70
70
|
* Returns Style set for ReadOnly cells
|
|
71
71
|
*/
|
|
72
72
|
getReadOnlyCellStyle(): AdaptableStyle | undefined;
|
|
73
|
-
/**
|
|
74
|
-
* Retrieves any Action Columns (provided in User Interface Options)
|
|
75
|
-
*/
|
|
76
|
-
getAllActionColumn(): ActionColumn[];
|
|
77
73
|
/**
|
|
78
74
|
* Retrieves any Object Tags (provided in User Interface Options)
|
|
79
75
|
*/
|
|
80
76
|
getAdaptableObjectTags(): AdaptableObjectTag[] | undefined;
|
|
77
|
+
/**
|
|
78
|
+
* Retrieves any Action Columns (provided in User Interface Options)
|
|
79
|
+
*/
|
|
80
|
+
getAllActionColumn(): ActionColumn[];
|
|
81
81
|
}
|
|
@@ -6,7 +6,6 @@ import { CalculatedColumnState } from './CalculatedColumnState';
|
|
|
6
6
|
import { ConditionalStyleState } from './ConditionalStyleState';
|
|
7
7
|
import { CustomSortState } from './CustomSortState';
|
|
8
8
|
import { DashboardState } from './DashboardState';
|
|
9
|
-
import { DataSourceState } from './DataSourceState';
|
|
10
9
|
import { ExportState } from './ExportState';
|
|
11
10
|
import { FormatColumnState } from './FormatColumnState';
|
|
12
11
|
import { FreeTextColumnState } from './FreeTextColumnState';
|
|
@@ -18,7 +17,6 @@ import { ShortcutState } from './ShortcutState';
|
|
|
18
17
|
import { TeamSharingState } from './TeamSharingState';
|
|
19
18
|
import { ThemeState } from './ThemeState';
|
|
20
19
|
import { ConfigState } from './ConfigState';
|
|
21
|
-
import { FilterState } from './FilterState';
|
|
22
20
|
import { ApplicationState } from './ApplicationState';
|
|
23
21
|
import { ToolPanelState } from './ToolPanelState';
|
|
24
22
|
import { QueryState } from './QueryState';
|
|
@@ -41,9 +39,7 @@ export interface AdaptablePersistentState {
|
|
|
41
39
|
ConditionalStyle: ConditionalStyleState;
|
|
42
40
|
CustomSort: CustomSortState;
|
|
43
41
|
Dashboard: DashboardState;
|
|
44
|
-
DataSource: DataSourceState;
|
|
45
42
|
Export: ExportState;
|
|
46
|
-
Filter: FilterState;
|
|
47
43
|
FormatColumn: FormatColumnState;
|
|
48
44
|
FreeTextColumn: FreeTextColumnState;
|
|
49
45
|
Layout: LayoutState;
|
|
@@ -46,6 +46,11 @@ export interface CalculatedColumnSettings extends SpecialColumnSettings {
|
|
|
46
46
|
* @defaultValue false
|
|
47
47
|
*/
|
|
48
48
|
ShowToolTip?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* If true, the Calculated Column Expression will NOT be evaluated and the value is loaded from the row data property with the same name as the ColumnId
|
|
51
|
+
* @defaultValue false
|
|
52
|
+
*/
|
|
53
|
+
ExternallyEvaluatedExpression?: boolean;
|
|
49
54
|
}
|
|
50
55
|
/**
|
|
51
56
|
* Calculated Column Query which may be a Scalar or an AggregatedScalar Expression
|
|
@@ -11,13 +11,13 @@ export interface AdaptableButton<CONTEXT_TYPE extends BaseContext> extends Adapt
|
|
|
11
11
|
*/
|
|
12
12
|
label?: string | ((button: AdaptableButton<CONTEXT_TYPE>, context: CONTEXT_TYPE) => string);
|
|
13
13
|
/**
|
|
14
|
-
* Style for Button - can be object or function
|
|
14
|
+
* Style for Button - can be object or function that provides a `ButtonStyle` object
|
|
15
15
|
*/
|
|
16
16
|
buttonStyle?: ButtonStyle | ((button: AdaptableButton<CONTEXT_TYPE>, context: CONTEXT_TYPE) => ButtonStyle);
|
|
17
17
|
/**
|
|
18
|
-
* Icon
|
|
18
|
+
* Icon for Button - can be object or function that provides a `AdaptableIcon` object
|
|
19
19
|
*/
|
|
20
|
-
icon?: AdaptableIcon;
|
|
20
|
+
icon?: AdaptableIcon | ((button: AdaptableButton<CONTEXT_TYPE>, context: CONTEXT_TYPE) => AdaptableIcon);
|
|
21
21
|
/**
|
|
22
22
|
* Tooltip for Button - can be string or function that provides string
|
|
23
23
|
*/
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { AdaptableObject } from './AdaptableObject';
|
|
2
|
+
/**
|
|
3
|
+
* Type of data stored in an Adaptable Column
|
|
4
|
+
*/
|
|
5
|
+
export declare type AdaptableColumnDataType = 'String' | 'Number' | 'Boolean' | 'Date' | 'Object' | 'Unknown';
|
|
2
6
|
/**
|
|
3
7
|
* Base class for Adaptable Column containing most important properties
|
|
4
8
|
*/
|
|
@@ -14,7 +18,7 @@ export interface AdaptableColumnBase extends AdaptableObject {
|
|
|
14
18
|
/**
|
|
15
19
|
* DataType of the column
|
|
16
20
|
*/
|
|
17
|
-
dataType:
|
|
21
|
+
dataType: AdaptableColumnDataType;
|
|
18
22
|
}
|
|
19
23
|
export declare const isValidOrderForColumnGroups: ({ oldColumns, newColumns, }: {
|
|
20
24
|
oldColumns: AdaptableColumn[];
|
|
@@ -36,13 +36,13 @@ export interface AdaptableFormField {
|
|
|
36
36
|
*/
|
|
37
37
|
name: string;
|
|
38
38
|
/**
|
|
39
|
-
* Label to display in
|
|
39
|
+
* Label to display in the Field
|
|
40
40
|
*/
|
|
41
41
|
label: string;
|
|
42
42
|
/**
|
|
43
43
|
* Field Type: text, date, number, checkbox, select, textOutput
|
|
44
44
|
*/
|
|
45
|
-
fieldType:
|
|
45
|
+
fieldType: AdaptableFormFieldType;
|
|
46
46
|
/**
|
|
47
47
|
* Field Default Value - can be of type string, boolean, number
|
|
48
48
|
*/
|
|
@@ -55,4 +55,5 @@ export interface AdaptableFormField {
|
|
|
55
55
|
label: string;
|
|
56
56
|
}[];
|
|
57
57
|
}
|
|
58
|
+
export declare type AdaptableFormFieldType = 'text' | 'select' | 'date' | 'number' | 'checkbox' | 'textOutput';
|
|
58
59
|
export declare function getDefaultAdaptableFormData<T extends BaseContext = BaseContext>(formDef?: AdaptableForm<T>): Record<string, any>;
|
|
@@ -12,9 +12,7 @@ export declare type AdaptableFormat = {
|
|
|
12
12
|
Options: StringFormatterOptions;
|
|
13
13
|
};
|
|
14
14
|
export interface BaseFormatterOptions {
|
|
15
|
-
CustomDisplayFormats?:
|
|
16
|
-
Id: string;
|
|
17
|
-
}[];
|
|
15
|
+
CustomDisplayFormats?: string[];
|
|
18
16
|
}
|
|
19
17
|
/**
|
|
20
18
|
* Formatter Options for Numeric Columns
|
|
@@ -21,15 +21,6 @@ export interface AdaptableObject {
|
|
|
21
21
|
Tags?: AdaptableObjectTag[];
|
|
22
22
|
}
|
|
23
23
|
/**
|
|
24
|
-
* Object
|
|
24
|
+
* AdaptableObjectTag Object Tague - currently supporting only plain string values, but open for future extensions, if ever needed.
|
|
25
25
|
*/
|
|
26
|
-
export declare type AdaptableObjectTag = string
|
|
27
|
-
/**
|
|
28
|
-
* Label for the Tag
|
|
29
|
-
*/
|
|
30
|
-
label: string;
|
|
31
|
-
/**
|
|
32
|
-
* Value for the Tag - string or number
|
|
33
|
-
*/
|
|
34
|
-
value: string | number;
|
|
35
|
-
};
|
|
26
|
+
export declare type AdaptableObjectTag = string;
|
|
@@ -53,7 +53,24 @@ exports.SystemPredicateDefs = [
|
|
|
53
53
|
icon: { text: '!IN' },
|
|
54
54
|
columnScope: { DataTypes: ['String', 'Number', 'Date'] },
|
|
55
55
|
moduleScope: ['filter'],
|
|
56
|
-
handler: ({
|
|
56
|
+
handler: ({ inputs, column, value }) => {
|
|
57
|
+
// basically negation of IN
|
|
58
|
+
if (inputs.length === 0) {
|
|
59
|
+
return true;
|
|
60
|
+
}
|
|
61
|
+
if (column.dataType === 'Date') {
|
|
62
|
+
return inputs.some((input) => {
|
|
63
|
+
return !isSameDay_1.default(input, value);
|
|
64
|
+
});
|
|
65
|
+
}
|
|
66
|
+
if (column.dataType === 'Number') {
|
|
67
|
+
return !inputs.includes(value);
|
|
68
|
+
}
|
|
69
|
+
if (column.dataType === 'String') {
|
|
70
|
+
return !inputs.includes(value);
|
|
71
|
+
}
|
|
72
|
+
return true;
|
|
73
|
+
},
|
|
57
74
|
toString: ({ inputs }) => `Exclude (${inputs.join(', ')})`,
|
|
58
75
|
},
|
|
59
76
|
{
|
|
@@ -1,36 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import { AdaptableObject } from './Common/AdaptableObject';
|
|
4
|
-
import { AdaptablePredicate } from './Common/AdaptablePredicate';
|
|
5
|
-
import { TypeHint } from './Common/Types';
|
|
6
|
-
/**
|
|
7
|
-
* Predefined Configuration for Filters
|
|
8
|
-
*/
|
|
9
|
-
export interface FilterState extends ConfigState {
|
|
10
|
-
/**
|
|
11
|
-
* Collection of Column Filters
|
|
12
|
-
*/
|
|
13
|
-
ColumnFilters?: ColumnFilter[];
|
|
14
|
-
/**
|
|
15
|
-
* Whether to display Quick Filter Bar between Column Header and the Grid
|
|
16
|
-
* @defaultValue true
|
|
17
|
-
*/
|
|
18
|
-
IsQuickFilterVisible?: boolean;
|
|
19
|
-
}
|
|
20
|
-
export interface FilterPredicateInput {
|
|
21
|
-
type: 'number' | 'text' | 'date';
|
|
22
|
-
defaultValue?: any;
|
|
23
|
-
}
|
|
24
|
-
export interface FilterPredicateHandler {
|
|
25
|
-
(params: FilterPredicateParams): boolean;
|
|
26
|
-
}
|
|
27
|
-
export interface FilterPredicateParams {
|
|
28
|
-
value: any;
|
|
29
|
-
displayValue: string;
|
|
30
|
-
inputs: any[];
|
|
31
|
-
column: AdaptableColumn;
|
|
32
|
-
api: AdaptableApi;
|
|
33
|
-
}
|
|
1
|
+
import { AdaptableObject, AdaptablePredicate } from '../../types';
|
|
2
|
+
import { TypeHint } from './Types';
|
|
34
3
|
/**
|
|
35
4
|
* Defines a Filter applied on a Column using a Predicate
|
|
36
5
|
*/
|
|
@@ -9,8 +9,8 @@ var DataType;
|
|
|
9
9
|
DataType["Boolean"] = "Boolean";
|
|
10
10
|
DataType["Date"] = "Date";
|
|
11
11
|
DataType["Object"] = "Object";
|
|
12
|
-
DataType["All"] = "All";
|
|
13
12
|
DataType["Unknown"] = "Unknown";
|
|
13
|
+
DataType["All"] = "All";
|
|
14
14
|
})(DataType = exports.DataType || (exports.DataType = {}));
|
|
15
15
|
var MathOperation;
|
|
16
16
|
(function (MathOperation) {
|
|
@@ -6,9 +6,9 @@ export declare type AdaptableDashboardToolbars = AdaptableDashboardToolbar[];
|
|
|
6
6
|
/**
|
|
7
7
|
* List of all the Toolbars that Adaptable provides
|
|
8
8
|
*/
|
|
9
|
-
export declare type AdaptableDashboardToolbar = 'Alert' | 'BulkUpdate' | 'CellSummary' | 'DataChangeHistory' | '
|
|
9
|
+
export declare type AdaptableDashboardToolbar = 'Alert' | 'BulkUpdate' | 'CellSummary' | 'DataChangeHistory' | 'DataSet' | 'Export' | 'Filter' | 'Glue42' | 'IPushPull' | 'Layout' | 'OpenFin' | 'Query' | 'QuickSearch' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'Theme';
|
|
10
10
|
export declare const ALL_TOOLBARS: AdaptableDashboardToolbar[];
|
|
11
|
-
export declare type AdaptableStatusBarPanel = 'CellSummary' | 'Alert' | 'GridInfo' | 'Dashboard' | 'ToolPanel' | 'StatusBar' | 'StateManagement' | 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | '
|
|
11
|
+
export declare type AdaptableStatusBarPanel = 'CellSummary' | 'Alert' | 'GridInfo' | 'Dashboard' | 'ToolPanel' | 'StatusBar' | 'StateManagement' | 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'DataSet' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'SystemStatus' | 'DataChangeHistory' | 'TeamSharing' | 'Theme' | 'BulkUpdate' | 'SettingsPanel' | 'SmartEdit';
|
|
12
12
|
export declare const ALL_STATUS_SUB_PANELS: AdaptableStatusBarPanel[];
|
|
13
13
|
export declare type AdaptableToolPanels = AdaptableToolPanel[];
|
|
14
14
|
export declare type AdaptableToolPanel = 'Alert' | 'BulkUpdate' | 'CellSummary' | 'Dashboard' | 'DataChangeHistory' | 'Export' | 'Filter' | 'IPushPull' | 'Layout' | 'OpenFin' | 'Query' | 'QuickSearch' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'Theme';
|
|
@@ -22,16 +22,17 @@ export declare type AdaptableModuleButtons = AdaptableModuleButton[];
|
|
|
22
22
|
/**
|
|
23
23
|
* List of all the Module buttons Adaptable provides - each Module has a popup for which this is a shortcut button
|
|
24
24
|
*/
|
|
25
|
-
export declare type AdaptableModuleButton = 'Alert' | 'FlashingCell' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | '
|
|
25
|
+
export declare type AdaptableModuleButton = 'Alert' | 'FlashingCell' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSet' | 'Export' | 'Filter' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'SystemStatus' | 'TeamSharing' | 'Theme';
|
|
26
26
|
export declare type AdaptableStateKeys = AdaptableStateKey[];
|
|
27
27
|
export declare type AdaptableStateKey = keyof AdaptablePersistentState | 'OpenFin' | 'Glue42' | 'IPushPull';
|
|
28
28
|
/**
|
|
29
29
|
* Modules provided by AdapTable, subject to Entitlements and usually have Predefined Config
|
|
30
30
|
*/
|
|
31
|
-
export declare type AdaptableModule = 'Alert' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | '
|
|
32
|
-
export declare type AdaptableSettingsPanel = 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | '
|
|
31
|
+
export declare type AdaptableModule = 'Alert' | 'BulkUpdate' | 'CalculatedColumn' | 'CellSummary' | 'Charting' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSet' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'Glue42' | 'GridInfo' | 'IPushPull' | 'Layout' | 'OpenFin' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'SettingsPanel' | 'Shortcut' | 'SmartEdit' | 'StateManagement' | 'StatusBar' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
|
|
32
|
+
export declare type AdaptableSettingsPanel = 'Alert' | 'CalculatedColumn' | 'ConditionalStyle' | 'CustomSort' | 'Dashboard' | 'DataChangeHistory' | 'DataSet' | 'Export' | 'Filter' | 'FlashingCell' | 'FormatColumn' | 'FreeTextColumn' | 'GridInfo' | 'Layout' | 'PlusMinus' | 'Query' | 'QuickSearch' | 'Schedule' | 'Shortcut' | 'StateManagement' | 'StatusBar' | 'SystemStatus' | 'TeamSharing' | 'Theme' | 'ToolPanel';
|
|
33
33
|
export declare type TypeHint<Base, Literals> = (Base & {
|
|
34
34
|
__subType?: true;
|
|
35
35
|
}) | Literals;
|
|
36
36
|
export declare type AdaptableQLModules = AdaptableQLModule[];
|
|
37
37
|
export declare type AdaptableQLModule = 'Filter' | 'Query';
|
|
38
|
+
export declare type AdaptableColumnType = 'abColDefBoolean' | 'abColDefDate' | 'abColDefNumber' | 'abColDefString' | 'abColDefObject' | 'abColDefCustom' | 'abSpecialColumn';
|
|
@@ -9,7 +9,7 @@ exports.ALL_TOOLBARS = [
|
|
|
9
9
|
'BulkUpdate',
|
|
10
10
|
'CellSummary',
|
|
11
11
|
'DataChangeHistory',
|
|
12
|
-
'
|
|
12
|
+
'DataSet',
|
|
13
13
|
'Export',
|
|
14
14
|
'Filter',
|
|
15
15
|
'Glue42',
|
|
@@ -32,7 +32,7 @@ exports.ALL_STATUS_SUB_PANELS = [
|
|
|
32
32
|
'CustomSort',
|
|
33
33
|
'Dashboard',
|
|
34
34
|
'DataChangeHistory',
|
|
35
|
-
'
|
|
35
|
+
'DataSet',
|
|
36
36
|
'Export',
|
|
37
37
|
'Filter',
|
|
38
38
|
'FlashingCell',
|
|
@@ -72,4 +72,3 @@ exports.ALL_TOOL_PANELS = [
|
|
|
72
72
|
'SystemStatus',
|
|
73
73
|
'Theme',
|
|
74
74
|
];
|
|
75
|
-
// | 'QuickSearch'
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ConfigState } from './ConfigState';
|
|
2
2
|
import { AdaptableObject } from './Common/AdaptableObject';
|
|
3
3
|
import { ColumnSort } from './Common/ColumnSort';
|
|
4
|
+
import { ColumnFilter } from '../types';
|
|
4
5
|
/**
|
|
5
6
|
* Predefined Configuration for the Layout Module
|
|
6
7
|
*/
|
|
@@ -36,6 +37,10 @@ export interface Layout extends AdaptableObject {
|
|
|
36
37
|
* Sorting to apply in the Layout
|
|
37
38
|
*/
|
|
38
39
|
ColumnSorts?: ColumnSort[];
|
|
40
|
+
/**
|
|
41
|
+
* Collection of Column Filters.
|
|
42
|
+
*/
|
|
43
|
+
ColumnFilters?: ColumnFilter[];
|
|
39
44
|
/**
|
|
40
45
|
* Columns which are row-grouped when the Layout is applied
|
|
41
46
|
*/
|