@adaptabletools/adaptable 18.0.13 → 18.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "18.0.13",
3
+ "version": "18.0.14",
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",
@@ -1796,6 +1796,12 @@ 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
+ }
1799
1805
  return result;
1800
1806
  }
1801
1807
  getRawValueFromRowNode(rowNode, columnId) {
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: 1716828231909 || Date.now(),
4
- VERSION: "18.0.13" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1716905684241 || Date.now(),
4
+ VERSION: "18.0.14" || '--current-version--',
5
5
  };