File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vueplotlib" ,
3
- "version" : " 1.5.2 " ,
3
+ "version" : " 1.6.0 " ,
4
4
"private" : false ,
5
5
"scripts" : {
6
6
"serve" : " vue-cli-service serve --open ./examples-src/index.js" ,
Original file line number Diff line number Diff line change 2
2
* Enum of the base event types.
3
3
*/
4
4
export const EVENT_TYPES = Object . freeze ( {
5
- SCALE : 1 ,
6
- DATA : 2
5
+ SCALE : "SCALE" ,
6
+ DATA : "DATA"
7
7
} ) ;
8
8
9
9
/**
10
10
* Enum of the base event subtypes.
11
11
*/
12
12
export const EVENT_SUBTYPES = Object . freeze ( {
13
- SCALE_DOMAIN_FILTER : 1 ,
14
- SCALE_DOMAIN_SORT : 2 ,
15
- SCALE_COLOR_SCALE : 3 ,
16
- SCALE_COLOR_OVERRIDE : 4
13
+ SCALE_DOMAIN_FILTER : "FILTER" ,
14
+ SCALE_DOMAIN_SORT : "SORT" ,
15
+ SCALE_COLOR_SCALE : "COLOR_SCALE" ,
16
+ SCALE_COLOR_OVERRIDE : "COLOR_OVERRIDE"
17
17
} ) ;
18
18
19
19
/**
You can’t perform that action at this time.
0 commit comments