@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/angular/index.js
CHANGED
|
@@ -169050,7 +169050,7 @@ ${registrations}
|
|
|
169050
169050
|
({ tsLibDir } = cached);
|
|
169051
169051
|
cached.lastUsed = Date.now();
|
|
169052
169052
|
} else {
|
|
169053
|
-
const tsPath = __require.resolve("
|
|
169053
|
+
const tsPath = __require.resolve("typescript");
|
|
169054
169054
|
const tsRootDir = dirname(tsPath);
|
|
169055
169055
|
tsLibDir = tsRootDir.endsWith("lib") ? tsRootDir : resolve(tsRootDir, "lib");
|
|
169056
169056
|
const config = readConfiguration("./tsconfig.json");
|
|
@@ -180926,14 +180926,21 @@ var cloneHeaders = (response) => {
|
|
|
180926
180926
|
const headers = new Headers(response.headers);
|
|
180927
180927
|
return headers;
|
|
180928
180928
|
};
|
|
180929
|
-
var enhanceHtmlResponseWithStreamingSlots = (response, {
|
|
180929
|
+
var enhanceHtmlResponseWithStreamingSlots = (response, {
|
|
180930
|
+
nonce,
|
|
180931
|
+
onError,
|
|
180932
|
+
runtimePlacement,
|
|
180933
|
+
streamingSlots = [],
|
|
180934
|
+
policy
|
|
180935
|
+
} = {}) => {
|
|
180930
180936
|
if (!response.body || streamingSlots.length === 0) {
|
|
180931
180937
|
return response;
|
|
180932
180938
|
}
|
|
180933
180939
|
const body = appendStreamingSlotPatchesToStream(response.body, streamingSlots, {
|
|
180934
180940
|
nonce,
|
|
180935
180941
|
onError,
|
|
180936
|
-
policy
|
|
180942
|
+
policy,
|
|
180943
|
+
runtimePlacement
|
|
180937
180944
|
});
|
|
180938
180945
|
return new Response(body, {
|
|
180939
180946
|
headers: cloneHeaders(response),
|
|
@@ -181407,5 +181414,5 @@ export {
|
|
|
181407
181414
|
DeferSlotComponent
|
|
181408
181415
|
};
|
|
181409
181416
|
|
|
181410
|
-
//# debugId=
|
|
181417
|
+
//# debugId=67CBE568BCE4713664756E2164756E21
|
|
181411
181418
|
//# sourceMappingURL=index.js.map
|