@absolutejs/absolute 0.19.0-beta.375 → 0.19.0-beta.377
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 +11 -13
- package/dist/angular/browser.js.map +4 -4
- package/dist/angular/index.js +56 -56
- package/dist/angular/index.js.map +5 -5
- package/dist/core/streamingSlotRegistrar.js +96 -0
- package/dist/core/streamingSlotRegistrar.js.map +10 -0
- package/dist/core/streamingSlotRegistry.js +140 -0
- package/dist/core/streamingSlotRegistry.js.map +11 -0
- package/dist/index.js +56 -56
- package/dist/index.js.map +5 -5
- package/dist/react/components/browser/index.js +10 -77
- package/dist/react/components/index.js +11 -11
- package/dist/react/components/index.js.map +4 -4
- package/dist/react/index.js +56 -56
- package/dist/react/index.js.map +5 -5
- package/dist/src/react/components/StreamSlot.browser.d.ts +10 -0
- package/dist/src/react/components/SuspenseSlot.browser.d.ts +22 -0
- package/dist/src/react/components/browser/index.d.ts +5 -0
- package/dist/src/svelte/browser.d.ts +0 -3
- package/dist/src/svelte/index.d.ts +0 -3
- package/dist/svelte/browser.js +2 -11
- package/dist/svelte/browser.js.map +3 -3
- package/dist/svelte/index.js +57 -66
- package/dist/svelte/index.js.map +6 -6
- package/dist/vue/components/index.js +7 -9
- package/dist/vue/components/index.js.map +4 -4
- package/dist/vue/index.js +52 -54
- package/dist/vue/index.js.map +5 -5
- package/package.json +5 -1
- package/dist/AwaitSlot-yd9jtwpr.svelte +0 -39
- package/dist/Island-hn6g4vxm.svelte +0 -71
- package/dist/StreamSlot-kyee4w0z.svelte +0 -35
package/dist/angular/browser.js
CHANGED
|
@@ -9244,6 +9244,16 @@ var init_imageProcessing = __esm(() => {
|
|
|
9244
9244
|
};
|
|
9245
9245
|
});
|
|
9246
9246
|
|
|
9247
|
+
// src/core/streamingSlotRegistrar.ts
|
|
9248
|
+
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
9249
|
+
var getRegistrarGlobal = () => globalThis;
|
|
9250
|
+
var setStreamingSlotRegistrar = (nextRegistrar) => {
|
|
9251
|
+
getRegistrarGlobal()[STREAMING_SLOT_REGISTRAR_KEY] = nextRegistrar;
|
|
9252
|
+
};
|
|
9253
|
+
var registerStreamingSlot = (slot) => {
|
|
9254
|
+
getRegistrarGlobal()[STREAMING_SLOT_REGISTRAR_KEY]?.(slot);
|
|
9255
|
+
};
|
|
9256
|
+
|
|
9247
9257
|
// src/angular/Island.browser.ts
|
|
9248
9258
|
import"@angular/compiler";
|
|
9249
9259
|
import {
|
|
@@ -9543,18 +9553,6 @@ import { Component as Component3, computed, input } from "@angular/core";
|
|
|
9543
9553
|
// src/angular/components/stream-slot.component.ts
|
|
9544
9554
|
import"@angular/compiler";
|
|
9545
9555
|
import { Component as Component2, Input as Input2 } from "@angular/core";
|
|
9546
|
-
|
|
9547
|
-
// src/core/streamingSlotRegistrar.ts
|
|
9548
|
-
var STREAMING_SLOT_REGISTRAR_KEY = Symbol.for("absolutejs.streamingSlotRegistrar");
|
|
9549
|
-
var getRegistrarGlobal = () => globalThis;
|
|
9550
|
-
var setStreamingSlotRegistrar = (nextRegistrar) => {
|
|
9551
|
-
getRegistrarGlobal()[STREAMING_SLOT_REGISTRAR_KEY] = nextRegistrar;
|
|
9552
|
-
};
|
|
9553
|
-
var registerStreamingSlot = (slot) => {
|
|
9554
|
-
getRegistrarGlobal()[STREAMING_SLOT_REGISTRAR_KEY]?.(slot);
|
|
9555
|
-
};
|
|
9556
|
-
|
|
9557
|
-
// src/angular/components/stream-slot.component.ts
|
|
9558
9556
|
class StreamSlotComponent {
|
|
9559
9557
|
constructor() {
|
|
9560
9558
|
this.fallbackHtml = "";
|
|
@@ -9804,5 +9802,5 @@ export {
|
|
|
9804
9802
|
DeferSlotComponent
|
|
9805
9803
|
};
|
|
9806
9804
|
|
|
9807
|
-
//# debugId=
|
|
9805
|
+
//# debugId=DB57D710CC6E9DF864756E2164756E21
|
|
9808
9806
|
//# sourceMappingURL=browser.js.map
|