@shival99/z-ui 2.0.25 → 2.0.26

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.25",
3
+ "version": "2.0.26",
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",
@@ -190,6 +190,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
190
190
  private readonly _backupActivePresetKey;
191
191
  private readonly _backupShortDisplayPresetKey;
192
192
  private readonly _appliedViaOk;
193
+ private readonly _hasTypedDraft;
193
194
  private readonly _skipBlurHandler;
194
195
  private readonly _injector;
195
196
  private readonly _destroyRef;
@@ -311,6 +312,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
311
312
  protected onTriggerKeydown(event: KeyboardEvent): void;
312
313
  protected onInputChange(event: Event): void;
313
314
  private _getExpectedFormatLength;
315
+ private _preserveInputSelection;
314
316
  protected onStartInputChange(event: Event): void;
315
317
  protected onEndInputChange(event: Event): void;
316
318
  protected onStartInputEnter(event: Event): void;
@@ -364,6 +366,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
364
366
  private _updateRangeInputDisplay;
365
367
  private _isQuickSelectPresetDisabled;
366
368
  private _applyValue;
369
+ private _confirmTypedValue;
367
370
  private _getEmitValue;
368
371
  private _getValidationErrors;
369
372
  private _navigateByArrowKey;
@@ -372,9 +375,9 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
372
375
  private _buildTimeFormat;
373
376
  private _updateInputDisplay;
374
377
  private _clearDateValues;
375
- protected onInputEscape(): void;
376
- protected onStartInputEscape(): void;
377
- protected onEndInputEscape(): void;
378
+ protected onInputEscape(event: Event): void;
379
+ protected onStartInputEscape(event: Event): void;
380
+ protected onEndInputEscape(event: Event): void;
378
381
  private _cancelAndRestore;
379
382
  private _updateAllInputDisplays;
380
383
  private _emitControl;
@@ -417,8 +420,8 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
417
420
  }
418
421
 
419
422
  declare const zCalendarVariants: (props?: ({
420
- zSize?: "sm" | "default" | "lg" | null | undefined;
421
- zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
423
+ zSize?: "default" | "sm" | "lg" | null | undefined;
424
+ zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
422
425
  } & class_variance_authority_types.ClassProp) | undefined) => string;
423
426
  declare const zCalendarDayVariants: (props?: ({
424
427
  state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
@@ -1081,7 +1081,7 @@ declare class ZTableFilterComponent<T> {
1081
1081
  protected readonly filterBadgeCount: _angular_core.Signal<number>;
1082
1082
  protected readonly hasFilterValue: _angular_core.Signal<boolean>;
1083
1083
  protected readonly isActive: _angular_core.Signal<boolean>;
1084
- protected readonly draftSortValue: _angular_core.Signal<"none" | "asc" | "desc">;
1084
+ protected readonly draftSortValue: _angular_core.Signal<"asc" | "desc" | "none">;
1085
1085
  protected readonly rangeMinValue: _angular_core.Signal<any>;
1086
1086
  protected readonly rangeMaxValue: _angular_core.Signal<any>;
1087
1087
  protected readonly dateValue: _angular_core.Signal<Date | null>;