@absolutejs/absolute 0.19.0-beta.382 → 0.19.0-beta.383
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 +11 -4
- package/dist/angular/index.js.map +3 -3
- package/dist/angular/server.js +2 -2
- package/dist/angular/server.js.map +1 -1
- package/dist/build.js +2 -2
- package/dist/build.js.map +1 -1
- package/dist/index.js +11 -4
- package/dist/index.js.map +3 -3
- package/dist/react/index.js +10 -3
- package/dist/react/index.js.map +3 -3
- package/dist/src/core/responseEnhancers.d.ts +1 -1
- package/dist/svelte/index.js +10 -3
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/index.js +10 -3
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -173232,7 +173232,7 @@ ${registrations}
|
|
|
173232
173232
|
({ tsLibDir } = cached);
|
|
173233
173233
|
cached.lastUsed = Date.now();
|
|
173234
173234
|
} else {
|
|
173235
|
-
const tsPath = __require.resolve("
|
|
173235
|
+
const tsPath = __require.resolve("typescript");
|
|
173236
173236
|
const tsRootDir = dirname9(tsPath);
|
|
173237
173237
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve18(tsRootDir, "lib");
|
|
173238
173238
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -180515,14 +180515,21 @@ var cloneHeaders = (response) => {
|
|
|
180515
180515
|
const headers = new Headers(response.headers);
|
|
180516
180516
|
return headers;
|
|
180517
180517
|
};
|
|
180518
|
-
var enhanceHtmlResponseWithStreamingSlots = (response, {
|
|
180518
|
+
var enhanceHtmlResponseWithStreamingSlots = (response, {
|
|
180519
|
+
nonce,
|
|
180520
|
+
onError,
|
|
180521
|
+
runtimePlacement,
|
|
180522
|
+
streamingSlots = [],
|
|
180523
|
+
policy
|
|
180524
|
+
} = {}) => {
|
|
180519
180525
|
if (!response.body || streamingSlots.length === 0) {
|
|
180520
180526
|
return response;
|
|
180521
180527
|
}
|
|
180522
180528
|
const body = appendStreamingSlotPatchesToStream(response.body, streamingSlots, {
|
|
180523
180529
|
nonce,
|
|
180524
180530
|
onError,
|
|
180525
|
-
policy
|
|
180531
|
+
policy,
|
|
180532
|
+
runtimePlacement
|
|
180526
180533
|
});
|
|
180527
180534
|
return new Response(body, {
|
|
180528
180535
|
headers: cloneHeaders(response),
|
|
@@ -187477,5 +187484,5 @@ export {
|
|
|
187477
187484
|
ANGULAR_INIT_TIMEOUT_MS
|
|
187478
187485
|
};
|
|
187479
187486
|
|
|
187480
|
-
//# debugId=
|
|
187487
|
+
//# debugId=FE2617E75731F68364756E2164756E21
|
|
187481
187488
|
//# sourceMappingURL=index.js.map
|