@jupyterlab/filebrowser 4.6.0-alpha.2 → 4.6.0-alpha.4
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/browser.d.ts +12 -5
- package/lib/browser.js +17 -0
- package/lib/browser.js.map +1 -1
- package/lib/crumbs.d.ts +25 -3
- package/lib/crumbs.js +187 -5
- package/lib/crumbs.js.map +1 -1
- package/lib/listing.d.ts +13 -6
- package/lib/listing.js +36 -12
- package/lib/listing.js.map +1 -1
- package/lib/model.d.ts +8 -8
- package/lib/model.js.map +1 -1
- package/lib/opendialog.d.ts +4 -4
- package/lib/opendialog.js.map +1 -1
- package/lib/tokens.d.ts +14 -0
- package/lib/tokens.js +1 -0
- package/lib/tokens.js.map +1 -1
- package/lib/upload.d.ts +4 -4
- package/lib/upload.js.map +1 -1
- package/lib/uploadstatus.d.ts +3 -3
- package/lib/uploadstatus.js.map +1 -1
- package/package.json +14 -14
- package/src/browser.ts +28 -7
- package/src/crumbs.ts +231 -13
- package/src/listing.ts +54 -33
- package/src/model.ts +18 -17
- package/src/opendialog.ts +15 -14
- package/src/tokens.ts +20 -0
- package/src/upload.ts +6 -8
- package/src/uploadstatus.tsx +5 -8
package/src/uploadstatus.tsx
CHANGED
|
@@ -2,18 +2,15 @@
|
|
|
2
2
|
// Distributed under the terms of the Modified BSD License.
|
|
3
3
|
//
|
|
4
4
|
|
|
5
|
-
import { WidgetTracker } from '@jupyterlab/apputils';
|
|
6
|
-
import { IChangedArgs } from '@jupyterlab/coreutils';
|
|
5
|
+
import type { WidgetTracker } from '@jupyterlab/apputils';
|
|
6
|
+
import type { IChangedArgs } from '@jupyterlab/coreutils';
|
|
7
7
|
import { GroupItem, ProgressBar, TextItem } from '@jupyterlab/statusbar';
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
nullTranslator,
|
|
11
|
-
TranslationBundle
|
|
12
|
-
} from '@jupyterlab/translation';
|
|
8
|
+
import type { ITranslator, TranslationBundle } from '@jupyterlab/translation';
|
|
9
|
+
import { nullTranslator } from '@jupyterlab/translation';
|
|
13
10
|
import { VDomModel, VDomRenderer } from '@jupyterlab/ui-components';
|
|
14
11
|
import { ArrayExt } from '@lumino/algorithm';
|
|
15
12
|
import React from 'react';
|
|
16
|
-
import { FileBrowser, FileBrowserModel, IUploadModel } from '.';
|
|
13
|
+
import type { FileBrowser, FileBrowserModel, IUploadModel } from '.';
|
|
17
14
|
|
|
18
15
|
/**
|
|
19
16
|
* Half-spacing between items in the overall status item.
|