@adaptabletools/adaptable-cjs 22.0.4 → 22.0.5-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/index.css CHANGED
@@ -1,4 +1,4 @@
1
- /*! tailwindcss v4.2.1 | MIT License | https://tailwindcss.com */
1
+ /*! tailwindcss v4.2.2 | MIT License | https://tailwindcss.com */
2
2
  @layer properties;
3
3
  @layer adaptable.reset, adaptable.theming, adaptable.components, adaptable.utilities, adaptable.theme;
4
4
  @layer adaptable.reset {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adaptabletools/adaptable-cjs",
3
- "version": "22.0.4",
3
+ "version": "22.0.5-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",
@@ -11,7 +11,9 @@ class AdaptableModuleBase {
11
11
  api;
12
12
  moduleInfo;
13
13
  AccessLevel;
14
- agGridModuleDepsInfo;
14
+ agGridModuleDepsInfo = {
15
+ hasRequiredAgGridModuleDependencies: true,
16
+ };
15
17
  constructor(module, friendlyName, glyph, popup, description, api) {
16
18
  this.api = api;
17
19
  this.moduleInfo = {
@@ -63,17 +65,10 @@ class AdaptableModuleBase {
63
65
  setAgGridDepsInfo() {
64
66
  const agGridModulesAdapter = this.api.internalApi.getAgGridModulesAdapter();
65
67
  const missingAgGridModuleDependencies = this.getAgGridModuleDependencies().filter((agGridModule) => !agGridModulesAdapter.isAgGridModuleRegistered(agGridModule));
66
- if (missingAgGridModuleDependencies.length) {
67
- this.agGridModuleDepsInfo = {
68
- hasRequiredAgGridModuleDependencies: false,
69
- missingAgGridModuleDependencies,
70
- };
71
- }
72
- else {
73
- this.agGridModuleDepsInfo = {
74
- hasRequiredAgGridModuleDependencies: true,
75
- };
76
- }
68
+ this.agGridModuleDepsInfo = {
69
+ hasRequiredAgGridModuleDependencies: missingAgGridModuleDependencies.length === 0,
70
+ missingAgGridModuleDependencies,
71
+ };
77
72
  }
78
73
  logMissingAgGridDepsInfos() {
79
74
  if (this.isModuleEnabled() &&
package/src/env.js CHANGED
@@ -2,6 +2,6 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.default = {
4
4
  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" || '',
5
- PUBLISH_TIMESTAMP: 1773747307753 || Date.now(),
6
- VERSION: "22.0.4" || '--current-version--',
5
+ PUBLISH_TIMESTAMP: 1773920955292 || Date.now(),
6
+ VERSION: "22.0.5-canary.0" || '--current-version--',
7
7
  };