@adaptabletools/adaptable 22.0.5 → 22.0.6
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 +1 -1
- package/src/agGrid/AdaptableAgGrid.js +4 -0
- package/src/env.js +2 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adaptabletools/adaptable",
|
|
3
|
-
"version": "22.0.
|
|
3
|
+
"version": "22.0.6",
|
|
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",
|
|
@@ -2059,6 +2059,10 @@ export class AdaptableAgGrid {
|
|
|
2059
2059
|
// we want to return the value property as the raw value
|
|
2060
2060
|
_rawValue = _rawValue.value;
|
|
2061
2061
|
}
|
|
2062
|
+
if (_rawValue?.value != undefined && typeof _rawValue.toString === 'function') {
|
|
2063
|
+
// handle columns with custom valueGetters
|
|
2064
|
+
_rawValue = _rawValue.value;
|
|
2065
|
+
}
|
|
2062
2066
|
}
|
|
2063
2067
|
return _rawValue;
|
|
2064
2068
|
};
|
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.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1774360435118 || Date.now(),
|
|
4
|
+
VERSION: "22.0.6" || '--current-version--',
|
|
5
5
|
};
|