Skip to content

Commit f0aa410

Browse files
committed
v0.7.0
1 parent 0077427 commit f0aa410

10 files changed

Lines changed: 24 additions & 18 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.7.0
44

55
### Highlights
66

7+
- Control for enter and exit transitions in `MilestoneMotion`
8+
- Support for more customization in high-order components through prop
9+
`componentProps`
10+
- New component `Viewfinder`
11+
- Double-click interactions with legends
12+
713
### Added
814

915
- [core] generic type `PreparedDataContextProps` to hold datasets with

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"$schema": "node_modules/lerna/schemas/lerna-schema.json",
33
"useNx": true,
44
"useWorkspaces": true,
5-
"version": "0.7.0-alpha.0"
5+
"version": "0.7.0"
66
}

packages/annotation/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/annotation",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for chart annotation",
66
"keywords": [
@@ -31,7 +31,7 @@
3131
"build": "PACKAGE=annotation rollup -c ../../rollup.config.js && tsc"
3232
},
3333
"dependencies": {
34-
"@chsk/core": "^0.7.0-alpha.0",
34+
"@chsk/core": "^0.7.0",
3535
"d3-shape": "^3.2.0",
3636
"framer-motion": ">=7.0.0"
3737
},

packages/band/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/band",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for charts with one categorical axis and one continuous axis",
66
"keywords": [
@@ -43,7 +43,7 @@
4343
"build": "PACKAGE=band rollup -c ../../rollup.config.js && tsc"
4444
},
4545
"dependencies": {
46-
"@chsk/core": "^0.7.0-alpha.0",
46+
"@chsk/core": "^0.7.0",
4747
"framer-motion": ">=7.0.0"
4848
},
4949
"peerDependencies": {

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/core",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Framework for building dynamic data visualizations",
66
"keywords": [

packages/matrix/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/matrix",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for charts with two categorical axes",
66
"keywords": [
@@ -34,8 +34,8 @@
3434
"build": "PACKAGE=matrix rollup -c ../../rollup.config.js && tsc"
3535
},
3636
"dependencies": {
37-
"@chsk/band": "^0.7.0-alpha.0",
38-
"@chsk/core": "^0.7.0-alpha.0",
37+
"@chsk/band": "^0.7.0",
38+
"@chsk/core": "^0.7.0",
3939
"framer-motion": ">=7.0.0"
4040
},
4141
"peerDependencies": {

packages/polar/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/polar",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for charts using polar coordinates",
66
"keywords": [
@@ -34,7 +34,7 @@
3434
"build": "PACKAGE=polar rollup -c ../../rollup.config.js && tsc"
3535
},
3636
"dependencies": {
37-
"@chsk/core": "^0.7.0-alpha.0",
37+
"@chsk/core": "^0.7.0",
3838
"d3-interpolate": "^3.0.1",
3939
"d3-shape": "^3.2.0",
4040
"framer-motion": ">=7.0.0"

packages/set/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/set",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for diagrams summarizing sets",
66
"keywords": [
@@ -34,7 +34,7 @@
3434
"build": "PACKAGE=set rollup -c ../../rollup.config.js && tsc"
3535
},
3636
"dependencies": {
37-
"@chsk/core": "^0.7.0-alpha.0",
37+
"@chsk/core": "^0.7.0",
3838
"d3-interpolate": "^3.0.1",
3939
"framer-motion": ">=7.0.0"
4040
},

packages/themes/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/themes",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for theming charts",
66
"keywords": [
@@ -32,7 +32,7 @@
3232
"build": "PACKAGE=themes rollup -c ../../rollup.config.js && tsc"
3333
},
3434
"dependencies": {
35-
"@chsk/core": "^0.7.0-alpha.0",
35+
"@chsk/core": "^0.7.0",
3636
"d3-scale-chromatic": "^3.0.0"
3737
},
3838
"devDependencies": {

packages/xy/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@chsk/xy",
3-
"version": "0.7.0-alpha.0",
3+
"version": "0.7.0",
44
"author": "Tomasz Konopka",
55
"description": "Components for charts with two cartesian axes with continuous scales",
66
"keywords": [
@@ -39,7 +39,7 @@
3939
"build": "PACKAGE=xy rollup -c ../../rollup.config.js && tsc"
4040
},
4141
"dependencies": {
42-
"@chsk/core": "^0.7.0-alpha.0",
42+
"@chsk/core": "^0.7.0",
4343
"framer-motion": ">=7.0.0",
4444
"lodash": "^4.17.21"
4545
},

0 commit comments

Comments
 (0)