@absolutejs/absolute 0.19.0-beta.371 → 0.19.0-beta.373
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 +73 -52
- package/dist/angular/browser.js.map +3 -3
- package/dist/angular/components/stream-slot.component.js +29 -20
- package/dist/angular/index.js +75 -55
- package/dist/angular/index.js.map +4 -4
- package/dist/build.js +3 -15
- package/dist/build.js.map +4 -4
- package/dist/index.js +3 -15
- package/dist/index.js.map +4 -4
- package/dist/react/index.js +3 -4
- package/dist/react/index.js.map +3 -3
- package/dist/src/angular/components/stream-slot.component.d.ts +6 -6
- package/dist/svelte/index.js +3 -4
- package/dist/svelte/index.js.map +3 -3
- package/dist/svelte/server.js +3 -4
- package/dist/svelte/server.js.map +3 -3
- package/dist/vue/index.js +3 -4
- package/dist/vue/index.js.map +3 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -88,10 +88,9 @@ var init_escapeScriptContent = __esm(() => {
|
|
|
88
88
|
"\u2028": "\\u2028",
|
|
89
89
|
"\u2029": "\\u2029",
|
|
90
90
|
"&": "\\u0026",
|
|
91
|
-
"<": "\\u003C"
|
|
92
|
-
">": "\\u003E"
|
|
91
|
+
"<": "\\u003C"
|
|
93
92
|
};
|
|
94
|
-
ESCAPE_REGEX = /[
|
|
93
|
+
ESCAPE_REGEX = /[&<\u2028\u2029]/g;
|
|
95
94
|
});
|
|
96
95
|
|
|
97
96
|
// src/core/islandPageContext.ts
|
|
@@ -171103,18 +171102,7 @@ var indexContentCache, resolveDevClientDir = () => {
|
|
|
171103
171102
|
const content = [
|
|
171104
171103
|
...hmrPreamble,
|
|
171105
171104
|
...reactImports,
|
|
171106
|
-
`import type { ComponentType } from 'react'`,
|
|
171107
171105
|
`import { ${componentName} } from '${pagesRelPath}/${componentName}';
|
|
171108
|
-
`,
|
|
171109
|
-
`type PropsOf<C> = C extends ComponentType<infer P> ? P : never;
|
|
171110
|
-
`,
|
|
171111
|
-
`declare global {`,
|
|
171112
|
-
` interface Window {`,
|
|
171113
|
-
` __INITIAL_PROPS__?: PropsOf<typeof ${componentName}>`,
|
|
171114
|
-
` __REACT_ROOT__?: ReturnType<typeof hydrateRoot | typeof createRoot>`,
|
|
171115
|
-
` __HMR_CLIENT_ONLY_MODE__?: boolean`,
|
|
171116
|
-
` }`,
|
|
171117
|
-
`}
|
|
171118
171106
|
`,
|
|
171119
171107
|
...errorBoundaryDef,
|
|
171120
171108
|
`// Hydration with error handling and fallback`,
|
|
@@ -187423,5 +187411,5 @@ export {
|
|
|
187423
187411
|
ANGULAR_INIT_TIMEOUT_MS
|
|
187424
187412
|
};
|
|
187425
187413
|
|
|
187426
|
-
//# debugId=
|
|
187414
|
+
//# debugId=F358F6125E65BEE064756E2164756E21
|
|
187427
187415
|
//# sourceMappingURL=index.js.map
|