@shival99/z-ui 2.0.77 → 2.0.79
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.79",
|
|
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 };
|
|
@@ -1315,6 +1315,9 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
1315
1315
|
protected readonly showBulkBar: _angular_core.Signal<boolean>;
|
|
1316
1316
|
protected readonly bulkBarPositions: ConnectedPosition[];
|
|
1317
1317
|
private readonly _bulkBarExitDuration;
|
|
1318
|
+
/** Stable identity key per virtual index (group/row id, not array index) so cached measured
|
|
1319
|
+
* heights follow row identity — tránh co giật chiều cao khi scroll nhanh do index slot bị tái dùng. */
|
|
1320
|
+
private readonly _virtualItemKeys;
|
|
1318
1321
|
/** Virtualizer instance — operates on groups rather than individual rows */
|
|
1319
1322
|
protected readonly virtualizer: _shival99_angular_virtual.AngularVirtualizer<HTMLDivElement, Element>;
|
|
1320
1323
|
private readonly _measureVirtualItems;
|
|
@@ -1614,7 +1617,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
1614
1617
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
1615
1618
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
1616
1619
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
1617
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
1620
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
|
|
1618
1621
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
1619
1622
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
1620
1623
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|