Skip to content

Commit c84dea5

Browse files
Version Packages (next) (#647)
* Version Packages (next) * Update CHANGELOG with new features and fixes Added new features and fixes for TooltipContext, LineChart, and other components. Improved documentation and integration examples for various libraries. * fix CHANGELOG format --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Sean Lynch <techniq35@gmail.com>
1 parent 1678de5 commit c84dea5

File tree

3 files changed

+66
-2
lines changed

3 files changed

+66
-2
lines changed

.changeset/pre.json

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22
"mode": "pre",
33
"tag": "next",
44
"initialVersions": {
5-
"layerchart": "1.0.7"
5+
"layerchart": "1.0.7",
6+
"daisyui-5": "0.0.1",
7+
"shadcn-svelte-1": "0.0.1",
8+
"skeleton-3": "0.0.1",
9+
"standalone": "0.0.1",
10+
"svelteux-2": "0.0.1"
611
},
712
"changesets": [
813
"beige-bears-joke",
@@ -17,15 +22,19 @@
1722
"calm-jars-mix",
1823
"chatty-flies-bet",
1924
"chatty-shirts-rule",
25+
"chilly-games-hide",
2026
"chubby-ties-play",
2127
"clean-nights-jog",
2228
"clear-points-care",
29+
"crazy-ads-appear",
2330
"crazy-friends-talk",
2431
"cruel-cameras-begin",
2532
"cruel-rats-taste",
2633
"curly-lies-write",
34+
"cute-donkeys-greet",
2735
"cyan-cougars-occur",
2836
"dark-pandas-start",
37+
"deep-signs-listen",
2938
"dirty-kings-send",
3039
"early-peaches-accept",
3140
"easy-candies-wait",
@@ -35,10 +44,12 @@
3544
"eleven-crabs-switch",
3645
"eleven-trains-make",
3746
"empty-bats-stop",
47+
"empty-buses-flash",
3848
"every-sheep-rush",
3949
"evil-bags-dance",
4050
"evil-flowers-float",
4151
"evil-hoops-return",
52+
"fast-insects-deny",
4253
"four-taxes-beam",
4354
"free-teeth-live",
4455
"fruity-pillows-agree",
@@ -47,19 +58,25 @@
4758
"funny-wasps-heal",
4859
"giant-donuts-yell",
4960
"green-mirrors-retire",
61+
"grumpy-ties-mix",
62+
"heavy-signs-kick",
5063
"honest-hoops-peel",
64+
"hot-pigs-push",
5165
"huge-boats-fix",
66+
"huge-regions-live",
5267
"huge-rocks-sip",
5368
"khaki-pugs-hammer",
5469
"kind-shirts-sniff",
5570
"large-spiders-stay",
71+
"late-glasses-itch",
5672
"legal-parrots-beam",
5773
"lemon-bats-change",
5874
"loud-lies-film",
5975
"loud-paws-allow",
6076
"lovely-loops-ring",
6177
"lucky-pianos-count",
6278
"mean-flies-play",
79+
"mean-loops-peel",
6380
"mighty-weeks-try",
6481
"modern-nails-kiss",
6582
"new-turtles-clean",
@@ -75,11 +92,13 @@
7592
"pink-hornets-rest",
7693
"pink-showers-hunt",
7794
"polite-parts-learn",
95+
"poor-clocks-occur",
7896
"proud-camels-cut",
7997
"proud-llamas-fold",
8098
"proud-melons-warn",
8199
"public-queens-invite",
82100
"puny-clocks-admire",
101+
"puny-shoes-kiss",
83102
"quiet-insects-share",
84103
"quiet-mangos-kneel",
85104
"rare-hats-happen",
@@ -102,6 +121,7 @@
102121
"solid-badgers-tan",
103122
"some-frogs-camp",
104123
"sour-hounds-repeat",
124+
"spotty-plums-invite",
105125
"spotty-rules-taste",
106126
"swift-gifts-flow",
107127
"tall-mice-tap",
@@ -118,6 +138,8 @@
118138
"violet-horses-walk",
119139
"warm-mammals-deny",
120140
"warm-women-glow",
141+
"weak-donuts-tan",
142+
"whole-women-listen",
121143
"wide-berries-invite",
122144
"witty-clocks-divide"
123145
]

packages/layerchart/CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,47 @@
11
# LayerChart
22

3+
## 2.0.0-next.39
4+
5+
### Minor Changes
6+
7+
- feat: Support css-only usage (no Tailwind required) while retaining first-class Tailwind support ([#557](https://github.com/techniq/layerchart/pull/557))
8+
9+
### Patch Changes
10+
11+
- feat: Simplify daisyUI, shadcn-svelte, and Skeleton integrations with single line `@import 'layerchart/{library}.css'` added to `app.css` ([#557](https://github.com/techniq/layerchart/pull/557))
12+
13+
- docs: Add examples for standalone, daisyUI v5, shadcn-svelte v1, Skeleton v3, and Svelte UX v2 (next) (including light/dark theming) ([#557](https://github.com/techniq/layerchart/pull/557))
14+
15+
- feat(LineChart): Support `orientation="vertical"`. Resolves #640 ([#557](https://github.com/techniq/layerchart/pull/557))
16+
17+
- feat: Add Html context support for applicable primitives such as Circle, Line, Rect, Text (and more) as well as transitively such as Axis, Grid, Labels (and more) ([#557](https://github.com/techniq/layerchart/pull/557))
18+
19+
- feat(LinearGradient): Support Html context ([#557](https://github.com/techniq/layerchart/pull/557))
20+
21+
- fix(Text): Apply `fill: currentColor` to support more straightforward way of changing color (ex. `class="text-red-500"` or `style="color:red"`) ([#557](https://github.com/techniq/layerchart/pull/557))
22+
23+
- fix(TooltipContext): Revert back to pointer events (instead of mouse/touch) but with `touch-action: pan-y`. Provides simplified events while allowing horizontal scrubbing with vertical scrolling. ([#557](https://github.com/techniq/layerchart/pull/557))
24+
25+
- feat(TooltipContext): Add `touchEvents` to control touch event behavior. Defaults to `pan-y` to allow vertical scrolling but horizontal scrubbing. ([#557](https://github.com/techniq/layerchart/pull/557))
26+
27+
- fix(TooltipContext): Fix `band` mode regression when both x/y are scaleBand (ex. punchcard chart) ([#557](https://github.com/techniq/layerchart/pull/557))
28+
29+
- fix(SimplifiedCharts): Properly handle `legend` prop as object when determining bottom padding ([#557](https://github.com/techniq/layerchart/pull/557))
30+
31+
- fix(AreaChart|LineChart|DefaultTooltip): Handle per-series data with different length ([#557](https://github.com/techniq/layerchart/pull/557))
32+
33+
- feat(Highlight): Support passing `opacity` ([#557](https://github.com/techniq/layerchart/pull/557))
34+
35+
- fix(SimplifiedChart): Still add selected legend item opacity when item classes are also applied ([#557](https://github.com/techniq/layerchart/pull/557))
36+
37+
- feat(Legend): Add `selected` prop to fade out unselected items (if passed and non-empty) ([#557](https://github.com/techniq/layerchart/pull/557))
38+
39+
- feat(SeriesState): Add `isHighlighted(seriesKey)` to easy check if series is hightlight (or should be faded) ([#557](https://github.com/techniq/layerchart/pull/557))
40+
41+
- fix(Primatives): Apply default classes when using Canvas context (like Svg). Resolves #544 ([#557](https://github.com/techniq/layerchart/pull/557))
42+
43+
- refactor: Remove use of `layerClass` and apply `lc-{name}` class directly to allow easy component <style> targetting within LayerChart ([#557](https://github.com/techniq/layerchart/pull/557))
44+
345
## 2.0.0-next.38
446

547
### Patch Changes

packages/layerchart/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"author": "Sean Lynch <techniq35@gmail.com>",
55
"license": "MIT",
66
"repository": "techniq/layerchart",
7-
"version": "2.0.0-next.38",
7+
"version": "2.0.0-next.39",
88
"scripts": {
99
"dev": "vite dev --port 3002",
1010
"build": "vite build",

0 commit comments

Comments
 (0)