Skip to content

Commit 60d0fe4

Browse files
committed
chore(*): add hidden internal decorators
1 parent ce153ad commit 60d0fe4

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-search.component.ts

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ export class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
4646
private _addToCurrentFilter: FilterListItem;
4747
private destroy$ = new Subject<boolean>();
4848

49+
/**
50+
* @hidden @internal
51+
*/
4952
public get addToCurrentFilter(): FilterListItem {
5053
if (!this._addToCurrentFilter) {
5154
const addToCurrentFilterItem = {
@@ -86,6 +89,9 @@ export class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
8689
*/
8790
public searchValue: any;
8891

92+
/**
93+
* @hidden @internal
94+
*/
8995
public displayedListData: FilterListItem[];
9096

9197
/**
@@ -232,7 +238,6 @@ export class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
232238
}
233239
}
234240

235-
236241
/**
237242
* @hidden @internal
238243
*/
@@ -241,14 +246,19 @@ export class IgxExcelStyleSearchComponent implements AfterViewInit, OnDestroy {
241246
this.displayedListData && this.displayedListData.length === 0;
242247
}
243248

244-
249+
/**
250+
* @hidden @internal
251+
*/
245252
public onInputKeyDown(event): void {
246253
if (event.key === KEYS.ENTER) {
247254
event.preventDefault();
248255
this.applyFilter();
249256
}
250257
}
251258

259+
/**
260+
* @hidden @internal
261+
*/
252262
public filterListData(): void {
253263
if (!this.esf.listData || !this.esf.listData.length) {
254264
this.displayedListData = [];

0 commit comments

Comments
 (0)