@shival99/z-ui 2.0.38 → 2.0.39
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.39",
|
|
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",
|
|
@@ -791,7 +791,8 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
791
791
|
private _bulkBarTimer;
|
|
792
792
|
private readonly _activeColumnVisibilityPopover;
|
|
793
793
|
private _hasInitializedColumnPinning;
|
|
794
|
-
private
|
|
794
|
+
private _fitColumnScheduleId;
|
|
795
|
+
private _isFitColumnScheduled;
|
|
795
796
|
private _isApplyingFitColumnSizing;
|
|
796
797
|
/** Merged loading state from both zLoading input and config.loading */
|
|
797
798
|
protected readonly isLoading: _angular_core.Signal<boolean>;
|
|
@@ -1028,12 +1029,12 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
1028
1029
|
private _handleColumnSizingChange;
|
|
1029
1030
|
private _syncColumnBaseSizing;
|
|
1030
1031
|
private _scheduleFitColumnWidths;
|
|
1031
|
-
private
|
|
1032
|
+
private _cancelFitColumnSchedule;
|
|
1032
1033
|
private _applyFitColumnWidths;
|
|
1033
1034
|
private _setColumnSizingFromFit;
|
|
1034
1035
|
private _getColumnBaseSize;
|
|
1035
1036
|
private _isSameColumnSizing;
|
|
1036
|
-
private
|
|
1037
|
+
private _reconcileColumnSizing;
|
|
1037
1038
|
private _checkHorizontalScroll;
|
|
1038
1039
|
private _updateScrollShadowState;
|
|
1039
1040
|
hasRightPinnedColumns(): boolean;
|
|
@@ -1138,7 +1139,7 @@ declare class ZTableFilterComponent<T> {
|
|
|
1138
1139
|
protected readonly filterBadgeCount: _angular_core.Signal<number>;
|
|
1139
1140
|
protected readonly hasFilterValue: _angular_core.Signal<boolean>;
|
|
1140
1141
|
protected readonly isActive: _angular_core.Signal<boolean>;
|
|
1141
|
-
protected readonly draftSortValue: _angular_core.Signal<"
|
|
1142
|
+
protected readonly draftSortValue: _angular_core.Signal<"asc" | "desc" | "none">;
|
|
1142
1143
|
protected readonly rangeMinValue: _angular_core.Signal<any>;
|
|
1143
1144
|
protected readonly rangeMaxValue: _angular_core.Signal<any>;
|
|
1144
1145
|
protected readonly dateValue: _angular_core.Signal<Date | null>;
|
|
@@ -1206,7 +1207,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
1206
1207
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
1207
1208
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
1208
1209
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
1209
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
1210
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
|
|
1210
1211
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
1211
1212
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
1212
1213
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|