igniteui-angular 12.3.11 → 12.3.12

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.
@@ -625,6 +625,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
625
625
  protected _data: any[];
626
626
  protected _value: string;
627
627
  protected _groupKey: string;
628
+ protected _searchValue: string;
628
629
  protected _filteredData: any[];
629
630
  protected _displayKey: string;
630
631
  protected _remoteSelection: {};
@@ -635,7 +636,6 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
635
636
  protected _onChangeCallback: (_: any) => void;
636
637
  private _type;
637
638
  private _dataType;
638
- private _searchValue;
639
639
  private _itemHeight;
640
640
  private _itemsMaxHeight;
641
641
  private _overlaySettings;
@@ -63,10 +63,15 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
63
63
  /** @hidden @internal */
64
64
  composing: boolean;
65
65
  private _updateInput;
66
+ private _internalFilter;
66
67
  /** @hidden @internal */
67
68
  get filteredData(): any[] | null;
68
69
  /** @hidden @internal */
69
70
  set filteredData(val: any[] | null);
71
+ /** @hidden @internal */
72
+ get searchValue(): string;
73
+ set searchValue(val: string);
74
+ private get selectedItem();
70
75
  constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, _iconService: IgxIconService, platformUtil: PlatformUtil, _displayDensityOptions: IDisplayDensityOptions, _inputGroupType: IgxInputGroupType, _injector: Injector);
71
76
  /** @hidden @internal */
72
77
  onArrowDown(event: Event): void;
@@ -121,6 +126,9 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
121
126
  protected createDisplayText(newSelection: any[], oldSelection: any[]): any;
122
127
  private clearSelection;
123
128
  private clearOnBlur;
129
+ private isPartialMatch;
130
+ private getElementVal;
131
+ private clearAndClose;
124
132
  }
125
133
  export declare class IgxSimpleComboModule {
126
134
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular",
3
- "version": "12.3.11",
3
+ "version": "12.3.12",
4
4
  "description": "Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps",
5
5
  "author": "Infragistics",
6
6
  "license": "SEE LICENSE IN LICENSE",