@sveltejs/pancake
Advanced tools
+1
-1
| { | ||
| "name": "@sveltejs/pancake", | ||
| "version": "0.0.17", | ||
| "version": "0.0.18", | ||
| "description": "Experimental charting library for Svelte", | ||
@@ -5,0 +5,0 @@ "module": "index.mjs", |
@@ -25,2 +25,5 @@ class Node { | ||
| if (leaf) { | ||
| // discard coincident points | ||
| if (leaf.x === p.x && leaf.y === p.y) return; | ||
| // need to subdivide | ||
@@ -108,3 +111,3 @@ this.children = { | ||
| while (node = queue.shift()) { | ||
| while (node = queue.pop()) { | ||
| if (node.empty) continue; | ||
@@ -111,0 +114,0 @@ |
-72
| # @sveltejs/pancake changelog | ||
| ## 0.0.17 | ||
| * Add `<SvgRect>` component, similar to `<Box>` | ||
| ## 0.0.16 | ||
| * Add optional `radius` prop for `<Quadtree>` | ||
| * Expose `width` and `height` on context | ||
| ## 0.0.15 | ||
| * Provide default value for `clip` | ||
| ## 0.0.14 | ||
| * Workaround Svelte bug ([#20](https://github.com/Rich-Harris/pancake/pull/20)) | ||
| ## 0.0.13 | ||
| * Pass index to x/y accessors | ||
| ## 0.0.12 | ||
| * Work around Safari bug ([#9](https://github.com/Rich-Harris/pancake/issues/9)) | ||
| ## 0.0.11 | ||
| * Use `<div class="pancake-whatever">` instead of `<pancake-whatever>` so AMP stops whinging | ||
| ## 0.0.10 | ||
| * Add `clip` property to `<Svg>` | ||
| ## 0.0.9 | ||
| * Expose `<Quadtree>` selection via binding | ||
| ## 0.0.8 | ||
| * Oops, fix `<Bars>` | ||
| ## 0.0.7 | ||
| * Add `clip` property to `<Chart>` | ||
| * Add `width`/`height` properties to `<Columns>` and `<Bars>` respectively | ||
| ## 0.0.6 | ||
| * Squelch warning | ||
| ## 0.0.5 | ||
| * Update `pkg.files` | ||
| ## 0.0.4 | ||
| * Overhaul | ||
| ## 0.0.3 | ||
| * Add `<SvgArea>` component | ||
| * Set extents from data automatically | ||
| ## 0.0.2 | ||
| * Add index.mjs | ||
| ## 0.0.1 | ||
| * First experimental release |
207
0.98%15519
-5.87%21
-4.55%