igniteui-angular 12.3.9 → 12.3.13
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 +117 -41
- package/bundles/igniteui-angular.umd.js.map +1 -1
- package/esm2015/lib/combo/combo-item.component.js +2 -2
- package/esm2015/lib/combo/combo.common.js +2 -2
- package/esm2015/lib/directives/text-selection/text-selection.directive.js +2 -2
- package/esm2015/lib/grids/filtering/excel-style/excel-style-search.component.js +2 -4
- package/esm2015/lib/grids/filtering/excel-style/grid.excel-style-filtering.component.js +2 -2
- package/esm2015/lib/grids/filtering/grid-filtering.service.js +16 -22
- package/esm2015/lib/grids/grid/grid.component.js +2 -2
- package/esm2015/lib/grids/grid-base.directive.js +35 -2
- package/esm2015/lib/grids/hierarchical-grid/hierarchical-grid.component.js +2 -2
- package/esm2015/lib/grids/tree-grid/tree-grid.component.js +2 -2
- package/esm2015/lib/simple-combo/simple-combo.component.js +53 -9
- package/fesm2015/igniteui-angular.js +109 -40
- 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/grids/filtering/grid-filtering.service.d.ts +1 -1
- package/lib/grids/grid-base.directive.d.ts +27 -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;
|
|
@@ -115,7 +115,7 @@ export declare class IgxFilteringService implements OnDestroy {
|
|
|
115
115
|
generateExpressionsList(expressions: IFilteringExpressionsTree | IFilteringExpression, operator: FilteringLogic, expressionsUIs: ExpressionUI[]): void;
|
|
116
116
|
isFilteringExpressionsTreeEmpty(expressionTree: IFilteringExpressionsTree): boolean;
|
|
117
117
|
private filter_internal;
|
|
118
|
-
/** Modifies the filteringState object to contain the newly added
|
|
118
|
+
/** Modifies the filteringState object to contain the newly added filtering conditions/expressions.
|
|
119
119
|
* If createNewTree is true, filteringState will not be modified (because it directly affects the grid.filteringExpressionsTree),
|
|
120
120
|
* but a new object is created and returned.
|
|
121
121
|
*/
|
|
@@ -6,7 +6,7 @@ import { PlatformUtil } from '../core/utils';
|
|
|
6
6
|
import { FilteringLogic } from '../data-operations/filtering-expression.interface';
|
|
7
7
|
import { IGroupByRecord } from '../data-operations/groupby-record.interface';
|
|
8
8
|
import { ISortingExpression } from '../data-operations/sorting-expression.interface';
|
|
9
|
-
import { IgxGridForOfDirective } from '../directives/for-of/for_of.directive';
|
|
9
|
+
import { IForOfDataChangingEventArgs, IgxGridForOfDirective } from '../directives/for-of/for_of.directive';
|
|
10
10
|
import { IgxOverlayService, OverlaySettings, StateUpdateEvent } from '../services/public_api';
|
|
11
11
|
import { GridBaseAPIService } from './api.service';
|
|
12
12
|
import { ISummaryExpression } from './summaries/grid-summary';
|
|
@@ -780,6 +780,24 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
780
780
|
* @hidden @internal
|
|
781
781
|
*/
|
|
782
782
|
localeChange: EventEmitter<boolean>;
|
|
783
|
+
/**
|
|
784
|
+
* Emitted before the grid's data view is changed because of a data operation, rebinding, etc.
|
|
785
|
+
*
|
|
786
|
+
* @example
|
|
787
|
+
* ```typescript
|
|
788
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanging)='handleDataChangingEvent()'></igx-grid>
|
|
789
|
+
* ```
|
|
790
|
+
*/
|
|
791
|
+
dataChanging: EventEmitter<IForOfDataChangingEventArgs>;
|
|
792
|
+
/**
|
|
793
|
+
* Emitted after the grid's data view is changed because of a data operation, rebinding, etc.
|
|
794
|
+
*
|
|
795
|
+
* @example
|
|
796
|
+
* ```typescript
|
|
797
|
+
* <igx-grid #grid [data]="localData" [autoGenerate]="true" (dataChanged)='handleDataChangedEvent()'></igx-grid>
|
|
798
|
+
* ```
|
|
799
|
+
*/
|
|
800
|
+
dataChanged: EventEmitter<any>;
|
|
783
801
|
/**
|
|
784
802
|
* @hidden @internal
|
|
785
803
|
*/
|
|
@@ -2163,6 +2181,14 @@ export declare abstract class IgxGridBaseDirective extends DisplayDensityBase im
|
|
|
2163
2181
|
* @hidden
|
|
2164
2182
|
*/
|
|
2165
2183
|
ngAfterContentInit(): void;
|
|
2184
|
+
/**
|
|
2185
|
+
* @hidden @internal
|
|
2186
|
+
*/
|
|
2187
|
+
dataRebinding(event: IForOfDataChangingEventArgs): void;
|
|
2188
|
+
/**
|
|
2189
|
+
* @hidden @internal
|
|
2190
|
+
*/
|
|
2191
|
+
dataRebound(event: any): void;
|
|
2166
2192
|
/** @hidden @internal */
|
|
2167
2193
|
setUpPaginator(): void;
|
|
2168
2194
|
/**
|
|
@@ -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