@shival99/z-ui 2.0.65 → 2.0.66

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.65",
3
+ "version": "2.0.66",
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",
@@ -918,6 +918,16 @@ interface ZTableDataRowItem<T> {
918
918
  isGroupChild?: boolean;
919
919
  }
920
920
  type ZTableGroupedRowItem<T> = ZTableGroupRowItem | ZTableDataRowItem<T>;
921
+ interface ZVirtualFlatGroupHeader {
922
+ type: 'group-header';
923
+ groupItem: ZTableGroupRowItem;
924
+ }
925
+ interface ZVirtualFlatData<T> {
926
+ type: 'data';
927
+ rows: Row<T>[];
928
+ isGroupChild: boolean;
929
+ }
930
+ type ZVirtualFlatItem<T> = ZVirtualFlatGroupHeader | ZVirtualFlatData<T>;
921
931
  type ZTableResolvedCellSelectionOptions<T> = Required<Pick<ZTableCellSelectionOptions<T>, 'enabled' | 'range' | 'contextMenu' | 'copyWithHeaders'>> & Pick<ZTableCellSelectionOptions<T>, 'disabledColumnIds' | 'isCellDisabled'>;
922
932
  declare class ZTableComponent<T> implements AfterViewInit {
923
933
  private static _dragInstanceCount;
@@ -1122,6 +1132,9 @@ declare class ZTableComponent<T> implements AfterViewInit {
1122
1132
  protected readonly activeGroupingColumnId: _angular_core.Signal<string | null>;
1123
1133
  protected readonly groupableColumnMap: _angular_core.Signal<Record<string, boolean>>;
1124
1134
  protected readonly groupedCenterRowItems: _angular_core.Signal<ZTableGroupedRowItem<T>[]>;
1135
+ protected readonly virtualGroupedFlatItems: _angular_core.Signal<ZVirtualFlatItem<T>[]>;
1136
+ protected _getVirtualGroupHeader(item: ZVirtualFlatItem<T> | undefined): ZTableGroupRowItem | null;
1137
+ protected _isVirtualGroupChild(item: ZVirtualFlatItem<T> | undefined): boolean;
1125
1138
  protected readonly searchConfig: _angular_core.Signal<{
1126
1139
  enabled: boolean;
1127
1140
  placeholder: string;
@@ -1501,7 +1514,7 @@ declare class ZTableActionsComponent<T = unknown> {
1501
1514
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
1502
1515
  readonly zRow: _angular_core.InputSignal<T>;
1503
1516
  readonly zRowId: _angular_core.InputSignal<string>;
1504
- readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
1517
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
1505
1518
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
1506
1519
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
1507
1520
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;