@shival99/z-ui 2.0.89 → 2.0.90

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.89",
3
+ "version": "2.0.90",
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",
@@ -1298,18 +1298,8 @@ declare class ZTableComponent<T> implements AfterViewInit {
1298
1298
  protected readonly shouldFooterShowShadow: _angular_core.Signal<boolean>;
1299
1299
  protected readonly tbodyContainerWidth: _angular_core.WritableSignal<number>;
1300
1300
  protected readonly tbodyContainerHeight: _angular_core.WritableSignal<number>;
1301
- /** DOM-measured widths of all visible columns, keyed by column id. Updated after each render cycle. */
1302
- protected readonly _colDomWidthMap: _angular_core.WritableSignal<Record<string, number>>;
1303
- /** CSS vars for pinned column offsets: --pin-left-{id} and --pin-right-{id}. Set on <table> via columnSizeVars. */
1304
- protected readonly columnPinningVars: _angular_core.Signal<Record<string, string>>;
1301
+ protected readonly colDomWidthMap: _angular_core.WritableSignal<Record<string, number>>;
1305
1302
  private readonly _colDomWidthUpdater;
1306
- /**
1307
- * Returns a fixed pixel width for a column when it can be determined without DOM measurement:
1308
- * - `size === minSize === maxSize` (all equal, all set) → fixed
1309
- * - `config.width` is a non-percent px string → fixed
1310
- * Returns null when the column width is flexible and must be measured from DOM.
1311
- */
1312
- private _resolveFixedColumnWidth;
1313
1303
  protected readonly skeletonRowHeight: _angular_core.WritableSignal<number>;
1314
1304
  protected readonly skeletonRowCount: _angular_core.Signal<number>;
1315
1305
  protected readonly skeletonRows: _angular_core.Signal<number[]>;
@@ -1317,9 +1307,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
1317
1307
  protected readonly dynamicGroupHeights: _angular_core.Signal<any[]>;
1318
1308
  protected readonly columnSizing: _angular_core.Signal<ColumnSizingState>;
1319
1309
  protected readonly columnSizingInfo: _angular_core.Signal<_tanstack_angular_table.ColumnSizingInfoState>;
1320
- protected readonly columnSizeVars: _angular_core.Signal<{
1321
- [x: string]: string | number;
1322
- }>;
1310
+ protected readonly columnSizeVars: _angular_core.Signal<Record<string, number>>;
1323
1311
  protected readonly table: ReturnType<typeof createAngularTable<T>>;
1324
1312
  private readonly _virtualGroupCount;
1325
1313
  protected readonly selectedRowIds: _angular_core.Signal<string[]>;
@@ -1635,7 +1623,7 @@ declare class ZTableActionsComponent<T = unknown> {
1635
1623
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
1636
1624
  readonly zRow: _angular_core.InputSignal<T>;
1637
1625
  readonly zRowId: _angular_core.InputSignal<string>;
1638
- readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
1626
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
1639
1627
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
1640
1628
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
1641
1629
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;