@absolutejs/absolute 0.19.0-beta.256 → 0.19.0-beta.258
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/.absolutejs/eslint-cache +1 -1
- package/.absolutejs/prettier.cache.json +6 -6
- package/.absolutejs/tsconfig.tsbuildinfo +1 -1
- package/.absolutejs/vue-tsc.tsbuildinfo +1 -1
- package/dist/ai/index.js +12 -3
- package/dist/ai/index.js.map +3 -3
- package/dist/angular/ai/index.js.map +2 -2
- package/dist/build.js +3 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +3 -2
- package/dist/index.js.map +3 -3
- package/dist/svelte/ai/index.js.map +2 -2
- package/dist/svelte/index.js +3 -2
- package/dist/svelte/index.js.map +3 -3
- package/dist/vue/ai/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -174319,7 +174319,8 @@ var renderToReadableStream = async (component, props, {
|
|
|
174319
174319
|
} = {}) => {
|
|
174320
174320
|
try {
|
|
174321
174321
|
const { render } = await import("svelte/server");
|
|
174322
|
-
const { head, body } = typeof props === "undefined" ? render(component) : render(component, { props });
|
|
174322
|
+
const { head: rawHead, body } = typeof props === "undefined" ? render(component) : render(component, { props });
|
|
174323
|
+
const head = rawHead.replace(/(<!--[a-z0-9]+-->)([\s\S]*?)(<!---->)\s*(<title>[\s\S]*?<\/title>)/, "$1$4$2$3");
|
|
174323
174324
|
const nonceAttr = nonce ? ` nonce="${nonce}"` : "";
|
|
174324
174325
|
const scripts = (bootstrapScriptContent ? `<script${nonceAttr}>${escapeScriptContent(bootstrapScriptContent)}</script>` : "") + bootstrapScripts.map((src) => `<script${nonceAttr} src="${src}"></script>`).join("") + bootstrapModules.map((src) => `<script${nonceAttr} type="module" src="${src}"></script>`).join("");
|
|
174325
174326
|
const encoder = new TextEncoder;
|
|
@@ -178447,5 +178448,5 @@ export {
|
|
|
178447
178448
|
ANGULAR_INIT_TIMEOUT_MS
|
|
178448
178449
|
};
|
|
178449
178450
|
|
|
178450
|
-
//# debugId=
|
|
178451
|
+
//# debugId=097E94DE4CB1628364756E2164756E21
|
|
178451
178452
|
//# sourceMappingURL=index.js.map
|