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. 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) { 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"]