survey-creator-angular 2.2.2 → 2.2.3

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.
@@ -586,18 +586,22 @@
586
586
  TabbledMenuComponent.prototype.getModel = function () {
587
587
  return this.model;
588
588
  };
589
- TabbledMenuComponent.prototype.ngAfterViewInit = function () {
589
+ TabbledMenuComponent.prototype.initResponsivityManager = function () {
590
590
  var _a;
591
591
  if ((_a = this.container) === null || _a === void 0 ? void 0 : _a.nativeElement) {
592
592
  this.model.initResponsivityManager(this.container.nativeElement);
593
593
  }
594
594
  };
595
+ TabbledMenuComponent.prototype.ngAfterViewInit = function () {
596
+ this.initResponsivityManager();
597
+ };
598
+ TabbledMenuComponent.prototype.afterUpdate = function (isSync) {
599
+ _super.prototype.afterUpdate.call(this, isSync);
600
+ this.initResponsivityManager();
601
+ };
595
602
  TabbledMenuComponent.prototype.ngAfterViewChecked = function () {
596
- var _a;
597
603
  _super.prototype.ngAfterViewChecked.call(this);
598
- if ((_a = this.container) === null || _a === void 0 ? void 0 : _a.nativeElement) {
599
- this.model.initResponsivityManager(this.container.nativeElement);
600
- }
604
+ this.initResponsivityManager();
601
605
  };
602
606
  TabbledMenuComponent.prototype.ngOnDestroy = function () {
603
607
  _super.prototype.ngOnDestroy.call(this);
@@ -934,19 +938,22 @@
934
938
  enumerable: false,
935
939
  configurable: true
936
940
  });
937
- AdaptiveToolboxComponent.prototype.ngAfterViewInit = function () {
941
+ AdaptiveToolboxComponent.prototype.afterRender = function () {
938
942
  var _a;
939
- this.toolbox.afterRender(this.container.nativeElement);
940
943
  if ((_a = this.container) === null || _a === void 0 ? void 0 : _a.nativeElement) {
941
944
  this.toolbox.afterRender(this.container.nativeElement);
942
945
  }
943
946
  };
947
+ AdaptiveToolboxComponent.prototype.ngAfterViewInit = function () {
948
+ this.afterRender();
949
+ };
944
950
  AdaptiveToolboxComponent.prototype.ngAfterViewChecked = function () {
945
- var _a;
946
951
  _super.prototype.ngAfterViewChecked.call(this);
947
- if ((_a = this.container) === null || _a === void 0 ? void 0 : _a.nativeElement) {
948
- this.toolbox.afterRender(this.container.nativeElement);
949
- }
952
+ this.afterRender();
953
+ };
954
+ AdaptiveToolboxComponent.prototype.afterUpdate = function (isSync) {
955
+ _super.prototype.afterUpdate.call(this, isSync);
956
+ this.afterRender();
950
957
  };
951
958
  AdaptiveToolboxComponent.prototype.getModel = function () {
952
959
  return this.toolbox;