@shival99/z-ui 2.0.55 → 2.0.57

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.55",
3
+ "version": "2.0.57",
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",
@@ -274,7 +274,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
274
274
 
275
275
  declare const zAutocompleteInputVariants: (props?: ({
276
276
  zSize?: "sm" | "default" | "lg" | null | undefined;
277
- zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
277
+ zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
278
278
  } & class_variance_authority_types.ClassProp) | undefined) => string;
279
279
  type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
280
280
  declare const zAutocompleteOptionVariants: (props?: ({
@@ -429,16 +429,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
429
429
 
430
430
  declare const zCalendarVariants: (props?: ({
431
431
  zSize?: "sm" | "default" | "lg" | null | undefined;
432
- zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
432
+ zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
433
433
  } & class_variance_authority_types.ClassProp) | undefined) => string;
434
434
  declare const zCalendarDayVariants: (props?: ({
435
- state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
435
+ state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
436
436
  } & class_variance_authority_types.ClassProp) | undefined) => string;
437
437
  declare const zCalendarMonthVariants: (props?: ({
438
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
438
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
439
439
  } & class_variance_authority_types.ClassProp) | undefined) => string;
440
440
  declare const zCalendarYearVariants: (props?: ({
441
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
441
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
442
442
  } & class_variance_authority_types.ClassProp) | undefined) => string;
443
443
 
444
444
  export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
@@ -328,7 +328,7 @@ declare const Z_EDITOR_DEFAULT_TOOLBAR: readonly ZEditorToolbarItem[];
328
328
 
329
329
  declare const zEditorVariants: (props?: ({
330
330
  zSize?: "sm" | "default" | "lg" | null | undefined;
331
- zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
331
+ zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
332
332
  zPlaceholderMode?: "firstLine" | "everyLine" | null | undefined;
333
333
  } & class_variance_authority_types.ClassProp) | undefined) => string;
334
334
  type ZEditorVariants = VariantProps<typeof zEditorVariants>;
@@ -323,7 +323,7 @@ declare class ZTagClassesPipe implements PipeTransform {
323
323
 
324
324
  declare const zSelectVariants: (props?: ({
325
325
  zSize?: "sm" | "default" | "lg" | null | undefined;
326
- zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
326
+ zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
327
327
  } & class_variance_authority_types.ClassProp) | undefined) => string;
328
328
  declare const zSelectTagVariants: (props?: ({
329
329
  zSize?: "sm" | "default" | "lg" | null | undefined;
@@ -814,7 +814,7 @@ interface ZTableConfig<T> {
814
814
  search?: ZTableSearchConfig | boolean;
815
815
  /** Floating bulk action bar shown when rows are selected */
816
816
  bulkAction?: ZTableBulkActionConfig<T> | boolean;
817
- /** Bật chọn cell/range và copy giống spreadsheet. Mặc định bật. */
817
+ /** Bật chọn cell/range và copy giống spreadsheet. Mặc định tắt. */
818
818
  cellSelection?: ZTableCellSelectionConfig<T>;
819
819
  /** Bật menu chuột phải để chèn dòng khi bảng có cell editContent. */
820
820
  enableContentRowInsert?: boolean;
@@ -1453,7 +1453,7 @@ declare class ZTableActionsComponent<T = unknown> {
1453
1453
  readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
1454
1454
  readonly zRow: _angular_core.InputSignal<T>;
1455
1455
  readonly zRowId: _angular_core.InputSignal<string>;
1456
- readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
1456
+ readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
1457
1457
  readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
1458
1458
  protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
1459
1459
  protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;