@shival99/z-ui 2.0.27 → 2.0.29

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.27",
3
+ "version": "2.0.29",
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",
@@ -158,6 +158,8 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
158
158
  readonly zEvent: _angular_core.OutputEmitterRef<ZEvent>;
159
159
  protected readonly triggerRef: _angular_core.Signal<ElementRef<HTMLDivElement> | undefined>;
160
160
  protected readonly inputRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
161
+ protected readonly startInputRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
162
+ protected readonly endInputRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
161
163
  protected readonly pickerId: string;
162
164
  protected readonly weekdayNames: _angular_core.Signal<string[]>;
163
165
  protected readonly monthNames: _angular_core.Signal<string[]>;
@@ -375,6 +377,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
375
377
  private _buildTimeFormat;
376
378
  private _updateInputDisplay;
377
379
  private _clearDateValues;
380
+ private _syncDOMInputs;
378
381
  protected onInputEscape(event: Event): void;
379
382
  protected onStartInputEscape(event: Event): void;
380
383
  protected onEndInputEscape(event: Event): void;
@@ -421,16 +424,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
421
424
 
422
425
  declare const zCalendarVariants: (props?: ({
423
426
  zSize?: "sm" | "default" | "lg" | null | undefined;
424
- zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
427
+ zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
425
428
  } & class_variance_authority_types.ClassProp) | undefined) => string;
426
429
  declare const zCalendarDayVariants: (props?: ({
427
- state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
430
+ state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
428
431
  } & class_variance_authority_types.ClassProp) | undefined) => string;
429
432
  declare const zCalendarMonthVariants: (props?: ({
430
- state?: "default" | "selected" | "disabled" | "current" | null | undefined;
433
+ state?: "default" | "current" | "disabled" | "selected" | null | undefined;
431
434
  } & class_variance_authority_types.ClassProp) | undefined) => string;
432
435
  declare const zCalendarYearVariants: (props?: ({
433
- state?: "default" | "selected" | "disabled" | "current" | null | undefined;
436
+ state?: "default" | "current" | "disabled" | "selected" | null | undefined;
434
437
  } & class_variance_authority_types.ClassProp) | undefined) => string;
435
438
 
436
439
  export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };