@adaptabletools/adaptable 11.0.0 → 11.0.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/README.md +4 -4
- package/base.css +1 -2
- package/bundle.cjs.js +66 -66
- package/index.css +1 -2
- package/package.json +1 -1
- package/publishTimestamp.d.ts +1 -1
- package/publishTimestamp.js +1 -1
- package/src/AdaptableInterfaces/IAdaptable.d.ts +2 -1
- package/src/AdaptableOptions/FilterOptions.d.ts +4 -0
- package/src/AdaptableOptions/SettingsPanelOptions.d.ts +3 -3
- package/src/AdaptableOptions/ToolPanelOptions.d.ts +2 -2
- package/src/Api/GridApi.d.ts +1 -2
- package/src/Api/Implementation/AlertApiImpl.js +1 -2
- package/src/Api/Implementation/ColumnApiImpl.js +1 -1
- package/src/Api/Implementation/GridApiImpl.js +14 -17
- package/src/Api/Implementation/ToolPanelApiImpl.js +1 -1
- package/src/PredefinedConfig/Common/AdaptableColumn.d.ts +1 -1
- package/src/PredefinedConfig/PlusMinusState.d.ts +1 -1
- package/src/Redux/ActionsReducers/AlertRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/AlertRedux.js +4 -4
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ConditionalStyleRedux.js +4 -4
- package/src/Redux/ActionsReducers/CustomSortRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/CustomSortRedux.js +4 -4
- package/src/Redux/ActionsReducers/FlashingCellRedux.d.ts +12 -12
- package/src/Redux/ActionsReducers/FlashingCellRedux.js +33 -29
- package/src/Redux/ActionsReducers/FormatColumnRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/FormatColumnRedux.js +4 -4
- package/src/Redux/ActionsReducers/PlusMinusRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/PlusMinusRedux.js +4 -4
- package/src/Redux/ActionsReducers/ScheduleRedux.d.ts +5 -5
- package/src/Redux/ActionsReducers/ScheduleRedux.js +16 -16
- package/src/Redux/ActionsReducers/ShortcutRedux.d.ts +1 -1
- package/src/Redux/ActionsReducers/ShortcutRedux.js +4 -4
- package/src/Redux/ActionsReducers/SystemRedux.js +1 -1
- package/src/Redux/Store/AdaptableStore.js +20 -20
- package/src/Strategy/AlertModule.js +1 -1
- package/src/Strategy/FlashingCellModule.js +2 -2
- package/src/Utilities/Defaults/DefaultAdaptableOptions.js +2 -1
- package/src/View/Alert/Wizard/isValidAlertRules.js +3 -3
- package/src/View/Components/EntityRulesEditor/index.d.ts +1 -1
- package/src/View/Components/EntityRulesEditor/index.js +1 -1
- package/src/View/Components/ToolPanel/CustomToolPanelContent.js +1 -1
- package/src/View/Dashboard/DashboardPopup.js +1 -1
- package/src/View/FlashingCell/Wizard/isValidFlashingCellRules.js +1 -1
- package/src/View/PlusMinus/Wizard/PlusMinusSettingsWizardSection.d.ts +1 -1
- package/src/View/Query/Wizard/NamedQueryExpressionWizardSection.js +2 -2
- package/src/agGrid/Adaptable.d.ts +3 -1
- package/src/agGrid/Adaptable.js +59 -36
- package/src/agGrid/CheckboxRenderer.d.ts +8 -1
- package/src/agGrid/CheckboxRenderer.js +18 -3
- package/src/agGrid/agGridHelper.d.ts +1 -1
- package/src/agGrid/agGridHelper.js +7 -8
- package/src/components/icons/calculated-column.js +2 -2
- package/src/metamodel/adaptable.metamodel.d.ts +13 -4
- package/src/metamodel/adaptable.metamodel.js +18 -11
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -29,7 +29,7 @@ export declare const REPORT_SCHEDULE_SUSPEND = "REPORT_SCHEDULE_SUSPEND";
|
|
|
29
29
|
/**
|
|
30
30
|
* @ReduxAction A Report Schedule has been un-suspended or activated
|
|
31
31
|
*/
|
|
32
|
-
export declare const
|
|
32
|
+
export declare const REPORT_SCHEDULE_UNSUSPEND = "REPORT_SCHEDULE_UNSUSPEND";
|
|
33
33
|
/**
|
|
34
34
|
* @ReduxAction A Reminder Schedule has been added
|
|
35
35
|
*/
|
|
@@ -49,7 +49,7 @@ export declare const REMINDER_SCHEDULE_SUSPEND = "REMINDER_SCHEDULE_SUSPEND";
|
|
|
49
49
|
/**
|
|
50
50
|
* @ReduxAction A Reminder Schedule has been un-suspended or activated
|
|
51
51
|
*/
|
|
52
|
-
export declare const
|
|
52
|
+
export declare const REMINDER_SCHEDULE_UNSUSPEND = "REMINDER_SCHEDULE_UNSUSPEND";
|
|
53
53
|
/**
|
|
54
54
|
* @ReduxAction An ipushpull Schedule has been added
|
|
55
55
|
*/
|
|
@@ -69,7 +69,7 @@ export declare const IPUSHPULL_SCHEDULE_SUSPEND = "IPUSHPULL_SCHEDULE_SUSPEND";
|
|
|
69
69
|
/**
|
|
70
70
|
* @ReduxAction An ipushpull Schedule has been un-suspended or activated
|
|
71
71
|
*/
|
|
72
|
-
export declare const
|
|
72
|
+
export declare const IPUSHPULL_SCHEDULE_UNSUSPEND = "IPUSHPULL_SCHEDULE_UNSUSPEND";
|
|
73
73
|
/**
|
|
74
74
|
* @ReduxAction A Glue42 Schedule has been added
|
|
75
75
|
*/
|
|
@@ -89,7 +89,7 @@ export declare const GLUE42_SCHEDULE_SUSPEND = "GLUE42_SCHEDULE_SUSPEND";
|
|
|
89
89
|
/**
|
|
90
90
|
* @ReduxAction A Glue42 Schedule has been un-suspended or activated
|
|
91
91
|
*/
|
|
92
|
-
export declare const
|
|
92
|
+
export declare const GLUE42_SCHEDULE_UNSUSPEND = "GLUE42_SCHEDULE_UNSUSPEND";
|
|
93
93
|
/**
|
|
94
94
|
* @ReduxAction An OpenFin Schedule has been added
|
|
95
95
|
*/
|
|
@@ -109,7 +109,7 @@ export declare const OPENFIN_SCHEDULE_SUSPEND = "OPENFIN_SCHEDULE_SUSPEND";
|
|
|
109
109
|
/**
|
|
110
110
|
* @ReduxAction An OpenFin Schedule has been un-suspended or activated
|
|
111
111
|
*/
|
|
112
|
-
export declare const
|
|
112
|
+
export declare const OPENFIN_SCHEDULE_UNSUSPEND = "OPENFIN_SCHEDULE_UNSUSPEND";
|
|
113
113
|
/**
|
|
114
114
|
* @ReduxAction Schedule Module is ready
|
|
115
115
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ScheduleReducer = exports.IPushPullScheduleUnSuspend = exports.IPushPullScheduleSuspend = exports.IPushPullScheduleDelete = exports.IPushPullScheduleEdit = exports.IPushPullScheduleAdd = exports.ReminderScheduleUnSuspend = exports.ReminderScheduleSuspend = exports.ReminderScheduleDelete = exports.ReminderScheduleEdit = exports.ReminderScheduleAdd = exports.ReportScheduleUnSuspend = exports.ReportScheduleSuspend = exports.ReportScheduleDelete = exports.ReportScheduleEdit = exports.ReportScheduleAdd = exports.OpenFinScheduleUnSuspend = exports.OpenFinScheduleSuspend = exports.OpenFinScheduleDelete = exports.OpenFinScheduleEdit = exports.OpenFinScheduleAdd = exports.Glue42ScheduleUnSuspend = exports.Glue42ScheduleSuspend = exports.Glue42ScheduleDelete = exports.Glue42ScheduleEdit = exports.Glue42ScheduleAdd = exports.ScheduleReady = exports.ScheduleJobRun = exports.SCHEDULE_READY = exports.
|
|
3
|
+
exports.ScheduleReducer = exports.IPushPullScheduleUnSuspend = exports.IPushPullScheduleSuspend = exports.IPushPullScheduleDelete = exports.IPushPullScheduleEdit = exports.IPushPullScheduleAdd = exports.ReminderScheduleUnSuspend = exports.ReminderScheduleSuspend = exports.ReminderScheduleDelete = exports.ReminderScheduleEdit = exports.ReminderScheduleAdd = exports.ReportScheduleUnSuspend = exports.ReportScheduleSuspend = exports.ReportScheduleDelete = exports.ReportScheduleEdit = exports.ReportScheduleAdd = exports.OpenFinScheduleUnSuspend = exports.OpenFinScheduleSuspend = exports.OpenFinScheduleDelete = exports.OpenFinScheduleEdit = exports.OpenFinScheduleAdd = exports.Glue42ScheduleUnSuspend = exports.Glue42ScheduleSuspend = exports.Glue42ScheduleDelete = exports.Glue42ScheduleEdit = exports.Glue42ScheduleAdd = exports.ScheduleReady = exports.ScheduleJobRun = exports.SCHEDULE_READY = exports.OPENFIN_SCHEDULE_UNSUSPEND = exports.OPENFIN_SCHEDULE_SUSPEND = exports.OPENFIN_SCHEDULE_DELETE = exports.OPENFIN_SCHEDULE_EDIT = exports.OPENFIN_SCHEDULE_ADD = exports.GLUE42_SCHEDULE_UNSUSPEND = exports.GLUE42_SCHEDULE_SUSPEND = exports.GLUE42_SCHEDULE_DELETE = exports.GLUE42_SCHEDULE_EDIT = exports.GLUE42_SCHEDULE_ADD = exports.IPUSHPULL_SCHEDULE_UNSUSPEND = exports.IPUSHPULL_SCHEDULE_SUSPEND = exports.IPUSHPULL_SCHEDULE_DELETE = exports.IPUSHPULL_SCHEDULE_EDIT = exports.IPUSHPULL_SCHEDULE_ADD = exports.REMINDER_SCHEDULE_UNSUSPEND = exports.REMINDER_SCHEDULE_SUSPEND = exports.REMINDER_SCHEDULE_DELETE = exports.REMINDER_SCHEDULE_EDIT = exports.REMINDER_SCHEDULE_ADD = exports.REPORT_SCHEDULE_UNSUSPEND = exports.REPORT_SCHEDULE_SUSPEND = exports.REPORT_SCHEDULE_DELETE = exports.REPORT_SCHEDULE_EDIT = exports.REPORT_SCHEDULE_ADD = exports.SCHEDULE_JOB_RUN = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
6
6
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
@@ -28,7 +28,7 @@ exports.REPORT_SCHEDULE_SUSPEND = 'REPORT_SCHEDULE_SUSPEND';
|
|
|
28
28
|
/**
|
|
29
29
|
* @ReduxAction A Report Schedule has been un-suspended or activated
|
|
30
30
|
*/
|
|
31
|
-
exports.
|
|
31
|
+
exports.REPORT_SCHEDULE_UNSUSPEND = 'REPORT_SCHEDULE_UNSUSPEND';
|
|
32
32
|
/**
|
|
33
33
|
* @ReduxAction A Reminder Schedule has been added
|
|
34
34
|
*/
|
|
@@ -48,7 +48,7 @@ exports.REMINDER_SCHEDULE_SUSPEND = 'REMINDER_SCHEDULE_SUSPEND';
|
|
|
48
48
|
/**
|
|
49
49
|
* @ReduxAction A Reminder Schedule has been un-suspended or activated
|
|
50
50
|
*/
|
|
51
|
-
exports.
|
|
51
|
+
exports.REMINDER_SCHEDULE_UNSUSPEND = 'REMINDER_SCHEDULE_UNSUSPEND';
|
|
52
52
|
/**
|
|
53
53
|
* @ReduxAction An ipushpull Schedule has been added
|
|
54
54
|
*/
|
|
@@ -68,7 +68,7 @@ exports.IPUSHPULL_SCHEDULE_SUSPEND = 'IPUSHPULL_SCHEDULE_SUSPEND';
|
|
|
68
68
|
/**
|
|
69
69
|
* @ReduxAction An ipushpull Schedule has been un-suspended or activated
|
|
70
70
|
*/
|
|
71
|
-
exports.
|
|
71
|
+
exports.IPUSHPULL_SCHEDULE_UNSUSPEND = 'IPUSHPULL_SCHEDULE_UNSUSPEND';
|
|
72
72
|
/**
|
|
73
73
|
* @ReduxAction A Glue42 Schedule has been added
|
|
74
74
|
*/
|
|
@@ -88,7 +88,7 @@ exports.GLUE42_SCHEDULE_SUSPEND = 'GLUE42_SCHEDULE_SUSPEND';
|
|
|
88
88
|
/**
|
|
89
89
|
* @ReduxAction A Glue42 Schedule has been un-suspended or activated
|
|
90
90
|
*/
|
|
91
|
-
exports.
|
|
91
|
+
exports.GLUE42_SCHEDULE_UNSUSPEND = 'GLUE42_SCHEDULE_UNSUSPEND';
|
|
92
92
|
/**
|
|
93
93
|
* @ReduxAction An OpenFin Schedule has been added
|
|
94
94
|
*/
|
|
@@ -108,7 +108,7 @@ exports.OPENFIN_SCHEDULE_SUSPEND = 'OPENFIN_SCHEDULE_SUSPEND';
|
|
|
108
108
|
/**
|
|
109
109
|
* @ReduxAction An OpenFin Schedule has been un-suspended or activated
|
|
110
110
|
*/
|
|
111
|
-
exports.
|
|
111
|
+
exports.OPENFIN_SCHEDULE_UNSUSPEND = 'OPENFIN_SCHEDULE_UNSUSPEND';
|
|
112
112
|
/**
|
|
113
113
|
* @ReduxAction Schedule Module is ready
|
|
114
114
|
*/
|
|
@@ -139,7 +139,7 @@ exports.Glue42ScheduleSuspend = (glue42Schedule) => ({
|
|
|
139
139
|
glue42Schedule,
|
|
140
140
|
});
|
|
141
141
|
exports.Glue42ScheduleUnSuspend = (glue42Schedule) => ({
|
|
142
|
-
type: exports.
|
|
142
|
+
type: exports.GLUE42_SCHEDULE_UNSUSPEND,
|
|
143
143
|
glue42Schedule,
|
|
144
144
|
});
|
|
145
145
|
exports.OpenFinScheduleAdd = (openFinSchedule) => ({
|
|
@@ -159,7 +159,7 @@ exports.OpenFinScheduleSuspend = (openFinSchedule) => ({
|
|
|
159
159
|
openFinSchedule,
|
|
160
160
|
});
|
|
161
161
|
exports.OpenFinScheduleUnSuspend = (openFinSchedule) => ({
|
|
162
|
-
type: exports.
|
|
162
|
+
type: exports.OPENFIN_SCHEDULE_UNSUSPEND,
|
|
163
163
|
openFinSchedule,
|
|
164
164
|
});
|
|
165
165
|
// Report
|
|
@@ -180,7 +180,7 @@ exports.ReportScheduleSuspend = (reportSchedule) => ({
|
|
|
180
180
|
reportSchedule,
|
|
181
181
|
});
|
|
182
182
|
exports.ReportScheduleUnSuspend = (reportSchedule) => ({
|
|
183
|
-
type: exports.
|
|
183
|
+
type: exports.REPORT_SCHEDULE_UNSUSPEND,
|
|
184
184
|
reportSchedule,
|
|
185
185
|
});
|
|
186
186
|
exports.ReminderScheduleAdd = (reminderSchedule) => ({
|
|
@@ -200,7 +200,7 @@ exports.ReminderScheduleSuspend = (reminderSchedule) => ({
|
|
|
200
200
|
reminderSchedule,
|
|
201
201
|
});
|
|
202
202
|
exports.ReminderScheduleUnSuspend = (reminderSchedule) => ({
|
|
203
|
-
type: exports.
|
|
203
|
+
type: exports.REMINDER_SCHEDULE_UNSUSPEND,
|
|
204
204
|
reminderSchedule,
|
|
205
205
|
});
|
|
206
206
|
exports.IPushPullScheduleAdd = (iPushPullSchedule) => ({
|
|
@@ -220,7 +220,7 @@ exports.IPushPullScheduleSuspend = (iPushPullSchedule) => ({
|
|
|
220
220
|
iPushPullSchedule,
|
|
221
221
|
});
|
|
222
222
|
exports.IPushPullScheduleUnSuspend = (iPushPullSchedule) => ({
|
|
223
|
-
type: exports.
|
|
223
|
+
type: exports.IPUSHPULL_SCHEDULE_UNSUSPEND,
|
|
224
224
|
iPushPullSchedule,
|
|
225
225
|
});
|
|
226
226
|
const initialState = {
|
|
@@ -249,7 +249,7 @@ exports.ScheduleReducer = (state = initialState, action) => {
|
|
|
249
249
|
case exports.GLUE42_SCHEDULE_SUSPEND: {
|
|
250
250
|
return Object.assign(Object.assign({}, state), { Glue42Schedules: utils_1.changeIsSuspendInList(action.glue42Schedule, state.Glue42Schedules, true) });
|
|
251
251
|
}
|
|
252
|
-
case exports.
|
|
252
|
+
case exports.GLUE42_SCHEDULE_UNSUSPEND: {
|
|
253
253
|
return Object.assign(Object.assign({}, state), { Glue42Schedules: utils_1.changeIsSuspendInList(action.glue42Schedule, state.Glue42Schedules, false) });
|
|
254
254
|
}
|
|
255
255
|
case exports.OPENFIN_SCHEDULE_ADD: {
|
|
@@ -270,7 +270,7 @@ exports.ScheduleReducer = (state = initialState, action) => {
|
|
|
270
270
|
case exports.OPENFIN_SCHEDULE_SUSPEND: {
|
|
271
271
|
return Object.assign(Object.assign({}, state), { OpenFinSchedules: utils_1.changeIsSuspendInList(action.openFinSchedule, state.OpenFinSchedules, true) });
|
|
272
272
|
}
|
|
273
|
-
case exports.
|
|
273
|
+
case exports.OPENFIN_SCHEDULE_UNSUSPEND: {
|
|
274
274
|
return Object.assign(Object.assign({}, state), { OpenFinSchedules: utils_1.changeIsSuspendInList(action.openFinSchedule, state.OpenFinSchedules, false) });
|
|
275
275
|
}
|
|
276
276
|
case exports.REPORT_SCHEDULE_ADD: {
|
|
@@ -291,7 +291,7 @@ exports.ScheduleReducer = (state = initialState, action) => {
|
|
|
291
291
|
case exports.REPORT_SCHEDULE_SUSPEND: {
|
|
292
292
|
return Object.assign(Object.assign({}, state), { ReportSchedules: utils_1.changeIsSuspendInList(action.reportSchedule, state.ReportSchedules, true) });
|
|
293
293
|
}
|
|
294
|
-
case exports.
|
|
294
|
+
case exports.REPORT_SCHEDULE_UNSUSPEND: {
|
|
295
295
|
return Object.assign(Object.assign({}, state), { ReportSchedules: utils_1.changeIsSuspendInList(action.reportSchedule, state.ReportSchedules, false) });
|
|
296
296
|
}
|
|
297
297
|
case exports.REMINDER_SCHEDULE_ADD: {
|
|
@@ -312,7 +312,7 @@ exports.ScheduleReducer = (state = initialState, action) => {
|
|
|
312
312
|
case exports.REMINDER_SCHEDULE_SUSPEND: {
|
|
313
313
|
return Object.assign(Object.assign({}, state), { Reminders: utils_1.changeIsSuspendInList(action.reminderSchedule, state.Reminders, true) });
|
|
314
314
|
}
|
|
315
|
-
case exports.
|
|
315
|
+
case exports.REMINDER_SCHEDULE_UNSUSPEND: {
|
|
316
316
|
return Object.assign(Object.assign({}, state), { Reminders: utils_1.changeIsSuspendInList(action.reminderSchedule, state.Reminders, false) });
|
|
317
317
|
}
|
|
318
318
|
case exports.IPUSHPULL_SCHEDULE_ADD: {
|
|
@@ -336,7 +336,7 @@ exports.ScheduleReducer = (state = initialState, action) => {
|
|
|
336
336
|
case exports.IPUSHPULL_SCHEDULE_SUSPEND: {
|
|
337
337
|
return Object.assign(Object.assign({}, state), { IPushPullSchedules: utils_1.changeIsSuspendInList(action.iPushPullSchedule, state.IPushPullSchedules, true) });
|
|
338
338
|
}
|
|
339
|
-
case exports.
|
|
339
|
+
case exports.IPUSHPULL_SCHEDULE_UNSUSPEND: {
|
|
340
340
|
return Object.assign(Object.assign({}, state), { IPushPullSchedules: utils_1.changeIsSuspendInList(action.iPushPullSchedule, state.IPushPullSchedules, false) });
|
|
341
341
|
}
|
|
342
342
|
default:
|
|
@@ -19,7 +19,7 @@ export declare const SHORTCUT_SUSPEND = "SHORTCUT_SUSPEND";
|
|
|
19
19
|
/**
|
|
20
20
|
* @ReduxAction A Shortcut has been un-suspended or activated
|
|
21
21
|
*/
|
|
22
|
-
export declare const
|
|
22
|
+
export declare const SHORTCUT_UNSUSPEND = "SHORTCUT_UNSUSPEND";
|
|
23
23
|
/**
|
|
24
24
|
* @ReduxAction Shortcut Module is ready
|
|
25
25
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ShortcutReducer = exports.ShortcutReady = exports.ShortcutUnSuspend = exports.ShortcutSuspend = exports.ShortcutDelete = exports.ShortcutEdit = exports.ShortcutAdd = exports.SHORTCUT_READY = exports.
|
|
3
|
+
exports.ShortcutReducer = exports.ShortcutReady = exports.ShortcutUnSuspend = exports.ShortcutSuspend = exports.ShortcutDelete = exports.ShortcutEdit = exports.ShortcutAdd = exports.SHORTCUT_READY = exports.SHORTCUT_UNSUSPEND = exports.SHORTCUT_SUSPEND = exports.SHORTCUT_DELETE = exports.SHORTCUT_EDIT = exports.SHORTCUT_ADD = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const GeneralConstants_1 = require("../../Utilities/Constants/GeneralConstants");
|
|
6
6
|
const AdaptableHelper_1 = tslib_1.__importDefault(require("../../Utilities/Helpers/AdaptableHelper"));
|
|
@@ -24,7 +24,7 @@ exports.SHORTCUT_SUSPEND = 'SHORTCUT_SUSPEND';
|
|
|
24
24
|
/**
|
|
25
25
|
* @ReduxAction A Shortcut has been un-suspended or activated
|
|
26
26
|
*/
|
|
27
|
-
exports.
|
|
27
|
+
exports.SHORTCUT_UNSUSPEND = 'SHORTCUT_UNSUSPEND';
|
|
28
28
|
/**
|
|
29
29
|
* @ReduxAction Shortcut Module is ready
|
|
30
30
|
*/
|
|
@@ -46,7 +46,7 @@ exports.ShortcutSuspend = (shortcut) => ({
|
|
|
46
46
|
shortcut,
|
|
47
47
|
});
|
|
48
48
|
exports.ShortcutUnSuspend = (shortcut) => ({
|
|
49
|
-
type: exports.
|
|
49
|
+
type: exports.SHORTCUT_UNSUSPEND,
|
|
50
50
|
shortcut,
|
|
51
51
|
});
|
|
52
52
|
exports.ShortcutReady = (shortcutState) => ({
|
|
@@ -77,7 +77,7 @@ exports.ShortcutReducer = (state = initialState, action) => {
|
|
|
77
77
|
case exports.SHORTCUT_SUSPEND: {
|
|
78
78
|
return Object.assign(Object.assign({}, state), { Shortcuts: utils_1.changeIsSuspendInList(action.shortcut, state.Shortcuts, true) });
|
|
79
79
|
}
|
|
80
|
-
case exports.
|
|
80
|
+
case exports.SHORTCUT_UNSUSPEND: {
|
|
81
81
|
return Object.assign(Object.assign({}, state), { Shortcuts: utils_1.changeIsSuspendInList(action.shortcut, state.Shortcuts, false) });
|
|
82
82
|
}
|
|
83
83
|
default:
|
|
@@ -14,7 +14,7 @@ exports.SYSTEM_ALERT_ADD = 'SYSTEM_ALERT_ADD';
|
|
|
14
14
|
exports.SYSTEM_ALERT_DELETE = 'SYSTEM_ALERT_DELETE';
|
|
15
15
|
exports.SYSTEM_ALERT_DELETE_ALL = 'SYSTEM_ALERT_DELETE_ALL';
|
|
16
16
|
exports.SYSTEM_ALERT_REMOVE_HIGHLIGHT = 'SYSTEM_ALERT_REMOVE_HIGHLIGHT';
|
|
17
|
-
// Flashing
|
|
17
|
+
// Flashing Cells
|
|
18
18
|
exports.SYSTEM_FLASHING_CELL_ADD = 'SYSTEM_FLASHING_CELL_ADD';
|
|
19
19
|
exports.SYSTEM_FLASHING_CELL_DELETE = 'SYSTEM_FLASHING_CELL_DELETE';
|
|
20
20
|
exports.SYSTEM_FLASHING_CELL_DELETE_ALL = 'SYSTEM_FLASHING_CELL_DELETE_ALL';
|
|
@@ -315,11 +315,11 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
315
315
|
return ret;
|
|
316
316
|
}
|
|
317
317
|
/*******************
|
|
318
|
-
* FLASHING
|
|
318
|
+
* FLASHING CELL ACTIONS
|
|
319
319
|
*******************/
|
|
320
320
|
case SystemRedux.SYSTEM_FLASHING_CELL_ADD:
|
|
321
321
|
case SystemRedux.SYSTEM_FLASHING_CELL_DELETE: {
|
|
322
|
-
const { flashingCell: FlashingCell } = action;
|
|
322
|
+
const { flashingCell: FlashingCell, } = action;
|
|
323
323
|
const { dataChangedInfo } = FlashingCell;
|
|
324
324
|
let ret = next(action);
|
|
325
325
|
if (dataChangedInfo) {
|
|
@@ -341,14 +341,14 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
341
341
|
case AlertRedux.ALERT_DEFINITION_ADD:
|
|
342
342
|
case AlertRedux.ALERT_DEFINITION_EDIT:
|
|
343
343
|
case AlertRedux.ALERT_DEFINITION_DELETE:
|
|
344
|
-
case AlertRedux.
|
|
344
|
+
case AlertRedux.ALERT_DEFINITION_UNSUSPEND:
|
|
345
345
|
case AlertRedux.ALERT_DEFINITION_SUSPEND: {
|
|
346
346
|
const returnAction = next(action);
|
|
347
347
|
const alertDefinition = returnAction
|
|
348
348
|
.alertDefinition;
|
|
349
349
|
if (returnAction.type === AlertRedux.ALERT_DEFINITION_ADD ||
|
|
350
350
|
returnAction.type === AlertRedux.ALERT_DEFINITION_EDIT ||
|
|
351
|
-
returnAction.type === AlertRedux.
|
|
351
|
+
returnAction.type === AlertRedux.ALERT_DEFINITION_UNSUSPEND) {
|
|
352
352
|
// in case of edit, the existing reactive alert will be deleted and recreated
|
|
353
353
|
adaptable.api.internalApi.getAlertService().createReactiveAlert(alertDefinition);
|
|
354
354
|
}
|
|
@@ -363,11 +363,11 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
363
363
|
/*******************
|
|
364
364
|
* Flashing Cell ACTIONS
|
|
365
365
|
*******************/
|
|
366
|
-
case FlashingCellRedux.
|
|
367
|
-
case FlashingCellRedux.
|
|
368
|
-
case FlashingCellRedux.
|
|
369
|
-
case FlashingCellRedux.
|
|
370
|
-
case FlashingCellRedux.
|
|
366
|
+
case FlashingCellRedux.FLASHING_CELL_DEFINITION_ADD:
|
|
367
|
+
case FlashingCellRedux.FLASHING_CELL_DEFINITION_EDIT:
|
|
368
|
+
case FlashingCellRedux.FLASHING_CELL_DEFINITION_DELETE:
|
|
369
|
+
case FlashingCellRedux.FLASHING_CELL_DEFINITION_UNSUSPEND:
|
|
370
|
+
case FlashingCellRedux.FLASHING_CELL_DEFINITION_SUSPEND: {
|
|
371
371
|
const returnAction = next(action);
|
|
372
372
|
// called also for rendered column actions, see RENDERED COLUMN ACTIONS block
|
|
373
373
|
adaptable.setupColumns();
|
|
@@ -585,16 +585,16 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
585
585
|
case FormatColumnRedux.FORMAT_COLUMN_EDIT:
|
|
586
586
|
case FormatColumnRedux.FORMAT_COLUMN_DELETE:
|
|
587
587
|
case FormatColumnRedux.FORMAT_COLUMN_SUSPEND:
|
|
588
|
-
case FormatColumnRedux.
|
|
588
|
+
case FormatColumnRedux.FORMAT_COLUMN_UNSUSPEND:
|
|
589
589
|
case CustomSortRedux.CUSTOM_SORT_ADD:
|
|
590
590
|
case CustomSortRedux.CUSTOM_SORT_EDIT:
|
|
591
591
|
case CustomSortRedux.CUSTOM_SORT_DELETE:
|
|
592
592
|
case CustomSortRedux.CUSTOM_SORT_SUSPEND:
|
|
593
|
-
case CustomSortRedux.
|
|
593
|
+
case CustomSortRedux.CUSTOM_SORT_UNSUSPEND:
|
|
594
594
|
case ConditionalStyleRedux.CONDITIONAL_STYLE_ADD:
|
|
595
595
|
case ConditionalStyleRedux.CONDITIONAL_STYLE_EDIT:
|
|
596
596
|
case ConditionalStyleRedux.CONDITIONAL_STYLE_SUSPEND:
|
|
597
|
-
case ConditionalStyleRedux.
|
|
597
|
+
case ConditionalStyleRedux.CONDITIONAL_STYLE_UNSUSPEND:
|
|
598
598
|
case ConditionalStyleRedux.CONDITIONAL_STYLE_DELETE: {
|
|
599
599
|
const returnAction = next(action);
|
|
600
600
|
// called also for alert actions, see ALERT ACTIONS block
|
|
@@ -692,28 +692,28 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
692
692
|
case ScheduleRedux.REMINDER_SCHEDULE_ADD:
|
|
693
693
|
case ScheduleRedux.REMINDER_SCHEDULE_EDIT:
|
|
694
694
|
case ScheduleRedux.REMINDER_SCHEDULE_DELETE:
|
|
695
|
-
case ScheduleRedux.
|
|
695
|
+
case ScheduleRedux.REMINDER_SCHEDULE_UNSUSPEND:
|
|
696
696
|
case ScheduleRedux.REMINDER_SCHEDULE_SUSPEND:
|
|
697
697
|
case ScheduleRedux.REPORT_SCHEDULE_ADD:
|
|
698
698
|
case ScheduleRedux.REPORT_SCHEDULE_EDIT:
|
|
699
699
|
case ScheduleRedux.REPORT_SCHEDULE_DELETE:
|
|
700
700
|
case ScheduleRedux.REPORT_SCHEDULE_SUSPEND:
|
|
701
|
-
case ScheduleRedux.
|
|
701
|
+
case ScheduleRedux.REPORT_SCHEDULE_UNSUSPEND:
|
|
702
702
|
case ScheduleRedux.IPUSHPULL_SCHEDULE_ADD:
|
|
703
703
|
case ScheduleRedux.IPUSHPULL_SCHEDULE_EDIT:
|
|
704
704
|
case ScheduleRedux.IPUSHPULL_SCHEDULE_DELETE:
|
|
705
705
|
case ScheduleRedux.IPUSHPULL_SCHEDULE_SUSPEND:
|
|
706
|
-
case ScheduleRedux.
|
|
706
|
+
case ScheduleRedux.IPUSHPULL_SCHEDULE_UNSUSPEND:
|
|
707
707
|
case ScheduleRedux.GLUE42_SCHEDULE_ADD:
|
|
708
708
|
case ScheduleRedux.GLUE42_SCHEDULE_EDIT:
|
|
709
709
|
case ScheduleRedux.GLUE42_SCHEDULE_DELETE:
|
|
710
710
|
case ScheduleRedux.GLUE42_SCHEDULE_SUSPEND:
|
|
711
|
-
case ScheduleRedux.
|
|
711
|
+
case ScheduleRedux.GLUE42_SCHEDULE_UNSUSPEND:
|
|
712
712
|
case ScheduleRedux.OPENFIN_SCHEDULE_ADD:
|
|
713
713
|
case ScheduleRedux.OPENFIN_SCHEDULE_EDIT:
|
|
714
714
|
case ScheduleRedux.OPENFIN_SCHEDULE_DELETE:
|
|
715
715
|
case ScheduleRedux.OPENFIN_SCHEDULE_SUSPEND:
|
|
716
|
-
case ScheduleRedux.
|
|
716
|
+
case ScheduleRedux.OPENFIN_SCHEDULE_UNSUSPEND: {
|
|
717
717
|
let returnAction = next(action);
|
|
718
718
|
let module = (adaptable.adaptableModules.get(ModuleConstants.ScheduleModuleId));
|
|
719
719
|
module.setUpSechduleJobs();
|
|
@@ -1112,7 +1112,7 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
1112
1112
|
case TeamSharingRedux.TEAMSHARING_IMPORT_ITEM: {
|
|
1113
1113
|
let returnAction = next(action);
|
|
1114
1114
|
const actionTyped = action;
|
|
1115
|
-
const [importStepActions, needsOverwriteConfirmation] = adaptable.api.internalApi
|
|
1115
|
+
const [importStepActions, needsOverwriteConfirmation,] = adaptable.api.internalApi
|
|
1116
1116
|
.getTeamSharingService()
|
|
1117
1117
|
.buildSharedEntityImportActions(actionTyped.SharedEntity);
|
|
1118
1118
|
const processImportAction = TeamSharingRedux.TeamSharingProcessImport(importStepActions);
|
|
@@ -1185,14 +1185,14 @@ const adaptableMiddleware = (adaptable) => function (middlewareAPI) {
|
|
|
1185
1185
|
.getSharedEntities(adaptableId)
|
|
1186
1186
|
.then((sharedEntities) => {
|
|
1187
1187
|
// check if remote server has a newer revision
|
|
1188
|
-
const [localRevision, remoteRevision] = adaptable.api.internalApi
|
|
1188
|
+
const [localRevision, remoteRevision,] = adaptable.api.internalApi
|
|
1189
1189
|
.getTeamSharingService()
|
|
1190
1190
|
.getSharedEntityLocalAndRemoteRevisions(ChangedAdaptableObject.Uuid, sharedEntities);
|
|
1191
1191
|
if (remoteRevision > localRevision) {
|
|
1192
1192
|
// if remote has a newer version, we will NOT overwrite it
|
|
1193
1193
|
return;
|
|
1194
1194
|
}
|
|
1195
|
-
const [updatedSharedEntities, newActiveEntities] = adaptable.api.internalApi
|
|
1195
|
+
const [updatedSharedEntities, newActiveEntities,] = adaptable.api.internalApi
|
|
1196
1196
|
.getTeamSharingService()
|
|
1197
1197
|
.updateActiveSharedEntity(ChangedAdaptableObject, UserName, sharedEntities);
|
|
1198
1198
|
middlewareAPI.dispatch(TeamSharingRedux.TeamSharingLinkItem(...newActiveEntities));
|
|
@@ -64,7 +64,7 @@ class AlertModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
64
64
|
}
|
|
65
65
|
updateOldConfig() {
|
|
66
66
|
var _a;
|
|
67
|
-
// 1. Make all (new) Flashing
|
|
67
|
+
// 1. Make all (new) Flashing Cells have a Predicate if none exists
|
|
68
68
|
const alertState = this.api.alertApi.getAlertState();
|
|
69
69
|
const flashingAlertDefinitions = alertState.FlashingAlertDefinitions;
|
|
70
70
|
const flashingCellDefinitions = this.api.flashingCellApi.getFlashingCellDefinitions();
|
|
@@ -92,10 +92,10 @@ class FlashingCellModule extends AdaptableModuleBase_1.AdaptableModuleBase {
|
|
|
92
92
|
const flashingCellForRow = this.api.internalApi.getAdaptableFlashingCellFor(menuContext.primaryKeyValue);
|
|
93
93
|
const flashingCellForCell = this.api.internalApi.getAdaptableFlashingCellFor(menuContext.primaryKeyValue, menuContext.adaptableColumn.columnId);
|
|
94
94
|
if (flashingCellForRow && flashingCellForRow.flashTarget === 'row') {
|
|
95
|
-
items.push(this.createColumnMenuItemReduxAction('Clear Flashing
|
|
95
|
+
items.push(this.createColumnMenuItemReduxAction('Clear Flashing Cell for Row', this.moduleInfo.Glyph, SystemRedux.SystemFlashingCellDelete(flashingCellForRow)));
|
|
96
96
|
}
|
|
97
97
|
else if (flashingCellForCell && flashingCellForCell.flashTarget === 'cell') {
|
|
98
|
-
items.push(this.createColumnMenuItemReduxAction('Clear Flashing
|
|
98
|
+
items.push(this.createColumnMenuItemReduxAction('Clear Flashing Cell for Cell', this.moduleInfo.Glyph, SystemRedux.SystemFlashingCellDelete(flashingCellForCell)));
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
}
|
|
@@ -150,6 +150,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
150
150
|
clearFiltersOnStartUp: false,
|
|
151
151
|
quickFilterTrigger: 'mouseenter',
|
|
152
152
|
quickFilterValuesTrigger: 'mouseenter',
|
|
153
|
+
quickFilterHeight: null,
|
|
153
154
|
filterActionOnUserDataChange: {
|
|
154
155
|
applyFilter: GeneralConstants.FILTER_ALWAYS,
|
|
155
156
|
throttleDelay: 0,
|
|
@@ -214,7 +215,7 @@ exports.DefaultAdaptableOptions = {
|
|
|
214
215
|
showAdaptableToolPanel: true,
|
|
215
216
|
adaptableToolPanelTitle: GeneralConstants.ADAPTABLE,
|
|
216
217
|
showToolPanelsDropdown: true,
|
|
217
|
-
|
|
218
|
+
customButtons: undefined,
|
|
218
219
|
customToolPanels: undefined,
|
|
219
220
|
iconKey: 'menu',
|
|
220
221
|
width: UIHelper_1.default.getAdaptableToolPanelWidth(),
|
|
@@ -19,7 +19,7 @@ exports.isValidAlertRules = (alert, api, context) => {
|
|
|
19
19
|
if (valid && alert.Rule.BooleanExpression) {
|
|
20
20
|
valid = api.queryLanguageApi.isValidBooleanExpression(alert.Rule.BooleanExpression, ModuleConstants_1.AlertModuleId);
|
|
21
21
|
if (!valid) {
|
|
22
|
-
return 'The
|
|
22
|
+
return 'The Expression is not a valid Boolean Expression';
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
// boolean expressions may also be saved as named queries
|
|
@@ -32,13 +32,13 @@ exports.isValidAlertRules = (alert, api, context) => {
|
|
|
32
32
|
if (valid && alert.Rule.ObservableExpression) {
|
|
33
33
|
valid = api.queryLanguageApi.isValidObservableExpression(alert.Rule.ObservableExpression, ModuleConstants_1.AlertModuleId);
|
|
34
34
|
if (!valid) {
|
|
35
|
-
return 'The
|
|
35
|
+
return 'The Expression is not a valid Observable Expression';
|
|
36
36
|
}
|
|
37
37
|
}
|
|
38
38
|
if (valid && alert.Rule.AggregatedBooleanExpression) {
|
|
39
39
|
valid = api.queryLanguageApi.isValidAggregatedBooleanExpression(alert.Rule.AggregatedBooleanExpression, ModuleConstants_1.AlertModuleId);
|
|
40
40
|
if (!valid) {
|
|
41
|
-
return 'The
|
|
41
|
+
return 'The Expression is not a valid Aggregation Expression';
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
return true;
|
|
@@ -9,7 +9,7 @@ declare type RuleType = XOR<{
|
|
|
9
9
|
}, AdaptableQuery>;
|
|
10
10
|
export declare const isRuleValid: (abObject: {
|
|
11
11
|
Rule?: RuleType;
|
|
12
|
-
}, api: AdaptableApi, context: OnePageAdaptableWizardContextType<unknown>) => true | "No valid Condition is specified" | "The Predicate is not valid" | "The
|
|
12
|
+
}, api: AdaptableApi, context: OnePageAdaptableWizardContextType<unknown>) => true | "No valid Condition is specified" | "The Predicate is not valid" | "The Expression is not a valid Boolean Expression";
|
|
13
13
|
declare type EntityRulesEditorProps<T> = {
|
|
14
14
|
data: T;
|
|
15
15
|
module: AdaptableModule;
|
|
@@ -25,7 +25,7 @@ exports.isRuleValid = (abObject, api, context) => {
|
|
|
25
25
|
}
|
|
26
26
|
if ((_e = abObject === null || abObject === void 0 ? void 0 : abObject.Rule) === null || _e === void 0 ? void 0 : _e.BooleanExpression) {
|
|
27
27
|
if (!api.queryLanguageApi.isValidBooleanExpression((_f = abObject === null || abObject === void 0 ? void 0 : abObject.Rule) === null || _f === void 0 ? void 0 : _f.BooleanExpression, context.moduleInfo.ModuleName)) {
|
|
28
|
-
return 'The
|
|
28
|
+
return 'The Expression is not a valid Boolean Expression';
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
return true;
|
|
@@ -40,7 +40,7 @@ exports.CustomToolPanelContent = (props) => {
|
|
|
40
40
|
}, []);
|
|
41
41
|
return (React.createElement(React.Fragment, null,
|
|
42
42
|
React.createElement("div", { ref: contentsDivDomRef, id: contentsDivId, className: contentsDivId, dangerouslySetInnerHTML: { __html: contentsHTML }, style: { width: '100%' } }),
|
|
43
|
-
((_a = customToolPanel.
|
|
43
|
+
((_a = customToolPanel.buttons) === null || _a === void 0 ? void 0 : _a.length) && (React.createElement("div", { id: buttonsDivId, className: `ab-ToolPanel__custom-content__buttons ${buttonsDivId}` }, customToolPanel.buttons.map((button) => {
|
|
44
44
|
// TODO: variants of this mapping are present in several places (just search for api.internalApi.getStyleForButton() usages)
|
|
45
45
|
// with the next opportunity we should abstract it
|
|
46
46
|
// the default size of AdapTable SVG ModuleButtons
|
|
@@ -72,7 +72,7 @@ class DashboardPopupComponent extends React.Component {
|
|
|
72
72
|
};
|
|
73
73
|
return (React.createElement(PopupPanel_1.PopupPanel, { headerText: this.props.moduleInfo.FriendlyName, glyphicon: this.props.moduleInfo.Glyph },
|
|
74
74
|
React.createElement(rebass_1.Flex, { flex: 1, height: "100%", flexDirection: "column" },
|
|
75
|
-
areDashboardSettingsVisible && (React.createElement(Panel_1.default, { header: 'Dashboard
|
|
75
|
+
areDashboardSettingsVisible && (React.createElement(Panel_1.default, { header: 'Dashboard Views', style: { height: 'auto', overflow: 'visible' }, variant: "default", borderRadius: "none", marginLeft: 2, marginRight: 2 },
|
|
76
76
|
React.createElement(rebass_1.Flex, null,
|
|
77
77
|
React.createElement(CheckBox_1.CheckBox, { mr: 3, className: `${baseClassName}__Checkbox__collapsed-check`, checked: this.props.IsCollapsed, onChange: (checked) => this.props.onSetDashboardCollapsed(checked) }, "Collapse"),
|
|
78
78
|
' ',
|
|
@@ -16,7 +16,7 @@ exports.isValidFlashingCellRules = (flashingCell, api, context) => {
|
|
|
16
16
|
if (valid && flashingCell.Rule.BooleanExpression) {
|
|
17
17
|
valid = api.queryLanguageApi.isValidBooleanExpression(flashingCell.Rule.BooleanExpression, ModuleConstants_1.FlashingCellModuleId);
|
|
18
18
|
if (!valid) {
|
|
19
|
-
return 'The
|
|
19
|
+
return 'The Expression is not a valid Boolean Expression';
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
// boolean expressions may also be saved as named queries
|
|
@@ -4,7 +4,7 @@ import { PlusMinusNudge, AdaptableApi } from '../../../types';
|
|
|
4
4
|
export declare const PlusMinusSettingsSummary: React.FunctionComponent<{
|
|
5
5
|
hasCondition: boolean;
|
|
6
6
|
}>;
|
|
7
|
-
export declare const isSettingsValid: (hasCondition: boolean) => (data: PlusMinusNudge, api: AdaptableApi, context: OnePageAdaptableWizardContextType<PlusMinusNudge>) => true | "No valid Condition is specified" | "The Predicate is not valid" | "The
|
|
7
|
+
export declare const isSettingsValid: (hasCondition: boolean) => (data: PlusMinusNudge, api: AdaptableApi, context: OnePageAdaptableWizardContextType<PlusMinusNudge>) => true | "No valid Condition is specified" | "The Predicate is not valid" | "The Expression is not a valid Boolean Expression" | "Nudge value is not specified" | "Nudge value must be different than 0";
|
|
8
8
|
interface PlusMinusSettingsWizardSectionProps {
|
|
9
9
|
onChange: (plusMinusNudge: PlusMinusNudge) => void;
|
|
10
10
|
hasCondition: boolean;
|
|
@@ -12,11 +12,11 @@ const ModuleConstants_1 = require("../../../Utilities/Constants/ModuleConstants"
|
|
|
12
12
|
const Tag_1 = require("../../../components/Tag");
|
|
13
13
|
exports.isValidNamedQueryExpression = (data, api) => {
|
|
14
14
|
if (!data.BooleanExpression) {
|
|
15
|
-
return '
|
|
15
|
+
return 'Expression is empty';
|
|
16
16
|
}
|
|
17
17
|
const valid = api.queryLanguageApi.isValidBooleanExpression(data.BooleanExpression, ModuleConstants_1.QueryModuleId);
|
|
18
18
|
if (!valid) {
|
|
19
|
-
return 'Query is not a valid
|
|
19
|
+
return 'Query is not a valid Boolean Query';
|
|
20
20
|
}
|
|
21
21
|
return valid;
|
|
22
22
|
};
|
|
@@ -151,6 +151,7 @@ export declare class Adaptable implements IAdaptable {
|
|
|
151
151
|
setSelectedRows(): SelectedRowInfo | undefined;
|
|
152
152
|
setValue(dataChangedInfo: DataChangedInfo): void;
|
|
153
153
|
cancelEdit(): void;
|
|
154
|
+
isCellEditable(rowNode: RowNode, column: Column): boolean;
|
|
154
155
|
getDistinctValuesForColumn(column: AdaptableColumn, visibleRowsOnly: boolean, skipRowNode?: RowNode, permittedValues?: any[]): GridCell[];
|
|
155
156
|
getDistinctFilterValuesForColumn(column: AdaptableColumn, visibleRowsOnly: boolean, filter: string, skipRowNode?: RowNode): Promise<{
|
|
156
157
|
suppressClientSideFilter?: boolean;
|
|
@@ -256,6 +257,7 @@ export declare class Adaptable implements IAdaptable {
|
|
|
256
257
|
setupColumnFilter({ col, colDef }: ColumnSetupInfo): void;
|
|
257
258
|
setupColumnFloatingFilter({ col, colDef }: ColumnSetupInfo): void;
|
|
258
259
|
setupColumnValueFormatter({ col, abColumn }: ColumnSetupInfo): void;
|
|
260
|
+
setupColumnEditable({ col }: ColumnSetupInfo): void;
|
|
259
261
|
setupColumnValueSetter({ col, colId, abColumn }: ColumnSetupInfo): void;
|
|
260
262
|
setupColumnComparator({ col, colId, abColumn }: ColumnSetupInfo): void;
|
|
261
263
|
private applyCurrentTheme;
|
|
@@ -278,7 +280,7 @@ export declare class Adaptable implements IAdaptable {
|
|
|
278
280
|
expandAllRowGroups(): void;
|
|
279
281
|
closeAllRowGroups(): void;
|
|
280
282
|
expandRowGroupsForValues(columnValues: any[]): void;
|
|
281
|
-
|
|
283
|
+
getAgGridColumnForColumnId(columnId: string): Column;
|
|
282
284
|
setRowGroupColumns(columnIds: string[]): void;
|
|
283
285
|
clearRowGroupColumns(): void;
|
|
284
286
|
getExpandRowGroupsKeys(): any[];
|