@shival99/z-ui 1.1.1 → 1.1.2
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": "1.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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",
|
|
@@ -77,7 +77,7 @@ declare class ZPopoverDirective implements OnInit, OnDestroy {
|
|
|
77
77
|
readonly zHideDelay: _angular_core.InputSignal<number>;
|
|
78
78
|
readonly zDisabled: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
79
79
|
readonly zOffset: _angular_core.InputSignal<number>;
|
|
80
|
-
readonly zPopoverWidth: _angular_core.InputSignal<number | "
|
|
80
|
+
readonly zPopoverWidth: _angular_core.InputSignal<number | "trigger" | "auto">;
|
|
81
81
|
readonly zManualClose: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
82
82
|
readonly zScrollClose: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
83
83
|
readonly zShowArrow: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
@@ -315,6 +315,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
315
315
|
private readonly _tanstackPagination;
|
|
316
316
|
protected readonly hasVerticalScroll: _angular_core.WritableSignal<boolean>;
|
|
317
317
|
protected readonly hasHorizontalScroll: _angular_core.WritableSignal<boolean>;
|
|
318
|
+
protected readonly lastRowTouchesBottom: _angular_core.WritableSignal<boolean>;
|
|
318
319
|
protected readonly showSettingsDrawer: _angular_core.WritableSignal<boolean>;
|
|
319
320
|
protected readonly showHorizontalBorder: _angular_core.WritableSignal<boolean>;
|
|
320
321
|
protected readonly showVerticalBorder: _angular_core.WritableSignal<boolean>;
|
|
@@ -374,6 +375,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
374
375
|
private _runAsyncStateUpdate;
|
|
375
376
|
private _emitFilterChangeDebounced;
|
|
376
377
|
private _checkVerticalScroll;
|
|
378
|
+
private _checkLastRowTouchesBottom;
|
|
377
379
|
private _checkHorizontalScroll;
|
|
378
380
|
private _updateScrollShadowState;
|
|
379
381
|
hasRightPinnedColumns(): boolean;
|