-
Notifications
You must be signed in to change notification settings - Fork 189
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(axis): better support small time scales
- Loading branch information
1 parent
e115968
commit 8cfa595
Showing
4 changed files
with
160 additions
and
128 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,121 +1,122 @@ | ||
{ | ||
"name": "@carbon/charts", | ||
"version": "0.20.1", | ||
"description": "Carbon charting components", | ||
"main": "./bundle.js", | ||
"module": "./index.js", | ||
"scripts": { | ||
"demo:server": "webpack-dev-server --config webpack.config.js --watch", | ||
"demo:build": "webpack --config webpack.config.js && yarn run docs:build", | ||
"docs:build": "typedoc --out ./demo/bundle/documentation ./src/index.ts", | ||
"build": "bash build.sh", | ||
"postinstall": "bash build-vendor.sh", | ||
"lint": "tslint -p tsconfig.json -c tslint.json", | ||
"test": "karma start --single-run", | ||
"test:watch": "karma start --no-single-run", | ||
"clean": "rm -rf dist demo/bundle" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:IBM/carbon-charts.git" | ||
}, | ||
"keywords": [ | ||
"carbon", | ||
"charts", | ||
"dataviz", | ||
"data-visualization", | ||
"visualizations", | ||
"d3", | ||
"svg", | ||
"component", | ||
"components", | ||
"css", | ||
"html", | ||
"ibm", | ||
"typescript", | ||
"javascript", | ||
"js", | ||
"library", | ||
"pattern", | ||
"patterns", | ||
"sass", | ||
"scss" | ||
], | ||
"author": "IBM", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@carbon/utils-position": "1.1.1", | ||
"babel-polyfill": "6.26.0", | ||
"carbon-components": "10.5.0", | ||
"lodash-es": "4.17.15", | ||
"resize-observer-polyfill": "1.5.0" | ||
}, | ||
"peerDependencies": { | ||
"d3": ">=5.0.0 <=5.9.2" | ||
}, | ||
"devDependencies": { | ||
"@carbon/colors": "10.4.0", | ||
"@carbon/import-once": "10.3.0", | ||
"@carbon/layout": "10.5.0", | ||
"@carbon/motion": "10.4.0", | ||
"@carbon/themes": "10.4.0", | ||
"@carbon/type": "10.5.1", | ||
"@types/d3": "4.11.0", | ||
"@types/jasmine": "2.8.7", | ||
"@types/karma": "3.0.2", | ||
"@types/node": "12.11.7", | ||
"babel-polyfill": "6.26.0", | ||
"copy-webpack-plugin": "4.5.2", | ||
"css-loader": "0.28.7", | ||
"d3": "5.9.2", | ||
"extract-text-webpack-plugin": "3.0.2", | ||
"file-loader": "1.1.5", | ||
"html-loader": "0.5.1", | ||
"html-webpack-exclude-assets-plugin": "0.0.7", | ||
"html-webpack-plugin": "3.2.0", | ||
"jasmine-core": "3.4.0", | ||
"karma": "4.0.1", | ||
"karma-chrome-launcher": "2.2.0", | ||
"karma-firefox-launcher": "1.1.0", | ||
"karma-jasmine": "2.0.1", | ||
"karma-safari-launcher": "1.0.0", | ||
"karma-webpack": "3.0.5", | ||
"lerna": "3.13.4", | ||
"mini-css-extract-plugin": "0.4.4", | ||
"node-sass": "4.10.0", | ||
"raw-loader": "0.5.1", | ||
"rollup": "1.21.4", | ||
"rollup-plugin-commonjs": "10.1.0", | ||
"rollup-plugin-node-resolve": "5.2.0", | ||
"rollup-plugin-terser": "5.1.2", | ||
"rollup-plugin-typescript2": "0.24.2", | ||
"sass-loader": "8.0.0", | ||
"style-loader": "0.19.0", | ||
"ts-loader": "5.1.0", | ||
"tslint": "5.8.0", | ||
"tslint-loader": "3.5.3", | ||
"typedoc": "0.11.1", | ||
"typescript": "3.2.2", | ||
"url-loader": "0.6.2", | ||
"webpack": "4.41.0", | ||
"webpack-cli": "3.3.9", | ||
"webpack-dev-server": "3.7.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "Eliad Moosavi", | ||
"email": "iliadm@ca.ibm.com", | ||
"url": "https://github.com/theiliad" | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Eliad Moosavi", | ||
"email": "iliadm@ca.ibm.com", | ||
"url": "https://github.com/theiliad" | ||
} | ||
] | ||
"name": "@carbon/charts", | ||
"version": "0.20.1", | ||
"description": "Carbon charting components", | ||
"main": "./bundle.js", | ||
"module": "./index.js", | ||
"scripts": { | ||
"demo:server": "webpack-dev-server --config webpack.config.js --watch", | ||
"demo:build": "webpack --config webpack.config.js && yarn run docs:build", | ||
"docs:build": "typedoc --out ./demo/bundle/documentation ./src/index.ts", | ||
"build": "bash build.sh", | ||
"postinstall": "bash build-vendor.sh", | ||
"lint": "tslint -p tsconfig.json -c tslint.json", | ||
"test": "karma start --single-run", | ||
"test:watch": "karma start --no-single-run", | ||
"clean": "rm -rf dist demo/bundle" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git@github.com:IBM/carbon-charts.git" | ||
}, | ||
"keywords": [ | ||
"carbon", | ||
"charts", | ||
"dataviz", | ||
"data-visualization", | ||
"visualizations", | ||
"d3", | ||
"svg", | ||
"component", | ||
"components", | ||
"css", | ||
"html", | ||
"ibm", | ||
"typescript", | ||
"javascript", | ||
"js", | ||
"library", | ||
"pattern", | ||
"patterns", | ||
"sass", | ||
"scss" | ||
], | ||
"author": "IBM", | ||
"license": "Apache-2.0", | ||
"dependencies": { | ||
"@carbon/utils-position": "1.1.1", | ||
"babel-polyfill": "6.26.0", | ||
"carbon-components": "10.5.0", | ||
"date-fns": "2.8.1", | ||
"lodash-es": "4.17.15", | ||
"resize-observer-polyfill": "1.5.0" | ||
}, | ||
"peerDependencies": { | ||
"d3": ">=5.0.0 <=5.9.2" | ||
}, | ||
"devDependencies": { | ||
"@carbon/colors": "10.4.0", | ||
"@carbon/import-once": "10.3.0", | ||
"@carbon/layout": "10.5.0", | ||
"@carbon/motion": "10.4.0", | ||
"@carbon/themes": "10.4.0", | ||
"@carbon/type": "10.5.1", | ||
"@types/d3": "4.11.0", | ||
"@types/jasmine": "2.8.7", | ||
"@types/karma": "3.0.2", | ||
"@types/node": "12.11.7", | ||
"babel-polyfill": "6.26.0", | ||
"copy-webpack-plugin": "4.5.2", | ||
"css-loader": "0.28.7", | ||
"d3": "5.9.2", | ||
"extract-text-webpack-plugin": "3.0.2", | ||
"file-loader": "1.1.5", | ||
"html-loader": "0.5.1", | ||
"html-webpack-exclude-assets-plugin": "0.0.7", | ||
"html-webpack-plugin": "3.2.0", | ||
"jasmine-core": "3.4.0", | ||
"karma": "4.0.1", | ||
"karma-chrome-launcher": "2.2.0", | ||
"karma-firefox-launcher": "1.1.0", | ||
"karma-jasmine": "2.0.1", | ||
"karma-safari-launcher": "1.0.0", | ||
"karma-webpack": "3.0.5", | ||
"lerna": "3.13.4", | ||
"mini-css-extract-plugin": "0.4.4", | ||
"node-sass": "4.10.0", | ||
"raw-loader": "0.5.1", | ||
"rollup": "1.21.4", | ||
"rollup-plugin-commonjs": "10.1.0", | ||
"rollup-plugin-node-resolve": "5.2.0", | ||
"rollup-plugin-terser": "5.1.2", | ||
"rollup-plugin-typescript2": "0.24.2", | ||
"sass-loader": "8.0.0", | ||
"style-loader": "0.19.0", | ||
"ts-loader": "5.1.0", | ||
"tslint": "5.8.0", | ||
"tslint-loader": "3.5.3", | ||
"typedoc": "0.11.1", | ||
"typescript": "3.2.2", | ||
"url-loader": "0.6.2", | ||
"webpack": "4.41.0", | ||
"webpack-cli": "3.3.9", | ||
"webpack-dev-server": "3.7.0" | ||
}, | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "Eliad Moosavi", | ||
"email": "iliadm@ca.ibm.com", | ||
"url": "https://github.com/theiliad" | ||
} | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Eliad Moosavi", | ||
"email": "iliadm@ca.ibm.com", | ||
"url": "https://github.com/theiliad" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters