Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -28,13 +31,15 @@
"chubby-ties-play",
"clean-nights-jog",
"clear-ghosts-arrive",
"clear-pears-tickle",
"clear-points-care",
"cozy-moments-work",
"crazy-ads-appear",
"crazy-friends-talk",
"cruel-cameras-begin",
"cruel-rats-taste",
"curly-lies-write",
"curly-papers-follow",
"cute-donkeys-greet",
"cyan-cougars-occur",
"dark-pandas-start",
Expand All @@ -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",
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand All @@ -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",
Expand Down
50 changes: 50 additions & 0 deletions packages/layerchart/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/layerchart/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading