@adaptabletools/adaptable 18.0.14 → 18.0.16
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.16",
|
|
4
4
|
"description": "Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"web-components",
|
|
@@ -255,6 +255,7 @@ export interface IAdaptable {
|
|
|
255
255
|
getAgGridContainerElement(): HTMLElement | null;
|
|
256
256
|
updateColumnModelAndRefreshGrid(config?: {
|
|
257
257
|
skipColDefsRefresh?: boolean;
|
|
258
|
+
preemptiveColumnStateRefresh?: boolean;
|
|
258
259
|
}): void;
|
|
259
260
|
getAgGridColumnForColumnId(columnId: string): Column;
|
|
260
261
|
getMinMaxCachedValueForColumn(column: AdaptableColumn, minMax: 'min' | 'max'): number | undefined;
|
|
@@ -134,7 +134,9 @@ export class ConfigApiImpl extends ApiBase {
|
|
|
134
134
|
});
|
|
135
135
|
promise
|
|
136
136
|
.then(() => {
|
|
137
|
-
this.adaptable.updateColumnModelAndRefreshGrid({
|
|
137
|
+
this.adaptable.updateColumnModelAndRefreshGrid({
|
|
138
|
+
preemptiveColumnStateRefresh: true,
|
|
139
|
+
});
|
|
138
140
|
this.adaptable.setLayout();
|
|
139
141
|
})
|
|
140
142
|
.then(() => {
|
|
@@ -196,6 +196,7 @@ export declare class AdaptableAgGrid implements IAdaptable {
|
|
|
196
196
|
getNormalisedValueFromRawValue(rawValue: any, column: AdaptableColumn): string | number | boolean | Date | unknown;
|
|
197
197
|
updateColumnModelAndRefreshGrid(config?: {
|
|
198
198
|
skipColDefsRefresh?: boolean;
|
|
199
|
+
preemptiveColumnStateRefresh?: boolean;
|
|
199
200
|
}): void;
|
|
200
201
|
redrawBody(): void;
|
|
201
202
|
refreshHeader(): void;
|
|
@@ -1796,12 +1796,6 @@ export class AdaptableAgGrid {
|
|
|
1796
1796
|
if (result == undefined && rowNode.data) {
|
|
1797
1797
|
result = rowNode.data[this.adaptableOptions.primaryKey];
|
|
1798
1798
|
}
|
|
1799
|
-
if (result == undefined && rowNode.id != undefined) {
|
|
1800
|
-
// this is reached when called for group rows,
|
|
1801
|
-
// which don't have a rowNode.data object
|
|
1802
|
-
// but do have an id property
|
|
1803
|
-
result = rowNode.id;
|
|
1804
|
-
}
|
|
1805
1799
|
return result;
|
|
1806
1800
|
}
|
|
1807
1801
|
getRawValueFromRowNode(rowNode, columnId) {
|
|
@@ -1879,6 +1873,9 @@ export class AdaptableAgGrid {
|
|
|
1879
1873
|
return rawValue;
|
|
1880
1874
|
}
|
|
1881
1875
|
updateColumnModelAndRefreshGrid(config) {
|
|
1876
|
+
if (config === null || config === void 0 ? void 0 : config.preemptiveColumnStateRefresh) {
|
|
1877
|
+
this.deriveAdaptableColumnStateFromAgGrid();
|
|
1878
|
+
}
|
|
1882
1879
|
if (!(config === null || config === void 0 ? void 0 : config.skipColDefsRefresh)) {
|
|
1883
1880
|
this.refreshColDefs();
|
|
1884
1881
|
}
|
|
@@ -3159,8 +3156,13 @@ export class AdaptableAgGrid {
|
|
|
3159
3156
|
return this.ReportService.getCellExportValueFromRawValue(rowNode, rawValue, columnId);
|
|
3160
3157
|
}
|
|
3161
3158
|
processCellForExcelExport(rowNode, columnId) {
|
|
3159
|
+
var _a;
|
|
3162
3160
|
if (this.api.exportApi.internalApi.isVisualDataExportInProgress()) {
|
|
3163
|
-
const cellKey = this.agGridColumnAdapter.getExcelClassNameForCell(columnId, this.getPrimaryKeyValueFromRowNode(rowNode))
|
|
3161
|
+
const cellKey = this.agGridColumnAdapter.getExcelClassNameForCell(columnId, (_a = this.getPrimaryKeyValueFromRowNode(rowNode)) !== null && _a !== void 0 ? _a : rowNode.id
|
|
3162
|
+
// when getPrimaryKeyValueFromRowNode is called for group rows,
|
|
3163
|
+
// which don't have a rowNode.data object, the result is undefined
|
|
3164
|
+
// but we do have an id property on the rowNode object, so we'll use that
|
|
3165
|
+
);
|
|
3164
3166
|
const isoFormattedDate = this.ReportService.getExcelStyleWithFormattedDate(cellKey);
|
|
3165
3167
|
if (isoFormattedDate) {
|
|
3166
3168
|
// this is a Date cell which will be formatted by Excel
|
|
@@ -3721,6 +3723,7 @@ export class AdaptableAgGrid {
|
|
|
3721
3723
|
*/
|
|
3722
3724
|
updateLayoutFromGrid() {
|
|
3723
3725
|
var _a, _b;
|
|
3726
|
+
this.logger.info('updateLayoutFromGrid()');
|
|
3724
3727
|
const agGridApi = this.agGridAdapter.getAgGridApi();
|
|
3725
3728
|
const columnState = agGridApi.getColumnState();
|
|
3726
3729
|
const expandedState = agGridApi.getState().rowGroupExpansion || { expandedRowGroupIds: [] };
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
INFINITE_TABLE_LICENSE_KEY: "StartDate=2021-06-29|EndDate=2030-01-01|Owner=Adaptable|Type=distribution|TS=1624971462479|C=137829811,1004007071,2756196225,1839832928,3994409405,636616862" || '',
|
|
3
|
-
PUBLISH_TIMESTAMP:
|
|
4
|
-
VERSION: "18.0.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1716977338543 || Date.now(),
|
|
4
|
+
VERSION: "18.0.16" || '--current-version--',
|
|
5
5
|
};
|