From 5cf335e920219a5840cd81ccebbad7f336471569 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Tue, 17 Feb 2026 23:37:12 -0500 Subject: [PATCH 1/3] Re-enable SSR --- docs/src/routes/+layout.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/src/routes/+layout.ts b/docs/src/routes/+layout.ts index 269a6fdf8..63b0a6369 100644 --- a/docs/src/routes/+layout.ts +++ b/docs/src/routes/+layout.ts @@ -2,9 +2,6 @@ import posthog from 'posthog-js'; import { browser, dev } from '$app/environment'; -// Disable server-side rendering until AppLayout shift is fixed (issue #22) -export const ssr = false; - export const load = async ({ data }) => { // Setup Posthog if (browser && !dev) { From ecd2ff296a4a90d65944749cef2530a47a4b2694 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Wed, 18 Feb 2026 00:07:13 -0500 Subject: [PATCH 2/3] Add `nodejs_compat` compatibility flag and bump compat date (match setting in Cloudflare UI) --- docs/wrangler.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 docs/wrangler.toml diff --git a/docs/wrangler.toml b/docs/wrangler.toml new file mode 100644 index 000000000..672ffbfa3 --- /dev/null +++ b/docs/wrangler.toml @@ -0,0 +1,2 @@ +compatibility_date = "2026-01-20" +compatibility_flags = ["nodejs_compat"] From 3176a5df692a603ed2702b45386637a9a7c067e9 Mon Sep 17 00:00:00 2001 From: Sean Lynch Date: Wed, 18 Feb 2026 00:33:38 -0500 Subject: [PATCH 3/3] Update README --- README.md | 24 +++++------------------- 1 file changed, 5 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 00d83dc98..9b2170fb4 100644 --- a/README.md +++ b/README.md @@ -9,26 +9,12 @@ A large collection of composable Svelte chart components to build a wide range of visualizations -- Cartesian (Bar, Area, Stack, Scatter) -- Radial (Pie, Arc, Sunburst) -- Hierarchy (Pack, Tree, Treemap, Sunburst) -- Graph (Sankey) +- Cartesian (Area, Bar, Line, Scatter) +- Radial/polar charts (Arc, Area, Bar, Line, Radar, Pie) +- Hierarchical (Pack, Partition, Tree, Treemap) +- Graph (Dagre, Force, Sankey) - Geo (Choropleth, Spike, Bubble, Point, Globe) - -Interactions - -- Tooltip, Highlights, Pan/Zoom - -SVG - -- Basic (Arc, Circle, Group, Line, Spline, Text) -- Gradients and Patterns -- ClipPath -- Multi-line text - -Others - -- Legends including ColorRamps +- Calendar See also the companion library [Svelte UX](http://svelte-ux.techniq.dev) for a large collection of components, actions, stores, and utilities to build highly interactive applications.