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 11{
22 "name" : " vueplotlib" ,
3- "version" : " 1.5.2 " ,
3+ "version" : " 1.6.0 " ,
44 "private" : false ,
55 "scripts" : {
66 "serve" : " vue-cli-service serve --open ./examples-src/index.js" ,
Original file line number Diff line number Diff line change 22 * Enum of the base event types.
33 */
44export const EVENT_TYPES = Object . freeze ( {
5- SCALE : 1 ,
6- DATA : 2
5+ SCALE : "SCALE" ,
6+ DATA : "DATA"
77} ) ;
88
99/**
1010 * Enum of the base event subtypes.
1111 */
1212export 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"
1717} ) ;
1818
1919/**
You can’t perform that action at this time.
0 commit comments