@shival99/z-ui 2.0.56 → 2.0.58
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.
|
|
3
|
+
"version": "2.0.58",
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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" | "
|
|
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
|
|
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;
|
|
@@ -1363,7 +1363,7 @@ declare class ZTableFilterComponent<T> {
|
|
|
1363
1363
|
protected readonly sortOptions: _angular_core.Signal<ZSelectOption<string>[]>;
|
|
1364
1364
|
protected readonly draftFilters: _angular_core.WritableSignal<ZTableDraftFilterCondition[]>;
|
|
1365
1365
|
protected readonly draftLegacyFilterValue: _angular_core.WritableSignal<unknown>;
|
|
1366
|
-
protected readonly draftSortState: _angular_core.WritableSignal<false | "
|
|
1366
|
+
protected readonly draftSortState: _angular_core.WritableSignal<false | "desc" | "asc">;
|
|
1367
1367
|
protected readonly columnFilterValue: _angular_core.Signal<unknown>;
|
|
1368
1368
|
protected readonly effectiveFilterValue: _angular_core.Signal<unknown>;
|
|
1369
1369
|
protected readonly sortState: _angular_core.Signal<false | _tanstack_angular_table.SortDirection>;
|
|
@@ -1385,7 +1385,7 @@ declare class ZTableFilterComponent<T> {
|
|
|
1385
1385
|
protected readonly filterBadgeCount: _angular_core.Signal<number>;
|
|
1386
1386
|
protected readonly hasFilterValue: _angular_core.Signal<boolean>;
|
|
1387
1387
|
protected readonly isActive: _angular_core.Signal<boolean>;
|
|
1388
|
-
protected readonly draftSortValue: _angular_core.Signal<"
|
|
1388
|
+
protected readonly draftSortValue: _angular_core.Signal<"none" | "desc" | "asc">;
|
|
1389
1389
|
protected readonly rangeMinValue: _angular_core.Signal<any>;
|
|
1390
1390
|
protected readonly rangeMaxValue: _angular_core.Signal<any>;
|
|
1391
1391
|
protected readonly dateValue: _angular_core.Signal<Date | null>;
|