integra-ng 21.1.0 → 21.1.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.
@@ -8442,10 +8442,10 @@ class ITable {
8442
8442
  // ===== COMPUTED LAYOUT HELPERS =====
8443
8443
  /**
8444
8444
  * Effective container height for the virtual scroll viewport.
8445
- * Falls back to '400px' when no height is provided.
8445
+ * Falls back to '100%' when no height is provided.
8446
8446
  * @internal
8447
8447
  */
8448
- effectiveHeight = computed(() => this.height || '400px', ...(ngDevMode ? [{ debugName: "effectiveHeight" }] : []));
8448
+ effectiveHeight = computed(() => this.height || '100%', ...(ngDevMode ? [{ debugName: "effectiveHeight" }] : []));
8449
8449
  /**
8450
8450
  * Total column span used for empty-state and detail expansion cells.
8451
8451
  * @internal