@jupyterlab/filebrowser-extension 4.0.0-alpha.2 → 4.0.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +0 -4
- package/lib/index.js +293 -249
- package/lib/index.js.map +1 -1
- package/package.json +20 -20
- package/schema/browser.json +30 -37
- package/schema/widget.json +115 -0
- package/src/index.ts +1482 -0
- package/style/base.css +9 -0
- package/style/index.css +1 -2
- package/style/index.js +1 -2
package/lib/index.d.ts
CHANGED
|
@@ -7,10 +7,6 @@ import { JupyterFrontEndPlugin } from '@jupyterlab/application';
|
|
|
7
7
|
* A plugin providing file upload status.
|
|
8
8
|
*/
|
|
9
9
|
export declare const fileUploadStatus: JupyterFrontEndPlugin<void>;
|
|
10
|
-
/**
|
|
11
|
-
* A plugin to add a launcher button to the file browser toolbar
|
|
12
|
-
*/
|
|
13
|
-
export declare const launcherToolbarButton: JupyterFrontEndPlugin<void>;
|
|
14
10
|
/**
|
|
15
11
|
* Export the plugins as default.
|
|
16
12
|
*/
|