From 947b94bfe9a549d6f78d2c5b67b0ecebf32d3c2b Mon Sep 17 00:00:00 2001 From: Scott Rhamy Date: Sat, 13 Dec 2025 09:20:54 -0500 Subject: [PATCH] marker-controls-fix the same controls are used for many marker examples. Some need start/mid/end controls, others do not. Fixed them appropriately. --- docs/src/examples/components/Marker/orientation.svelte | 3 --- docs/src/examples/components/Marker/spline.svelte | 2 -- docs/src/examples/components/Marker/styling.svelte | 3 --- 3 files changed, 8 deletions(-) diff --git a/docs/src/examples/components/Marker/orientation.svelte b/docs/src/examples/components/Marker/orientation.svelte index d181bf05b..721d83eac 100644 --- a/docs/src/examples/components/Marker/orientation.svelte +++ b/docs/src/examples/components/Marker/orientation.svelte @@ -7,9 +7,6 @@ let config = $state({ show: true, tweened: true, - markerStart: true, - markerMid: false, - markerEnd: true, pathGenerator: (x: number) => x, curve: undefined as ComponentProps['value'], pointCount: 10, diff --git a/docs/src/examples/components/Marker/spline.svelte b/docs/src/examples/components/Marker/spline.svelte index 3be081414..fe33c70c3 100644 --- a/docs/src/examples/components/Marker/spline.svelte +++ b/docs/src/examples/components/Marker/spline.svelte @@ -7,7 +7,6 @@ let config = $state({ show: true, markerStart: true, - markerMid: false, markerEnd: true, tweened: true, pathGenerator: (x: number) => x, @@ -45,7 +44,6 @@ curve={config.curve} class="stroke-primary" markerStart={config.markerStart ? marker : undefined} - markerMid={config.markerMid ? marker : undefined} markerEnd={config.markerEnd ? marker : undefined} {motion} /> diff --git a/docs/src/examples/components/Marker/styling.svelte b/docs/src/examples/components/Marker/styling.svelte index c69b2379f..0358c8ce5 100644 --- a/docs/src/examples/components/Marker/styling.svelte +++ b/docs/src/examples/components/Marker/styling.svelte @@ -7,9 +7,6 @@ let config = $state({ show: true, tweened: true, - markerStart: true, - markerMid: false, - markerEnd: true, pathGenerator: (x: number) => x, curve: undefined as ComponentProps['value'], pointCount: 10,