@adaptabletools/adaptable 20.0.0-canary.14 → 20.0.0-canary.15

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": "20.0.0-canary.14",
3
+ "version": "20.0.0-canary.15",
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",
@@ -521,7 +521,7 @@ export class AgGridAdapter {
521
521
  else if (Array.isArray(value)) {
522
522
  const arrayDataType = ALL_ADAPTABLE_DATA_TYPES.find((arrayType) => {
523
523
  const dataTypeDefinition = agGridDataTypeDefinitions[arrayType];
524
- const dataTypeMatching = dataTypeDefinition?.dataTypeMatcher(value);
524
+ const dataTypeMatching = dataTypeDefinition?.dataTypeMatcher?.(value);
525
525
  return dataTypeMatching;
526
526
  });
527
527
  if (arrayDataType) {
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: 1741793192712 || Date.now(),
4
- VERSION: "20.0.0-canary.14" || '--current-version--',
3
+ PUBLISH_TIMESTAMP: 1741795376820 || Date.now(),
4
+ VERSION: "20.0.0-canary.15" || '--current-version--',
5
5
  };