@shival99/z-ui 2.5.0 → 2.5.2

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.5.0",
3
+ "version": "2.5.2",
4
4
  "description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 22, featuring 45+ customizable components with dark mode, accessibility, and enterprise-ready features.",
5
5
  "keywords": [
6
6
  "angular",
@@ -282,7 +282,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
282
282
 
283
283
  declare const zAutocompleteInputVariants: (props?: ({
284
284
  zSize?: "sm" | "default" | "lg" | null | undefined;
285
- zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
285
+ zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
286
286
  } & class_variance_authority_types.ClassProp) | undefined) => string;
287
287
  type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
288
288
  declare const zAutocompleteOptionVariants: (props?: ({
@@ -435,16 +435,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
435
435
 
436
436
  declare const zCalendarVariants: (props?: ({
437
437
  zSize?: "sm" | "default" | "lg" | null | undefined;
438
- zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
438
+ zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
439
439
  } & class_variance_authority_types.ClassProp) | undefined) => string;
440
440
  declare const zCalendarDayVariants: (props?: ({
441
- state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
441
+ state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
442
442
  } & class_variance_authority_types.ClassProp) | undefined) => string;
443
443
  declare const zCalendarMonthVariants: (props?: ({
444
- state?: "default" | "selected" | "disabled" | "current" | null | undefined;
444
+ state?: "default" | "current" | "disabled" | "selected" | null | undefined;
445
445
  } & class_variance_authority_types.ClassProp) | undefined) => string;
446
446
  declare const zCalendarYearVariants: (props?: ({
447
- state?: "default" | "selected" | "disabled" | "current" | null | undefined;
447
+ state?: "default" | "current" | "disabled" | "selected" | null | undefined;
448
448
  } & class_variance_authority_types.ClassProp) | undefined) => string;
449
449
 
450
450
  export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
@@ -258,7 +258,7 @@ declare class ZSelectComponent<T = unknown> implements OnInit, ControlValueAcces
258
258
  protected readonly isEmptyData: _angular_core.Signal<boolean>;
259
259
  protected readonly isNoSearchResults: _angular_core.Signal<boolean>;
260
260
  protected readonly optionsMaxHeight: _angular_core.Signal<number>;
261
- protected readonly currentStatus: _angular_core.Signal<"default" | "open" | "error" | "disabled" | "readonly">;
261
+ protected readonly currentStatus: _angular_core.Signal<"default" | "disabled" | "readonly" | "open" | "error">;
262
262
  private readonly _shouldShowValidation;
263
263
  protected readonly hasError: _angular_core.Signal<boolean>;
264
264
  protected readonly errorMessage: _angular_core.Signal<string>;
@@ -369,7 +369,7 @@ declare const TAG_COLORS: ZSelectTagColor[];
369
369
  declare const zSelectVariants: (props?: ({
370
370
  zVariant?: "default" | "ghost" | null | undefined;
371
371
  zSize?: "sm" | "default" | "lg" | null | undefined;
372
- zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
372
+ zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
373
373
  } & class_variance_authority_types.ClassProp) | undefined) => string;
374
374
  declare const zSelectTagVariants: (props?: ({
375
375
  zSize?: "sm" | "default" | "lg" | null | undefined;
@@ -2168,7 +2168,7 @@ declare class ZTableFilterComponent<T> {
2168
2168
  protected readonly filterBadgeCount: _angular_core.Signal<number>;
2169
2169
  protected readonly hasFilterValue: _angular_core.Signal<boolean>;
2170
2170
  protected readonly isActive: _angular_core.Signal<boolean>;
2171
- protected readonly draftSortValue: _angular_core.Signal<"none" | "asc" | "desc">;
2171
+ protected readonly draftSortValue: _angular_core.Signal<"asc" | "desc" | "none">;
2172
2172
  protected readonly rangeMinValue: _angular_core.Signal<any>;
2173
2173
  protected readonly rangeMaxValue: _angular_core.Signal<any>;
2174
2174
  protected readonly dateValue: _angular_core.Signal<Date | null>;
@@ -2240,7 +2240,7 @@ declare class ZTableActionsComponent<T = unknown> {
2240
2240
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
2241
2241
  readonly zRow: _angular_core.InputSignal<T>;
2242
2242
  readonly zRowId: _angular_core.InputSignal<string>;
2243
- readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
2243
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
2244
2244
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
2245
2245
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
2246
2246
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;