@absolutejs/absolute 0.19.0-beta.1066 → 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.
@@ -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
  | {
@@ -78,6 +83,7 @@ declare global {
78
83
  __SVELTE_COMPONENT__?: Record<string, unknown>;
79
84
  __ABS_SVELTE_ISLAND_HTML__?: Record<string, string>;
80
85
  __SVELTE_UNMOUNT__?: () => void;
86
+ __SVELTE_REMOUNT__?: (props: Record<string, unknown>) => void;
81
87
  __ANGULAR_APP__?: {
82
88
  destroy: () => void;
83
89
  tick: () => void;
package/package.json CHANGED
@@ -414,7 +414,7 @@
414
414
  ]
415
415
  }
416
416
  },
417
- "version": "0.19.0-beta.1066",
417
+ "version": "0.19.0-beta.1068",
418
418
  "workspaces": [
419
419
  "tests/fixtures/*",
420
420
  "tests/fixtures/_packages/*"