@codetectonics/mantle 2.0.9 → 2.0.11
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.
|
@@ -591,7 +591,7 @@ class DynamicPipe {
|
|
|
591
591
|
transformObscured(value) {
|
|
592
592
|
if (!value)
|
|
593
593
|
return '';
|
|
594
|
-
return value.replace(/./g, '*');
|
|
594
|
+
return String(value).replace(/./g, '*');
|
|
595
595
|
}
|
|
596
596
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.25", ngImport: i0, type: DynamicPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
597
597
|
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "20.3.25", ngImport: i0, type: DynamicPipe, isStandalone: false, name: "dynamicPipe" }); }
|
|
@@ -6400,6 +6400,7 @@ class FormPageComponent {
|
|
|
6400
6400
|
this.isTabbedContent = false;
|
|
6401
6401
|
const formPageServiceInjectionToken = this.route.snapshot.data['formPageService'];
|
|
6402
6402
|
this.formPageService = this.injector.get(formPageServiceInjectionToken);
|
|
6403
|
+
this.formPageService.setParentComponent(this);
|
|
6403
6404
|
this.isTabbedContent = this.route.snapshot.data['isTabbedContent'];
|
|
6404
6405
|
}
|
|
6405
6406
|
ngOnInit() {
|