igniteui-angular 13.0.11 → 13.0.14
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/esm2020/lib/combo/combo.common.mjs +2 -2
- package/esm2020/lib/directives/scroll-inertia/scroll_inertia.directive.mjs +17 -11
- package/esm2020/lib/directives/text-selection/text-selection.directive.mjs +2 -2
- package/esm2020/lib/grids/filtering/excel-style/excel-style-search.component.mjs +2 -4
- package/esm2020/lib/grids/filtering/excel-style/grid.excel-style-filtering.component.mjs +2 -2
- package/esm2020/lib/grids/filtering/grid-filtering.service.mjs +16 -22
- package/esm2020/lib/grids/grid/grid.component.mjs +3 -3
- package/esm2020/lib/simple-combo/simple-combo.component.mjs +53 -9
- package/fesm2015/igniteui-angular.mjs +89 -47
- package/fesm2015/igniteui-angular.mjs.map +1 -1
- package/fesm2020/igniteui-angular.mjs +89 -47
- package/fesm2020/igniteui-angular.mjs.map +1 -1
- package/lib/combo/combo.common.d.ts +1 -1
- package/lib/core/styles/themes/schemas/dark/_input-group.scss +1 -1
- package/lib/grids/filtering/grid-filtering.service.d.ts +1 -1
- package/lib/simple-combo/simple-combo.component.d.ts +8 -0
- package/package.json +1 -1
- package/styles/igniteui-fluent-dark-excel-rtl.css +1 -1
- package/styles/igniteui-fluent-dark-excel.css +1 -1
- package/styles/igniteui-fluent-dark-word-rtl.css +1 -1
- package/styles/igniteui-fluent-dark-word.css +1 -1
- package/styles/maps/igniteui-fluent-dark-excel-rtl.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-excel.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word-rtl.css.map +1 -1
- package/styles/maps/igniteui-fluent-dark-word.css.map +1 -1
|
@@ -633,6 +633,7 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
633
633
|
protected _data: any[];
|
|
634
634
|
protected _value: string;
|
|
635
635
|
protected _groupKey: string;
|
|
636
|
+
protected _searchValue: string;
|
|
636
637
|
protected _filteredData: any[];
|
|
637
638
|
protected _displayKey: string;
|
|
638
639
|
protected _remoteSelection: {};
|
|
@@ -643,7 +644,6 @@ export declare abstract class IgxComboBaseDirective extends DisplayDensityBase i
|
|
|
643
644
|
protected _onChangeCallback: (_: any) => void;
|
|
644
645
|
private _type;
|
|
645
646
|
private _dataType;
|
|
646
|
-
private _searchValue;
|
|
647
647
|
private _itemHeight;
|
|
648
648
|
private _itemsMaxHeight;
|
|
649
649
|
private _overlaySettings;
|
|
@@ -31,8 +31,8 @@ $dark-input-group: $base-dark-input-group;
|
|
|
31
31
|
/// @requires $fluent-input-group
|
|
32
32
|
/// @requires $base-dark-input-group
|
|
33
33
|
$dark-fluent-input-group: extend(
|
|
34
|
-
$fluent-input-group,
|
|
35
34
|
$base-dark-input-group,
|
|
35
|
+
$fluent-input-group,
|
|
36
36
|
(
|
|
37
37
|
input-prefix-background: (
|
|
38
38
|
igx-color: ('grays', 100)
|
|
@@ -95,7 +95,7 @@ export declare class IgxFilteringService implements OnDestroy {
|
|
|
95
95
|
generateExpressionsList(expressions: IFilteringExpressionsTree | IFilteringExpression, operator: FilteringLogic, expressionsUIs: ExpressionUI[]): void;
|
|
96
96
|
isFilteringExpressionsTreeEmpty(expressionTree: IFilteringExpressionsTree): boolean;
|
|
97
97
|
private filter_internal;
|
|
98
|
-
/** Modifies the filteringState object to contain the newly added
|
|
98
|
+
/** Modifies the filteringState object to contain the newly added filtering conditions/expressions.
|
|
99
99
|
* If createNewTree is true, filteringState will not be modified (because it directly affects the grid.filteringExpressionsTree),
|
|
100
100
|
* but a new object is created and returned.
|
|
101
101
|
*/
|
|
@@ -76,10 +76,15 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
76
76
|
/** @hidden @internal */
|
|
77
77
|
composing: boolean;
|
|
78
78
|
private _updateInput;
|
|
79
|
+
private _internalFilter;
|
|
79
80
|
/** @hidden @internal */
|
|
80
81
|
get filteredData(): any[] | null;
|
|
81
82
|
/** @hidden @internal */
|
|
82
83
|
set filteredData(val: any[] | null);
|
|
84
|
+
/** @hidden @internal */
|
|
85
|
+
get searchValue(): string;
|
|
86
|
+
set searchValue(val: string);
|
|
87
|
+
private get selectedItem();
|
|
83
88
|
constructor(elementRef: ElementRef, cdr: ChangeDetectorRef, selectionService: IgxSelectionAPIService, comboAPI: IgxComboAPIService, _iconService: IgxIconService, platformUtil: PlatformUtil, _displayDensityOptions: IDisplayDensityOptions, _inputGroupType: IgxInputGroupType, _injector: Injector);
|
|
84
89
|
/** @hidden @internal */
|
|
85
90
|
onArrowDown(event: Event): void;
|
|
@@ -134,6 +139,9 @@ export declare class IgxSimpleComboComponent extends IgxComboBaseDirective imple
|
|
|
134
139
|
protected createDisplayText(newSelection: any[], oldSelection: any[]): any;
|
|
135
140
|
private clearSelection;
|
|
136
141
|
private clearOnBlur;
|
|
142
|
+
private isPartialMatch;
|
|
143
|
+
private getElementVal;
|
|
144
|
+
private clearAndClose;
|
|
137
145
|
static ɵfac: i0.ɵɵFactoryDeclaration<IgxSimpleComboComponent, [null, null, null, null, null, null, { optional: true; }, { optional: true; }, { optional: true; }]>;
|
|
138
146
|
static ɵcmp: i0.ɵɵComponentDeclaration<IgxSimpleComboComponent, "igx-simple-combo", never, {}, { "selectionChanging": "selectionChanging"; }, never, ["[igxLabel]", "igx-prefix", "igx-hint, [igxHint]", "igx-suffix"]>;
|
|
139
147
|
}
|
package/package.json
CHANGED