@adaptabletools/adaptable 22.0.0-canary.13 → 22.0.0-canary.14
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/index.css +6 -6
- package/index.css.map +1 -1
- package/package.json +1 -1
- package/src/AdaptableState/Common/AggregationColumns.d.ts +1 -0
- package/src/AdaptableState/Common/AggregationColumns.js +1 -0
- package/src/AdaptableState/Common/TransposeConfig.d.ts +0 -5
- package/src/Api/Implementation/GridApiImpl.js +0 -2
- package/src/Utilities/ExpressionFunctions/aggregatedScalarExpressionFunctions.js +1 -1
- package/src/Utilities/only.d.ts +15 -0
- package/src/Utilities/only.js +54 -0
- package/src/View/Layout/TransposedPopup.js +0 -1
- package/src/agGrid/AdaptableAgGrid.js +17 -1
- package/src/agGrid/AgGridExportAdapter.d.ts +2 -2
- package/src/agGrid/AgGridExportAdapter.js +7 -6
- package/src/env.js +2 -2
- package/src/metamodel/adaptable.metamodel.js +1 -1
- package/tsconfig.esm.tsbuildinfo +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import { ExportModuleId } from '../Utilities/Constants/ModuleConstants';
|
|
2
|
-
import { waitForTimeout } from '../Utilities/waitForTimeout';
|
|
3
|
-
import { convertCSSAbsoluteFontSizeToPt, getVariableColor, sanitizeStyle, } from '../Utilities/Helpers/StyleHelper';
|
|
4
|
-
import FormatHelper, { DateFormatter } from '../Utilities/Helpers/FormatHelper';
|
|
5
1
|
import tinycolor from 'tinycolor2';
|
|
6
|
-
import StringExtensions from '../Utilities/Extensions/StringExtensions';
|
|
7
|
-
import { createUuid } from '../AdaptableState/Uuid';
|
|
8
2
|
import { inferSchema, initParser } from 'udsv';
|
|
3
|
+
import { createUuid } from '../AdaptableState/Uuid';
|
|
9
4
|
import { AG_GRID_GROUPED_COLUMN, AG_GRID_SELECTION_COLUMN, } from '../Utilities/Constants/GeneralConstants';
|
|
5
|
+
import { ExportModuleId } from '../Utilities/Constants/ModuleConstants';
|
|
6
|
+
import StringExtensions from '../Utilities/Extensions/StringExtensions';
|
|
7
|
+
import FormatHelper, { DateFormatter } from '../Utilities/Helpers/FormatHelper';
|
|
8
|
+
import { convertCSSAbsoluteFontSizeToPt, getVariableColor, sanitizeStyle, } from '../Utilities/Helpers/StyleHelper';
|
|
9
|
+
import { waitForTimeout } from '../Utilities/waitForTimeout';
|
|
10
10
|
export class AgGridExportAdapter {
|
|
11
11
|
_adaptableInstance;
|
|
12
12
|
/**
|
|
@@ -87,6 +87,7 @@ export class AgGridExportAdapter {
|
|
|
87
87
|
this.patchExcelStyles(exportContext);
|
|
88
88
|
excelStylesWerePatched = true;
|
|
89
89
|
}
|
|
90
|
+
// see #export_data_synchronously
|
|
90
91
|
// 1. easiest case, we download the file using AG Grid
|
|
91
92
|
// these methods will automatically handle the file download
|
|
92
93
|
if (exportContext.destination === 'Download' && exportContext.isExcelReport) {
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
NEXT_PUBLIC_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: "22.0.0-canary.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1771515618410 || Date.now(),
|
|
4
|
+
VERSION: "22.0.0-canary.14" || '--current-version--',
|
|
5
5
|
};
|