forked from equinor/webviz-core-components
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Control node version with volta * Bump reactour Bumps reactour from 1.18.3 to 1.19.0. Bumps @types/reactour from 1.18.1 to 1.18.2. * Bump @equinor/eds-core-react and @equinor/eds-icons * Bump notistack to latest version Bumps notistack from 1.0.5 to 3.0.1. * Bump react-draggable and remove react-is Bumps react-draggable from 4.4.4 to 4.4.5. Removes react-is. * Bump classnames, html2canvas and styled-components Bumps classnames from 2.2.6 to 2.3.2. Bumps html2canvas from 1.0.0-rc.7 to 1.4.1. Bumps styled-components from 5.2.1 to 5.3.11. * Bump @equinor/eds-icons Bumps @equinor/eds-icons from 0.19.1 to 0.19.2. * Update CHANGELOG.md * Update CHANGELOG.md * Fix formatting * Fix lint scripts and bump lint dependencies * Pin selenium python test dependency. * test: pin python test dependency flask < 2.3 --------- Co-authored-by: Christophe Winkler <[email protected]> Co-authored-by: Anders Fredrik Kiær <[email protected]> Co-authored-by: Havard Bjerke <[email protected]>
- Loading branch information
1 parent
1254599
commit cba53f3
Showing
9 changed files
with
4,181 additions
and
2,982 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,8 +31,8 @@ | |
"prepublishOnly": "npm test && npm run lint", | ||
"preversion": "npm run lint", | ||
"typecheck": "tsc --noEmit", | ||
"format": "eslint --fix 'src/**/*.+(ts|tsx|js|jsx|json|css)' 'tests/**/*.+(ts|tsx|js|jsx|json|css)'", | ||
"lint": "eslint 'src/**/*.+(ts|tsx|js|jsx|json|css)' 'tests/**/*.+(ts|tsx|js|jsx|json|css)'", | ||
"format": "eslint --fix \"src/**/*.{ts,tsx,js,jsx,json,css}\" \"tests/**/*.{ts,tsx,js,jsx,json,css}\"", | ||
"lint": "eslint \"src/**/*.{ts,tsx,js,jsx,json,css}\" \"tests/**/*.{ts,tsx,js,jsx,json,css}\"", | ||
"validate": "npm run typecheck && npm run lint", | ||
"test": "jest", | ||
"storybook": "start-storybook -p 6006", | ||
|
@@ -41,21 +41,20 @@ | |
"author": "Equinor <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@equinor/eds-core-react": "^0.17.0", | ||
"@equinor/eds-icons": "^0.10.0", | ||
"@equinor/eds-core-react": "^0.31.1", | ||
"@equinor/eds-icons": "^0.19.2", | ||
"@material-ui/core": "^4.11.3", | ||
"@material-ui/lab": "^4.0.0-alpha.57", | ||
"@react-hook/size": "^2.1.2", | ||
"animate.css": "^4.1.1", | ||
"classnames": "^2.2.6", | ||
"html2canvas": "^1.0.0-rc.7", | ||
"classnames": "^2.3.2", | ||
"html2canvas": "^1.4.1", | ||
"lodash": "^4.17.21", | ||
"notistack": "^1.0.5", | ||
"notistack": "^3.0.1", | ||
"react-colorscales": "^0.7.3", | ||
"react-draggable": "^4.4.4", | ||
"react-is": "^17.0.2", | ||
"reactour": "^1.18.3", | ||
"styled-components": "^5.2.1", | ||
"react-draggable": "^4.4.5", | ||
"reactour": "^1.19.0", | ||
"styled-components": "^5.3.11", | ||
"uuid": "^8.3.2" | ||
}, | ||
"devDependencies": { | ||
|
@@ -76,21 +75,21 @@ | |
"@types/lodash": "^4.14.176", | ||
"@types/react": "^17.0.3", | ||
"@types/react-dom": "^17.0.3", | ||
"@types/reactour": "^1.18.1", | ||
"@types/reactour": "^1.18.2", | ||
"@types/uuid": "^8.3.2", | ||
"@typescript-eslint/eslint-plugin": "^4.19.0", | ||
"@typescript-eslint/parser": "^4.19.0", | ||
"@typescript-eslint/eslint-plugin": "^5.61.0", | ||
"@typescript-eslint/parser": "^5.61.0", | ||
"babel-jest": "^26.6.3", | ||
"babel-loader": "^8.2.2", | ||
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", | ||
"copyfiles": "^2.4.1", | ||
"css-loader": "^5.1.3", | ||
"css-minimizer-webpack-plugin": "^4.2.2", | ||
"dotenv-webpack": "^7.0.2", | ||
"eslint": "^7.22.0", | ||
"eslint-config-prettier": "^8.1.0", | ||
"eslint-plugin-import": "^2.22.1", | ||
"eslint-plugin-react": "^7.23.0", | ||
"eslint": "^8.44.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-import": "^2.27.5", | ||
"eslint-plugin-react": "^7.32.2", | ||
"file-loader": "^6.2.0", | ||
"jest": "^26.6.3", | ||
"mini-css-extract-plugin": "^1.3.9", | ||
|
@@ -113,5 +112,8 @@ | |
"engines": { | ||
"node": ">=16", | ||
"npm": ">=7" | ||
}, | ||
"volta": { | ||
"node": "16.18.1" | ||
} | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
|
||
|
||
def test_colorscale(dash_duo): | ||
|
||
app = Dash(__name__) | ||
|
||
app.layout = html.Div( | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
|
||
|
||
def test_container_placeholder(dash_duo): | ||
|
||
app = Dash(__name__) | ||
|
||
app.layout = html.Div( | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,6 @@ | |
|
||
|
||
def test_plugin_placeholder(dash_duo): | ||
|
||
app = Dash(__name__) | ||
|
||
app.layout = html.Div( | ||
|
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