This repository was archived by the owner on Feb 22, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +35
-19
lines changed
Expand file tree Collapse file tree 4 files changed +35
-19
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ gulp.task(
3131gulp . task (
3232 'copy-js' ,
3333 gulp . parallel ( done => {
34- gulp . src ( [ './node_modules/@binary-com/ smartcharts/dist/*.smartcharts.*' ] ) . pipe ( gulp . dest ( 'www/js/' ) ) ;
34+ gulp . src ( [ './node_modules/smartcharts-beta /dist/*.smartcharts.*' ] ) . pipe ( gulp . dest ( 'www/js/' ) ) ;
3535 done ( ) ;
3636 } )
3737) ;
@@ -41,7 +41,7 @@ gulp.task(
4141 gulp . parallel ( done => {
4242 gulp . src ( [
4343 'node_modules/jquery-ui-css/jquery-ui.min.css' ,
44- './node_modules/@binary-com/ smartcharts/dist/smartcharts.css' ,
44+ './node_modules/smartcharts-beta /dist/smartcharts.css' ,
4545 ] )
4646 . pipe ( concatCss ( 'bundle.css' ) )
4747 . pipe ( rev ( ) )
Original file line number Diff line number Diff line change 102102 "webpack-stream" : " ^4.0.0"
103103 },
104104 "dependencies" : {
105- "@binary-com/ smartcharts" : " ^0.6.1 " ,
105+ "smartcharts-beta " : " ^0.8.0-betam.10 " ,
106106 "binary-style" : " ^0.2.4" ,
107107 "blockly" : " github:google/blockly#59e5ac6" ,
108108 "clone" : " aminmarashi/clone#d97b4f" ,
Original file line number Diff line number Diff line change 99 Share ,
1010 CrosshairToggle ,
1111 ChartSize ,
12- } from '@binary-com/ smartcharts' ;
12+ } from 'smartcharts-beta ' ;
1313import React , { PureComponent } from 'react' ;
1414import { translate } from '../../../common/i18n' ;
1515import Dialog from './Dialog' ;
@@ -121,7 +121,7 @@ class ChartContent extends PureComponent {
121121
122122 renderControls = ( ) => (
123123 < React . Fragment >
124- < CrosshairToggle />
124+ < CrosshairToggle enabled = { false } />
125125 < ChartTypes enabled = { true } onChange = { chartType => this . setState ( { chartType } ) } />
126126 < Timeperiod enabled = { true } onChange = { granularity => this . setState ( { granularity } ) } />
127127 < StudyLegend />
@@ -163,6 +163,7 @@ class ChartContent extends PureComponent {
163163 requestForget = { this . requestForget . bind ( this ) }
164164 barriers = { barriers }
165165 settings = { this . settings }
166+ enabledNavigationWidget = { false }
166167 />
167168 ) ;
168169 }
You can’t perform that action at this time.
0 commit comments