@orbcharts/core 3.0.0-alpha.23 → 3.0.0-alpha.24

Sign up to get free protection for your applications and to get access to all the features.
@@ -33,4 +33,4 @@ export interface ColorScheme {
33
33
  white: string;
34
34
  background: string;
35
35
  }
36
- export type ColorType = keyof ColorScheme;
36
+ export type ColorType = 'none' | keyof ColorScheme;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orbcharts/core",
3
- "version": "3.0.0-alpha.23",
3
+ "version": "3.0.0-alpha.24",
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",
@@ -47,4 +47,4 @@ export interface ColorScheme {
47
47
  background: string
48
48
  }
49
49
 
50
- export type ColorType = keyof ColorScheme
50
+ export type ColorType = 'none' | keyof ColorScheme