ag-grid-community 35.3.0 → 35.3.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.
@@ -14536,7 +14536,7 @@ function _findEnterpriseCoreModule(modules) {
14536
14536
  }
14537
14537
 
14538
14538
  // packages/ag-grid-community/src/version.ts
14539
- var VERSION = "35.3.0";
14539
+ var VERSION = "35.3.1";
14540
14540
 
14541
14541
  // packages/ag-grid-community/src/validation/logging.ts
14542
14542
  var MAX_URL_LENGTH = 2e3;
@@ -19725,7 +19725,7 @@ var RowNode = class {
19725
19725
  }
19726
19726
  this.destroyed = true;
19727
19727
  const pinnedSibling = this.pinnedSibling;
19728
- if (pinnedSibling?.rowPinned && !this.rowPinned) {
19728
+ if (pinnedSibling?.rowPinned) {
19729
19729
  this.beans.pinnedRowModel?.pinRow(pinnedSibling, null);
19730
19730
  }
19731
19731
  if (fadeOut === true) {
@@ -19771,8 +19771,11 @@ var IGNORED_SIBLING_PROPERTIES = /* @__PURE__ */ new Set([
19771
19771
  "_groupData",
19772
19772
  "_leafs",
19773
19773
  "childStore",
19774
+ "destroyed",
19774
19775
  "groupValue",
19775
19776
  "oldRowTop",
19777
+ "pinnedSibling",
19778
+ "rowPinned",
19776
19779
  "sticky",
19777
19780
  "treeNodeFlags",
19778
19781
  "treeParent"
@@ -20023,7 +20026,8 @@ var ManualPinnedRowModel = class extends BeanStub {
20023
20026
  if (level > -1) {
20024
20027
  return;
20025
20028
  }
20026
- if (level === -1) {
20029
+ const unpinningExistingClone = float == null && rowNode.rowPinned != null;
20030
+ if (level === -1 && !unpinningExistingClone) {
20027
20031
  this._grandTotalPinned = float;
20028
20032
  const csrm = this.csrm;
20029
20033
  if (csrm) {
@@ -35616,6 +35620,9 @@ var ColumnViewportService = class extends BeanStub {
35616
35620
  this.rowsOfHeadersToRenderLeft = {};
35617
35621
  this.rowsOfHeadersToRenderRight = {};
35618
35622
  this.rowsOfHeadersToRenderCenter = {};
35623
+ this.columnsToRenderLeft = [];
35624
+ this.columnsToRenderRight = [];
35625
+ this.columnsToRenderCenter = [];
35619
35626
  this.colsWithinViewportHash = "";
35620
35627
  }
35621
35628
  isColumnInHeaderViewport(col) {