@adaptabletools/adaptable 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 +1 -1
- package/package.json +1 -1
- package/src/Strategy/AdaptableModuleBase.js +7 -12
- package/src/env.js +2 -2
- package/tsconfig.esm.tsbuildinfo +1 -1
package/index.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! tailwindcss v4.2.
|
|
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",
|
|
3
|
-
"version": "22.0.
|
|
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",
|
|
@@ -7,7 +7,9 @@ export class AdaptableModuleBase {
|
|
|
7
7
|
api;
|
|
8
8
|
moduleInfo;
|
|
9
9
|
AccessLevel;
|
|
10
|
-
agGridModuleDepsInfo
|
|
10
|
+
agGridModuleDepsInfo = {
|
|
11
|
+
hasRequiredAgGridModuleDependencies: true,
|
|
12
|
+
};
|
|
11
13
|
constructor(module, friendlyName, glyph, popup, description, api) {
|
|
12
14
|
this.api = api;
|
|
13
15
|
this.moduleInfo = {
|
|
@@ -59,17 +61,10 @@ export class AdaptableModuleBase {
|
|
|
59
61
|
setAgGridDepsInfo() {
|
|
60
62
|
const agGridModulesAdapter = this.api.internalApi.getAgGridModulesAdapter();
|
|
61
63
|
const missingAgGridModuleDependencies = this.getAgGridModuleDependencies().filter((agGridModule) => !agGridModulesAdapter.isAgGridModuleRegistered(agGridModule));
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
else {
|
|
69
|
-
this.agGridModuleDepsInfo = {
|
|
70
|
-
hasRequiredAgGridModuleDependencies: true,
|
|
71
|
-
};
|
|
72
|
-
}
|
|
64
|
+
this.agGridModuleDepsInfo = {
|
|
65
|
+
hasRequiredAgGridModuleDependencies: missingAgGridModuleDependencies.length === 0,
|
|
66
|
+
missingAgGridModuleDependencies,
|
|
67
|
+
};
|
|
73
68
|
}
|
|
74
69
|
logMissingAgGridDepsInfos() {
|
|
75
70
|
if (this.isModuleEnabled() &&
|
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: 1773920918326 || Date.now(),
|
|
4
|
+
VERSION: "22.0.5-canary.0" || '--current-version--',
|
|
5
5
|
};
|