@shival99/z-ui 2.5.2 → 2.5.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/fesm2022/shival99-z-ui-components-z-autocomplete.mjs +16 -2
- package/fesm2022/shival99-z-ui-components-z-autocomplete.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-select.mjs +20 -2
- package/fesm2022/shival99-z-ui-components-z-select.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-autocomplete.d.ts +1 -0
- package/types/shival99-z-ui-components-z-select.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.3",
|
|
4
4
|
"description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 22, featuring 45+ customizable components with dark mode, accessibility, and enterprise-ready features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -179,6 +179,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
|
|
|
179
179
|
private _asyncRequestId;
|
|
180
180
|
private _lastFilteredOptionsLength;
|
|
181
181
|
private _shouldScrollActiveOption;
|
|
182
|
+
private _pendingServerSearchScrollReset;
|
|
182
183
|
/** Guards against focus+click both requesting an open on the same gesture, which doubled CD cycles. */
|
|
183
184
|
private _openRequested;
|
|
184
185
|
/** Stores input value before keyboard navigation for ESC revert */
|
|
@@ -213,6 +213,7 @@ declare class ZSelectComponent<T = unknown> implements OnInit, ControlValueAcces
|
|
|
213
213
|
protected readonly treeDirection: _angular_core.WritableSignal<"none" | "forward" | "back">;
|
|
214
214
|
protected readonly config: _angular_core.Signal<ZSelectConfig<T>>;
|
|
215
215
|
protected readonly hasAsyncOptions: _angular_core.Signal<boolean>;
|
|
216
|
+
protected readonly hasPaginatedOptions: _angular_core.Signal<boolean>;
|
|
216
217
|
protected readonly sourceOptions: _angular_core.Signal<ZSelectOption<T>[]>;
|
|
217
218
|
protected readonly asyncSelectedOptions: _angular_core.Signal<ZSelectOption<T>[]>;
|
|
218
219
|
protected readonly isLoading: _angular_core.Signal<boolean>;
|
|
@@ -276,6 +277,7 @@ declare class ZSelectComponent<T = unknown> implements OnInit, ControlValueAcces
|
|
|
276
277
|
private _onTouched;
|
|
277
278
|
private _ngControl;
|
|
278
279
|
private readonly _isNgModel;
|
|
280
|
+
private _pendingServerSearchScrollReset;
|
|
279
281
|
constructor();
|
|
280
282
|
ngOnInit(): void;
|
|
281
283
|
writeValue(value: T | T[] | null): void;
|