-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.4.x: Lazy loading of widgets packages, for ipywidgets 7 and 8 suppo…
…rt (#1482) * Support for widgets 7 * Bring back try/catch but make it verbose * Lazy load CSS * Custom widgets working * Add comments * Gitignore entry for yarn cache * Linter * Linter * CI: Update node * Remove ipyvolume from testing env * Pin jupyter-client in ui-tests * Remove interactive test The output widget shows up properly, though the test fails to run half the time due to jupyter_client * Drop unused async keyword * UI tests for ipywidgets 7 * Oups
- Loading branch information
1 parent
68f422f
commit 5934c53
Showing
11 changed files
with
3,295 additions
and
2,683 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
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 |
---|---|---|
|
@@ -9,7 +9,9 @@ | |
"browserslist": ">0.8%, not ie 11, not op_mini all, not dead", | ||
"dependencies": { | ||
"@jupyter-widgets/base": "^6.0.5", | ||
"@jupyter-widgets/base7": "npm:@jupyter-widgets/[email protected]", | ||
"@jupyter-widgets/controls": "^5.0.6", | ||
"@jupyter-widgets/controls7": "npm:@jupyter-widgets/[email protected]", | ||
"@jupyter-widgets/jupyterlab-manager": "^5.0.8", | ||
"@jupyterlab/application": "^3 || ^4", | ||
"@jupyterlab/apputils": "^3 || ^4", | ||
|
@@ -27,18 +29,20 @@ | |
"@lumino/signaling": "^1.4.3 || ^2", | ||
"@lumino/virtualdom": "^1.8.0 || ^2", | ||
"@lumino/widgets": "^1.18.0 || ^2", | ||
"jquery": "^3.7.0", | ||
"mathjax-full": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.2.2", | ||
"@babel/preset-env": "^7.3.1", | ||
"@types/node": "^20.14.10", | ||
"babel-loader": "^8.0.5", | ||
"css-loader": "^5.0.0", | ||
"file-loader": "^4.0.0", | ||
"npm-run-all": "^4.1.5", | ||
"p-limit": "^2.2.2", | ||
"style-loader": "^2.0.0", | ||
"typescript": "~4.1.3", | ||
"typescript": "^5", | ||
"url-loader": "^1.0.0", | ||
"webpack": "^5", | ||
"webpack-cli": "^3.2.3" | ||
|
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
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 |
---|---|---|
|
@@ -17,6 +17,6 @@ | |
"skipLibCheck": true, | ||
"strictNullChecks": true, | ||
"target": "es2017", | ||
"types": [] | ||
"types": ["node"] | ||
} | ||
} |
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.