@absolutejs/absolute 0.19.0-beta.1101 → 0.19.0-beta.1102
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/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/build.js +5 -3
- package/dist/build.js.map +3 -3
- package/dist/index.js +5 -3
- package/dist/index.js.map +3 -3
- package/dist/src/build/compileSvelte.d.ts +3 -0
- package/package.json +1 -1
|
@@ -3,6 +3,9 @@ type Built = {
|
|
|
3
3
|
ssr: string;
|
|
4
4
|
client: string;
|
|
5
5
|
hasAwaitSlot: boolean;
|
|
6
|
+
/** `.svelte.ts`/`.svelte.js` runes module (compileModule output) — has no
|
|
7
|
+
* component default export, so it must never get a hydration index. */
|
|
8
|
+
isModule: boolean;
|
|
6
9
|
};
|
|
7
10
|
type Cache = Map<string, Built>;
|
|
8
11
|
export declare const clearSvelteCompilerCache: () => void;
|