diff --git a/.changeset/fix-css-layer-order.md b/.changeset/fix-css-layer-order.md deleted file mode 100644 index a122e79a0..000000000 --- a/.changeset/fix-css-layer-order.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'layerchart': patch ---- - -fix(styles): Declare CSS cascade layer order so `components` reliably wins over `base` in production builds. Non-Tailwind consumers can `@import 'layerchart/core.css'` (included by framework presets). diff --git a/.changeset/fix-tooltip-layer-typo.md b/.changeset/fix-tooltip-layer-typo.md deleted file mode 100644 index c5c7591d5..000000000 --- a/.changeset/fix-tooltip-layer-typo.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'layerchart': patch ---- - -fix(styles): Normalize mistyped `@layer component` → `@layer components` in Tooltip and Layer components. diff --git a/packages/layerchart/CHANGELOG.md b/packages/layerchart/CHANGELOG.md index 3b919329d..45d5f8f35 100644 --- a/packages/layerchart/CHANGELOG.md +++ b/packages/layerchart/CHANGELOG.md @@ -1,5 +1,13 @@ # LayerChart +## 2.0.1 + +### Patch Changes + +- fix(styles): Declare CSS cascade layer order so `components` reliably wins over `base` in production builds. Non-Tailwind consumers can `@import 'layerchart/core.css'` (included by framework presets). ([#883](https://github.com/techniq/layerchart/pull/883)) + +- fix(styles): Normalize mistyped `@layer component` → `@layer components` in Tooltip and Layer components. ([#883](https://github.com/techniq/layerchart/pull/883)) + ## 2.0.0 LayerChart 2.0 rebuilds the library on **Svelte 5** (runes & snippets) and **no longer requires Tailwind CSS** — components ship with their own default styles, with Tailwind 4 now optional. It also streamlines several component and context APIs for consistency. Upgrading from v1? Start with the **[v1 → v2 migration guide](https://layerchart.com/docs/guides/migrations/v1-to-v2)**. diff --git a/packages/layerchart/package.json b/packages/layerchart/package.json index f8ff3adae..6f94e92d7 100644 --- a/packages/layerchart/package.json +++ b/packages/layerchart/package.json @@ -5,7 +5,7 @@ "license": "MIT", "repository": "techniq/layerchart", "homepage": "https://layerchart.com", - "version": "2.0.0", + "version": "2.0.1", "scripts": { "dev": "pnpm package:watch", "build": "svelte-package",