@adaptabletools/adaptable-cjs 18.0.9 → 18.0.10-canary.0

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-cjs",
3
- "version": "18.0.9",
3
+ "version": "18.0.10-canary.0",
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",
@@ -60,7 +60,7 @@
60
60
  "styled-components": "^4.3.2",
61
61
  "tinycolor2": "^1.4.2",
62
62
  "tslib": "^2.3.0",
63
- "uuid": "^3.3.2",
63
+ "uuid": "9.0.1",
64
64
  "react-toastify": "9.1.3"
65
65
  },
66
66
  "peerDependencies": {
@@ -2,7 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.RowSummaryService = void 0;
4
4
  const tslib_1 = require("tslib");
5
- const lodash_1 = require("lodash");
6
5
  const RowSummary_1 = require("../../PredefinedConfig/Common/RowSummary");
7
6
  const SystemRedux_1 = require("../../Redux/ActionsReducers/SystemRedux");
8
7
  const ModuleConstants = tslib_1.__importStar(require("../../Utilities/Constants/ModuleConstants"));
@@ -10,6 +9,7 @@ const Helper_1 = tslib_1.__importDefault(require("../Helpers/Helper"));
10
9
  const AggregatedScalarLiveValue_1 = require("./AggregatedScalarLiveValue");
11
10
  const ObjectExtensions_1 = require("../Extensions/ObjectExtensions");
12
11
  const throttle_1 = tslib_1.__importDefault(require("lodash/throttle"));
12
+ const isEqual_1 = tslib_1.__importDefault(require("lodash/isEqual"));
13
13
  /**
14
14
  * The logic is extracted here to make it easier to follow
15
15
  */
@@ -156,7 +156,7 @@ class RowSummaryService {
156
156
  }),
157
157
  };
158
158
  });
159
- if (this.previousRowSummaries && (0, lodash_1.isEqual)(rowSummariesResults, this.previousRowSummaries)) {
159
+ if (this.previousRowSummaries && (0, isEqual_1.default)(rowSummariesResults, this.previousRowSummaries)) {
160
160
  return;
161
161
  }
162
162
  this.api.internalApi.dispatchReduxAction((0, SystemRedux_1.SystemRowSummarySet)(rowSummariesResults));
@@ -1790,7 +1790,7 @@ class AdaptableAgGrid {
1790
1790
  const agGridApi = gridApi || this.agGridAdapter.getAgGridApi();
1791
1791
  let result;
1792
1792
  if (!this.hasAutogeneratedPrimaryKey) {
1793
- result = agGridApi.getValue(this.adaptableOptions.primaryKey, rowNode);
1793
+ result = agGridApi.getCellValue({ colKey: this.adaptableOptions.primaryKey, rowNode });
1794
1794
  }
1795
1795
  if (result == undefined && rowNode.data) {
1796
1796
  result = rowNode.data[this.adaptableOptions.primaryKey];
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  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" || '',
5
- PUBLISH_TIMESTAMP: 1715670815539 || Date.now(),
6
- VERSION: "18.0.9" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1715788773565 || Date.now(),
6
+ VERSION: "18.0.10-canary.0" || '--current-version--',
7
7
  };