-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 1.12.0-rc.0 * Modularize lodash (#163) * Update build process to modularize lodash * Update src files to import lodash modularly * Fix missing lodash imports and remove partial and use better bind function for tests * Update docs * Update changelog * Replace lodash functions with native JS versions (#164) * Use Array, every and isFinite from JS native * Use some and find from JS native * Fix isFinite to check for null * Replace assign with Object.assign * Replace partial with bind * Remove console * Fix bind on XYPlot * Deprecate moment in favor of d3 time format. Move getDefaultFormats to Label utils and remove from X and YAxisLabels as static functions. Update tests (#166) * Deprecate numeral.js (#169) * replace numeral in Label.jsx with d3 format * remove format prop documentation, update formats prop documentation for X and Y AxisLabels * remove props.format from X and Y Axis Labels * Remove numeral from SankeyDiagram component * removed numeral library and updated docs * add back format prop for both X and Y Axis Label components" * Add format prop back allowing only function type * Clean build with updated props docs * Updated build * Fix typo in docs * Actually fix typo * Clean build with fixed typos in docs * add testing for numeric formats passed to X and Y Axis Labels * fix typo in comment * update format documentation to mirror formats * Update XAxis and YAxis labelFormat PropType * Fix import for identity * Update X and Y axis labels examples with new formats * Update CHANGELOG.md * Namespace xy plot props (#170) * Update prop omission logic in XYPlot and change style -> xyPlotContainerStyle * Fix tests and clean up * Update format examples (#171) * Update component docs and build * Migrate to Spotify web scripts for eslint and prettier (#173) * Added packages from spotify/web-scripts * Run prettier * Eslint clean up * Run eslint on test instead of using eslint.spec.js * Fix componentdocs file * Rebuild docs * Fix tests * Update changelog * Update docs * Fix documentation props sort logic & update docs * 2.0.0-rc.1 * Update changelog for 2.0.0
- Loading branch information
1 parent
e4c4bfb
commit b77ae0a
Showing
153 changed files
with
5,768 additions
and
4,213 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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Ignore charts that are still experimental | ||
/src/AreaHeatmap.js | ||
/src/KernelDensityEstimation.js | ||
|
||
# Ignore shallowEqual | ||
/src/utils/shallowEqual.js | ||
|
||
# Ignore lessons | ||
/docs/src/lessons |
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,4 +1,21 @@ | ||
{ | ||
"settings": { | ||
"react": { | ||
"version": "detect" | ||
} | ||
}, | ||
"parser": "babel-eslint", | ||
"extends": ["plugin:prettier/recommended"] | ||
"extends": [ | ||
"@spotify/eslint-config-react", | ||
"@spotify/eslint-config-base", | ||
"prettier" | ||
], | ||
"plugins": ["jest"], | ||
"rules": { | ||
"consistent-return": "off", | ||
"no-nested-ternary": "off", | ||
"no-console": ["error", { "allow": ["warn", "error"] }], | ||
"jsx-a11y/click-events-have-key-events": "off", | ||
"jsx-a11y/no-noninteractive-element-interactions": "off" | ||
} | ||
} |
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
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
.../build/bundle.4c89163a638cb6f3ce23.js.map → .../build/bundle.9f0eba26ff4f5db2f08b.js.map
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
Oops, something went wrong.