@absolutejs/absolute 0.19.0-beta.408 → 0.19.0-beta.409
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/index.js +5 -5
- package/dist/angular/index.js.map +3 -3
- package/dist/client/index.js +2 -2
- package/dist/client/index.js.map +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/react/index.js +2 -2
- package/dist/react/index.js.map +3 -3
- package/dist/svelte/index.js +2 -2
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/index.js +2 -2
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/angular/index.js
CHANGED
|
@@ -180606,8 +180606,8 @@ var runWithStreamingSlotRegistry = async (task) => {
|
|
|
180606
180606
|
import"@angular/compiler";
|
|
180607
180607
|
|
|
180608
180608
|
// src/client/streamSwap.ts
|
|
180609
|
-
var SLOT_PATCH_EVENT = "absolutejs:slot-patch";
|
|
180610
180609
|
var streamSwapRuntime = () => {
|
|
180610
|
+
const SLOT_PATCH_EVENT = "absolutejs:slot-patch";
|
|
180611
180611
|
if (window.__ABS_SLOT_RUNTIME__ === true)
|
|
180612
180612
|
return;
|
|
180613
180613
|
window.__ABS_SLOT_RUNTIME__ = true;
|
|
@@ -181379,7 +181379,7 @@ import {
|
|
|
181379
181379
|
signal
|
|
181380
181380
|
} from "@angular/core";
|
|
181381
181381
|
import { DomSanitizer } from "@angular/platform-browser";
|
|
181382
|
-
var
|
|
181382
|
+
var SLOT_PATCH_EVENT = "absolutejs:slot-patch";
|
|
181383
181383
|
|
|
181384
181384
|
class StreamSlotComponent {
|
|
181385
181385
|
constructor() {
|
|
@@ -181410,7 +181410,7 @@ class StreamSlotComponent {
|
|
|
181410
181410
|
ngAfterViewInit() {
|
|
181411
181411
|
if (typeof window === "undefined")
|
|
181412
181412
|
return;
|
|
181413
|
-
window.addEventListener(
|
|
181413
|
+
window.addEventListener(SLOT_PATCH_EVENT, this.patchListener);
|
|
181414
181414
|
const slotElement = this.hostElement.nativeElement.querySelector(`#slot-${this.id}`);
|
|
181415
181415
|
const existingHtml = slotElement?.innerHTML;
|
|
181416
181416
|
if (existingHtml && existingHtml !== this.fallbackHtml) {
|
|
@@ -181420,7 +181420,7 @@ class StreamSlotComponent {
|
|
|
181420
181420
|
ngOnDestroy() {
|
|
181421
181421
|
if (typeof window === "undefined")
|
|
181422
181422
|
return;
|
|
181423
|
-
window.removeEventListener(
|
|
181423
|
+
window.removeEventListener(SLOT_PATCH_EVENT, this.patchListener);
|
|
181424
181424
|
}
|
|
181425
181425
|
}
|
|
181426
181426
|
__legacyDecorateClassTS([
|
|
@@ -181656,5 +181656,5 @@ export {
|
|
|
181656
181656
|
DeferSlotComponent
|
|
181657
181657
|
};
|
|
181658
181658
|
|
|
181659
|
-
//# debugId=
|
|
181659
|
+
//# debugId=6461F3D80BDA694C64756E2164756E21
|
|
181660
181660
|
//# sourceMappingURL=index.js.map
|