@coreui/angular-pro 5.5.16 → 5.5.18

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/index.d.ts CHANGED
@@ -198,6 +198,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
198
198
  writeValue(value: string): void;
199
199
  registerOnChange(fn: any): void;
200
200
  registerOnTouched(fn: any): void;
201
+ setDisabledState?(isDisabled: boolean): void;
201
202
  onChange: (value: any) => void;
202
203
  onTouched: () => void;
203
204
  static ngAcceptInputType_allowOnlyDefinedOptions: BooleanInput$1;
@@ -304,7 +305,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
304
305
  * Plain strings are converted to simple Option objects internally.
305
306
  * This is a required prop - the Angular autocomplete needs options to function.
306
307
  */
307
- readonly optionsInput: _angular_core.InputSignal<(string | IAutocompleteOption)[]>;
308
+ readonly optionsInput: _angular_core.InputSignal<AutocompleteOption[]>;
308
309
  readonly options: _angular_core.Signal<_coreui_angular_pro.IAutocompleteOptionNorm[]>;
309
310
  /**
310
311
  * Sets maxHeight of options list.
@@ -437,9 +438,10 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
437
438
  ngOnInit(): void;
438
439
  protected onBlur($event?: FocusEvent): void;
439
440
  readonly filteredOptions: _angular_core.Signal<_coreui_angular_pro.IAutocompleteOptionNorm[]>;
440
- protected handleSearch(value: string): void;
441
- protected handleClear(): void;
441
+ protected handleSearch(value: string | undefined): void;
442
+ handleClear(): void;
442
443
  protected handleSelect(option?: IAutocompleteOption | null): void;
444
+ protected dispatchInputEvent(value: string): void;
443
445
  protected handleDropdownHide(): void;
444
446
  protected handleDropdownShow(): void;
445
447
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteDirective, never>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.5.16",
3
+ "version": "5.5.18",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
6
6
  "homepage": "https://coreui.io/angular",
@@ -23,13 +23,13 @@
23
23
  "sideEffects": false,
24
24
  "peerDependencies": {
25
25
  "@angular/animations": "^20.3.0",
26
- "@angular/cdk": "^20.2.5",
26
+ "@angular/cdk": "^20.2.10",
27
27
  "@angular/common": "^20.3.0",
28
28
  "@angular/core": "^20.3.0",
29
29
  "@angular/forms": "^20.3.0",
30
30
  "@angular/router": "^20.3.0",
31
- "@coreui/coreui-pro": "^5.20.0",
32
- "@coreui/icons-angular": "~5.5.16",
31
+ "@coreui/coreui-pro": "^5.21.1",
32
+ "@coreui/icons-angular": "~5.5.18",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {