wacom 21.1.7 → 21.1.8
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/fesm2022/wacom.mjs +3 -0
- package/fesm2022/wacom.mjs.map +1 -1
- package/package.json +1 -1
package/fesm2022/wacom.mjs
CHANGED
|
@@ -3017,6 +3017,7 @@ class DomService {
|
|
|
3017
3017
|
if (element && typeof element.appendChild === 'function') {
|
|
3018
3018
|
element.appendChild(domElem);
|
|
3019
3019
|
}
|
|
3020
|
+
componentRef.changeDetectorRef.detectChanges();
|
|
3020
3021
|
return {
|
|
3021
3022
|
nativeElement: domElem,
|
|
3022
3023
|
componentRef: componentRef,
|
|
@@ -3048,6 +3049,7 @@ class DomService {
|
|
|
3048
3049
|
if (element && typeof element.appendChild === 'function') {
|
|
3049
3050
|
element.appendChild(domElem);
|
|
3050
3051
|
}
|
|
3052
|
+
componentRef.changeDetectorRef.detectChanges();
|
|
3051
3053
|
return {
|
|
3052
3054
|
nativeElement: domElem,
|
|
3053
3055
|
componentRef: componentRef,
|
|
@@ -3067,6 +3069,7 @@ class DomService {
|
|
|
3067
3069
|
});
|
|
3068
3070
|
this.projectComponentInputs(componentRef, options);
|
|
3069
3071
|
this._appRef.attachView(componentRef.hostView);
|
|
3072
|
+
componentRef.changeDetectorRef.detectChanges();
|
|
3070
3073
|
return componentRef;
|
|
3071
3074
|
}
|
|
3072
3075
|
/**
|