Loëck Vézien
7 years ago
No known key found for this signature in database
GPG Key ID: CBCDCE384E853AC4
4 changed files with
27 additions and
13 deletions
-
electron-builder.yml
-
package.json
-
src/components/DevTools.js
-
src/components/base/Chart/index.js
|
|
@ -43,7 +43,23 @@ nsis: |
|
|
|
|
|
|
|
files: |
|
|
|
- dist/internals |
|
|
|
- "!node_modules/jsqr/test-data${/*}" |
|
|
|
- "!node_modules/ledger-test-library/deps/djinni${/*}" |
|
|
|
- "!node_modules/ledger-test-library/deps/gyp${/*}" |
|
|
|
- "!node_modules/raven-js/dist${/*}" |
|
|
|
- "!node_modules/7zip-bin-linux" |
|
|
|
- "!node_modules/7zip-bin-mac" |
|
|
|
- "!node_modules/7zip-bin-win" |
|
|
|
- "!node_modules/app-builder-bin-linux" |
|
|
|
- "!node_modules/app-builder-bin-mac" |
|
|
|
- "!node_modules/app-builder-bin-win" |
|
|
|
- "!node_modules/app-builder-util" |
|
|
|
- "!node_modules/builder-util" |
|
|
|
- "!node_modules/dmg-builder" |
|
|
|
- "!node_modules/electron-builder-lib" |
|
|
|
- "!node_modules/electron-rebuild" |
|
|
|
- "!node_modules/electron" |
|
|
|
- "!node_modules/jsqr/test-data" |
|
|
|
- "!node_modules/ledger-test-library/deps/djinni" |
|
|
|
- "!node_modules/ledger-test-library/deps/gyp" |
|
|
|
- "!node_modules/node-gyp" |
|
|
|
- "!node_modules/opencollective" |
|
|
|
- "!node_modules/raven-js/dist" |
|
|
|
- "!node_modules/rxjs" |
|
|
|
- "!node_modules/victory-pie" |
|
|
|
|
|
@ -121,7 +121,6 @@ |
|
|
|
"electron": "1.8.3", |
|
|
|
"electron-builder": "^20.2.0", |
|
|
|
"electron-devtools-installer": "^2.2.3", |
|
|
|
"electron-rebuild": "^1.7.3", |
|
|
|
"electron-webpack": "1.13.0", |
|
|
|
"eslint": "^4.18.1", |
|
|
|
"eslint-config-airbnb": "^16.1.0", |
|
|
|
|
|
@ -5,7 +5,7 @@ |
|
|
|
import React, { PureComponent } from 'react' |
|
|
|
import { remote, ipcRenderer } from 'electron' |
|
|
|
import { translate } from 'react-i18next' |
|
|
|
import { VictoryArea } from 'victory' |
|
|
|
import VictoryArea from 'victory-chart/lib/components/victory-area/victory-area' |
|
|
|
import styled from 'styled-components' |
|
|
|
import color from 'color' |
|
|
|
import fs from 'fs' |
|
|
|
|
|
@ -3,13 +3,12 @@ |
|
|
|
/* eslint-disable react/no-multi-comp */ |
|
|
|
|
|
|
|
import React, { Fragment, Component, PureComponent } from 'react' |
|
|
|
import { |
|
|
|
VictoryChart, |
|
|
|
VictoryArea, |
|
|
|
VictoryAxis, |
|
|
|
VictoryTooltip, |
|
|
|
VictoryVoronoiContainer, |
|
|
|
} from 'victory' |
|
|
|
|
|
|
|
import VictoryChart from 'victory-chart/lib/components/victory-chart/victory-chart' |
|
|
|
import VictoryArea from 'victory-chart/lib/components/victory-area/victory-area' |
|
|
|
import VictoryAxis from 'victory-chart/lib/components/victory-axis/victory-axis' |
|
|
|
import VictoryTooltip from 'victory-core/lib/victory-tooltip/victory-tooltip' |
|
|
|
import VictoryVoronoiContainer from 'victory-chart/lib/components/containers/victory-voronoi-container' |
|
|
|
|
|
|
|
import { space, colors, fontSizes } from 'styles/theme' |
|
|
|
|
|
|
|