Skip to content

Commit ca373b1

Browse files
MKirovaMKirova
authored andcommitted
chore(*): Fixing tests.
1 parent adbffe2 commit ca373b1

File tree

1 file changed

+25
-22
lines changed

1 file changed

+25
-22
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.component.ts

Lines changed: 25 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -265,31 +265,9 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
265265
private _hostWidth;
266266

267267

268-
/**
269-
* The custom template, if any, that should be used when rendering a row expand indicator.
270-
*/
271-
@ContentChild(IgxRowExpandedIndicatorDirective, { read: TemplateRef, static: false })
272-
public rowExpandedIndicatorTemplate: TemplateRef<any> = null;
273268

274-
/**
275-
* The custom template, if any, that should be used when rendering a row collapse indicator.
276-
*/
277-
@ContentChild(IgxRowCollapsedIndicatorDirective, { read: TemplateRef, static: false })
278-
public rowCollapsedIndicatorTemplate: TemplateRef<any> = null;
279269

280270

281-
/**
282-
* The custom template, if any, that should be used when rendering a header expand indicator.
283-
*/
284-
@ContentChild(IgxHeaderExpandIndicatorDirective, { read: TemplateRef, static: false })
285-
public headerExpandIndicatorTemplate: TemplateRef<any> = null;
286-
287-
/**
288-
* The custom template, if any, that should be used when rendering a header collapse indicator.
289-
*/
290-
@ContentChild(IgxHeaderCollapseIndicatorDirective, { read: TemplateRef, static: false })
291-
public headerCollapseIndicatorTemplate: TemplateRef<any> = null;
292-
293271
/**
294272
* @hidden
295273
*/
@@ -1939,6 +1917,31 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
19391917
@ContentChild(IgxRowEditActionsDirective, { read: TemplateRef, static: false })
19401918
public rowEditActions: TemplateRef<any>;
19411919

1920+
1921+
/**
1922+
* The custom template, if any, that should be used when rendering a row expand indicator.
1923+
*/
1924+
@ContentChild(IgxRowExpandedIndicatorDirective, { read: TemplateRef, static: false })
1925+
public rowExpandedIndicatorTemplate: TemplateRef<any> = null;
1926+
1927+
/**
1928+
* The custom template, if any, that should be used when rendering a row collapse indicator.
1929+
*/
1930+
@ContentChild(IgxRowCollapsedIndicatorDirective, { read: TemplateRef, static: false })
1931+
public rowCollapsedIndicatorTemplate: TemplateRef<any> = null;
1932+
1933+
/**
1934+
* The custom template, if any, that should be used when rendering a header expand indicator.
1935+
*/
1936+
@ContentChild(IgxHeaderExpandIndicatorDirective, { read: TemplateRef, static: false })
1937+
public headerExpandIndicatorTemplate: TemplateRef<any> = null;
1938+
1939+
/**
1940+
* The custom template, if any, that should be used when rendering a header collapse indicator.
1941+
*/
1942+
@ContentChild(IgxHeaderCollapseIndicatorDirective, { read: TemplateRef, static: false })
1943+
public headerCollapseIndicatorTemplate: TemplateRef<any> = null;
1944+
19421945
/**
19431946
* @hidden
19441947
*/

0 commit comments

Comments
 (0)