Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
[email protected]
Minor Changes
feat: Support Canvas context for most primatives (Arc, Area, Circle, Group, Line, LinearGradient, Rect, Spline, and Text). Also updates components using primatives (Axis, Bar, Grid, Rule, and more) (#295)
feat: Update all simplified charts to support
renderContext
prop to switch between Svg (default) and Canvas (AreaChart, BarChart, LineChart, PieChart, and ScatterChart) (#295)feat(Canvas): Support
center
prop (similar toSvg
) to translate children to center (useful for radial layouts) (#295)breaking(LinearGradient|RadialGradient): Rename
url
slot prop togradient
. Improves name, especially within canvas context (#295)feat: Improve Canvas implementation with registering render functions and common invalidation to synchronize redrawing (#295)
feat: Add
ComputedStyles
component to easily resolve classes / CSS variable values (useful when working with ) (#295)breaking(GeoPath): Simplify render prop use case by leveraging renderPathData() (ex. HitCanvas) (#295)
Patch Changes
Add
spikePath()
util (#295)fix(circlePath): Correctly handle sweep argument (#295)
feat: Add new
renderPathData()
canvas util to simplify rendering SVG path data onto canvas context with CSS variable and class support (#295)feat: Add new
renderRect()
canvas util to simplify rendering rectangles onto canvas context with CSS variable and class support (#295)fix: Reduce likihood of clipping for Canvas-rendered simplified charts by increasing default padding (and add top)) (#295)
fix(Canvas): Support multiple children (fix infinite loops, coordinating redraws, etc). Resolves issue Canvas infinite loop issue (Svelte 3/4) #158 (#295)
feat: Add new
renderText()
canvas util to simplify rendering text onto canvas context with CSS variable and class support (#295)feat: Add
scaleCanvas
util (#295)Add
clearCanvasContext()
util (#295)