@shival99/z-ui 2.0.14 → 2.0.15

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.14",
3
+ "version": "2.0.15",
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",
@@ -270,7 +270,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
270
270
 
271
271
  declare const zAutocompleteInputVariants: (props?: ({
272
272
  zSize?: "sm" | "default" | "lg" | null | undefined;
273
- zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
273
+ zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
274
274
  } & class_variance_authority_types.ClassProp) | undefined) => string;
275
275
  type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
276
276
  declare const zAutocompleteOptionVariants: (props?: ({
@@ -418,16 +418,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
418
418
 
419
419
  declare const zCalendarVariants: (props?: ({
420
420
  zSize?: "sm" | "default" | "lg" | null | undefined;
421
- zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
421
+ zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
422
422
  } & class_variance_authority_types.ClassProp) | undefined) => string;
423
423
  declare const zCalendarDayVariants: (props?: ({
424
- state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
424
+ state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
425
425
  } & class_variance_authority_types.ClassProp) | undefined) => string;
426
426
  declare const zCalendarMonthVariants: (props?: ({
427
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
427
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
428
428
  } & class_variance_authority_types.ClassProp) | undefined) => string;
429
429
  declare const zCalendarYearVariants: (props?: ({
430
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
430
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
431
431
  } & class_variance_authority_types.ClassProp) | undefined) => string;
432
432
 
433
433
  export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
@@ -320,7 +320,7 @@ declare const Z_EDITOR_DEFAULT_TOOLBAR: readonly ZEditorToolbarItem[];
320
320
 
321
321
  declare const zEditorVariants: (props?: ({
322
322
  zSize?: "sm" | "default" | "lg" | null | undefined;
323
- zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
323
+ zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
324
324
  zPlaceholderMode?: "firstLine" | "everyLine" | null | undefined;
325
325
  } & class_variance_authority_types.ClassProp) | undefined) => string;
326
326
  type ZEditorVariants = VariantProps<typeof zEditorVariants>;
@@ -315,7 +315,7 @@ declare class ZTagClassesPipe implements PipeTransform {
315
315
 
316
316
  declare const zSelectVariants: (props?: ({
317
317
  zSize?: "sm" | "default" | "lg" | null | undefined;
318
- zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
318
+ zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
319
319
  } & class_variance_authority_types.ClassProp) | undefined) => string;
320
320
  declare const zSelectTagVariants: (props?: ({
321
321
  zSize?: "sm" | "default" | "lg" | null | undefined;
@@ -1080,7 +1080,7 @@ declare class ZTableFilterComponent<T> {
1080
1080
  protected readonly filterBadgeCount: _angular_core.Signal<number>;
1081
1081
  protected readonly hasFilterValue: _angular_core.Signal<boolean>;
1082
1082
  protected readonly isActive: _angular_core.Signal<boolean>;
1083
- protected readonly draftSortValue: _angular_core.Signal<"asc" | "desc" | "none">;
1083
+ protected readonly draftSortValue: _angular_core.Signal<"none" | "asc" | "desc">;
1084
1084
  protected readonly rangeMinValue: _angular_core.Signal<any>;
1085
1085
  protected readonly rangeMaxValue: _angular_core.Signal<any>;
1086
1086
  protected readonly dateValue: _angular_core.Signal<Date | null>;
@@ -1148,7 +1148,7 @@ declare class ZTableActionsComponent<T = unknown> {
1148
1148
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
1149
1149
  readonly zRow: _angular_core.InputSignal<T>;
1150
1150
  readonly zRowId: _angular_core.InputSignal<string>;
1151
- readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
1151
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
1152
1152
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
1153
1153
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
1154
1154
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;