@shival99/z-ui 2.0.73 → 2.0.75

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.
@@ -6738,7 +6738,7 @@ class ZTableComponent {
6738
6738
  };
6739
6739
  });
6740
6740
  _measureVirtualItems = effect(() => {
6741
- if (!this.dynamicSize()) {
6741
+ if (!this.dynamicSize() || this.virtualizer.isScrolling()) {
6742
6742
  return;
6743
6743
  }
6744
6744
  const elements = this.virtualRowElements();
@@ -9213,7 +9213,6 @@ class ZTableComponent {
9213
9213
  right: this.columnPinning().right,
9214
9214
  },
9215
9215
  columnVisibility: this.columnVisibility(),
9216
- groupingColumnId: this.groupingColumnIds()[0] ?? null,
9217
9216
  groupingColumnIds: this.groupingColumnIds(),
9218
9217
  columnInfo,
9219
9218
  showHeaderFooterShadow: this.showHeaderFooterShadow(),
@@ -9280,14 +9279,6 @@ class ZTableComponent {
9280
9279
  if (config.groupingColumnIds) {
9281
9280
  this.groupingColumnIds.set(config.groupingColumnIds.filter(columnId => this.canGroupColumn(columnId)));
9282
9281
  }
9283
- if (!config.groupingColumnIds && config.groupingColumnId === null) {
9284
- this.groupingColumnIds.set([]);
9285
- }
9286
- if (!config.groupingColumnIds &&
9287
- typeof config.groupingColumnId === 'string' &&
9288
- this.canGroupColumn(config.groupingColumnId)) {
9289
- this.groupingColumnIds.set([config.groupingColumnId]);
9290
- }
9291
9282
  if (typeof config.showHeaderFooterShadow === 'boolean') {
9292
9283
  this.showHeaderFooterShadow.set(config.showHeaderFooterShadow);
9293
9284
  }