cps-ui-kit 21.20.0 → 21.21.0

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": "cps-ui-kit",
3
- "version": "21.20.0",
3
+ "version": "21.21.0",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^21.2.6",
6
6
  "@angular/core": "^21.2.6",
@@ -646,6 +646,7 @@ declare class CpsAutocompleteComponent implements ControlValueAccessor, OnInit,
646
646
  cvtWidth: string;
647
647
  isOpened: boolean;
648
648
  isActive: boolean;
649
+ isKeyboardFocused: boolean;
649
650
  inputText: string;
650
651
  inputTextDebounced: string;
651
652
  filteredOptions: any[];
@@ -664,6 +665,7 @@ declare class CpsAutocompleteComponent implements ControlValueAccessor, OnInit,
664
665
  private readonly _cpsRootFontSizeService;
665
666
  private _inputChangeSubject$;
666
667
  private _destroy$;
668
+ private _mouseActivated;
667
669
  private _options;
668
670
  private _optionIds;
669
671
  constructor(_control: NgControl, cdRef: ChangeDetectorRef, _labelByValue: LabelByValuePipe);
@@ -685,7 +687,7 @@ declare class CpsAutocompleteComponent implements ControlValueAccessor, OnInit,
685
687
  onBlur(): void;
686
688
  onFocus(): void;
687
689
  onBeforeOptionsHidden(reason: CpsMenuHideReason): void;
688
- onBoxClick(): void;
690
+ onBoxClick(fromKeyboard?: boolean): void;
689
691
  onContainerKeyDown(event: any): void;
690
692
  onInputKeyDown(event: any): void;
691
693
  onChevronClick(event: any): void;