@adaptabletools/adaptable 18.0.9 → 18.0.10-canary.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "18.0.
|
|
3
|
+
"version": "18.0.10-canary.1",
|
|
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",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"styled-components": "^4.3.2",
|
|
60
60
|
"tinycolor2": "^1.4.2",
|
|
61
61
|
"tslib": "^2.3.0",
|
|
62
|
-
"uuid": "
|
|
62
|
+
"uuid": "9.0.1",
|
|
63
63
|
"react-toastify": "9.1.3"
|
|
64
64
|
},
|
|
65
65
|
"peerDependencies": {
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { isEqual } from 'lodash';
|
|
2
1
|
import { ROW_SUMMARY_ROW_ID, WEIGHTED_AVERAGE_AGGREATED_FUNCTION, } from '../../PredefinedConfig/Common/RowSummary';
|
|
3
2
|
import { SystemRowSummarySet } from '../../Redux/ActionsReducers/SystemRedux';
|
|
4
3
|
import * as ModuleConstants from '../../Utilities/Constants/ModuleConstants';
|
|
@@ -6,6 +5,7 @@ import Helper from '../Helpers/Helper';
|
|
|
6
5
|
import { AggregatedScalarLiveValue } from './AggregatedScalarLiveValue';
|
|
7
6
|
import { isObjectEmpty } from '../Extensions/ObjectExtensions';
|
|
8
7
|
import throttle from 'lodash/throttle';
|
|
8
|
+
import isEqual from 'lodash/isEqual';
|
|
9
9
|
/**
|
|
10
10
|
* The logic is extracted here to make it easier to follow
|
|
11
11
|
*/
|
|
@@ -1786,7 +1786,7 @@ export class AdaptableAgGrid {
|
|
|
1786
1786
|
const agGridApi = gridApi || this.agGridAdapter.getAgGridApi();
|
|
1787
1787
|
let result;
|
|
1788
1788
|
if (!this.hasAutogeneratedPrimaryKey) {
|
|
1789
|
-
result = agGridApi.
|
|
1789
|
+
result = agGridApi.getCellValue({ colKey: this.adaptableOptions.primaryKey, rowNode });
|
|
1790
1790
|
}
|
|
1791
1791
|
if (result == undefined && rowNode.data) {
|
|
1792
1792
|
result = rowNode.data[this.adaptableOptions.primaryKey];
|
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: 1715790758513 || Date.now(),
|
|
4
|
+
VERSION: "18.0.10-canary.1" || '--current-version--',
|
|
5
5
|
};
|