@absolutejs/absolute 0.19.0-beta.415 → 0.19.0-beta.416
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/dist/angular/browser.js +2 -6
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/components/stream-slot.component.js +1 -5
- package/dist/angular/index.js +2 -6
- package/dist/angular/index.js.map +3 -3
- package/dist/src/angular/components/stream-slot.component.d.ts +2 -3
- package/package.json +1 -1
package/dist/angular/browser.js
CHANGED
|
@@ -9588,13 +9588,9 @@ class StreamSlotComponent {
|
|
|
9588
9588
|
});
|
|
9589
9589
|
return;
|
|
9590
9590
|
}
|
|
9591
|
-
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
9592
|
-
}
|
|
9593
|
-
ngAfterViewInit() {
|
|
9594
|
-
if (typeof window === "undefined")
|
|
9595
|
-
return;
|
|
9596
9591
|
const consumers = window.__ABS_SLOT_CONSUMERS__ = window.__ABS_SLOT_CONSUMERS__ ?? {};
|
|
9597
9592
|
consumers[this.id] = this.slotConsumer;
|
|
9593
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
9598
9594
|
const pendingHtml = window.__ABS_SLOT_PENDING__?.[this.id];
|
|
9599
9595
|
if (typeof pendingHtml === "string") {
|
|
9600
9596
|
this.slotConsumer(pendingHtml);
|
|
@@ -9843,5 +9839,5 @@ export {
|
|
|
9843
9839
|
DeferSlotComponent
|
|
9844
9840
|
};
|
|
9845
9841
|
|
|
9846
|
-
//# debugId=
|
|
9842
|
+
//# debugId=A491037FA344484C64756E2164756E21
|
|
9847
9843
|
//# sourceMappingURL=browser.js.map
|