-
Notifications
You must be signed in to change notification settings - Fork 948
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
HTMLManager: Support both ipywidgets 7 and 8 models (#3932)
* HTMLManager: Support both ipywidgets 7 and 8 models * Linter * Fix integrity test * Add test * Fix the tests * Apply same special case for jupyter-widgets packages as in the lab manager * Reduce PR diff
- Loading branch information
1 parent
c579fcd
commit 73c98f0
Showing
11 changed files
with
531 additions
and
81 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 |
---|---|---|
|
@@ -38,7 +38,9 @@ | |
"@fortawesome/fontawesome-free": "^5.12.0", | ||
"@jupyter-widgets/base": "^6.0.8", | ||
"@jupyter-widgets/base-manager": "^1.0.9", | ||
"@jupyter-widgets/base7": "npm:@jupyter-widgets/[email protected]", | ||
"@jupyter-widgets/controls": "^5.0.9", | ||
"@jupyter-widgets/controls7": "npm:@jupyter-widgets/[email protected]", | ||
"@jupyter-widgets/output": "^6.0.8", | ||
"@jupyter-widgets/schema": "^0.5.5", | ||
"@jupyterlab/outputarea": "^3.0.0 || ^4.0.0", | ||
|
@@ -47,7 +49,8 @@ | |
"@lumino/messaging": "^1.10.1 || ^2.1", | ||
"@lumino/widgets": "^1.30.0 || ^2.1", | ||
"ajv": "^8.6.0", | ||
"jquery": "^3.1.1" | ||
"jquery": "^3.1.1", | ||
"semver": "^7.3.5" | ||
}, | ||
"devDependencies": { | ||
"@types/jquery": "^3.5.16", | ||
|
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
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
Oops, something went wrong.