@adaptabletools/adaptable 22.0.6 → 22.0.7
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": "22.0.
|
|
3
|
+
"version": "22.0.7",
|
|
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/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: 1774369234081 || Date.now(),
|
|
4
|
+
VERSION: "22.0.7" || '--current-version--',
|
|
5
5
|
};
|
|
@@ -1030,6 +1030,12 @@ export class LayoutManager extends LMEmitter {
|
|
|
1030
1030
|
const shouldSkipTriggerChange = options?.skipTriggerChange === true;
|
|
1031
1031
|
const shouldSkipEqualityCheck = options?.force === true;
|
|
1032
1032
|
if (!shouldSkipEqualityCheck && isLayoutEqual(this.currentLayout, layout)) {
|
|
1033
|
+
// isLayoutEqual strips Ignore_* properties (ColumnHeaders, Filters, etc.)
|
|
1034
|
+
// so even when grid-derived properties match, we must sync currentLayout
|
|
1035
|
+
// to preserve any Ignore_* changes — otherwise getLayoutModelFromGrid
|
|
1036
|
+
// will copy stale values from this.currentLayout
|
|
1037
|
+
// this.currentLayout = layout;
|
|
1038
|
+
this.silentSetCurrentLayout(layout);
|
|
1033
1039
|
return false;
|
|
1034
1040
|
}
|
|
1035
1041
|
const prevCurrent = this.currentLayout;
|