Skip to content

Commit eb9226a

Browse files
IE11 compatibility (#73)
1 parent c007ba5 commit eb9226a

12 files changed

+500
-40
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ The format is based on [Keep a
66
Changelog](http://keepachangelog.com/en/1.0.0/) and this project
77
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9+
## [Unreleased]
10+
### Fixed
11+
* [#73](https://github.com/plotly/dash-daq/pull/73) Fix IE11 compatibility issues and ES5 compatibility and validation
12+
913
## [0.3.0] - 2019-11-05
1014
### Added
1115
* [#70](https://github.com/plotly/dash-daq/pull/70) Async ColorPicker and Slider components

babel.config.js

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,6 @@
11
module.exports = {
22
presets: [
3-
[
4-
'@babel/preset-env',
5-
{
6-
useBuiltIns: 'usage',
7-
corejs: 3
8-
}
9-
],
3+
'@babel/preset-env',
104
'@babel/preset-react'
115
],
126
plugins: [

dash_daq/async~colorpicker.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/async~colorpicker.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/async~slider.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/async~slider.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/dash_daq.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/dash_daq.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dash_daq/package-info.json

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dash-daq",
3-
"version": "0.3.0",
3+
"version": "0.3.1",
44
"engines": {
55
"node": ">=8"
66
},
@@ -27,6 +27,7 @@
2727
"build:js-dev": "webpack --mode development",
2828
"build:py": "python get_version_info.py && yarn copy-lib && dash-generate-components ./src/components dash_daq -p package-info.json --r-prefix 'daq'",
2929
"build": "npm run test && npm run lint && npm run build:js && npm run build:py",
30+
"postbuild": "es-check es5 dash_daq/*.js",
3031
"build:dev": "npm run build:js-dev && npm run build:py",
3132
"build-tarball": "npm run build && python setup.py sdist",
3233
"test": "jest",
@@ -62,14 +63,14 @@
6263
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
6364
"@babel/preset-env": "^7.6.0",
6465
"@babel/preset-react": "^7.0.0",
65-
"@plotly/webpack-dash-dynamic-import": "^1.1.1",
66+
"@plotly/webpack-dash-dynamic-import": "^1.1.4",
6667
"babel-eslint": "^10.0.3",
6768
"babel-loader": "^8.0.6",
6869
"chalk": "^2.3.1",
69-
"core-js": "^3.2.1",
7070
"dash-components-archetype-dev": "^0.2.11",
7171
"enzyme": "^3.10.0",
7272
"enzyme-adapter-react-16": "^1.14.0",
73+
"es-check": "^5.0.0",
7374
"fs-extra": "^5.0.0",
7475
"jest": "^24.9.0",
7576
"jest-canvas-mock": "^2.1.1",
@@ -105,4 +106,4 @@
105106
"daq",
106107
"components"
107108
]
108-
}
109+
}

0 commit comments

Comments
 (0)