@jupyterlab/filebrowser 4.6.0 → 4.6.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlab/filebrowser",
3
- "version": "4.6.0",
3
+ "version": "4.6.1",
4
4
  "description": "JupyterLab - FileBrowser Widget",
5
5
  "homepage": "https://github.com/jupyterlab/jupyterlab",
6
6
  "bugs": {
@@ -41,15 +41,15 @@
41
41
  "watch": "tsc -b --watch"
42
42
  },
43
43
  "dependencies": {
44
- "@jupyterlab/apputils": "^4.7.0",
45
- "@jupyterlab/coreutils": "^6.6.0",
46
- "@jupyterlab/docmanager": "^4.6.0",
47
- "@jupyterlab/docregistry": "^4.6.0",
48
- "@jupyterlab/services": "^7.6.0",
49
- "@jupyterlab/statedb": "^4.6.0",
50
- "@jupyterlab/statusbar": "^4.6.0",
51
- "@jupyterlab/translation": "^4.6.0",
52
- "@jupyterlab/ui-components": "^4.6.0",
44
+ "@jupyterlab/apputils": "^4.7.1",
45
+ "@jupyterlab/coreutils": "^6.6.1",
46
+ "@jupyterlab/docmanager": "^4.6.1",
47
+ "@jupyterlab/docregistry": "^4.6.1",
48
+ "@jupyterlab/services": "^7.6.1",
49
+ "@jupyterlab/statedb": "^4.6.1",
50
+ "@jupyterlab/statusbar": "^4.6.1",
51
+ "@jupyterlab/translation": "^4.6.1",
52
+ "@jupyterlab/ui-components": "^4.6.1",
53
53
  "@lumino/algorithm": "^2.0.4",
54
54
  "@lumino/coreutils": "^2.2.2",
55
55
  "@lumino/disposable": "^2.1.5",
@@ -60,13 +60,13 @@
60
60
  "@lumino/signaling": "^2.1.5",
61
61
  "@lumino/virtualdom": "^2.0.4",
62
62
  "@lumino/widgets": "^2.8.0",
63
- "jest-environment-jsdom": "^29.3.0",
64
63
  "react": "^18.2.0"
65
64
  },
66
65
  "devDependencies": {
67
- "@jupyterlab/testing": "^4.6.0",
66
+ "@jupyterlab/testing": "^4.6.1",
68
67
  "@types/jest": "^29.2.0",
69
68
  "jest": "^29.2.0",
69
+ "jest-environment-jsdom": "^29.3.0",
70
70
  "rimraf": "~5.0.5",
71
71
  "typescript": "~5.9.3"
72
72
  },
package/lib/jest-env.d.ts DELETED
@@ -1,4 +0,0 @@
1
- import JSDOMEnvironment from 'jest-environment-jsdom';
2
- export default class FixJSDOMEnvironment extends JSDOMEnvironment {
3
- constructor(...args: ConstructorParameters<typeof JSDOMEnvironment>);
4
- }
package/lib/jest-env.js DELETED
@@ -1,18 +0,0 @@
1
- /*
2
- * Copyright (c) Jupyter Development Team.
3
- * Distributed under the terms of the Modified BSD License.
4
- */
5
- // From: https://github.com/jsdom/jsdom/issues/1724#issuecomment-1446858041
6
- // Mostly the same as in @jupyterlab/testing, but using jsdom version of `File`
7
- // so that it is compatible with `FileReader` from jsdom.
8
- import JSDOMEnvironment from 'jest-environment-jsdom';
9
- export default class FixJSDOMEnvironment extends JSDOMEnvironment {
10
- constructor(...args) {
11
- super(...args);
12
- this.global.fetch = fetch;
13
- this.global.Headers = Headers;
14
- this.global.Request = Request;
15
- this.global.Response = Response;
16
- }
17
- }
18
- //# sourceMappingURL=jest-env.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jest-env.js","sourceRoot":"","sources":["../src/jest-env.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,2EAA2E;AAC3E,+EAA+E;AAC/E,yDAAyD;AAEzD,OAAO,gBAAgB,MAAM,wBAAwB,CAAC;AAEtD,MAAM,CAAC,OAAO,OAAO,mBAAoB,SAAQ,gBAAgB;IAC/D,YAAY,GAAG,IAAoD;QACjE,KAAK,CAAC,GAAG,IAAI,CAAC,CAAC;QAEf,IAAI,CAAC,MAAM,CAAC,KAAK,GAAG,KAAK,CAAC;QAC1B,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,OAAO,CAAC;QAC9B,IAAI,CAAC,MAAM,CAAC,OAAO,GAAG,OAAO,CAAC;QAC9B,IAAI,CAAC,MAAM,CAAC,QAAQ,GAAG,QAAQ,CAAC;IAClC,CAAC;CACF"}
package/src/jest-env.ts DELETED
@@ -1,21 +0,0 @@
1
- /*
2
- * Copyright (c) Jupyter Development Team.
3
- * Distributed under the terms of the Modified BSD License.
4
- */
5
-
6
- // From: https://github.com/jsdom/jsdom/issues/1724#issuecomment-1446858041
7
- // Mostly the same as in @jupyterlab/testing, but using jsdom version of `File`
8
- // so that it is compatible with `FileReader` from jsdom.
9
-
10
- import JSDOMEnvironment from 'jest-environment-jsdom';
11
-
12
- export default class FixJSDOMEnvironment extends JSDOMEnvironment {
13
- constructor(...args: ConstructorParameters<typeof JSDOMEnvironment>) {
14
- super(...args);
15
-
16
- this.global.fetch = fetch;
17
- this.global.Headers = Headers;
18
- this.global.Request = Request;
19
- this.global.Response = Response;
20
- }
21
- }