From 572ed8dbb3cfad7e5bd54627b1b37965f8b3e2c2 Mon Sep 17 00:00:00 2001 From: Braian Silva Date: Wed, 10 Jun 2026 05:27:51 -0300 Subject: [PATCH 1/2] Add NPM Version badge to readme (#10851) Add NPM Version badge to readme --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index ff7e94f305a..693a61a6a94 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,9 @@ NPM Downloads + + NPM Version + Github Stars From bee0e1af18cd3a62ecf02af1b0e76de0e2026c7f Mon Sep 17 00:00:00 2001 From: "Adebesin Tolulope (Lope)" Date: Wed, 10 Jun 2026 10:44:47 +0100 Subject: [PATCH 2/2] docs(splitter): note SSR caveat for CSS-unit panel sizes (#10850) * docs(splitter): note SSR layout-shift caveat for CSS-unit panel sizes * docs(splitter): make SSR caveat more concise --- apps/www/content/docs/components/splitter.mdx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/apps/www/content/docs/components/splitter.mdx b/apps/www/content/docs/components/splitter.mdx index d64a6ba6c1f..dcb06720473 100644 --- a/apps/www/content/docs/components/splitter.mdx +++ b/apps/www/content/docs/components/splitter.mdx @@ -139,6 +139,13 @@ In addition to percentages, `defaultSize`, `minSize`, and `maxSize` accept CSS units like `px`, `em`, `rem`, `vh`, and `vw`. This is useful for panels that should keep a fixed width, such as a navigation sidebar. +:::warning + +CSS-unit sizes are measured on the client, so panels using them can shift after +hydration. Use percentage sizes for a stable server-rendered layout. + +::: + ### Resize Behavior