Skip to content

Commit 13db44b

Browse files
authored
Merge branch 'master' into tzhelev/fix-5577-8.2.x
2 parents 6090c5e + 57bce78 commit 13db44b

File tree

16 files changed

+40
-40
lines changed

16 files changed

+40
-40
lines changed

projects/igniteui-angular/src/lib/banner/banner.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ export class IgxBannerComponent implements IToggleView {
4747
@ViewChild('expansionPanel', { static: true })
4848
private _expansionPanel: IgxExpansionPanelComponent;
4949

50-
@ContentChild(IgxBannerActionsDirective, { static: true })
50+
@ContentChild(IgxBannerActionsDirective, { static: false })
5151
private _bannerActionTemplate: IgxBannerActionsDirective;
5252

5353
/**
5454
* @hidden
5555
*/
56-
@ContentChild(IgxIconComponent, { static: true })
56+
@ContentChild(IgxIconComponent, { static: false })
5757
public bannerIcon: IgxIconComponent;
5858

5959
/**

projects/igniteui-angular/src/lib/combo/combo.component.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
243243
* </igx-combo>
244244
* ```
245245
*/
246-
@ContentChild(IgxComboItemDirective, { read: TemplateRef, static: true })
246+
@ContentChild(IgxComboItemDirective, { read: TemplateRef, static: false })
247247
public itemTemplate: TemplateRef<any> = null;
248248

249249
/**
@@ -266,7 +266,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
266266
* </igx-combo>
267267
* ```
268268
*/
269-
@ContentChild(IgxComboHeaderDirective, { read: TemplateRef, static: true })
269+
@ContentChild(IgxComboHeaderDirective, { read: TemplateRef, static: false })
270270
public headerTemplate: TemplateRef<any> = null;
271271

272272
/**
@@ -289,7 +289,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
289289
* </igx-combo>
290290
* ```
291291
*/
292-
@ContentChild(IgxComboFooterDirective, { read: TemplateRef, static: true })
292+
@ContentChild(IgxComboFooterDirective, { read: TemplateRef, static: false })
293293
public footerTemplate: TemplateRef<any> = null;
294294

295295
/**
@@ -310,7 +310,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
310310
* </igx-combo>
311311
* ```
312312
*/
313-
@ContentChild(IgxComboHeaderItemDirective, { read: TemplateRef, static: true })
313+
@ContentChild(IgxComboHeaderItemDirective, { read: TemplateRef, static: false })
314314
public headerItemTemplate: TemplateRef<any> = null;
315315

316316
/**
@@ -333,7 +333,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
333333
* </igx-combo>
334334
* ```
335335
*/
336-
@ContentChild(IgxComboAddItemDirective, { read: TemplateRef, static: true })
336+
@ContentChild(IgxComboAddItemDirective, { read: TemplateRef, static: false })
337337
public addItemTemplate: TemplateRef<any> = null;
338338

339339
/**
@@ -356,7 +356,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
356356
* </igx-combo>
357357
* ```
358358
*/
359-
@ContentChild(IgxComboEmptyDirective, { read: TemplateRef, static: true })
359+
@ContentChild(IgxComboEmptyDirective, { read: TemplateRef, static: false })
360360
public emptyTemplate: TemplateRef<any> = null;
361361

362362
/**
@@ -377,7 +377,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
377377
* </igx-combo>
378378
* ```
379379
*/
380-
@ContentChild(IgxComboToggleIconDirective, { read: TemplateRef, static: true })
380+
@ContentChild(IgxComboToggleIconDirective, { read: TemplateRef, static: false })
381381
public toggleIconTemplate: TemplateRef<any> = null;
382382

383383
/**
@@ -398,7 +398,7 @@ export class IgxComboComponent extends DisplayDensityBase implements IgxComboBas
398398
* </igx-combo>
399399
* ```
400400
*/
401-
@ContentChild(IgxComboClearIconDirective, { read: TemplateRef, static: true })
401+
@ContentChild(IgxComboClearIconDirective, { read: TemplateRef, static: false })
402402
public clearIconTemplate: TemplateRef<any> = null;
403403

404404
@ViewChild('primitive', { read: TemplateRef, static: true })

projects/igniteui-angular/src/lib/date-picker/date-picker.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -704,19 +704,19 @@ export class IgxDatePickerComponent implements IDatePicker, ControlValueAccessor
704704
/**
705705
*@hidden
706706
*/
707-
@ContentChild(IgxDatePickerTemplateDirective, { read: IgxDatePickerTemplateDirective, static: true })
707+
@ContentChild(IgxDatePickerTemplateDirective, { read: IgxDatePickerTemplateDirective, static: false })
708708
protected datePickerTemplateDirective: IgxDatePickerTemplateDirective;
709709

710710
/**
711711
*@hidden
712712
*/
713-
@ContentChild(IgxCalendarHeaderTemplateDirective, { read: IgxCalendarHeaderTemplateDirective, static: true })
713+
@ContentChild(IgxCalendarHeaderTemplateDirective, { read: IgxCalendarHeaderTemplateDirective, static: false })
714714
public headerTemplate: IgxCalendarHeaderTemplateDirective;
715715

716716
/**
717717
*@hidden
718718
*/
719-
@ContentChild(IgxCalendarSubheaderTemplateDirective, { read: IgxCalendarSubheaderTemplateDirective, static: true })
719+
@ContentChild(IgxCalendarSubheaderTemplateDirective, { read: IgxCalendarSubheaderTemplateDirective, static: false })
720720
public subheaderTemplate: IgxCalendarSubheaderTemplateDirective;
721721

722722
/**

projects/igniteui-angular/src/lib/grids/column.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,7 +1101,7 @@ export class IgxColumnComponent implements AfterContentInit {
11011101
/**
11021102
*@hidden
11031103
*/
1104-
@ContentChild(IgxCellTemplateDirective, { read: IgxCellTemplateDirective, static: true })
1104+
@ContentChild(IgxCellTemplateDirective, { read: IgxCellTemplateDirective, static: false })
11051105
protected cellTemplate: IgxCellTemplateDirective;
11061106
/**
11071107
*@hidden
@@ -1111,14 +1111,14 @@ export class IgxColumnComponent implements AfterContentInit {
11111111
/**
11121112
*@hidden
11131113
*/
1114-
@ContentChild(IgxCellEditorTemplateDirective, { read: IgxCellEditorTemplateDirective, static: true })
1114+
@ContentChild(IgxCellEditorTemplateDirective, { read: IgxCellEditorTemplateDirective, static: false })
11151115
protected editorTemplate: IgxCellEditorTemplateDirective;
11161116

11171117
protected _vIndex = NaN;
11181118
/**
11191119
*@hidden
11201120
*/
1121-
@ContentChild(IgxFilterCellTemplateDirective, { read: IgxFilterCellTemplateDirective, static: true })
1121+
@ContentChild(IgxFilterCellTemplateDirective, { read: IgxFilterCellTemplateDirective, static: false })
11221122
public filterCellTemplateDirective: IgxFilterCellTemplateDirective;
11231123

11241124
constructor(public gridAPI: GridBaseAPIService<IgxGridBaseComponent & IGridDataBindable>, public cdr: ChangeDetectorRef) { }

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1576,25 +1576,25 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
15761576
/**
15771577
*@hidden
15781578
*/
1579-
@ContentChild(IgxExcelStyleSortingTemplateDirective, { read: IgxExcelStyleSortingTemplateDirective, static: true })
1579+
@ContentChild(IgxExcelStyleSortingTemplateDirective, { read: IgxExcelStyleSortingTemplateDirective, static: false })
15801580
public excelStyleSortingTemplateDirective: IgxExcelStyleSortingTemplateDirective;
15811581

15821582
/**
15831583
*@hidden
15841584
*/
1585-
@ContentChild(IgxExcelStyleMovingTemplateDirective, { read: IgxExcelStyleMovingTemplateDirective, static: true })
1585+
@ContentChild(IgxExcelStyleMovingTemplateDirective, { read: IgxExcelStyleMovingTemplateDirective, static: false })
15861586
public excelStyleMovingTemplateDirective: IgxExcelStyleMovingTemplateDirective;
15871587

15881588
/**
15891589
*@hidden
15901590
*/
1591-
@ContentChild(IgxExcelStyleHidingTemplateDirective, { read: IgxExcelStyleHidingTemplateDirective, static: true })
1591+
@ContentChild(IgxExcelStyleHidingTemplateDirective, { read: IgxExcelStyleHidingTemplateDirective, static: false })
15921592
public excelStyleHidingTemplateDirective: IgxExcelStyleHidingTemplateDirective;
15931593

15941594
/**
15951595
*@hidden
15961596
*/
1597-
@ContentChild(IgxExcelStylePinningTemplateDirective, { read: IgxExcelStylePinningTemplateDirective, static: true })
1597+
@ContentChild(IgxExcelStylePinningTemplateDirective, { read: IgxExcelStylePinningTemplateDirective, static: false })
15981598
public excelStylePinningTemplateDirective: IgxExcelStylePinningTemplateDirective;
15991599

16001600
/**
@@ -1884,18 +1884,18 @@ export abstract class IgxGridBaseComponent extends DisplayDensityBase implements
18841884
/**
18851885
* @hidden
18861886
*/
1887-
@ContentChild(IgxRowEditTemplateDirective, { read: TemplateRef, static: true })
1887+
@ContentChild(IgxRowEditTemplateDirective, { read: TemplateRef, static: false })
18881888
public rowEditCustom: TemplateRef<any>;
18891889

18901890
/** @hidden */
18911891
public get rowEditContainer(): TemplateRef<any> {
18921892
return this.rowEditCustom ? this.rowEditCustom : this.defaultRowEditTemplate;
18931893
}
18941894
/** @hidden */
1895-
@ContentChild(IgxRowEditTextDirective, { read: TemplateRef, static: true })
1895+
@ContentChild(IgxRowEditTextDirective, { read: TemplateRef, static: false })
18961896
public rowEditText: TemplateRef<any>;
18971897
/** @hidden */
1898-
@ContentChild(IgxRowEditActionsDirective, { read: TemplateRef, static: true })
1898+
@ContentChild(IgxRowEditActionsDirective, { read: TemplateRef, static: false })
18991899
public rowEditActions: TemplateRef<any>;
19001900

19011901
/**

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ export class IgxGridComponent extends IgxGridBaseComponent implements IGridDataB
469469
/**
470470
* @hidden
471471
*/
472-
@ContentChild(IgxGroupByRowTemplateDirective, { read: IgxGroupByRowTemplateDirective, static: true })
472+
@ContentChild(IgxGroupByRowTemplateDirective, { read: IgxGroupByRowTemplateDirective, static: false })
473473
protected groupTemplate: IgxGroupByRowTemplateDirective;
474474

475475
/**
@@ -490,7 +490,7 @@ export class IgxGridComponent extends IgxGridBaseComponent implements IGridDataB
490490
* </igx-grid>
491491
* ```
492492
*/
493-
@ContentChild(IgxDragIndicatorIconDirective, { read: TemplateRef, static: true })
493+
@ContentChild(IgxDragIndicatorIconDirective, { read: TemplateRef, static: false })
494494
public dragIndicatorIconTemplate: TemplateRef<any> = null;
495495

496496
@ViewChildren(IgxGridGroupByRowComponent, { read: IgxGridGroupByRowComponent })

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ export class IgxTreeGridComponent extends IgxGridBaseComponent implements IGridD
300300
/**
301301
* @hidden
302302
*/
303-
@ContentChild(IgxRowLoadingIndicatorTemplateDirective, { read: IgxRowLoadingIndicatorTemplateDirective, static: true })
303+
@ContentChild(IgxRowLoadingIndicatorTemplateDirective, { read: IgxRowLoadingIndicatorTemplateDirective, static: false })
304304
protected rowLoadingTemplate: IgxRowLoadingIndicatorTemplateDirective;
305305

306306
/**
@@ -321,7 +321,7 @@ export class IgxTreeGridComponent extends IgxGridBaseComponent implements IGridD
321321
* </igx-grid>
322322
* ```
323323
*/
324-
@ContentChild(IgxDragIndicatorIconDirective, { read: TemplateRef, static: true })
324+
@ContentChild(IgxDragIndicatorIconDirective, { read: TemplateRef, static: false })
325325
public dragIndicatorIconTemplate: TemplateRef<any> = null;
326326

327327
/**

projects/igniteui-angular/src/lib/list/list.component.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ export class IgxListComponent extends IgxListBase {
172172
* ```
173173
* @memberof IgxListComponent
174174
*/
175-
@ContentChild(IgxEmptyListTemplateDirective, { read: IgxEmptyListTemplateDirective, static: true })
175+
@ContentChild(IgxEmptyListTemplateDirective, { read: IgxEmptyListTemplateDirective, static: false })
176176
public emptyListTemplate: IgxEmptyListTemplateDirective;
177177

178178
/**
@@ -182,7 +182,7 @@ export class IgxListComponent extends IgxListBase {
182182
* ```
183183
* @memberof IgxListComponent
184184
*/
185-
@ContentChild(IgxDataLoadingTemplateDirective, { read: IgxDataLoadingTemplateDirective, static: true })
185+
@ContentChild(IgxDataLoadingTemplateDirective, { read: IgxDataLoadingTemplateDirective, static: false })
186186
public dataLoadingTemplate: IgxDataLoadingTemplateDirective;
187187

188188
/**
@@ -196,7 +196,7 @@ export class IgxListComponent extends IgxListBase {
196196
* ```
197197
* @memberof IgxListComponent
198198
*/
199-
@ContentChild(IgxListItemLeftPanningTemplateDirective, { read: IgxListItemLeftPanningTemplateDirective, static: true })
199+
@ContentChild(IgxListItemLeftPanningTemplateDirective, { read: IgxListItemLeftPanningTemplateDirective, static: false })
200200
public listItemLeftPanningTemplate: IgxListItemLeftPanningTemplateDirective;
201201

202202
/**
@@ -210,7 +210,7 @@ export class IgxListComponent extends IgxListBase {
210210
* ```
211211
* @memberof IgxListComponent
212212
*/
213-
@ContentChild(IgxListItemRightPanningTemplateDirective, { read: IgxListItemRightPanningTemplateDirective, static: true })
213+
@ContentChild(IgxListItemRightPanningTemplateDirective, { read: IgxListItemRightPanningTemplateDirective, static: false })
214214
public listItemRightPanningTemplate: IgxListItemRightPanningTemplateDirective;
215215

216216
/**

projects/igniteui-angular/src/lib/navbar/navbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class IgxNavbarComponent {
133133
/**
134134
* @hidden
135135
*/
136-
@ContentChild(IgxActionIconDirective, { read: IgxActionIconDirective, static: true })
136+
@ContentChild(IgxActionIconDirective, { read: IgxActionIconDirective, static: false })
137137
protected actionIconTemplate: IgxActionIconDirective;
138138

139139
/**

projects/igniteui-angular/src/lib/progressbar/progressbar.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ export class IgxCircularProgressBarComponent extends BaseProgress {
537537
@Input()
538538
public text: string;
539539

540-
@ContentChild(IgxProcessBarTextTemplateDirective, { read: IgxProcessBarTextTemplateDirective, static: true })
540+
@ContentChild(IgxProcessBarTextTemplateDirective, { read: IgxProcessBarTextTemplateDirective, static: false })
541541
public textTemplate: IgxProcessBarTextTemplateDirective;
542542

543543
/**

0 commit comments

Comments
 (0)