forked from voila-dashboards/voila
-
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.
- Loading branch information
1 parent
a660d6f
commit c092f4a
Showing
20 changed files
with
473 additions
and
97 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
4 changes: 0 additions & 4 deletions
4
packages/voila/src/plugins/widget/index.ts → packages/voila/src/plugins/outputs/index.ts
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,13 +1,9 @@ | ||
import { VoilaWidgetManager } from './manager'; | ||
import { | ||
widgetManager, | ||
renderOutputsPlugin, | ||
renderOutputsProgressivelyPlugin | ||
} from './plugins'; | ||
|
||
export { | ||
VoilaWidgetManager, | ||
widgetManager, | ||
renderOutputsPlugin, | ||
renderOutputsProgressivelyPlugin | ||
}; |
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
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# @voila-dashboards/widgets-manager7 | ||
|
||
The Jupyter-widgets manager for Voilà and ipywidgets 7. |
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,73 @@ | ||
{ | ||
"name": "@voila-dashboards/widgets-manager7", | ||
"version": "0.5.7", | ||
"description": "The Voilà jupyter-widgets manager for ipywidgets 7 support", | ||
"keywords": [ | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/voila-dashboards/voila", | ||
"bugs": { | ||
"url": "https://github.com/voila-dashboards/voila/issues" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": "Voilà contributors", | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/voila-dashboards/voila.git" | ||
}, | ||
"scripts": { | ||
"build": "jlpm run build:lib && jlpm run build:labextension:dev", | ||
"build:labextension": "jupyter labextension build .", | ||
"build:labextension:dev": "jupyter labextension build --development True .", | ||
"build:lib": "tsc", | ||
"build:prod": "jlpm run build:lib && jlpm run build:labextension", | ||
"build:test": "tsc --build tsconfig.test.json", | ||
"clean": "jlpm run clean:lib && jlpm run clean:labextension", | ||
"clean:labextension": "rimraf ../../voila/labextensions/widgets-manager7", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"test": "jest", | ||
"watch": "run-p watch:src watch:labextension", | ||
"watch:labextension": "jupyter labextension watch .", | ||
"watch:src": "tsc -w" | ||
}, | ||
"dependencies": { | ||
"@jupyter-widgets/base": "^4.1.6", | ||
"@jupyter-widgets/controls": "^3.1.6", | ||
"@jupyter-widgets/jupyterlab-manager": "^3.1.10", | ||
"@jupyterlab/application": "^4.0.0", | ||
"@jupyterlab/coreutils": "^6.0.5", | ||
"@jupyterlab/rendermime": "^4.0.0", | ||
"@jupyterlab/services": "^7.0.0" | ||
}, | ||
"devDependencies": { | ||
"@babel/core": "^7.10.2", | ||
"@babel/preset-env": "^7.10.2", | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@jupyterlab/testutils": "^4.0.0", | ||
"npm-run-all": "^4.1.5", | ||
"rimraf": "^2.6.1", | ||
"source-map-loader": "~1.0.2", | ||
"typescript": "~5.0.2" | ||
}, | ||
"jupyterlab": { | ||
"extension": true, | ||
"outputDir": "../../voila/labextensions/widgets-manager7", | ||
"sharedPackages": { | ||
"@jupyter-widgets/base": { | ||
"bundled": true, | ||
"singleton": true | ||
}, | ||
"@jupyter-widgets/jupyterlab-manager": { | ||
"bundled": true, | ||
"singleton": true | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.