diff --git a/.changeset/pre.json b/.changeset/pre.json index 8122c8d6e..bc64ba89f 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -7,11 +7,14 @@ "shadcn-svelte-1": "0.0.1", "skeleton-3": "0.0.1", "standalone": "0.0.1", - "svelteux-2": "0.0.1" + "svelteux-2": "0.0.1", + "docs": "0.0.1", + "skeleton4": "0.0.1" }, "changesets": [ "beige-bears-joke", "beige-doodles-shout", + "beige-trams-check", "better-eagles-scream", "better-pets-divide", "big-boxes-shout", @@ -28,6 +31,7 @@ "chubby-ties-play", "clean-nights-jog", "clear-ghosts-arrive", + "clear-pears-tickle", "clear-points-care", "cozy-moments-work", "crazy-ads-appear", @@ -35,6 +39,7 @@ "cruel-cameras-begin", "cruel-rats-taste", "curly-lies-write", + "curly-papers-follow", "cute-donkeys-greet", "cyan-cougars-occur", "dark-pandas-start", @@ -53,24 +58,35 @@ "evil-bags-dance", "evil-flowers-float", "evil-hoops-return", + "fair-phones-wink", "fast-insects-deny", + "flat-cases-enter", + "four-lizards-win", "four-taxes-beam", "free-teeth-live", "fruity-pillows-agree", + "fruity-pumas-stick", "full-pens-cheat", + "full-times-guess", "funny-otters-kick", "funny-wasps-heal", "giant-donuts-yell", + "good-glasses-design", "green-mirrors-retire", + "green-poems-drop", "grumpy-ties-mix", "happy-bats-eat", "heavy-signs-kick", "honest-hoops-peel", + "hot-dots-stick", "hot-pigs-push", "huge-boats-fix", + "huge-lions-do", "huge-regions-live", "huge-rocks-sip", + "icy-llamas-jump", "khaki-pugs-hammer", + "kind-melons-invent", "kind-shirts-sniff", "large-spiders-stay", "late-glasses-itch", @@ -116,7 +132,9 @@ "shaggy-dryers-make", "shaky-animals-wave", "shaky-dots-go", + "shaky-ends-bake", "sharp-rockets-jam", + "silver-mugs-leave", "slow-hounds-hide", "slow-streets-look", "smart-dots-rule", @@ -126,6 +144,9 @@ "solid-badgers-tan", "some-frogs-camp", "sour-hounds-repeat", + "sparkly-beds-dress", + "spicy-gifts-float", + "spicy-seals-kiss", "spotty-plums-invite", "spotty-rules-taste", "swift-gifts-flow", @@ -135,10 +156,12 @@ "tangy-lies-strive", "tasty-states-raise", "thirty-glasses-pick", + "three-cities-chew", "tricky-nights-mix", "tricky-pears-help", "true-waves-roll", "twelve-frogs-agree", + "twenty-bushes-hope", "violet-gifts-fail", "violet-horses-walk", "warm-mammals-deny", diff --git a/packages/layerchart/CHANGELOG.md b/packages/layerchart/CHANGELOG.md index c18834434..bfa7c253c 100644 --- a/packages/layerchart/CHANGELOG.md +++ b/packages/layerchart/CHANGELOG.md @@ -1,5 +1,55 @@ # LayerChart +## 2.0.0-next.45 + +### Major Changes + +- feat: New docs site ([#449](https://github.com/techniq/layerchart/pull/449)) + +### Minor Changes + +- breaking: Extract `Path` primitive component from `Spline` for better separation of concerns ([#659](https://github.com/techniq/layerchart/pull/659)) + +- breaking: Rename simplified charts `renderContext` prop to `layer` ([#659](https://github.com/techniq/layerchart/pull/659)) + +- breaking: Change `defaultChartPadding(axis, legend)` to `defaultChartPadding({ axis, legend })` and support overrides (ex. `defaultChartPadding({ left: 50 })`) ([#659](https://github.com/techniq/layerchart/pull/659)) + +### Patch Changes + +- feat(Chart): Support passing explicit `width` and `height` instead of requiring parent dimensions ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat: Support global settings (layer type, debug, etc) ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat(Layer): Allow `type` to be optional, fallbacking back to `settings.layer` type ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat(Chart|Svg|Html): Support passing `clip` prop to hide overflown content ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat(Circle|Rect): Support passing children snippet for Html layers ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat(Layer): Support showing chart and full frame boundaries with `settings.debug` ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Threshold): Properly clip `above` snippet (resolving 1/2 width clipping issues when using Spline) ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(AnnotationRange|TooltipContext|Highlight): Fix using interval scales with reversed data (ex. xReverse) ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Canavs): Support `style` attribute ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Canavs): Suppport dashed stroke (fix: #652) ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Rect): Support rounded (rx/ry) in Canvas layers (fixes [#481](https://github.com/techniq/layerchart/issues/481)) ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Bar): Fix browser lockup when switching between group and stack layouts ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Bar): Fix bar rounding direction when using xReverse/yReverse with interval scales ([#659](https://github.com/techniq/layerchart/pull/659)) + +- fix(Text): Support explicit "\n" and set line-height (to match svg/canvas) for html layers ([#659](https://github.com/techniq/layerchart/pull/659)) + +- feat(Chart): Support `class` prop ([#659](https://github.com/techniq/layerchart/pull/659)) + +- refactor: Move contexts to separate `$lib/contexts` module ([#659](https://github.com/techniq/layerchart/pull/659)) + +- refactor: Removed lodash-es dependency ([#659](https://github.com/techniq/layerchart/pull/659)) + ## 2.0.0-next.44 ### Patch Changes diff --git a/packages/layerchart/package.json b/packages/layerchart/package.json index 4654973c6..52c34540d 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-next.44", + "version": "2.0.0-next.45", "scripts": { "dev": "pnpm package:watch", "package": "svelte-package",