From 76143b7deedc3042790811bfc47f5326c6f0f188 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 2 Mar 2026 00:38:52 +0000 Subject: [PATCH] chore: version packages --- .changeset/candlestick-gpu-bg-fix.md | 11 ----------- packages/charts/CHANGELOG.md | 12 ++++++++++++ packages/charts/package.json | 2 +- 3 files changed, 13 insertions(+), 12 deletions(-) delete mode 100644 .changeset/candlestick-gpu-bg-fix.md diff --git a/.changeset/candlestick-gpu-bg-fix.md b/.changeset/candlestick-gpu-bg-fix.md deleted file mode 100644 index 0f8ec415..00000000 --- a/.changeset/candlestick-gpu-bg-fix.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@lit-ui/charts": patch ---- - -fix(candlestick): match ChartGPU canvas background to page background - -ChartGPU's WebGPU canvas uses `alphaMode:"opaque"` (hardcoded), making true -transparency impossible. The built-in dark theme uses `#1a1a2e` which does not -match the docs palette. Now reads `document.body` computed background color and -passes a full custom ThemeConfig so the canvas clears to the page background in -both light and dark mode. diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index f4d8f06e..43117c1e 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -1,5 +1,17 @@ # @lit-ui/charts +## 1.0.2 + +### Patch Changes + +- [`ce25a16`](https://github.com/snowdamiz/lit-ui/commit/ce25a163555535c42d084bceb1db593726f645e4) Thanks [@snowdamiz](https://github.com/snowdamiz)! - fix(candlestick): match ChartGPU canvas background to page background + + ChartGPU's WebGPU canvas uses `alphaMode:"opaque"` (hardcoded), making true + transparency impossible. The built-in dark theme uses `#1a1a2e` which does not + match the docs palette. Now reads `document.body` computed background color and + passes a full custom ThemeConfig so the canvas clears to the page background in + both light and dark mode. + ## 1.0.1 ### Patch Changes diff --git a/packages/charts/package.json b/packages/charts/package.json index cbcb8b90..eeaae88c 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "@lit-ui/charts", - "version": "1.0.1", + "version": "1.0.2", "description": "High-performance chart components with WebGL rendering, real-time streaming, and CSS token theming built with Lit and ECharts", "author": "", "license": "MIT",