@adaptabletools/adaptable 19.2.1-canary.0 → 19.2.1-canary.1
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.1-canary.
|
|
3
|
+
"version": "19.2.1-canary.1",
|
|
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",
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import { IAdaptable } from '../../AdaptableInterfaces/IAdaptable';
|
|
2
2
|
import { AdaptableApi, CellAddress } from '../../types';
|
|
3
|
+
import { IAdaptableService } from './Interface/IAdaptableService';
|
|
3
4
|
/**
|
|
4
5
|
* This service controls the interaction between notes and comments
|
|
5
6
|
*/
|
|
6
|
-
export declare class CellPopupService {
|
|
7
|
+
export declare class CellPopupService implements IAdaptableService {
|
|
7
8
|
private api;
|
|
8
9
|
adaptable: IAdaptable;
|
|
9
10
|
constructor(api: AdaptableApi);
|
|
11
|
+
destroy(): void;
|
|
10
12
|
private getAdaptableState;
|
|
11
13
|
private dispatchAction;
|
|
12
14
|
static isSameAddress(a: CellAddress, b: CellAddress): boolean;
|
|
@@ -8,6 +8,7 @@ export class CellPopupService {
|
|
|
8
8
|
this.adaptable = api.internalApi.getAdaptableInstance();
|
|
9
9
|
this.adaptable.api.eventApi.on('AdaptableReady', () => this.handleAdaptableReady());
|
|
10
10
|
}
|
|
11
|
+
destroy() { }
|
|
11
12
|
getAdaptableState() {
|
|
12
13
|
return this.api.internalApi.getAdaptableState();
|
|
13
14
|
}
|
|
@@ -2973,7 +2973,7 @@ export class AdaptableAgGrid {
|
|
|
2973
2973
|
return this.agGridAdapter.getRegisteredModules();
|
|
2974
2974
|
}
|
|
2975
2975
|
destroy(config) {
|
|
2976
|
-
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13;
|
|
2976
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11, _12, _13, _14, _15;
|
|
2977
2977
|
if (!config) {
|
|
2978
2978
|
config = {
|
|
2979
2979
|
unmount: true,
|
|
@@ -3139,12 +3139,14 @@ export class AdaptableAgGrid {
|
|
|
3139
3139
|
this.ThemeService = null;
|
|
3140
3140
|
(_11 = (_10 = this.ChartingService) === null || _10 === void 0 ? void 0 : _10.destroy) === null || _11 === void 0 ? void 0 : _11.call(_10);
|
|
3141
3141
|
this.ChartingService = null;
|
|
3142
|
-
(_12 = this.
|
|
3142
|
+
(_13 = (_12 = this.CellPopupService) === null || _12 === void 0 ? void 0 : _12.destroy) === null || _13 === void 0 ? void 0 : _13.call(_12);
|
|
3143
|
+
this.CellPopupService = null;
|
|
3144
|
+
(_14 = this.unmountLoadingScreen) === null || _14 === void 0 ? void 0 : _14.call(this);
|
|
3143
3145
|
this.unmountLoadingScreen = null;
|
|
3144
3146
|
if (config === null || config === void 0 ? void 0 : config.unmount) {
|
|
3145
3147
|
const abContainerElement = this.getAdaptableContainerElement();
|
|
3146
3148
|
if (abContainerElement != null) {
|
|
3147
|
-
(
|
|
3149
|
+
(_15 = this.unmountReactRoot) === null || _15 === void 0 ? void 0 : _15.call(this);
|
|
3148
3150
|
}
|
|
3149
3151
|
this.unmountReactRoot = null;
|
|
3150
3152
|
}
|
package/src/env.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
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: "19.2.1-canary.
|
|
3
|
+
PUBLISH_TIMESTAMP: 1732626145480 || Date.now(),
|
|
4
|
+
VERSION: "19.2.1-canary.1" || '--current-version--',
|
|
5
5
|
};
|