@adaptabletools/adaptable 19.2.5 → 19.2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable",
3
- "version": "19.2.5",
3
+ "version": "19.2.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",
package/src/EnvVars.js CHANGED
@@ -1,4 +1,4 @@
1
1
  import env from './env';
2
2
  export const ADAPTABLE_VERSION = env.VERSION;
3
3
  export const ADAPTABLE_PUBLISH_TIMESTAMP = env.PUBLISH_TIMESTAMP;
4
- export const INFINITE_TABLE_LICENSE_KEY = env.INFINITE_TABLE_LICENSE_KEY;
4
+ export const INFINITE_TABLE_LICENSE_KEY = env.NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY;
package/src/env.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  declare const _default: {
2
- INFINITE_TABLE_LICENSE_KEY: any;
2
+ NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: any;
3
3
  PUBLISH_TIMESTAMP: any;
4
4
  VERSION: any;
5
5
  };
package/src/env.js CHANGED
@@ -1,5 +1,5 @@
1
1
  export default {
2
- INFINITE_TABLE_LICENSE_KEY: process.env.INFINITE_TABLE_LICENSE_KEY || '',
3
- PUBLISH_TIMESTAMP: 1758026353561 || Date.now(),
4
- VERSION: "19.2.5" || '--current-version--',
2
+ NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY: process.env.NEXT_PUBLIC_INFINITE_TABLE_LICENSE_KEY || '',
3
+ PUBLISH_TIMESTAMP: 1758092465615 || Date.now(),
4
+ VERSION: "19.2.6" || '--current-version--',
5
5
  };