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.
- package/bundles/igniteui-angular.umd.js +62 -11
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo.common.js +2 -2
- package/esm2015/lib/directives/text-selection/text-selection.directive.js +2 -2
- package/esm2015/lib/simple-combo/simple-combo.component.js +53 -9
- package/fesm2015/igniteui-angular.js +54 -10
- package/fesm2015/igniteui-angular.js.map +1 -1
- package/igniteui-angular.metadata.json +1 -1
- package/lib/combo/combo.common.d.ts +1 -1
- package/lib/simple-combo/simple-combo.component.d.ts +8 -0
- package/package.json +1 -1
|
@@ -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