@cnvx/nodal 0.1.0 → 0.1.2
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.
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
...rest
|
|
23
23
|
}: {
|
|
24
24
|
children: Snippet;
|
|
25
|
-
eagerLoad
|
|
25
|
+
eagerLoad?: boolean;
|
|
26
26
|
rootMargin?: string;
|
|
27
27
|
} & HTMLAttributes<HTMLDivElement> = $props();
|
|
28
28
|
|
|
@@ -95,7 +95,7 @@
|
|
|
95
95
|
</div>
|
|
96
96
|
{:else}
|
|
97
97
|
<!-- Lightweight placeholder / container used for intersection observation. -->
|
|
98
|
-
<div bind:this={containerEl} {...rest}></div>
|
|
98
|
+
<div bind:this={containerEl} {...rest} style="min-height: 1px;"></div>
|
|
99
99
|
{/if}
|
|
100
100
|
|
|
101
101
|
<!--
|
|
@@ -2,7 +2,7 @@ import { type Snippet } from "svelte";
|
|
|
2
2
|
import type { HTMLAttributes } from "svelte/elements";
|
|
3
3
|
type $$ComponentProps = {
|
|
4
4
|
children: Snippet;
|
|
5
|
-
eagerLoad
|
|
5
|
+
eagerLoad?: boolean;
|
|
6
6
|
rootMargin?: string;
|
|
7
7
|
} & HTMLAttributes<HTMLDivElement>;
|
|
8
8
|
declare const DiagramController: import("svelte").Component<$$ComponentProps, {}, "">;
|