@fails-components/jupyter-applet-view 0.0.4 → 0.0.5

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": "@fails-components/jupyter-applet-view",
3
- "version": "0.0.4",
3
+ "version": "0.0.5",
4
4
  "description": "A collection of extensions, that let's you select cell and switch to an applet mode, where only the selected cells are visible. This is used for fails-components to have jupyter applets in interactive teaching. ",
5
5
  "keywords": [
6
6
  "jupyter",
@@ -58,34 +58,34 @@
58
58
  "watch:labextension": "jupyter labextension watch ."
59
59
  },
60
60
  "dependencies": {
61
- "@fails-components/jupyter-interceptor": "^0.0.4",
62
- "@fails-components/jupyter-launcher": "^0.0.4",
63
- "@jupyter-notebook/application": "^7.4.3",
61
+ "@fails-components/jupyter-interceptor": "^0.0.5",
62
+ "@fails-components/jupyter-launcher": "^0.0.5",
63
+ "@jupyter-notebook/application": "^7.5.1",
64
64
  "@jupyter-widgets/jupyterlab-manager": "^5.0.15",
65
- "@jupyterlab/application": "^4.4.3",
66
- "@jupyterlab/apputils": "^4.5.3",
67
- "@jupyterlab/cells": "^4.4.3",
68
- "@jupyterlab/docmanager": "^4.4.3",
69
- "@jupyterlab/docregistry": "^4.4.3",
70
- "@jupyterlab/notebook": "^4.4.3",
65
+ "@jupyterlab/application": "^4.5.1",
66
+ "@jupyterlab/apputils": "^4.6.1",
67
+ "@jupyterlab/cells": "^4.5.1",
68
+ "@jupyterlab/docmanager": "^4.5.1",
69
+ "@jupyterlab/docregistry": "^4.5.1",
70
+ "@jupyterlab/notebook": "^4.5.1",
71
71
  "@jupyterlab/observables": "^5.4.3",
72
- "@jupyterlab/outputarea": "^4.4.3",
73
- "@jupyterlab/statedb": "^4.4.3",
74
- "@jupyterlab/translation": "^4.4.3",
75
- "@jupyterlab/ui-components": "^4.4.3",
76
- "@jupyterlite/application-extension": "^0.6.1",
77
- "@jupyterlite/server": "^0.6.1",
78
- "@lumino/algorithm": "^2.0.3",
79
- "@lumino/commands": "^2.3.2",
80
- "@lumino/coreutils": "^2.2.1",
81
- "@lumino/disposable": "^2.1.4",
82
- "@lumino/signaling": "^2.1.4",
83
- "@lumino/widgets": "^2.7.1",
72
+ "@jupyterlab/outputarea": "^4.5.1",
73
+ "@jupyterlab/statedb": "^4.5.1",
74
+ "@jupyterlab/translation": "^4.5.1",
75
+ "@jupyterlab/ui-components": "^4.5.1",
76
+ "@jupyterlite/application-extension": "^0.7.1",
77
+ "@jupyterlite/apputils": "^0.7.1",
78
+ "@lumino/algorithm": "^2.0.4",
79
+ "@lumino/commands": "^2.3.3",
80
+ "@lumino/coreutils": "^2.2.2",
81
+ "@lumino/disposable": "^2.1.5",
82
+ "@lumino/signaling": "^2.1.5",
83
+ "@lumino/widgets": "^2.7.2",
84
84
  "modern-screenshot": "^4.5.5"
85
85
  },
86
86
  "devDependencies": {
87
- "@jupyterlab/builder": "^4.0.0",
88
- "@jupyterlab/testutils": "^4.0.0",
87
+ "@jupyterlab/builder": "^4.5.1",
88
+ "@jupyterlab/testutils": "^4.5.1",
89
89
  "@types/jest": "^29.2.0",
90
90
  "@types/json-schema": "^7.0.11",
91
91
  "@types/react": "^18.0.26",
@@ -125,12 +125,12 @@
125
125
  "sharedPackages": {
126
126
  "@fails-components/jupyter-launcher": {
127
127
  "singleton": true,
128
- "requiredVersion": "^0.0.4",
128
+ "requiredVersion": "^0.0.5",
129
129
  "import": false
130
130
  },
131
131
  "@fails-components/jupyter-interceptor": {
132
132
  "singleton": true,
133
- "requiredVersion": "^0.0.4",
133
+ "requiredVersion": "^0.0.5",
134
134
  "import": false
135
135
  }
136
136
  }
@@ -140,8 +140,7 @@ export class SplitViewNotebookPanel
140
140
  private _failsLauncherInfo: IFailsLauncherInfo | undefined;
141
141
  }
142
142
  namespace SplitViewNotebookWidgetFactory {
143
- export interface IOptions
144
- extends NotebookWidgetFactory.IOptions<NotebookPanel> {
143
+ export interface IOptions extends NotebookWidgetFactory.IOptions<NotebookPanel> {
145
144
  failsLauncherInfo?: IFailsLauncherInfo;
146
145
  failsInterceptor?: IFailsInterceptor;
147
146
  }