survey-angular-ui 2.3.11 → 2.3.12
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.
- package/bundles/survey-angular-ui.umd.js +10 -0
- package/bundles/survey-angular-ui.umd.js.map +1 -1
- package/embedded-view-content.component.d.ts +4 -2
- package/esm2015/base-angular.js +3 -1
- package/esm2015/embedded-view-content.component.js +9 -1
- package/fesm2015/survey-angular-ui.js +10 -0
- package/fesm2015/survey-angular-ui.js.map +1 -1
- package/package.json +2 -2
|
@@ -546,6 +546,14 @@
|
|
|
546
546
|
this.embeddedView = (_a = this.viewContainerRef) === null || _a === void 0 ? void 0 : _a.createEmbeddedView(this.templateRef);
|
|
547
547
|
}
|
|
548
548
|
};
|
|
549
|
+
EmbeddedViewContentComponent.prototype.ngDoCheck = function () {
|
|
550
|
+
var _a;
|
|
551
|
+
(_a = this.embeddedView) === null || _a === void 0 ? void 0 : _a.reattach();
|
|
552
|
+
};
|
|
553
|
+
EmbeddedViewContentComponent.prototype.ngAfterViewChecked = function () {
|
|
554
|
+
var _a;
|
|
555
|
+
(_a = this.embeddedView) === null || _a === void 0 ? void 0 : _a.detach();
|
|
556
|
+
};
|
|
549
557
|
return EmbeddedViewContentComponent;
|
|
550
558
|
}());
|
|
551
559
|
EmbeddedViewContentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0__namespace, type: EmbeddedViewContentComponent, deps: [{ token: i0__namespace.ViewContainerRef }], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
@@ -580,6 +588,7 @@
|
|
|
580
588
|
configurable: true
|
|
581
589
|
});
|
|
582
590
|
BaseAngular.prototype.ngDoCheck = function () {
|
|
591
|
+
_super.prototype.ngDoCheck.call(this);
|
|
583
592
|
if (this.previousModel !== this.getModel()) {
|
|
584
593
|
this.unMakeBaseElementAngular(this.previousModel);
|
|
585
594
|
this.makeBaseElementAngular(this.getModel());
|
|
@@ -712,6 +721,7 @@
|
|
|
712
721
|
}
|
|
713
722
|
};
|
|
714
723
|
BaseAngular.prototype.ngAfterViewChecked = function () {
|
|
724
|
+
_super.prototype.ngAfterViewChecked.call(this);
|
|
715
725
|
this.setIsRendering(false);
|
|
716
726
|
};
|
|
717
727
|
return BaseAngular;
|