@adaptabletools/adaptable-cjs 19.0.0-canary.0 → 19.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.
Files changed (58) hide show
  1. package/README.md +1 -2
  2. package/base.css +1 -1
  3. package/base.css.map +1 -1
  4. package/index.css +1 -1
  5. package/index.css.map +1 -1
  6. package/package.json +1 -1
  7. package/src/AdaptableOptions/DataChangeHistoryOptions.d.ts +1 -1
  8. package/src/Api/AlertApi.d.ts +8 -0
  9. package/src/Api/ColumnApi.d.ts +4 -0
  10. package/src/Api/CustomSortApi.d.ts +8 -0
  11. package/src/Api/Events/LiveDataChanged.d.ts +1 -1
  12. package/src/Api/FlashingCellApi.d.ts +25 -12
  13. package/src/Api/FormatColumnApi.d.ts +8 -0
  14. package/src/Api/GridApi.d.ts +0 -20
  15. package/src/Api/Implementation/AlertApiImpl.d.ts +2 -0
  16. package/src/Api/Implementation/AlertApiImpl.js +6 -0
  17. package/src/Api/Implementation/ColumnApiImpl.d.ts +1 -0
  18. package/src/Api/Implementation/ColumnApiImpl.js +6 -0
  19. package/src/Api/Implementation/CustomSortApiImpl.d.ts +2 -0
  20. package/src/Api/Implementation/CustomSortApiImpl.js +6 -0
  21. package/src/Api/Implementation/FlashingCellApiImpl.d.ts +3 -0
  22. package/src/Api/Implementation/FlashingCellApiImpl.js +9 -0
  23. package/src/Api/Implementation/FormatColumnApiImpl.d.ts +2 -0
  24. package/src/Api/Implementation/FormatColumnApiImpl.js +6 -0
  25. package/src/Api/Implementation/GridApiImpl.d.ts +0 -4
  26. package/src/Api/Implementation/GridApiImpl.js +0 -17
  27. package/src/Api/Implementation/ShortcutApiImpl.d.ts +2 -0
  28. package/src/Api/Implementation/ShortcutApiImpl.js +6 -0
  29. package/src/Api/Implementation/StyledColumnApiImpl.d.ts +2 -0
  30. package/src/Api/Implementation/StyledColumnApiImpl.js +6 -0
  31. package/src/Api/Implementation/UserInterfaceApiImpl.d.ts +0 -2
  32. package/src/Api/Implementation/UserInterfaceApiImpl.js +0 -9
  33. package/src/Api/Internal/ExportInternalApi.d.ts +3 -3
  34. package/src/Api/Internal/ExportInternalApi.js +17 -13
  35. package/src/Api/Internal/GridFilterInternalApi.d.ts +1 -1
  36. package/src/Api/Internal/GridFilterInternalApi.js +1 -1
  37. package/src/Api/ShortcutApi.d.ts +8 -0
  38. package/src/Api/StyledColumnApi.d.ts +8 -0
  39. package/src/Api/UserInterfaceApi.d.ts +0 -10
  40. package/src/PredefinedConfig/Common/AdaptableFormat.d.ts +1 -1
  41. package/src/PredefinedConfig/Common/RowScope.d.ts +1 -1
  42. package/src/PredefinedConfig/FormatColumnState.d.ts +0 -4
  43. package/src/Redux/ActionsReducers/SystemRedux.js +3 -8
  44. package/src/Strategy/DashboardModule.js +11 -7
  45. package/src/View/Dashboard/DashboardPopup.js +4 -3
  46. package/src/View/Dashboard/DashboardViewPanel.js +2 -1
  47. package/src/View/Layout/Wizard/getGridFilterPreview.js +1 -1
  48. package/src/View/Layout/Wizard/sections/ColumnsSection.js +1 -1
  49. package/src/View/Layout/Wizard/sections/GridFilterSection.js +1 -1
  50. package/src/agGrid/AdaptableAgGrid.js +4 -3
  51. package/src/agGrid/AgGridColumnAdapter.js +2 -1
  52. package/src/agGrid/AgGridMenuAdapter.js +14 -14
  53. package/src/agGrid/PercentBarRenderer.js +1 -1
  54. package/src/env.js +2 -2
  55. package/src/metamodel/adaptable.metamodel.js +1 -1
  56. package/tsconfig.cjs.tsbuildinfo +1 -1
  57. package/src/PredefinedConfig/QueryState.d.ts +0 -18
  58. package/src/PredefinedConfig/QueryState.js +0 -2
@@ -8,6 +8,10 @@ export interface ColumnApi {
8
8
  * Returns all Columns
9
9
  */
10
10
  getColumns(): AdaptableColumn[];
11
+ /**
12
+ * Returns all standard Columns (i.e. not Action Rows)
13
+ */
14
+ getStandardColumns(): AdaptableColumn[];
11
15
  /**
12
16
  * Returns all visible Columns
13
17
  */
@@ -70,6 +70,14 @@ export interface CustomSortApi {
70
70
  * @returns sort column
71
71
  */
72
72
  suspendCustomSort(customSort: CustomSort): CustomSort;
73
+ /**
74
+ * Suspends all Custom Sorts
75
+ */
76
+ suspendAllCustomSort(): void;
77
+ /**
78
+ * Activates all suspended Custom Sort
79
+ */
80
+ unSuspendAllCustomSort(): void;
73
81
  /**
74
82
  * Un-suspends or activates a suspended Custom Sort
75
83
  * @param customSort Custom Sort to suspend
@@ -22,7 +22,7 @@ export interface LiveDataChangedInfo extends BaseEventInfo {
22
22
  */
23
23
  export interface LiveReport {
24
24
  /**
25
- * For OpenFin this is the workbook name; for iPushpull the page name;
25
+ * For OpenFin this is the workbook name; for iPushpull the page name
26
26
  */
27
27
  pageName: string;
28
28
  /**
@@ -13,7 +13,7 @@ export interface FlashingCellApi {
13
13
  */
14
14
  getFlashingCellState(): FlashingCellState;
15
15
  /**
16
- * Retrieves all Flashing cell Definitions in Flashing Cell State
16
+ * Retrieves all Flashing Cell Definitions in Flashing Cell State
17
17
  */
18
18
  getFlashingCellDefinitions(config?: {
19
19
  includeLayoutNotAssociatedObjects?: boolean;
@@ -21,7 +21,7 @@ export interface FlashingCellApi {
21
21
  /**
22
22
  * Retrieves Flashing Cell Definition by the technical ID (from `FlashingCellState`)
23
23
  * @param id Flashing Cell Definition Id
24
- * @returns flashing cell definition
24
+ * @returns Flashing Cell Definition
25
25
  */
26
26
  getFlashingCellDefinitionById(id: FlashingCellDefinition['Uuid']): FlashingCellDefinition;
27
27
  /**
@@ -29,9 +29,14 @@ export interface FlashingCellApi {
29
29
  * @returns flashing cell definitions
30
30
  */
31
31
  getActiveFlashingCellDefinitions(): FlashingCellDefinition[];
32
+ /**
33
+ * Retrieves all suspended Cell Definitions in Flashing Cell State
34
+ * @returns flashing cell definitions
35
+ */
36
+ getSuspendedFlashingCellDefinitions(): FlashingCellDefinition[];
32
37
  /**
33
38
  * Returns `FlashTarget` of the given Flashing Cell Definition
34
- * @param flashingCellDefinition Flashing cell Definition to check
39
+ * @param flashingCellDefinition Flashing Cell Definition to check
35
40
  */
36
41
  getFlashingCellFlashTarget(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition['FlashTarget'];
37
42
  /**
@@ -46,13 +51,13 @@ export interface FlashingCellApi {
46
51
  */
47
52
  editFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
48
53
  /**
49
- * Edits provided Flashing cell Definitions
54
+ * Edits provided Flashing Cell Definitions
50
55
  * @param flashingCellDefinitions Flashing Cell Definitions to Edit
51
- * @returns flashing cell definitions
56
+ * @returns Flashing Cell definitions
52
57
  */
53
58
  editFlashingCellDefinitions(flashingCellDefinitions: FlashingCellDefinition[]): FlashingCellDefinition[];
54
59
  /**
55
- * Adds a Flashing cell Definition to State
60
+ * Adds a Flashing Cell Definition to State
56
61
  * @param flashingCellDefinition Flashing Cell Definition to Add
57
62
  */
58
63
  addFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
@@ -62,23 +67,31 @@ export interface FlashingCellApi {
62
67
  */
63
68
  setFlashingCellDefinitions(flashingCellDefinitions: FlashingCellDefinition[]): void;
64
69
  /**
65
- * Adds provided Flashing cell Definitions
70
+ * Adds provided Flashing Cell Definitions
66
71
  * @param flashingCellDefinitions Flashing Cell Definition to Add
67
- * @returns flashing cell definition
72
+ * @returns Flashing Cell Definition
68
73
  */
69
74
  addFlashingCellDefinitions(flashingCellDefinitions: FlashingCellDefinition[]): FlashingCellDefinition[];
70
75
  /**
71
- * Suspends a Flashing cell Definition
76
+ * Suspends a Flashing Cell Definition
72
77
  * @param flashingCellDefinition Flashing Cell Definition to Suspend
73
- * @returns flashing cell definition
78
+ * @returns Flashing Cell Definition
74
79
  */
75
80
  suspendFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
76
81
  /**
77
- * Activates a suspended Flashing cell Definition
82
+ * Activates a suspended Flashing Cell Definition
78
83
  * @param flashingCellDefinition Flashing Cell Definition to Un-Suspend (activate)
79
- * @returns flashing cell definition
84
+ * @returns Flashing Cell Definition
80
85
  */
81
86
  unSuspendFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
87
+ /**
88
+ * Suspends all FlashingCell Definitions
89
+ */
90
+ suspendAllFlashingCellDefinition(): void;
91
+ /**
92
+ * Activates all suspended Flashing Cell Definition
93
+ */
94
+ unSuspendAllFlashingCellDefinition(): void;
82
95
  /**
83
96
  * Retrieves all Predicate Defs that match given Scope
84
97
  * @param scope the Scope to check
@@ -74,6 +74,14 @@ export interface FormatColumnApi {
74
74
  * @returns format column
75
75
  */
76
76
  unSuspendFormatColumn(formatColumn: FormatColumn): FormatColumn;
77
+ /**
78
+ * Suspends all Format Columns
79
+ */
80
+ suspendAllFormatColumn(): void;
81
+ /**
82
+ * Activates all suspended Format Column
83
+ */
84
+ unSuspendAllFormatColumn(): void;
77
85
  /**
78
86
  * Opens Settings Panel with Format Column section selected and visible
79
87
  */
@@ -33,14 +33,6 @@ export interface GridApi {
33
33
  * Retrieves visible data from the grid (filtered and sorted)
34
34
  */
35
35
  getVisibleData(): any[];
36
- /**
37
- * @deprecated use `loadGridData()` instead
38
- */
39
- resetGridData(data: any[]): void;
40
- /**
41
- * @deprecated use `loadGridData()` instead
42
- */
43
- setInitialGridData(data: any): void;
44
36
  /**
45
37
  * Loads data into grid and fire a `GridDataChanged.trigger='Load'` event
46
38
  * @param data data to load
@@ -360,12 +352,6 @@ export interface GridApi {
360
352
  * Whether AdapTable instance can be Row Grouped
361
353
  */
362
354
  isGridGroupable(): boolean;
363
- /**
364
- * Whether AdapTable instance offers row selection
365
- *
366
- * @deprecated use `isGridRowSelectable()` instead
367
- */
368
- isGridSelectable(): boolean;
369
355
  /**
370
356
  * Whether AdapTable instance offers row selection
371
357
  */
@@ -536,12 +522,6 @@ export interface GridApi {
536
522
  * Returns AG Grid Row Model Type
537
523
  */
538
524
  getAgGridRowModelType(): RowModelType;
539
- /**
540
- * Returns number of visible rows in Data Source
541
- *
542
- * @deprecated use `getRowCount()` instead
543
- */
544
- getVisibleRowCount(): number;
545
525
  /**
546
526
  * Opens a window with a transposed view of Grid
547
527
  */
@@ -30,6 +30,8 @@ export declare class AlertApiImpl extends ApiBase implements AlertApi {
30
30
  openAlertSettingsPanel(): void;
31
31
  editAlertDefinition(alertDefinition: AlertDefinition): AlertDefinition;
32
32
  suspendAlertDefinition(alertDefinition: AlertDefinition): AlertDefinition;
33
+ suspendAllAlertDefinition(): void;
34
+ unSuspendAllAlertDefinition(): void;
33
35
  unSuspendAlertDefinition(alertDefinition: AlertDefinition): AlertDefinition;
34
36
  evaluateAlertDefinitions(alertDefinitions: AlertDefinition[]): void;
35
37
  findAlertDefinitions(criteria: AdaptableObjectLookupCriteria): AlertDefinition[];
@@ -160,6 +160,12 @@ class AlertApiImpl extends ApiBase_1.ApiBase {
160
160
  this.dispatchAction(AlertRedux.AlertDefinitionSuspend(alertDefinition));
161
161
  return this.getAlertDefinitionById(alertDefinition.Uuid);
162
162
  }
163
+ suspendAllAlertDefinition() {
164
+ this.dispatchAction(AlertRedux.AlertDefinitionSuspendAll());
165
+ }
166
+ unSuspendAllAlertDefinition() {
167
+ this.dispatchAction(AlertRedux.AlertDefinitionUnSuspendAll());
168
+ }
163
169
  unSuspendAlertDefinition(alertDefinition) {
164
170
  this.dispatchAction(AlertRedux.AlertDefinitionUnSuspend(alertDefinition));
165
171
  return this.getAlertDefinitionById(alertDefinition.Uuid);
@@ -10,6 +10,7 @@ export declare class ColumnApiImpl extends ApiBase implements ColumnApi {
10
10
  internalApi: ColumnInternalApi;
11
11
  constructor(adaptable: IAdaptable);
12
12
  getColumns(): AdaptableColumn[];
13
+ getStandardColumns(): AdaptableColumn[];
13
14
  getVisibleColumns(): AdaptableColumn[];
14
15
  selectColumn(columnId: string): void;
15
16
  selectColumns(columnIds: string[]): void;
@@ -29,6 +29,12 @@ class ColumnApiImpl extends ApiBase_1.ApiBase {
29
29
  var _a;
30
30
  return (_a = this.getAdaptableApi().gridApi.getGridState().Columns) !== null && _a !== void 0 ? _a : [];
31
31
  }
32
+ getStandardColumns() {
33
+ const cols = this.getAdaptableApi()
34
+ .gridApi.getGridState()
35
+ .Columns.filter((c) => !this.internalApi.isActionRowButtonColumn(c.columnId));
36
+ return cols !== null && cols !== void 0 ? cols : [];
37
+ }
32
38
  getVisibleColumns() {
33
39
  const layout = this.getAdaptableApi().layoutApi.getCurrentLayout();
34
40
  const visibleCols = layout.Columns.reduce((acc, colId) => {
@@ -25,5 +25,7 @@ export declare class CustomSortApiImpl extends ApiBase implements CustomSortApi
25
25
  deleteCustomSort(column: string): void;
26
26
  suspendCustomSort(customSort: CustomSort): CustomSort;
27
27
  unSuspendCustomSort(customSort: CustomSort): CustomSort;
28
+ suspendAllCustomSort(): void;
29
+ unSuspendAllCustomSort(): void;
28
30
  openCustomSortSettingsPanel(): void;
29
31
  }
@@ -64,6 +64,12 @@ class CustomSortApiImpl extends ApiBase_1.ApiBase {
64
64
  this.dispatchAction(CustomSortRedux.CustomSortUnSuspend(customSort));
65
65
  return this.getCustomSortById(customSort.Uuid);
66
66
  }
67
+ suspendAllCustomSort() {
68
+ this.dispatchAction(CustomSortRedux.CustomSortSuspendAll());
69
+ }
70
+ unSuspendAllCustomSort() {
71
+ this.dispatchAction(CustomSortRedux.CustomSortUnSuspendAll());
72
+ }
67
73
  openCustomSortSettingsPanel() {
68
74
  this.showModulePopup(ModuleConstants.CustomSortModuleId);
69
75
  }
@@ -14,6 +14,7 @@ export declare class FlashingCellApiImpl extends ApiBase implements FlashingCell
14
14
  getFlashingCellDefinitions(config?: LayoutAssociatedObjectLoadConfig): FlashingCellDefinition[];
15
15
  getFlashingCellDefinitionById(id: FlashingCellDefinition['Uuid']): FlashingCellDefinition;
16
16
  getActiveFlashingCellDefinitions(): FlashingCellDefinition[];
17
+ getSuspendedFlashingCellDefinitions(): FlashingCellDefinition[];
17
18
  getFlashingCellFlashTarget(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition['FlashTarget'];
18
19
  showFlashingCell(flashingCellToShow: AdaptableFlashingCell): void;
19
20
  addFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
@@ -21,6 +22,8 @@ export declare class FlashingCellApiImpl extends ApiBase implements FlashingCell
21
22
  editFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
22
23
  suspendFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
23
24
  unSuspendFlashingCellDefinition(flashingCellDefinition: FlashingCellDefinition): FlashingCellDefinition;
25
+ suspendAllFlashingCellDefinition(): void;
26
+ unSuspendAllFlashingCellDefinition(): void;
24
27
  addFlashingCellDefinitions(flashingCellDefinitions: FlashingCellDefinition[]): FlashingCellDefinition[];
25
28
  editFlashingCellDefinitions(flashingCellDefinitions: FlashingCellDefinition[]): FlashingCellDefinition[];
26
29
  getFlashingCellPredicateDefsForScope(scope: ColumnScope): AdaptablePredicateDef[];
@@ -28,6 +28,9 @@ class FlashingCellApiImpl extends ApiBase_1.ApiBase {
28
28
  getActiveFlashingCellDefinitions() {
29
29
  return this.getFlashingCellDefinitions().filter((fc) => !fc.IsSuspended);
30
30
  }
31
+ getSuspendedFlashingCellDefinitions() {
32
+ return this.getFlashingCellDefinitions().filter((fc) => fc.IsSuspended);
33
+ }
31
34
  getFlashingCellFlashTarget(flashingCellDefinition) {
32
35
  var _a;
33
36
  return (_a = flashingCellDefinition.FlashTarget) !== null && _a !== void 0 ? _a : 'cell';
@@ -68,6 +71,12 @@ class FlashingCellApiImpl extends ApiBase_1.ApiBase {
68
71
  this.dispatchAction(FlashingCellRedux.FlashingCellDefinitionUnSuspend(flashingCellDefinition));
69
72
  return this.getFlashingCellDefinitionById(flashingCellDefinition.Uuid);
70
73
  }
74
+ suspendAllFlashingCellDefinition() {
75
+ this.dispatchAction(FlashingCellRedux.FlashingCellDefinitionSuspendAll());
76
+ }
77
+ unSuspendAllFlashingCellDefinition() {
78
+ this.dispatchAction(FlashingCellRedux.FlashingCellDefinitionUnSuspendAll());
79
+ }
71
80
  addFlashingCellDefinitions(flashingCellDefinitions) {
72
81
  flashingCellDefinitions.forEach((fad) => {
73
82
  this.addFlashingCellDefinition(fad);
@@ -29,6 +29,8 @@ export declare class FormatColumnApiImpl extends ApiBase implements FormatColumn
29
29
  deleteAllFormatColumns(): void;
30
30
  suspendFormatColumn(formatColumn: FormatColumn): FormatColumn;
31
31
  unSuspendFormatColumn(formatColumn: FormatColumn): FormatColumn;
32
+ suspendAllFormatColumn(): void;
33
+ unSuspendAllFormatColumn(): void;
32
34
  getFormatColumnsForColumn(column: AdaptableColumn, config?: {
33
35
  includeSuspended?: boolean;
34
36
  }): FormatColumn[];
@@ -64,6 +64,12 @@ class FormatColumnApiImpl extends ApiBase_1.ApiBase {
64
64
  this.dispatchAction(FormatColumnRedux.FormatColumnUnSuspend(formatColumn));
65
65
  return this.getFormatColumnById(formatColumn.Uuid);
66
66
  }
67
+ suspendAllFormatColumn() {
68
+ this.dispatchAction(FormatColumnRedux.FormatColumnSuspendAll());
69
+ }
70
+ unSuspendAllFormatColumn() {
71
+ this.dispatchAction(FormatColumnRedux.FormatColumnUnSuspendAll());
72
+ }
67
73
  getFormatColumnsForColumn(column, config) {
68
74
  const formatColumns = this.getFormatColumns().filter((formatColumn) => (config === null || config === void 0 ? void 0 : config.includeSuspended) || !formatColumn.IsSuspended);
69
75
  return this.internalApi.getFormatColumnWithColumnInScope(formatColumns, column);
@@ -21,8 +21,6 @@ export declare class GridApiImpl extends ApiBase implements GridApi {
21
21
  getVariant(): AdaptableVariant;
22
22
  getGridState(): GridState;
23
23
  loadGridData(dataSource: any): void;
24
- resetGridData(dataSource: any[]): void;
25
- setInitialGridData(data: any): void;
26
24
  getGridData(): any[];
27
25
  getFilteredData(): any[];
28
26
  getVisibleData(): any[];
@@ -94,7 +92,6 @@ export declare class GridApiImpl extends ApiBase implements GridApi {
94
92
  expandRowGroupsForValues(columnValues: any[]): void;
95
93
  isGridPivotable(): boolean;
96
94
  isGridGroupable(): boolean;
97
- isGridSelectable(): boolean;
98
95
  isGridRowSelectable(): boolean;
99
96
  isGridRangeSelectable(): boolean;
100
97
  isGridRowGrouped(): boolean;
@@ -136,7 +133,6 @@ export declare class GridApiImpl extends ApiBase implements GridApi {
136
133
  getGridContainerElement(): HTMLElement | null;
137
134
  openGridInfoSettingsPanel(): void;
138
135
  getAgGridRowModelType(): RowModelType;
139
- getVisibleRowCount(): number;
140
136
  showTransposedView(transposeConfig?: TransposeConfig): void;
141
137
  getAllAgGridColumns(): Column<any>[];
142
138
  }
@@ -8,7 +8,6 @@ const SystemRedux_1 = require("../../Redux/ActionsReducers/SystemRedux");
8
8
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
9
9
  const GridInternalApi_1 = require("../Internal/GridInternalApi");
10
10
  const ArrayExtensions_1 = tslib_1.__importDefault(require("../../Utilities/Extensions/ArrayExtensions"));
11
- const logDeprecation_1 = require("../../Utilities/logDeprecation");
12
11
  const windowFactory_1 = require("../../View/Components/Popups/WindowPopups/windowFactory");
13
12
  const RowSummary_1 = require("../../PredefinedConfig/Common/RowSummary");
14
13
  class GridApiImpl extends ApiBase_1.ApiBase {
@@ -32,14 +31,6 @@ class GridApiImpl extends ApiBase_1.ApiBase {
32
31
  const allRowNodes = this.getAllRowNodes();
33
32
  this.internalApi.fireGridDataChangedEvent(dataSource, allRowNodes, 'Load');
34
33
  }
35
- resetGridData(dataSource) {
36
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'GridApi', 'resetGridData', 'loadGridData');
37
- this.loadGridData(dataSource);
38
- }
39
- setInitialGridData(data) {
40
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'GridApi', 'setInitialGridData', 'loadGridData');
41
- this.loadGridData(data);
42
- }
43
34
  getGridData() {
44
35
  return this.adaptable.getGridData();
45
36
  }
@@ -363,10 +354,6 @@ class GridApiImpl extends ApiBase_1.ApiBase {
363
354
  isGridGroupable() {
364
355
  return !this.getAdaptableApi().internalApi.isGridInTreeMode();
365
356
  }
366
- isGridSelectable() {
367
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'GridApi', 'isGridSelectable', 'isGridRowSelectable');
368
- return this.isGridRowSelectable();
369
- }
370
357
  isGridRowSelectable() {
371
358
  return this.adaptable.isGridRowSelectable();
372
359
  }
@@ -548,10 +535,6 @@ class GridApiImpl extends ApiBase_1.ApiBase {
548
535
  getAgGridRowModelType() {
549
536
  return this.adaptable.getAgGridRowModelType();
550
537
  }
551
- getVisibleRowCount() {
552
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'GridApi', 'getVisibleRowCount', 'getRowCount');
553
- return this.getRowCount();
554
- }
555
538
  showTransposedView(transposeConfig = {}) {
556
539
  var _a, _b, _c, _d, _e;
557
540
  const transposedColumnId = (_a = transposeConfig.transposedColumnId) !== null && _a !== void 0 ? _a : this.getAdaptableApi().optionsApi.getPrimaryKey();
@@ -14,5 +14,7 @@ export declare class ShortcutApiImpl extends ApiBase implements ShortcutApi {
14
14
  deleteAllShortcuts(): void;
15
15
  suspendShortcut(shortcut: Shortcut): Shortcut;
16
16
  unSuspendShortcut(shortcut: Shortcut): Shortcut;
17
+ suspendAllShortcut(): void;
18
+ unSuspendAllShortcut(): void;
17
19
  openShortcutSettingsPanel(): void;
18
20
  }
@@ -43,6 +43,12 @@ class ShortcutApiImpl extends ApiBase_1.ApiBase {
43
43
  this.dispatchAction(ShortcutRedux.ShortcutUnSuspend(shortcut));
44
44
  return this.getShortcutById(shortcut.Uuid);
45
45
  }
46
+ suspendAllShortcut() {
47
+ this.dispatchAction(ShortcutRedux.ShortcutSuspendAll());
48
+ }
49
+ unSuspendAllShortcut() {
50
+ this.dispatchAction(ShortcutRedux.ShortcutUnSuspendAll());
51
+ }
46
52
  openShortcutSettingsPanel() {
47
53
  this.showModulePopup(ModuleConstants.ShortcutModuleId);
48
54
  }
@@ -24,5 +24,7 @@ export declare class StyledColumnApiImpl extends ApiBase implements StyledColumn
24
24
  canDisplaySparklines(): boolean;
25
25
  suspendStyledColumn(styledColumn: StyledColumn): void;
26
26
  unSuspendStyledColumn(styledColumn: StyledColumn): void;
27
+ suspendAllStyledColumn(): void;
28
+ unSuspendAllStyledColumn(): void;
27
29
  openStyledColumnSettingsPanel(): void;
28
30
  }
@@ -67,6 +67,12 @@ class StyledColumnApiImpl extends ApiBase_1.ApiBase {
67
67
  unSuspendStyledColumn(styledColumn) {
68
68
  this.dispatchAction(StyledColumnRedux.StyledColumnUnSuspend(styledColumn));
69
69
  }
70
+ suspendAllStyledColumn() {
71
+ this.dispatchAction(StyledColumnRedux.StyledColumnSuspendAll());
72
+ }
73
+ unSuspendAllStyledColumn() {
74
+ this.dispatchAction(StyledColumnRedux.StyledColumnUnSuspendAll());
75
+ }
70
76
  openStyledColumnSettingsPanel() {
71
77
  this.showModulePopup(ModuleConstants.StyledColumnModuleId);
72
78
  }
@@ -29,8 +29,6 @@ export declare class UserInterfaceApiImpl extends ApiBase implements UserInterfa
29
29
  getReadOnlyCellStyle(): AdaptableStyle | undefined;
30
30
  getAdaptableObjectTags(): AdaptableObjectTag[] | undefined;
31
31
  getCustomIconDefinition(iconName: string): import("../../types").AdaptableIcon | import("../../types").CustomIcon;
32
- showLoadingScreen(): void;
33
- hideLoadingScreen(): void;
34
32
  showProgressIndicator(config: ProgressIndicatorConfig): void;
35
33
  hideProgressIndicator(): void;
36
34
  openCustomWindowPopup(config: CustomWindowConfig): {
@@ -5,7 +5,6 @@ const tslib_1 = require("tslib");
5
5
  const PopupRedux = tslib_1.__importStar(require("../../Redux/ActionsReducers/PopupRedux"));
6
6
  const SystemRedux_1 = require("../../Redux/ActionsReducers/SystemRedux");
7
7
  const ArrayExtensions_1 = require("../../Utilities/Extensions/ArrayExtensions");
8
- const logDeprecation_1 = require("../../Utilities/logDeprecation");
9
8
  const WindowPopups_1 = require("../../View/Components/Popups/WindowPopups/WindowPopups");
10
9
  const UserInterfaceInternalApi_1 = require("../Internal/UserInterfaceInternalApi");
11
10
  const ApiBase_1 = require("./ApiBase");
@@ -172,14 +171,6 @@ class UserInterfaceApiImpl extends ApiBase_1.ApiBase {
172
171
  }
173
172
  return customIcon;
174
173
  }
175
- showLoadingScreen() {
176
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'UserInterfaceApi', 'showLoadingScreen', 'showProgressIndicator');
177
- this.showProgressIndicator({ text: 'Loading' });
178
- }
179
- hideLoadingScreen() {
180
- (0, logDeprecation_1.logDeprecation)(this.adaptable.logger, 'UserInterfaceApi', 'hideLoadingScreen', 'hideProgressIndicator');
181
- this.hideProgressIndicator();
182
- }
183
174
  showProgressIndicator(config) {
184
175
  if (config.delay) {
185
176
  this.showProgressIndicatorTimeout = setTimeout(() => {
@@ -30,10 +30,10 @@ export declare class ExportInternalApi extends ApiBase {
30
30
  getReportData(report: Report, includePrimaryKey?: boolean): ReportData;
31
31
  getReportDataAsArray(report: Report, includePrimaryKey?: boolean): any[][];
32
32
  convertReportDataToArray(reportData: ReportData): any[][];
33
- getRowObjectForColumnIds(rowNode: IRowNode, columnIds: string[]): Record<string, any>;
33
+ getRowObjectForColumnIds(rowNode: IRowNode, columnIds: string[], reportName: string): Record<string, any>;
34
34
  publishLiveLiveDataChangedEvent(reportDestination: 'ipushpull' | 'OpenFin', liveDataTrigger: 'Connected' | 'Disconnected' | 'SnapshotSent' | 'LiveDataStarted' | 'LiveDataStopped' | 'LiveDataUpdated', liveReport?: any): void;
35
- getCellExportValueFromRowNode(rowNode: IRowNode, columnId: string): any;
36
- getCellExportValueFromRawValue(rowNode: IRowNode, cellRawValue: any, columnId: string): any;
35
+ getCellExportValueFromRowNode(rowNode: IRowNode, columnId: string, reportName: string): any;
36
+ getCellExportValueFromRawValue(rowNode: IRowNode, cellRawValue: any, columnId: string, reportName: string): any;
37
37
  getReportFileName(reportName: string, destination: SystemExportDestination | CustomDestination): string;
38
38
  private getCustomExportDateFormat;
39
39
  private getCellExportValueFromRawValueByType;
@@ -365,12 +365,12 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
365
365
  switch (report.ReportRowScope) {
366
366
  case 'AllRows':
367
367
  this.getAdaptableApi().internalApi.forAllRowNodesDo((rowNode) => {
368
- resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds));
368
+ resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds, report.Name));
369
369
  });
370
370
  break;
371
371
  case 'VisibleRows':
372
372
  this.getAdaptableApi().internalApi.forAllVisibleRowNodesDo((rowNode) => {
373
- resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds));
373
+ resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds, report.Name));
374
374
  });
375
375
  break;
376
376
  case 'ExpressionRows':
@@ -379,7 +379,7 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
379
379
  if (this.getAdaptableApi()
380
380
  .internalApi.getQueryLanguageService()
381
381
  .evaluateBooleanExpression((_a = report.Query) === null || _a === void 0 ? void 0 : _a.BooleanExpression, ModuleConstants_1.ExportModuleId, rowNode)) {
382
- resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds));
382
+ resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds, report.Name));
383
383
  }
384
384
  });
385
385
  break;
@@ -394,7 +394,7 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
394
394
  if (selectedRowCells) {
395
395
  const selectedRowColumnIds = selectedRowCells.map((rowCell) => rowCell.column.columnId);
396
396
  const selectedColumnIds = columnIds.filter((columnId) => selectedRowColumnIds.includes(columnId));
397
- const row = this.getRowObjectForColumnIds(rowNode, selectedColumnIds);
397
+ const row = this.getRowObjectForColumnIds(rowNode, selectedColumnIds, report.Name);
398
398
  if (includePrimaryKey) {
399
399
  row[this.getAdaptableApi().optionsApi.getPrimaryKey()] = rowPrimaryKeyValue;
400
400
  }
@@ -409,7 +409,7 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
409
409
  this.getAdaptableApi().internalApi.forAllRowNodesDo((rowNode) => {
410
410
  const rowPrimaryKeyValue = this.getAdaptableApi().gridApi.getPrimaryKeyValueForRowNode(rowNode);
411
411
  if (selectedGridRowPrimaryKeys.includes(rowPrimaryKeyValue)) {
412
- resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds));
412
+ resultRowData.push(this.getRowObjectForColumnIds(rowNode, columnIds, report.Name));
413
413
  }
414
414
  });
415
415
  }
@@ -435,9 +435,9 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
435
435
  ...reportData.rows.map((row) => reportData.columns.map((column) => row[column.columnId])),
436
436
  ];
437
437
  }
438
- getRowObjectForColumnIds(rowNode, columnIds) {
438
+ getRowObjectForColumnIds(rowNode, columnIds, reportName) {
439
439
  return columnIds.reduce((result, columnId) => {
440
- result[columnId] = this.getCellExportValueFromRowNode(rowNode, columnId);
440
+ result[columnId] = this.getCellExportValueFromRowNode(rowNode, columnId, reportName);
441
441
  return result;
442
442
  }, {});
443
443
  }
@@ -445,24 +445,28 @@ class ExportInternalApi extends ApiBase_1.ApiBase {
445
445
  const liveDataChangedInfo = Object.assign(Object.assign({}, this.getAdaptableApi().internalApi.buildBaseContext()), { reportDestination: reportDestination, liveDataTrigger: liveDataTrigger, liveReport: liveReport });
446
446
  this.getAdaptableApi().eventApi.emit('LiveDataChanged', liveDataChangedInfo);
447
447
  }
448
- getCellExportValueFromRowNode(rowNode, columnId) {
449
- return this.getCellExportValueFromRawValue(rowNode, this.getAdaptableApi().gridApi.getRawValueFromRowNode(rowNode, columnId), columnId);
448
+ getCellExportValueFromRowNode(rowNode, columnId, reportName) {
449
+ return this.getCellExportValueFromRawValue(rowNode, this.getAdaptableApi().gridApi.getRawValueFromRowNode(rowNode, columnId), columnId, reportName);
450
450
  }
451
- getCellExportValueFromRawValue(rowNode, cellRawValue, columnId) {
451
+ getCellExportValueFromRawValue(rowNode, cellRawValue, columnId, reportName) {
452
452
  if (StringExtensions_1.default.IsNullOrEmpty(cellRawValue)) {
453
453
  return cellRawValue;
454
454
  }
455
455
  const column = this.getAdaptableApi().columnApi.getColumnWithColumnId(columnId);
456
456
  const columnDataType = column.dataType;
457
- // if this is a date column and there is a custom export date format provided, that will take precedence
457
+ // 1. if it is a Visual Data report then we always ONLY send the formatted value and ignore all other properties
458
+ if (reportName == GeneralConstants_1.VISUAL_DATA_REPORT) {
459
+ return this.getCellExportValueFromRawValueByType(rowNode, cellRawValue, columnId, 'formattedValue');
460
+ }
461
+ // 2. if this is a date column and there is a custom export date format provided, that will next take precedence
458
462
  if (columnDataType === 'Date' && !!this.getCustomExportDateFormat()) {
459
463
  const exportDateFormat = this.getCustomExportDateFormat();
460
464
  return FormatHelper_1.default.DateFormatter(cellRawValue, {
461
465
  Pattern: exportDateFormat,
462
466
  });
463
467
  }
464
- // otherwise check the general export format types
465
- let cellExportFormat = this.getAdaptableApi().exportApi.internalApi.getCellExportFormatType(column, columnDataType);
468
+ // 3. in all other cases check the general export format types
469
+ const cellExportFormat = this.getAdaptableApi().exportApi.internalApi.getCellExportFormatType(column, columnDataType);
466
470
  return this.getCellExportValueFromRawValueByType(rowNode, cellRawValue, columnId, cellExportFormat);
467
471
  }
468
472
  getReportFileName(reportName, destination) {
@@ -3,7 +3,7 @@ import { GridFilter } from '../../types';
3
3
  export declare class GridFilterInternalApi extends ApiBase {
4
4
  fireGridFilterAppliedEvent(): void;
5
5
  /**
6
- * Compares to Grid Filters to see if they are identical
6
+ * Compares to Grid Filter to see if they are identical
7
7
  */
8
8
  isGridFilterDifferent(oldFilter: GridFilter, newFilter: GridFilter): boolean;
9
9
  }
@@ -14,7 +14,7 @@ class GridFilterInternalApi extends ApiBase_1.ApiBase {
14
14
  }
15
15
  }
16
16
  /**
17
- * Compares to Grid Filters to see if they are identical
17
+ * Compares to Grid Filter to see if they are identical
18
18
  */
19
19
  isGridFilterDifferent(oldFilter, newFilter) {
20
20
  return (oldFilter === null || oldFilter === void 0 ? void 0 : oldFilter.Expression) === (newFilter === null || newFilter === void 0 ? void 0 : newFilter.Expression);
@@ -53,6 +53,14 @@ export interface ShortcutApi {
53
53
  * @returns shortcut
54
54
  */
55
55
  unSuspendShortcut(shortcut: Shortcut): Shortcut;
56
+ /**
57
+ * Suspends all Shortcuts
58
+ */
59
+ suspendAllShortcut(): void;
60
+ /**
61
+ * Activates all suspended Shortcut
62
+ */
63
+ unSuspendAllShortcut(): void;
56
64
  /**
57
65
  * Opens Settings Panel with Shortcut section selected and visible
58
66
  */
@@ -57,6 +57,14 @@ export interface StyledColumnApi {
57
57
  * @param styledColumn
58
58
  */
59
59
  unSuspendStyledColumn(styledColumn: StyledColumn): void;
60
+ /**
61
+ * Suspends all Styled Columns
62
+ */
63
+ suspendAllStyledColumn(): void;
64
+ /**
65
+ * Activates all suspended Styled Column
66
+ */
67
+ unSuspendAllStyledColumn(): void;
60
68
  /**
61
69
  * Checks whether Column with given `columnId` has a PercentBar Style applied
62
70
  * @param columnId column ID
@@ -71,16 +71,6 @@ export interface UserInterfaceApi {
71
71
  * @param name name of Icon
72
72
  */
73
73
  getCustomIconDefinition(name: string): AdaptableIcon | undefined;
74
- /**
75
- * Displays the popup that says getting data and initialising grid
76
- * @deprecated use `showProgressIndicator()` instead
77
- */
78
- showLoadingScreen(): void;
79
- /**
80
- * Hides the popup that says getting data and initialising grid
81
- * @deprecated use `hideProgressIndicator()` instead
82
- */
83
- hideLoadingScreen(): void;
84
74
  /**
85
75
  * Displays a progress indicator
86
76
  * @param config.progressText - text to display in the progress indicator