@shival99/z-ui 1.3.27 → 1.3.28

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": "1.3.27",
3
+ "version": "1.3.28",
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",
@@ -57,7 +57,10 @@
57
57
  "rxjs": ">=7.8.0",
58
58
  "tailwind-merge": ">=3.0.0",
59
59
  "@angular/platform-browser": "~21.0.6",
60
- "quill-resize-image": "^1.0.0"
60
+ "quill-resize-image": "^1.0.0",
61
+ "exceljs": "^4.4.0",
62
+ "file-saver": "^2.0.5",
63
+ "xlsx": "^0.18.5"
61
64
  },
62
65
  "peerDependenciesMeta": {
63
66
  "@ngx-translate/core": {
@@ -190,6 +190,14 @@ interface ZTableSearchChangeEvent {
190
190
  sorting: SortingState;
191
191
  pagination: PaginationState;
192
192
  }
193
+ interface ZActionTooltipState {
194
+ content: ZTooltipContent;
195
+ alwaysShow: boolean;
196
+ position?: string;
197
+ arrow?: boolean;
198
+ offset?: number;
199
+ maxWidth?: string;
200
+ }
193
201
  interface ZTableActionItem<T = unknown> {
194
202
  key: string;
195
203
  label?: string;
@@ -554,26 +562,18 @@ declare class ZTableIconTextComponent {
554
562
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTableIconTextComponent, "z-table-icon-text", never, { "zText": { "alias": "zText"; "required": false; "isSignal": true; }; "zTooltip": { "alias": "zTooltip"; "required": false; "isSignal": true; }; "zTriggerElement": { "alias": "zTriggerElement"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
555
563
  }
556
564
 
557
- interface ActionTooltipState {
558
- content: ZTooltipContent;
559
- alwaysShow: boolean;
560
- position?: string;
561
- arrow?: boolean;
562
- offset?: number;
563
- maxWidth?: string;
564
- }
565
565
  declare class ZTableActionsComponent<T = unknown> {
566
566
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
567
567
  readonly zRow: _angular_core.InputSignal<T>;
568
568
  readonly zRowId: _angular_core.InputSignal<string>;
569
- readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "xs" | "sm" | "lg" | "xl" | null | undefined>;
569
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "xs" | "lg" | "xl" | null | undefined>;
570
570
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
571
571
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
572
572
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
573
573
  protected readonly actionStates: _angular_core.Signal<Record<string, {
574
574
  visible: boolean;
575
575
  disabled: boolean;
576
- tooltipState: ActionTooltipState;
576
+ tooltipState: ZActionTooltipState;
577
577
  }>>;
578
578
  protected readonly dropdownItems: _angular_core.Signal<ZDropdownMenuItem[]>;
579
579
  private _getTooltipState;