@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
|
@@ -29,14 +29,10 @@ export class StreamSlotComponent {
|
|
|
29
29
|
});
|
|
30
30
|
return;
|
|
31
31
|
}
|
|
32
|
-
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
33
|
-
}
|
|
34
|
-
ngAfterViewInit() {
|
|
35
|
-
if (typeof window === 'undefined')
|
|
36
|
-
return;
|
|
37
32
|
const consumers = (window.__ABS_SLOT_CONSUMERS__ =
|
|
38
33
|
window.__ABS_SLOT_CONSUMERS__ ?? {});
|
|
39
34
|
consumers[this.id] = this.slotConsumer;
|
|
35
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
40
36
|
const pendingHtml = window.__ABS_SLOT_PENDING__?.[this.id];
|
|
41
37
|
if (typeof pendingHtml === 'string') {
|
|
42
38
|
this.slotConsumer(pendingHtml);
|
package/dist/angular/index.js
CHANGED
|
@@ -181418,13 +181418,9 @@ class StreamSlotComponent {
|
|
|
181418
181418
|
});
|
|
181419
181419
|
return;
|
|
181420
181420
|
}
|
|
181421
|
-
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
181422
|
-
}
|
|
181423
|
-
ngAfterViewInit() {
|
|
181424
|
-
if (typeof window === "undefined")
|
|
181425
|
-
return;
|
|
181426
181421
|
const consumers = window.__ABS_SLOT_CONSUMERS__ = window.__ABS_SLOT_CONSUMERS__ ?? {};
|
|
181427
181422
|
consumers[this.id] = this.slotConsumer;
|
|
181423
|
+
this.currentHtml.set(this.sanitizer.bypassSecurityTrustHtml(this.fallbackHtml));
|
|
181428
181424
|
const pendingHtml = window.__ABS_SLOT_PENDING__?.[this.id];
|
|
181429
181425
|
if (typeof pendingHtml === "string") {
|
|
181430
181426
|
this.slotConsumer(pendingHtml);
|
|
@@ -181673,5 +181669,5 @@ export {
|
|
|
181673
181669
|
DeferSlotComponent
|
|
181674
181670
|
};
|
|
181675
181671
|
|
|
181676
|
-
//# debugId=
|
|
181672
|
+
//# debugId=1CCD053B5B866BB364756E2164756E21
|
|
181677
181673
|
//# sourceMappingURL=index.js.map
|