@shival99/z-ui 1.6.2 → 1.6.3
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.6.
|
|
3
|
+
"version": "1.6.3",
|
|
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",
|
|
@@ -630,7 +630,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
630
630
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
631
631
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
632
632
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
633
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
633
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
|
|
634
634
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
635
635
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
636
636
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|
|
@@ -660,7 +660,7 @@ declare class ZTableEditCellComponent<T = unknown> implements OnInit {
|
|
|
660
660
|
readonly zChange: _angular_core.OutputEmitterRef<ZTableEditCellChangeEvent<T>>;
|
|
661
661
|
private readonly _currentValue;
|
|
662
662
|
private readonly _valueChange$;
|
|
663
|
-
private
|
|
663
|
+
private _lastExternalValue;
|
|
664
664
|
private _pendingBlurValue;
|
|
665
665
|
private _hasPendingBlur;
|
|
666
666
|
private _inputControl;
|
|
@@ -684,6 +684,11 @@ declare class ZTableEditCellComponent<T = unknown> implements OnInit {
|
|
|
684
684
|
protected onSelectChange(newValue: unknown): void;
|
|
685
685
|
protected onDateChange(newValue: unknown): void;
|
|
686
686
|
protected onCheckboxChange(checked: boolean): void;
|
|
687
|
+
/**
|
|
688
|
+
* Handles immediate value changes (non-debounced).
|
|
689
|
+
* Used by checkbox, toggle, select, and date controls.
|
|
690
|
+
*/
|
|
691
|
+
private _handleImmediateChange;
|
|
687
692
|
private _emitChange;
|
|
688
693
|
ngOnInit(): void;
|
|
689
694
|
private _setupBlurWatcher;
|