@adaptabletools/adaptable 12.1.3 → 12.1.6
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/bundle.cjs.js +116 -143
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +10 -4
- package/src/AdaptableOptions/FilterOptions.d.ts +7 -0
- package/src/AdaptableOptions/UserInterfaceOptions.d.ts +31 -24
- package/src/Api/ColumnApi.d.ts +7 -1
- package/src/Api/Events/SearchChanged.d.ts +1 -0
- package/src/Api/FilterApi.d.ts +6 -0
- package/src/Api/FormatColumnApi.d.ts +5 -3
- package/src/Api/Implementation/ColumnApiImpl.d.ts +3 -1
- package/src/Api/Implementation/ColumnApiImpl.js +17 -2
- package/src/Api/Implementation/DataSetApiImpl.js +1 -1
- package/src/Api/Implementation/FilterApiImpl.d.ts +1 -0
- package/src/Api/Implementation/FilterApiImpl.js +10 -1
- package/src/Api/Implementation/FormatColumnApiImpl.d.ts +5 -3
- package/src/Api/Implementation/FormatColumnApiImpl.js +40 -11
- package/src/Api/Implementation/GridApiImpl.js +4 -4
- package/src/Api/Implementation/LayoutApiImpl.d.ts +1 -1
- package/src/Api/Implementation/LayoutApiImpl.js +4 -3
- package/src/Api/Implementation/QueryApiImpl.js +1 -1
- package/src/Api/Implementation/TeamSharingApiImpl.js +1 -1
- package/src/Api/LayoutApi.d.ts +1 -1
- package/src/PredefinedConfig/AlertState.d.ts +2 -2
- package/src/PredefinedConfig/Common/AdaptableColumn.js +3 -2
- package/src/PredefinedConfig/Common/AdaptablePredicate.js +9 -1
- package/src/PredefinedConfig/Common/Types.d.ts +1 -0
- package/src/PredefinedConfig/Common/Types.js +38 -1
- package/src/PredefinedConfig/FlashingCellState.d.ts +1 -1
- package/src/PredefinedConfig/FormatColumnState.d.ts +2 -2
- package/src/Redux/Store/AdaptableStore.js +18 -10
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/BulkUpdateModule.js +1 -1
- package/src/Strategy/CalculatedColumnModule.js +1 -1
- package/src/Strategy/CellSummaryModule.js +1 -1
- package/src/Strategy/ChartingModule.js +1 -1
- package/src/Strategy/ConditionalStyleModule.js +1 -1
- package/src/Strategy/CustomSortModule.js +1 -1
- package/src/Strategy/DashboardModule.js +1 -1
- package/src/Strategy/DataChangeHistoryModule.js +1 -1
- package/src/Strategy/DataSetModule.js +1 -1
- package/src/Strategy/ExportModule.js +1 -1
- package/src/Strategy/FilterModule.js +1 -1
- package/src/Strategy/FlashingCellModule.js +1 -1
- package/src/Strategy/FormatColumnModule.js +1 -1
- package/src/Strategy/FreeTextColumnModule.js +1 -1
- package/src/Strategy/GridInfoModule.js +1 -1
- package/src/Strategy/LayoutModule.js +3 -3
- package/src/Strategy/PlusMinusModule.js +1 -1
- package/src/Strategy/QueryModule.js +1 -1
- package/src/Strategy/QuickSearchModule.js +1 -1
- package/src/Strategy/ScheduleModule.js +1 -1
- package/src/Strategy/ShortcutModule.js +1 -1
- package/src/Strategy/SmartEditModule.js +1 -1
- package/src/Strategy/StateManagementModule.js +1 -1
- package/src/Strategy/StatusBarModule.js +1 -1
- package/src/Strategy/SystemStatusModule.js +1 -1
- package/src/Strategy/TeamSharingModule.js +1 -1
- package/src/Strategy/ThemeModule.js +1 -1
- package/src/Strategy/ToolPanelModule.js +1 -1
- package/src/Utilities/Constants/ModuleConstants.d.ts +68 -0
- package/src/Utilities/Constants/ModuleConstants.js +70 -1
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +3 -1
- package/src/Utilities/Extensions/ArrayExtensions.js +6 -0
- package/src/Utilities/Services/Interface/IMetamodelService.d.ts +5 -0
- package/src/Utilities/Services/MetamodelService.d.ts +4 -4
- package/src/Utilities/Services/MetamodelService.js +19 -12
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ColumnsList.js +193 -135
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizard.js +23 -15
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/ConfigurationWizardColumnsStep.js +3 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.d.ts +2 -2
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/EntitlementsForm.js +148 -8
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/GridOptionsForm.js +0 -7
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.d.ts +6 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsActionColumnsForm.js +33 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.d.ts +6 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsSidebarForm.js +82 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.d.ts +6 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UIOptionsStatusbarForm.js +109 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.d.ts +8 -0
- package/src/View/AdaptableWizardView/AdaptableConfigurationDialog/UIOptions/UiOptionsForm.js +16 -0
- package/src/View/AdaptableWizardView/Wizard.js +2 -1
- package/src/View/AdaptableWizardView/helper.d.ts +1 -1
- package/src/View/AdaptableWizardView/helper.js +3 -10
- package/src/View/Components/FilterForm/FilterForm.js +4 -2
- package/src/View/Components/FilterForm/QuickFilterForm.js +2 -1
- package/src/View/Components/RangesComponent.js +1 -1
- package/src/View/Layout/Wizard/sections/AggregationsSection.js +1 -1
- package/src/View/Layout/Wizard/sections/ColumnsSection.js +8 -4
- package/src/View/Layout/Wizard/sections/PivotColumnsSection.js +3 -2
- package/src/View/Layout/Wizard/sections/RowGroupingSection.js +1 -1
- package/src/View/Layout/Wizard/sections/SettingsSection.js +2 -2
- package/src/View/Layout/Wizard/sections/SortSection.js +1 -1
- package/src/agGrid/Adaptable.d.ts +2 -1
- package/src/agGrid/Adaptable.js +19 -12
- package/src/agGrid/PercentBarRenderer.d.ts +2 -1
- package/src/agGrid/PercentBarRenderer.js +3 -3
- package/src/agGrid/agGridHelper.d.ts +1 -1
- package/src/agGrid/agGridHelper.js +2 -2
- package/src/components/ProgressIndicator/ProgressIndicator.js +10 -12
- package/src/metamodel/adaptable.metamodel.d.ts +74 -6
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/src/parser/src/types.d.ts +1 -1
- package/src/types.d.ts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -3,7 +3,9 @@
|
|
|
3
3
|
This page includes frequently used typed - particularly helpful for State and Api where we can strongly type stuff
|
|
4
4
|
*/
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.ALL_TOOL_PANELS = exports.ALL_STATUS_SUB_PANELS = exports.ALL_TOOLBARS = void 0;
|
|
6
|
+
exports.ALL_MODULES = exports.ALL_TOOL_PANELS = exports.ALL_STATUS_SUB_PANELS = exports.ALL_TOOLBARS = void 0;
|
|
7
|
+
const tslib_1 = require("tslib");
|
|
8
|
+
const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
|
|
7
9
|
exports.ALL_TOOLBARS = [
|
|
8
10
|
'Alert',
|
|
9
11
|
'BulkUpdate',
|
|
@@ -72,3 +74,38 @@ exports.ALL_TOOL_PANELS = [
|
|
|
72
74
|
'SystemStatus',
|
|
73
75
|
'Theme',
|
|
74
76
|
];
|
|
77
|
+
exports.ALL_MODULES = [
|
|
78
|
+
ModuleConstants.AlertModuleId,
|
|
79
|
+
ModuleConstants.BulkUpdateModuleId,
|
|
80
|
+
ModuleConstants.CalculatedColumnModuleId,
|
|
81
|
+
ModuleConstants.CellSummaryModuleId,
|
|
82
|
+
ModuleConstants.ChartingModuleId,
|
|
83
|
+
ModuleConstants.ConditionalStyleModuleId,
|
|
84
|
+
ModuleConstants.CustomSortModuleId,
|
|
85
|
+
ModuleConstants.DashboardModuleId,
|
|
86
|
+
ModuleConstants.DataChangeHistoryModuleId,
|
|
87
|
+
ModuleConstants.DataSetModuleId,
|
|
88
|
+
ModuleConstants.ExportModuleId,
|
|
89
|
+
ModuleConstants.FilterModuleId,
|
|
90
|
+
ModuleConstants.FlashingCellModuleId,
|
|
91
|
+
ModuleConstants.FormatColumnModuleId,
|
|
92
|
+
ModuleConstants.FreeTextColumnModuleId,
|
|
93
|
+
ModuleConstants.Glue42ModuleId,
|
|
94
|
+
ModuleConstants.GridInfoModuleId,
|
|
95
|
+
ModuleConstants.IPushPullModuleId,
|
|
96
|
+
ModuleConstants.LayoutModuleId,
|
|
97
|
+
ModuleConstants.OpenFinModuleId,
|
|
98
|
+
ModuleConstants.PlusMinusModuleId,
|
|
99
|
+
ModuleConstants.QueryModuleId,
|
|
100
|
+
ModuleConstants.QuickSearchModuleId,
|
|
101
|
+
ModuleConstants.ScheduleModuleId,
|
|
102
|
+
ModuleConstants.SettingsPanelModuleId,
|
|
103
|
+
ModuleConstants.ShortcutModuleId,
|
|
104
|
+
ModuleConstants.SmartEditModuleId,
|
|
105
|
+
ModuleConstants.StateManagementModuleId,
|
|
106
|
+
ModuleConstants.StatusBarModuleId,
|
|
107
|
+
ModuleConstants.SystemStatusModuleId,
|
|
108
|
+
ModuleConstants.TeamSharingModuleId,
|
|
109
|
+
ModuleConstants.ThemeModuleId,
|
|
110
|
+
ModuleConstants.ToolPanelModuleId,
|
|
111
|
+
];
|
|
@@ -65,4 +65,4 @@ export interface FlashingCellDefinition extends SuspendableObject {
|
|
|
65
65
|
*/
|
|
66
66
|
FlashDuration?: number | 'always';
|
|
67
67
|
}
|
|
68
|
-
export declare type SystemFlashingCellPredicateId = 'Blanks' | 'NonBlanks' | 'Equals' | 'NotEquals' | 'GreaterThan' | 'LessThan' | 'Positive' | 'Negative' | 'Zero' | 'Between' | 'NotBetween' | 'Is' | 'IsNot' | 'Contains' | 'NotContains' | 'StartsWith' | 'EndsWith' | 'Regex' | 'Today' | 'Yesterday' | 'Tomorrow' | 'ThisWeek' | 'ThisMonth' | 'ThisQuarter' | 'ThisYear' | 'InPast' | 'InFuture' | 'Before' | 'After' | 'On' | 'NotOn' | 'NextWorkDay' | 'LastWorkDay' | 'True' | 'False' | 'PercentChange' | 'IsNumeric' | 'Any';
|
|
68
|
+
export declare type SystemFlashingCellPredicateId = 'Blanks' | 'NonBlanks' | 'Equals' | 'NotEquals' | 'GreaterThan' | 'LessThan' | 'Positive' | 'Negative' | 'Zero' | 'Between' | 'NotBetween' | 'Is' | 'IsNot' | 'Contains' | 'NotContains' | 'StartsWith' | 'EndsWith' | 'Regex' | 'Today' | 'Yesterday' | 'Tomorrow' | 'ThisWeek' | 'ThisMonth' | 'ThisQuarter' | 'ThisYear' | 'InPast' | 'InFuture' | 'Before' | 'After' | 'On' | 'NotOn' | 'NextWorkDay' | 'LastWorkDay' | 'True' | 'False' | 'PercentChange' | 'IsNumeric' | 'IsNotNumeric' | 'Any';
|
|
@@ -111,11 +111,11 @@ export interface CellColorRange {
|
|
|
111
111
|
/**
|
|
112
112
|
* Start number of Range
|
|
113
113
|
*/
|
|
114
|
-
Min: number;
|
|
114
|
+
Min: number | 'Col-Min';
|
|
115
115
|
/**
|
|
116
116
|
* End number of Range
|
|
117
117
|
*/
|
|
118
|
-
Max: number;
|
|
118
|
+
Max: number | 'Col-Max';
|
|
119
119
|
/**
|
|
120
120
|
* Cell colour to use for values that fall inside Range
|
|
121
121
|
*/
|
|
@@ -281,7 +281,7 @@ exports.AdaptableStore = AdaptableStore;
|
|
|
281
281
|
const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
282
282
|
return function (next) {
|
|
283
283
|
return function (action) {
|
|
284
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
284
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l;
|
|
285
285
|
switch (action.type) {
|
|
286
286
|
/*******************
|
|
287
287
|
* NAMED QUERY ACTIONS
|
|
@@ -684,14 +684,7 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
684
684
|
if (adaptable.adaptableOptions.searchOptions.filterResultsAfterQuickSearch) {
|
|
685
685
|
const actionTyped = action;
|
|
686
686
|
const searchText = actionTyped.quickSearchText;
|
|
687
|
-
// const gridOptions = adaptable.api.gridApi.getAgGridInstance();
|
|
688
687
|
if (StringExtensions_1.StringExtensions.IsNotNullOrEmpty(searchText)) {
|
|
689
|
-
// Currently using this but any searchable would allow us to limit the cols checked
|
|
690
|
-
// const queryText = 'ANY_CONTAINS("' + searchText + '") ';
|
|
691
|
-
// const queryText = 'ANY_SEARCHABLE_CONTAINS("' + searchText + '") ';
|
|
692
|
-
// adaptable.api.queryApi.setCurrentQuery(queryText);
|
|
693
|
-
// Better still would be to use ag grid if that is possible?
|
|
694
|
-
// gridOptions.api.setQuickFilter(searchText);
|
|
695
688
|
adaptable.setAgQuickSearch(searchText);
|
|
696
689
|
}
|
|
697
690
|
else {
|
|
@@ -763,6 +756,7 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
763
756
|
}, 5);
|
|
764
757
|
adaptable.api.gridApi.fireSearchChangedEvent('Filter');
|
|
765
758
|
adaptable.api.filterApi.fireFilterAppliedEvent();
|
|
759
|
+
adaptable.api.layoutApi.fireLayoutChangedEvent(action.type, null, middlewareAPI.getState().Layout);
|
|
766
760
|
return returnAction;
|
|
767
761
|
}
|
|
768
762
|
/*******************
|
|
@@ -872,6 +866,12 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
872
866
|
let returnAction = next(action);
|
|
873
867
|
const newLayoutState = middlewareAPI.getState().Layout;
|
|
874
868
|
adaptable.api.layoutApi.fireLayoutChangedEvent(action.type, oldLayoutState, newLayoutState);
|
|
869
|
+
const oldFilters = (_h = oldLayoutState.Layouts.find((l) => l.Name == oldLayoutState.CurrentLayout)) === null || _h === void 0 ? void 0 : _h.ColumnFilters;
|
|
870
|
+
const newFilters = (_j = newLayoutState.Layouts.find((l) => l.Name == newLayoutState.CurrentLayout)) === null || _j === void 0 ? void 0 : _j.ColumnFilters;
|
|
871
|
+
// Tell Grid to apply filtering if filters have been changed in a loaded Layout
|
|
872
|
+
if (adaptable.api.filterApi.areColumnFiltersDifferent(oldFilters, newFilters)) {
|
|
873
|
+
adaptable.applyGridFiltering();
|
|
874
|
+
}
|
|
875
875
|
if (returnAction.type == LayoutRedux.LAYOUT_SELECT ||
|
|
876
876
|
returnAction.type == LayoutRedux.LAYOUT_DELETE ||
|
|
877
877
|
returnAction.type == LayoutRedux.LAYOUT_SET_COLUMN_CAPTION) {
|
|
@@ -884,7 +884,7 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
884
884
|
// tell grid the layout has been selected
|
|
885
885
|
adaptable.setLayout(currentLayout);
|
|
886
886
|
}
|
|
887
|
-
if (!((
|
|
887
|
+
if (!((_k = adaptable.adaptableOptions.layoutOptions) === null || _k === void 0 ? void 0 : _k.autoSaveLayouts)) {
|
|
888
888
|
middlewareAPI.dispatch(GridRedux.LayoutUpdateCurrentDraft(currentLayout));
|
|
889
889
|
}
|
|
890
890
|
}
|
|
@@ -892,13 +892,21 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
892
892
|
returnAction.type == LayoutRedux.LAYOUT_SAVE) {
|
|
893
893
|
const actionTyped = action;
|
|
894
894
|
// if autosave is false
|
|
895
|
-
if (!((
|
|
895
|
+
if (!((_l = adaptable.adaptableOptions.layoutOptions) === null || _l === void 0 ? void 0 : _l.autoSaveLayouts)) {
|
|
896
896
|
// and the current layout is saved, make sure we also update the draft
|
|
897
897
|
if (actionTyped.layout.Name === newLayoutState.CurrentLayout) {
|
|
898
898
|
middlewareAPI.dispatch(GridRedux.LayoutUpdateCurrentDraft(actionTyped.layout));
|
|
899
899
|
}
|
|
900
900
|
}
|
|
901
901
|
}
|
|
902
|
+
// when changing current layout via the api, the layout should update
|
|
903
|
+
if (returnAction.type == LayoutRedux.LAYOUT_SAVE) {
|
|
904
|
+
const currentLayout = adaptable.api.layoutApi.getCurrentLayout();
|
|
905
|
+
const savingLayout = returnAction.layout;
|
|
906
|
+
if (currentLayout.Name === savingLayout.Name) {
|
|
907
|
+
adaptable.setLayout(savingLayout);
|
|
908
|
+
}
|
|
909
|
+
}
|
|
902
910
|
return returnAction;
|
|
903
911
|
}
|
|
904
912
|
/*******************
|
|
@@ -20,7 +20,7 @@ const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
|
20
20
|
const ActiveAlertsPanelItemLabel_1 = require("../View/Alert/ActiveAlertsPanelItemLabel");
|
|
21
21
|
class AlertModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
22
22
|
constructor(api) {
|
|
23
|
-
super(ModuleConstants.AlertModuleId,
|
|
23
|
+
super(ModuleConstants.AlertModuleId, ModuleConstants.AlertModuleFriendlyName, 'alert', 'AlertPopup', 'Get notified when things happen in Adaptable that you need to know about', api);
|
|
24
24
|
this.api.internalApi
|
|
25
25
|
.getDataService()
|
|
26
26
|
.on('CellDataChanged', (cellDataChangedInfo) => {
|
|
@@ -10,7 +10,7 @@ const ArrayExtensions_1 = tslib_1.__importDefault(require("../Utilities/Extensio
|
|
|
10
10
|
const ObjectFactory_1 = tslib_1.__importDefault(require("../Utilities/ObjectFactory"));
|
|
11
11
|
class BulkUpdateModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
12
12
|
constructor(api) {
|
|
13
|
-
super(ModuleConstants.BulkUpdateModuleId,
|
|
13
|
+
super(ModuleConstants.BulkUpdateModuleId, ModuleConstants.BulkUpdateFriendlyName, 'bulk-update', 'BulkUpdatePopup', 'Update multiple cell simultaneously with a new or existing value', api);
|
|
14
14
|
}
|
|
15
15
|
getViewAccessLevel() {
|
|
16
16
|
return 'Full';
|
|
@@ -13,7 +13,7 @@ const ArrayExtensions_1 = tslib_1.__importDefault(require("../Utilities/Extensio
|
|
|
13
13
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
14
14
|
class CalculatedColumnModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
15
15
|
constructor(api) {
|
|
16
|
-
super(ModuleConstants.CalculatedColumnModuleId,
|
|
16
|
+
super(ModuleConstants.CalculatedColumnModuleId, ModuleConstants.CalculatedColumnFriendlyName, 'calculated-column', 'CalculatedColumnPopup', 'Create bespoke columns whose cell value is derived dynamically from an Expression', api);
|
|
17
17
|
}
|
|
18
18
|
handleConfigReloaded(adaptableStateReloadedInfo) {
|
|
19
19
|
// re-dispatch the CalculatedColumnReady action to recreate all the aggregated scalar columns
|
|
@@ -9,7 +9,7 @@ const Helper_1 = require("../Utilities/Helpers/Helper");
|
|
|
9
9
|
const CellSummaryStatusPanel_1 = require("../View/CellSummary/CellSummaryStatusPanel");
|
|
10
10
|
class CellSummaryModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
11
11
|
constructor(api) {
|
|
12
|
-
super(ModuleConstants.CellSummaryModuleId,
|
|
12
|
+
super(ModuleConstants.CellSummaryModuleId, ModuleConstants.CellSummaryFriendlyName, 'cell-summary', 'CellSummaryPopup', 'See summary information on a group of cells using multiple summary operations', api);
|
|
13
13
|
}
|
|
14
14
|
getViewAccessLevel() {
|
|
15
15
|
return 'Full';
|
|
@@ -6,7 +6,7 @@ const AdaptableModuleBase_1 = require("./AdaptableModuleBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
class ChartingModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
8
8
|
constructor(api) {
|
|
9
|
-
super(ModuleConstants.ChartingModuleId,
|
|
9
|
+
super(ModuleConstants.ChartingModuleId, ModuleConstants.ChartingFriendlyName, 'chart', 'ChartPopup', 'Create AG Grid Charts in order to see Adaptable Data visually', api);
|
|
10
10
|
}
|
|
11
11
|
isModuleAvailable() {
|
|
12
12
|
return this.api.chartingApi.isChartingEnabled() && super.isModuleAvailable();
|
|
@@ -15,7 +15,7 @@ const getStyleViewItems_1 = require("./Utilities/getStyleViewItems");
|
|
|
15
15
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
16
16
|
class ConditionalStyleModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
17
17
|
constructor(api) {
|
|
18
|
-
super(ModuleConstants.ConditionalStyleModuleId,
|
|
18
|
+
super(ModuleConstants.ConditionalStyleModuleId, ModuleConstants.ConditionalStyleFriendlyName, 'conditional-style', 'ConditionalStylePopup', 'Style columns and rows dynamically based on rules and cell values', api);
|
|
19
19
|
}
|
|
20
20
|
getModuleAdaptableObjects(config) {
|
|
21
21
|
return this.api.conditionalStyleApi.getAllConditionalStyle(config);
|
|
@@ -11,7 +11,7 @@ const getCustomSortSortOrderViewItems_1 = require("./Utilities/CustomSort/getCus
|
|
|
11
11
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
12
12
|
class CustomSortModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
13
13
|
constructor(api) {
|
|
14
|
-
super(ModuleConstants.CustomSortModuleId,
|
|
14
|
+
super(ModuleConstants.CustomSortModuleId, ModuleConstants.CustomSortFriendlyName, 'custom-sort', 'CustomSortPopup', 'Provide bespoke sorting information for Columns (in place of alphabetical sorting)', api);
|
|
15
15
|
}
|
|
16
16
|
getModuleAdaptableObjects(config) {
|
|
17
17
|
return this.api.customSortApi.getAllCustomSort(config);
|
|
@@ -8,7 +8,7 @@ const DashboardRedux = tslib_1.__importStar(require("../Redux/ActionsReducers/Da
|
|
|
8
8
|
const LoggingHelper_1 = require("../Utilities/Helpers/LoggingHelper");
|
|
9
9
|
class DashboardModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
10
10
|
constructor(api) {
|
|
11
|
-
super(ModuleConstants.DashboardModuleId,
|
|
11
|
+
super(ModuleConstants.DashboardModuleId, ModuleConstants.DashboardFriendlyName, 'dashboard', 'DashboardPopup', 'The Dashboard - usually placed above the Grid - is designed to provide quick access to commonly required AdapTable functionalty', api);
|
|
12
12
|
}
|
|
13
13
|
updateOldConfig() {
|
|
14
14
|
let dashboardState = this.api.dashboardApi.getDashboardState();
|
|
@@ -8,7 +8,7 @@ const SystemRedux_1 = require("../Redux/ActionsReducers/SystemRedux");
|
|
|
8
8
|
const DataChangeHistoryStatusBarContent_1 = require("../View/DataChangeHistory/DataChangeHistoryStatusBarContent");
|
|
9
9
|
class DataChangeHistoryModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
10
10
|
constructor(api) {
|
|
11
|
-
super(ModuleConstants.DataChangeHistoryModuleId,
|
|
11
|
+
super(ModuleConstants.DataChangeHistoryModuleId, ModuleConstants.DataChangeHistoryFriendlyName, 'track-changes', 'DataChangeHistoryPopup', 'Provides an overview of all previous changes, giving the possibility to undo specific changes', api);
|
|
12
12
|
this.api.internalApi
|
|
13
13
|
.getDataService()
|
|
14
14
|
.on('CellDataChanged', (cellDataChangedInfo) => {
|
|
@@ -10,7 +10,7 @@ const Uuid_1 = require("../PredefinedConfig/Uuid");
|
|
|
10
10
|
const DataSetSelector_1 = require("../View/DataSet/DataSetSelector");
|
|
11
11
|
class DataSetModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
12
12
|
constructor(api) {
|
|
13
|
-
super(ModuleConstants.DataSetModuleId,
|
|
13
|
+
super(ModuleConstants.DataSetModuleId, ModuleConstants.DataSetFriendlyName, 'data-set', 'DataSetPopup', 'Update the entire data source in AdapTable using pre-populated data sets', api);
|
|
14
14
|
}
|
|
15
15
|
handleAdaptableReady() {
|
|
16
16
|
this.api.dataSetApi.getAllDataSets().forEach((ds) => {
|
|
@@ -21,7 +21,7 @@ const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
|
21
21
|
const ExportSelector_1 = require("../View/Export/ExportSelector");
|
|
22
22
|
class ExportModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
23
23
|
constructor(api) {
|
|
24
|
-
super(ModuleConstants.ExportModuleId,
|
|
24
|
+
super(ModuleConstants.ExportModuleId, ModuleConstants.ExportFriendlyName, 'export-data', 'ExportPopup', 'Export data from the Grid to numerous locations in numerous formatso', api);
|
|
25
25
|
}
|
|
26
26
|
getModuleAdaptableObjects() {
|
|
27
27
|
return this.api.exportApi.getAllReports();
|
|
@@ -11,7 +11,7 @@ const LoggingHelper_1 = require("../Utilities/Helpers/LoggingHelper");
|
|
|
11
11
|
const FilterStatusBarSubPanelPopover_1 = require("../View/Filter/FilterStatusBarSubPanelPopover");
|
|
12
12
|
class FilterModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
13
13
|
constructor(api) {
|
|
14
|
-
super(ModuleConstants.FilterModuleId,
|
|
14
|
+
super(ModuleConstants.FilterModuleId, ModuleConstants.FilterFriendlyName, 'column-filter', 'FilterPopup', 'Advanced filtering capability allows users to see precisely the data they want', api);
|
|
15
15
|
}
|
|
16
16
|
getModuleAdaptableObjects() {
|
|
17
17
|
return this.api.filterApi.getColumnFilters();
|
|
@@ -17,7 +17,7 @@ const getFlashingTargetViewItems_1 = require("./Utilities/FlashingCell/getFlashi
|
|
|
17
17
|
const getFlashingCellStyleViewItems_1 = require("./Utilities/FlashingCell/getFlashingCellStyleViewItems");
|
|
18
18
|
class FlashingCellModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
19
19
|
constructor(api) {
|
|
20
|
-
super(ModuleConstants.FlashingCellModuleId,
|
|
20
|
+
super(ModuleConstants.FlashingCellModuleId, ModuleConstants.FlashingCellFriendlyName, 'flashing-cell', 'FlashingAlert', 'Flash cells when they change', api);
|
|
21
21
|
this.api.internalApi
|
|
22
22
|
.getDataService()
|
|
23
23
|
.on('CellDataChanged', (cellDataChangedInfo) => {
|
|
@@ -15,7 +15,7 @@ const getFormatColumnStyleViewItems_1 = require("./Utilities/FormatColumn/getFor
|
|
|
15
15
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
16
16
|
class FormatColumnModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
17
17
|
constructor(api) {
|
|
18
|
-
super(ModuleConstants.FormatColumnModuleId,
|
|
18
|
+
super(ModuleConstants.FormatColumnModuleId, ModuleConstants.FormatColumnFriendlyName, 'format-column', 'FormatColumnPopup', 'Create a column style, display format or cell alignment', api);
|
|
19
19
|
/**
|
|
20
20
|
* Use Case: Data (cell/row) has changed
|
|
21
21
|
* Action: Any CheckboxFormatColumns need to be updated, as their disabled state may have changed
|
|
@@ -9,7 +9,7 @@ const FreeTextColumnWizard_1 = require("../View/FreeTextColumn/Wizard/FreeTextCo
|
|
|
9
9
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
10
10
|
class FreeTextColumnModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
11
11
|
constructor(api) {
|
|
12
|
-
super(ModuleConstants.FreeTextColumnModuleId,
|
|
12
|
+
super(ModuleConstants.FreeTextColumnModuleId, ModuleConstants.FreeTextColumnFriendlyName, 'freetext-column', 'FreeTextColumnPopup', 'Dynamic column showing custom content (stored in state and not with grid data)', api);
|
|
13
13
|
}
|
|
14
14
|
isModuleAvailable() {
|
|
15
15
|
// FreeTextColumn module doesn't support autogenerated primary keys
|
|
@@ -6,7 +6,7 @@ const AdaptableModuleBase_1 = require("./AdaptableModuleBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
class GridInfoModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
8
8
|
constructor(api) {
|
|
9
|
-
super(ModuleConstants.GridInfoModuleId,
|
|
9
|
+
super(ModuleConstants.GridInfoModuleId, ModuleConstants.GridInfoFriendlyName, 'info', 'GridInfoPopup', 'Display information about the Grid, the Options selected and all columns', api);
|
|
10
10
|
}
|
|
11
11
|
getViewAccessLevel() {
|
|
12
12
|
return 'Full';
|
|
@@ -16,7 +16,7 @@ const getLayoutFilterViewItems_1 = require("./Utilities/Layout/getLayoutFilterVi
|
|
|
16
16
|
const getLayoutSortViewItems_1 = require("./Utilities/Layout/getLayoutSortViewItems");
|
|
17
17
|
class LayoutModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
18
18
|
constructor(api) {
|
|
19
|
-
super(ModuleConstants.LayoutModuleId,
|
|
19
|
+
super(ModuleConstants.LayoutModuleId, ModuleConstants.LayoutFriendlyName, 'layout', 'LayoutPopup', 'Named sets of column visibility, order, groupings, aggregation, pivots etc.', api);
|
|
20
20
|
this.api.eventApi.on('LayoutChanged', (layoutChangedInfo) => {
|
|
21
21
|
var _a;
|
|
22
22
|
if (layoutChangedInfo.newLayoutState.CurrentLayout !==
|
|
@@ -247,8 +247,8 @@ class LayoutModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
247
247
|
values: [layout.Name],
|
|
248
248
|
},
|
|
249
249
|
{
|
|
250
|
-
name: '
|
|
251
|
-
values: [(layout === null || layout === void 0 ? void 0 : layout.EnablePivot) ? '
|
|
250
|
+
name: 'Layout Grid Type',
|
|
251
|
+
values: [(layout === null || layout === void 0 ? void 0 : layout.EnablePivot) ? 'Pivot' : 'Table'],
|
|
252
252
|
},
|
|
253
253
|
{
|
|
254
254
|
name: 'Columns',
|
|
@@ -14,7 +14,7 @@ const getRuleViewItems_1 = require("./Utilities/getRuleViewItems");
|
|
|
14
14
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
15
15
|
class PlusMinusModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
16
16
|
constructor(api) {
|
|
17
|
-
super(ModuleConstants.PlusMinusModuleId,
|
|
17
|
+
super(ModuleConstants.PlusMinusModuleId, ModuleConstants.PlusMinusFriendlyName, 'plus-minus', 'PlusMinusPopup', 'Configure how a cell value will edit when the + or - keys are pressed', api);
|
|
18
18
|
this.shouldHandleKeyDown = false;
|
|
19
19
|
this.adaptable = api.internalApi.getAdaptableInstance();
|
|
20
20
|
}
|
|
@@ -10,7 +10,7 @@ const EditCurrentQueryButton_1 = require("../View/Query/EditCurrentQueryButton")
|
|
|
10
10
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
11
11
|
class QueryModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
12
12
|
constructor(api) {
|
|
13
|
-
super(ModuleConstants.QueryModuleId,
|
|
13
|
+
super(ModuleConstants.QueryModuleId, ModuleConstants.QueryFriendlyName, 'query', 'QueryPopup', 'Run real-time text-based queries using a wealth of powerful functions and operators', api);
|
|
14
14
|
}
|
|
15
15
|
getModuleAdaptableObjects() {
|
|
16
16
|
return this.api.queryApi.getAllNamedQuery();
|
|
@@ -7,7 +7,7 @@ const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/Mod
|
|
|
7
7
|
const QuickSearchStatusBarContent_1 = require("../View/QuickSearch/QuickSearchStatusBarContent");
|
|
8
8
|
class QuickSearchModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
9
9
|
constructor(api) {
|
|
10
|
-
super(ModuleConstants.QuickSearchModuleId,
|
|
10
|
+
super(ModuleConstants.QuickSearchModuleId, ModuleConstants.QuickSearchFriendlyName, 'quick-search', 'QuickSearchPopup', 'Quickly highlight all cells in the grid that contain matching query text', api);
|
|
11
11
|
}
|
|
12
12
|
getViewProperties() {
|
|
13
13
|
return {
|
|
@@ -35,7 +35,7 @@ const NodeSchedule = {
|
|
|
35
35
|
};
|
|
36
36
|
class ScheduleModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
37
37
|
constructor(api) {
|
|
38
|
-
super(ModuleConstants.ScheduleModuleId,
|
|
38
|
+
super(ModuleConstants.ScheduleModuleId, ModuleConstants.ScheduleFriendlyName, 'schedule', 'SchedulePopup', 'Schedule AdapTable functionality to run at times of your choosing (e.g. run reports)', api);
|
|
39
39
|
this.scheduleJobs = [];
|
|
40
40
|
this.addMidnightRefreshSchedule();
|
|
41
41
|
}
|
|
@@ -14,7 +14,7 @@ const getShortcutSettingsViewItems_1 = require("./Utilities/Shortcut/getShortcut
|
|
|
14
14
|
const getObjectTagsViewItems_1 = require("./Utilities/getObjectTagsViewItems");
|
|
15
15
|
class ShortcutModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
16
16
|
constructor(api) {
|
|
17
|
-
super(ModuleConstants.ShortcutModuleId,
|
|
17
|
+
super(ModuleConstants.ShortcutModuleId, ModuleConstants.ShortcutFriendlyName, 'shortcut', 'ShortcutPopup', 'Set up rules so cells update mathematically when keys are pressed in numeric cells', api);
|
|
18
18
|
this.shouldHandleKeyDown = false;
|
|
19
19
|
this.adaptable = api.internalApi.getAdaptableInstance();
|
|
20
20
|
}
|
|
@@ -10,7 +10,7 @@ const ArrayExtensions_1 = tslib_1.__importDefault(require("../Utilities/Extensio
|
|
|
10
10
|
const ObjectFactory_1 = tslib_1.__importDefault(require("../Utilities/ObjectFactory"));
|
|
11
11
|
class SmartEditModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
12
12
|
constructor(api) {
|
|
13
|
-
super(ModuleConstants.SmartEditModuleId,
|
|
13
|
+
super(ModuleConstants.SmartEditModuleId, ModuleConstants.SmartEditFriendlyName, 'smart-edit', 'SmartEditPopup', 'Edit groups of numeric cells using mathematical operations (e.g. Multiply by 10)', api);
|
|
14
14
|
}
|
|
15
15
|
getViewAccessLevel() {
|
|
16
16
|
return 'Full';
|
|
@@ -6,7 +6,7 @@ const AdaptableModuleBase_1 = require("./AdaptableModuleBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
class StateManagementModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
8
8
|
constructor(api) {
|
|
9
|
-
super(ModuleConstants.StateManagementModuleId,
|
|
9
|
+
super(ModuleConstants.StateManagementModuleId, ModuleConstants.StateManagementFriendlyName, 'state-management', 'StateManagementPopup', 'Manages Adaptable State, User State and Predefined Config', api);
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
exports.StateManagementModule = StateManagementModule;
|
|
@@ -6,7 +6,7 @@ const AdaptableModuleBase_1 = require("./AdaptableModuleBase");
|
|
|
6
6
|
const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/ModuleConstants"));
|
|
7
7
|
class StatusBarModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
8
8
|
constructor(api) {
|
|
9
|
-
super(ModuleConstants.StatusBarModuleId,
|
|
9
|
+
super(ModuleConstants.StatusBarModuleId, ModuleConstants.StatusBarFriendlyName, 'statusbar', 'StatusBarPopup', 'Configure AdapTable Status Bar', api);
|
|
10
10
|
}
|
|
11
11
|
syncStateWithOptions(agGridAdaptablePanels) {
|
|
12
12
|
const statusPanelsState = this.api.statusBarApi.getAdaptableStatusBars();
|
|
@@ -7,7 +7,7 @@ const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/Mod
|
|
|
7
7
|
const SystemStatusStatusBarContent_1 = require("../View/SystemStatus/SystemStatusStatusBarContent");
|
|
8
8
|
class SystemStatusModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
9
9
|
constructor(api) {
|
|
10
|
-
super(ModuleConstants.SystemStatusModuleId,
|
|
10
|
+
super(ModuleConstants.SystemStatusModuleId, ModuleConstants.SystemStatusFriendlyName, 'system-status', 'SystemStatusPopup', 'Provide messages about the Status of your application', api);
|
|
11
11
|
}
|
|
12
12
|
addColumnMenuItems(column) {
|
|
13
13
|
if (this.isModuleAvailable()) {
|
|
@@ -16,7 +16,7 @@ const ArrayExtensions_1 = tslib_1.__importDefault(require("../Utilities/Extensio
|
|
|
16
16
|
const flatten_1 = tslib_1.__importDefault(require("lodash/flatten"));
|
|
17
17
|
class TeamSharingModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
18
18
|
constructor(api) {
|
|
19
|
-
super(ModuleConstants.TeamSharingModuleId,
|
|
19
|
+
super(ModuleConstants.TeamSharingModuleId, ModuleConstants.TeamSharingFriendlyName, 'team-share', 'TeamSharingPopup', 'Team Sharing allows users to share - at run-time - Adaptable Objects between colleagues.', api);
|
|
20
20
|
this.SKIP_TEAMSHARING_UPDATE_ACTIONS = [
|
|
21
21
|
TeamSharingRedux_1.TEAMSHARING_GET,
|
|
22
22
|
TeamSharingRedux_1.TEAMSHARING_SET,
|
|
@@ -7,7 +7,7 @@ const ModuleConstants = tslib_1.__importStar(require("../Utilities/Constants/Mod
|
|
|
7
7
|
const ThemeStatusPanelPopover_1 = require("../View/Theme/ThemeStatusPanelPopover");
|
|
8
8
|
class ThemeModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
9
9
|
constructor(api) {
|
|
10
|
-
super(ModuleConstants.ThemeModuleId,
|
|
10
|
+
super(ModuleConstants.ThemeModuleId, ModuleConstants.ThemeFriendlyName, 'theme', 'ThemePopup', 'Theme AdapTable with a colour configuration set of your choosing', api);
|
|
11
11
|
}
|
|
12
12
|
getModuleAdaptableObjects() {
|
|
13
13
|
return this.api.themeApi.getAllTheme();
|
|
@@ -9,7 +9,7 @@ const ToolPanelRedux_1 = require("../Redux/ActionsReducers/ToolPanelRedux");
|
|
|
9
9
|
const LoggingHelper_1 = require("../Utilities/Helpers/LoggingHelper");
|
|
10
10
|
class ToolPanelModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
11
11
|
constructor(api) {
|
|
12
|
-
super(ModuleConstants.ToolPanelModuleId,
|
|
12
|
+
super(ModuleConstants.ToolPanelModuleId, ModuleConstants.ToolPanelFriendlyName, 'tool-panel', 'ToolPanelPopup', 'An alternative to using the Dashboard is the AdapTable Tool Panel, the Tool Panel is the collapsible area to the right of the Grid.', api);
|
|
13
13
|
}
|
|
14
14
|
isModuleAvailable() {
|
|
15
15
|
if (!super.isModuleAvailable()) {
|
|
@@ -1,34 +1,102 @@
|
|
|
1
1
|
import { AdaptableModule as ModuleConstants } from '../../PredefinedConfig/Common/Types';
|
|
2
2
|
export declare const AlertModuleId: ModuleConstants;
|
|
3
|
+
export declare const AlertModuleFriendlyName = "Alert";
|
|
3
4
|
export declare const FlashingCellModuleId: ModuleConstants;
|
|
5
|
+
export declare const FlashingCellFriendlyName = "Flashing Cell";
|
|
4
6
|
export declare const BulkUpdateModuleId: ModuleConstants;
|
|
7
|
+
export declare const BulkUpdateFriendlyName = "Bulk Update";
|
|
5
8
|
export declare const CalculatedColumnModuleId: ModuleConstants;
|
|
9
|
+
export declare const CalculatedColumnFriendlyName = "Calculated Column";
|
|
6
10
|
export declare const CellSummaryModuleId: ModuleConstants;
|
|
11
|
+
export declare const CellSummaryFriendlyName = "Cell Summary";
|
|
7
12
|
export declare const ChartingModuleId: ModuleConstants;
|
|
13
|
+
export declare const ChartingFriendlyName = "Charts";
|
|
8
14
|
export declare const ConditionalStyleModuleId: ModuleConstants;
|
|
15
|
+
export declare const ConditionalStyleFriendlyName = "Conditional Style";
|
|
9
16
|
export declare const CustomSortModuleId: ModuleConstants;
|
|
17
|
+
export declare const CustomSortFriendlyName = "Custom Sort";
|
|
10
18
|
export declare const DashboardModuleId: ModuleConstants;
|
|
19
|
+
export declare const DashboardFriendlyName = "Dashboard";
|
|
11
20
|
export declare const DataChangeHistoryModuleId: ModuleConstants;
|
|
21
|
+
export declare const DataChangeHistoryFriendlyName = "Data Changes";
|
|
12
22
|
export declare const DataSetModuleId: ModuleConstants;
|
|
23
|
+
export declare const DataSetFriendlyName = "Data Set";
|
|
13
24
|
export declare const ExportModuleId: ModuleConstants;
|
|
25
|
+
export declare const ExportFriendlyName = "Export";
|
|
14
26
|
export declare const FilterModuleId: ModuleConstants;
|
|
27
|
+
export declare const FilterFriendlyName = "Filter";
|
|
15
28
|
export declare const FormatColumnModuleId: ModuleConstants;
|
|
29
|
+
export declare const FormatColumnFriendlyName = "Format Column";
|
|
16
30
|
export declare const FreeTextColumnModuleId: ModuleConstants;
|
|
31
|
+
export declare const FreeTextColumnFriendlyName = "Free Text Column";
|
|
17
32
|
export declare const Glue42ModuleId: ModuleConstants;
|
|
33
|
+
export declare const Glue42FriendlyName = "Glue42";
|
|
18
34
|
export declare const GridInfoModuleId: ModuleConstants;
|
|
35
|
+
export declare const GridInfoFriendlyName = "Grid Info";
|
|
19
36
|
export declare const IPushPullModuleId: ModuleConstants;
|
|
37
|
+
export declare const IPushPullFriendlyName = "IPushPull";
|
|
20
38
|
export declare const LayoutModuleId: ModuleConstants;
|
|
39
|
+
export declare const LayoutFriendlyName = "Layout";
|
|
21
40
|
export declare const OpenFinModuleId: ModuleConstants;
|
|
41
|
+
export declare const OpenFinFriendlyName = "OpenFin";
|
|
22
42
|
export declare const PlusMinusModuleId: ModuleConstants;
|
|
43
|
+
export declare const PlusMinusFriendlyName = "Plus Minus";
|
|
23
44
|
export declare const QueryModuleId: ModuleConstants;
|
|
45
|
+
export declare const QueryFriendlyName = "Query";
|
|
24
46
|
export declare const QuickSearchModuleId: ModuleConstants;
|
|
47
|
+
export declare const QuickSearchFriendlyName = "Quick Search";
|
|
25
48
|
export declare const ScheduleModuleId: ModuleConstants;
|
|
49
|
+
export declare const ScheduleFriendlyName = "Schedule";
|
|
26
50
|
export declare const ShortcutModuleId: ModuleConstants;
|
|
51
|
+
export declare const ShortcutFriendlyName = "Shortcut";
|
|
27
52
|
export declare const SmartEditModuleId: ModuleConstants;
|
|
53
|
+
export declare const SmartEditFriendlyName = "Smart Edit";
|
|
28
54
|
export declare const StateManagementModuleId: ModuleConstants;
|
|
55
|
+
export declare const StateManagementFriendlyName = "Manage State";
|
|
29
56
|
export declare const SystemStatusModuleId: ModuleConstants;
|
|
57
|
+
export declare const SystemStatusFriendlyName = "System Status";
|
|
30
58
|
export declare const TeamSharingModuleId: ModuleConstants;
|
|
59
|
+
export declare const TeamSharingFriendlyName = "Team Sharing";
|
|
31
60
|
export declare const ThemeModuleId: ModuleConstants;
|
|
61
|
+
export declare const ThemeFriendlyName = "Theme";
|
|
32
62
|
export declare const ToolPanelModuleId: ModuleConstants;
|
|
63
|
+
export declare const ToolPanelFriendlyName = "Tool Panel";
|
|
33
64
|
export declare const SettingsPanelModuleId: ModuleConstants;
|
|
65
|
+
export declare const SettingsPanelFriendlyName = "Settings Panel";
|
|
34
66
|
export declare const StatusBarModuleId: ModuleConstants;
|
|
67
|
+
export declare const StatusBarFriendlyName = "Status Bar";
|
|
68
|
+
export declare const ADAPTABLE_MODULE_MAP: {
|
|
69
|
+
Alert: string;
|
|
70
|
+
FlashingCell: string;
|
|
71
|
+
BulkUpdate: string;
|
|
72
|
+
CalculatedColumn: string;
|
|
73
|
+
CellSummary: string;
|
|
74
|
+
Charting: string;
|
|
75
|
+
ConditionalStyle: string;
|
|
76
|
+
CustomSort: string;
|
|
77
|
+
Dashboard: string;
|
|
78
|
+
DataChangeHistory: string;
|
|
79
|
+
DataSet: string;
|
|
80
|
+
Export: string;
|
|
81
|
+
Filter: string;
|
|
82
|
+
FormatColumn: string;
|
|
83
|
+
FreeTextColumn: string;
|
|
84
|
+
Glue42: string;
|
|
85
|
+
GridInfo: string;
|
|
86
|
+
IPushPull: string;
|
|
87
|
+
Layout: string;
|
|
88
|
+
OpenFin: string;
|
|
89
|
+
PlusMinus: string;
|
|
90
|
+
Query: string;
|
|
91
|
+
QuickSearch: string;
|
|
92
|
+
Schedule: string;
|
|
93
|
+
Shortcut: string;
|
|
94
|
+
SmartEdit: string;
|
|
95
|
+
StateManagement: string;
|
|
96
|
+
SystemStatus: string;
|
|
97
|
+
TeamSharing: string;
|
|
98
|
+
Theme: string;
|
|
99
|
+
ToolPanel: string;
|
|
100
|
+
SettingsPanel: string;
|
|
101
|
+
StatusBar: string;
|
|
102
|
+
};
|