@ng-select/ng-select 13.0.2 → 13.0.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.
|
@@ -62,8 +62,8 @@ export declare class NgSelectComponent implements OnDestroy, OnChanges, OnInit,
|
|
|
62
62
|
searchable: boolean;
|
|
63
63
|
clearable: boolean;
|
|
64
64
|
isOpen?: boolean;
|
|
65
|
-
get items(): readonly any[] | null;
|
|
66
|
-
set items(value: readonly any[] | null);
|
|
65
|
+
get items(): readonly any[] | null | undefined;
|
|
66
|
+
set items(value: readonly any[] | null | undefined);
|
|
67
67
|
get compareWith(): CompareWithFn;
|
|
68
68
|
set compareWith(fn: CompareWithFn);
|
|
69
69
|
get clearSearchOnAdd(): boolean;
|