@shival99/z-ui 2.0.81 → 2.0.82
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": "@shival99/z-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.82",
|
|
4
4
|
"description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 20+, featuring 40+ customizable components with dark mode, accessibility, and enterprise-ready features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -1315,19 +1315,14 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
1315
1315
|
protected readonly showBulkBar: _angular_core.Signal<boolean>;
|
|
1316
1316
|
protected readonly bulkBarPositions: ConnectedPosition[];
|
|
1317
1317
|
private readonly _bulkBarExitDuration;
|
|
1318
|
-
/** Stable identity key per virtual index (row/group id, not array index)
|
|
1319
|
-
* heights follow row identity — prevents height jitter when scrolling fast. */
|
|
1318
|
+
/** Stable identity key per virtual index (row/group id, not array index) — prevents height jitter on fast scroll. */
|
|
1320
1319
|
private readonly _virtualItemKeys;
|
|
1321
|
-
/** Estimate height learned from
|
|
1322
|
-
* until a row is measured. Lets not-yet-measured rows estimate close to reality, reducing layout
|
|
1323
|
-
* shift. Plain field (non-reactive) so updating it won't rebuild the virtualizer. */
|
|
1320
|
+
/** Estimate height learned from rendered rows (dynamicSize); falls back to `virtual.size`. Reduces layout shift. */
|
|
1324
1321
|
private _dynamicEstimateHeight;
|
|
1325
1322
|
/** Virtualizer instance — operates on groups rather than individual rows */
|
|
1326
1323
|
protected readonly virtualizer: _shival99_angular_virtual.AngularVirtualizer<HTMLDivElement, Element>;
|
|
1327
1324
|
private readonly _measureVirtualItems;
|
|
1328
|
-
/** Learn estimate height from
|
|
1329
|
-
* cache (no DOM reads / reflow). Locks ONCE so the estimate doesn't jump every scroll frame; each
|
|
1330
|
-
* row is still measured exactly on render. Re-flows via virtualizer.measure(). */
|
|
1325
|
+
/** Learn estimate height from measured rows (reads the measurement cache, no reflow). Locks once. */
|
|
1331
1326
|
private _learnDynamicEstimate;
|
|
1332
1327
|
private readonly _rowDragAutoScroll;
|
|
1333
1328
|
private readonly _rowDragCellSelectionCleanup;
|