orbcharts 3.0.0-alpha.30 → 3.0.0-alpha.31

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orbcharts",
3
- "version": "3.0.0-alpha.30",
3
+ "version": "3.0.0-alpha.31",
4
4
  "description": "OrbCharts is an open source chart library based on d3.js and rx.js",
5
5
  "author": "Blue Planet Inc.",
6
6
  "license": "Apache-2.0",
@@ -31,6 +31,7 @@
31
31
  "dependencies": {
32
32
  "@orbcharts/core": "^3.0.0-alpha.26",
33
33
  "@orbcharts/plugins-basic": "^3.0.0-alpha.30",
34
+ "@orbcharts/presets-basic": "^3.0.0-alpha.1",
34
35
  "d3": "^7.8.5",
35
36
  "rxjs": "^7.8.1"
36
37
  }
package/src/index.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  export * from '@orbcharts/core/dist/src/index.d.ts'
2
- export * from '@orbcharts/plugins-basic/dist/src/index.d.ts'
2
+ export * from '@orbcharts/plugins-basic/dist/src/index.d.ts'
3
+ export * from '@orbcharts/presets-basic/dist/src/index.d.ts'
@@ -1,3 +1,4 @@
1
1
  export * from '@orbcharts/core'
2
2
  export * from '@orbcharts/plugins-basic'
3
+ export * from '@orbcharts/presets-basic'
3
4