@shival99/z-ui 2.0.56 → 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.56",
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",
@@ -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 };
@@ -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;