@absolutejs/absolute 0.19.0-beta.1067 → 0.19.0-beta.1068
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 +3 -2
- package/dist/build.js.map +3 -3
- package/dist/index.js +3 -2
- package/dist/index.js.map +3 -3
- package/dist/types/globals.d.ts +5 -0
- package/package.json +1 -1
package/dist/types/globals.d.ts
CHANGED
|
@@ -14,6 +14,11 @@ declare global {
|
|
|
14
14
|
| Map<string, { content: string; imports: string[]; mtime: number }>
|
|
15
15
|
| undefined;
|
|
16
16
|
var __transformImporters: Map<string, Set<string>> | undefined;
|
|
17
|
+
/** Virtual `.svelte.css` modules (css:'external' compile output) served by
|
|
18
|
+
* the dev moduleServer. On globalThis so it survives `bun --hot`
|
|
19
|
+
* server re-evaluation alongside the transform cache — cached Svelte
|
|
20
|
+
* transforms import these URLs, so the registry must outlive the module. */
|
|
21
|
+
var __svelteExternalCss: Map<string, string> | undefined;
|
|
17
22
|
var __transformInvalidationVersions: Map<string, number> | undefined;
|
|
18
23
|
var __http2Config:
|
|
19
24
|
| {
|