@absolutejs/absolute 0.19.0-beta.366 → 0.19.0-beta.368
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 +13 -8
- package/dist/angular/browser.js.map +4 -4
- package/dist/angular/components/core/streamingSlotRegistrar.js +4 -3
- package/dist/angular/components/core/streamingSlotRegistry.js +4 -3
- package/dist/angular/index.js +668 -622
- package/dist/angular/index.js.map +8 -8
- package/dist/build.js +24 -579
- package/dist/build.js.map +4 -10
- package/dist/client/index.js +45 -44
- package/dist/client/index.js.map +4 -4
- package/dist/index.js +1322 -1138
- package/dist/index.js.map +28 -22
- package/dist/react/components/browser/index.js +9 -20
- package/dist/react/components/index.js +17 -35
- package/dist/react/components/index.js.map +5 -6
- package/dist/react/index.js +1125 -1095
- package/dist/react/index.js.map +12 -12
- package/dist/react/server.js +3 -574
- package/dist/react/server.js.map +4 -11
- package/dist/src/core/pageHandlers.d.ts +1 -0
- package/dist/src/react/index.d.ts +1 -1
- package/dist/svelte/index.js +1506 -1460
- package/dist/svelte/index.js.map +8 -8
- package/dist/vue/components/index.js +13 -8
- package/dist/vue/components/index.js.map +5 -5
- package/dist/vue/index.js +667 -619
- package/dist/vue/index.js.map +8 -8
- package/package.json +1 -1
- package/dist/src/react/streamingSlotCollection.d.ts +0 -9
package/dist/angular/browser.js
CHANGED
|
@@ -9079,13 +9079,6 @@ var require_cjs = __commonJS((exports) => {
|
|
|
9079
9079
|
} });
|
|
9080
9080
|
});
|
|
9081
9081
|
|
|
9082
|
-
// src/core/streamingSlotRegistrar.ts
|
|
9083
|
-
var registrar = null, setStreamingSlotRegistrar = (nextRegistrar) => {
|
|
9084
|
-
registrar = nextRegistrar;
|
|
9085
|
-
}, registerStreamingSlot = (slot) => {
|
|
9086
|
-
registrar?.(slot);
|
|
9087
|
-
};
|
|
9088
|
-
|
|
9089
9082
|
// src/utils/imageProcessing.ts
|
|
9090
9083
|
import { existsSync, mkdirSync, readFileSync, writeFileSync } from "fs";
|
|
9091
9084
|
import { join, resolve } from "path";
|
|
@@ -9550,6 +9543,18 @@ import { Component as Component3, computed, input as input2 } from "@angular/cor
|
|
|
9550
9543
|
// src/angular/components/stream-slot.component.ts
|
|
9551
9544
|
import"@angular/compiler";
|
|
9552
9545
|
import { Component as Component2, input } 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
|
|
9553
9558
|
class StreamSlotComponent {
|
|
9554
9559
|
className = input();
|
|
9555
9560
|
errorHtml = input();
|
|
@@ -9778,5 +9783,5 @@ export {
|
|
|
9778
9783
|
DeferSlotComponent
|
|
9779
9784
|
};
|
|
9780
9785
|
|
|
9781
|
-
//# debugId=
|
|
9786
|
+
//# debugId=5B4EB275CF48279164756E2164756E21
|
|
9782
9787
|
//# sourceMappingURL=browser.js.map
|