@@ -37,8 +37,8 @@ import {
3737 ICollectionNestedOption ,
3838 ICollectionNestedOptionContainer ,
3939 CollectionNestedOptionContainerImpl ,
40- checkIncompatibleNestedItems ,
41-
40+ checkIncompatibleNestedItems ,
41+
4242} from './nested-option' ;
4343
4444import { DxIntegrationModule } from './integration' ;
@@ -64,13 +64,13 @@ export const getServerStateKey = () => {
6464export abstract class DxComponent implements OnChanges , OnInit , DoCheck , AfterContentChecked , AfterViewInit , AfterViewChecked ,
6565 INestedOptionContainer , ICollectionNestedOptionContainer , IDxTemplateHost {
6666 protected _dxClassName = 'DxComponent' ;
67-
67+
6868 private _initialOptions : any = { } ;
6969
7070 protected _optionsToUpdate : any = { } ;
7171
7272 private readonly _collectionContainerImpl : ICollectionNestedOptionContainer ;
73-
73+
7474 eventHelper : EmitterHelper ;
7575
7676 optionChangedHandlers : EventEmitter < any > = new EventEmitter ( ) ;
@@ -90,20 +90,19 @@ export abstract class DxComponent implements OnChanges, OnInit, DoCheck, AfterCo
9090 widgetUpdateLocked = false ;
9191
9292 templateUpdateRequired = false ;
93-
94-
93+
9594 protected _setChildren ( propertyName : string , items : QueryList < ICollectionNestedOption > ) {
9695 const hasIncopatibleNestedItems = checkIncompatibleNestedItems (
97- items ,
98- this . _dxClassName ,
99- this . getLegacyClassNames ( ) [ propertyName ]
96+ items ,
97+ this . _dxClassName ,
98+ this . getLegacyClassNames ( ) [ propertyName ] ,
10099 ) ;
101100
102101 if ( ! hasIncopatibleNestedItems ) {
103102 this . setChildren ( propertyName , items ) ;
104103 }
105104 }
106-
105+
107106 private _updateTemplates ( ) {
108107 if ( this . templates . length && this . templateUpdateRequired ) {
109108 const updatedTemplates = { } ;
0 commit comments