@difizen/libro-jupyter 0.3.27 → 0.3.28

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.
@@ -219,7 +219,7 @@ export var LibroJupyterModel = (_dec = transient(), _dec2 = prop(), _dec3 = prop
219
219
  return _get(_getPrototypeOf(LibroJupyterModel.prototype), "loadNotebookContent", this).call(this);
220
220
  case 2:
221
221
  content = _context5.sent;
222
- this.id = this.currentFileContents.path; // use file path as id, will be passed to editor and lsp
222
+ this.id = this.filePath; // use file path as id, will be passed to editor and lsp
223
223
  if (this.executable && !this.kernelConnecting) {
224
224
  this.startKernelConnection();
225
225
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-jupyter",
3
- "version": "0.3.27",
3
+ "version": "0.3.28",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro"
@@ -37,22 +37,22 @@
37
37
  "dependencies": {
38
38
  "@ant-design/colors": "^7.0.0",
39
39
  "@ant-design/icons": "^5.1.0",
40
- "@difizen/libro-code-cell": "^0.3.27",
41
- "@difizen/libro-code-editor": "^0.3.27",
42
- "@difizen/libro-codemirror": "^0.3.27",
43
- "@difizen/libro-cofine-editor": "^0.3.27",
44
- "@difizen/libro-common": "^0.3.27",
45
- "@difizen/libro-core": "^0.3.27",
46
- "@difizen/libro-kernel": "^0.3.27",
47
- "@difizen/libro-l10n": "^0.3.27",
48
- "@difizen/libro-language-client": "^0.3.27",
49
- "@difizen/libro-lsp": "^0.3.27",
50
- "@difizen/libro-markdown-cell": "^0.3.27",
51
- "@difizen/libro-output": "^0.3.27",
52
- "@difizen/libro-raw-cell": "^0.3.27",
53
- "@difizen/libro-rendermime": "^0.3.27",
54
- "@difizen/libro-search": "^0.3.27",
55
- "@difizen/libro-search-code-cell": "^0.3.27",
40
+ "@difizen/libro-code-cell": "^0.3.28",
41
+ "@difizen/libro-code-editor": "^0.3.28",
42
+ "@difizen/libro-codemirror": "^0.3.28",
43
+ "@difizen/libro-cofine-editor": "^0.3.28",
44
+ "@difizen/libro-common": "^0.3.28",
45
+ "@difizen/libro-core": "^0.3.28",
46
+ "@difizen/libro-kernel": "^0.3.28",
47
+ "@difizen/libro-l10n": "^0.3.28",
48
+ "@difizen/libro-language-client": "^0.3.28",
49
+ "@difizen/libro-lsp": "^0.3.28",
50
+ "@difizen/libro-markdown-cell": "^0.3.28",
51
+ "@difizen/libro-output": "^0.3.28",
52
+ "@difizen/libro-raw-cell": "^0.3.28",
53
+ "@difizen/libro-rendermime": "^0.3.28",
54
+ "@difizen/libro-search": "^0.3.28",
55
+ "@difizen/libro-search-code-cell": "^0.3.28",
56
56
  "@difizen/mana-app": "latest",
57
57
  "@difizen/mana-l10n": "latest",
58
58
  "classnames": "^2.3.2",
@@ -150,7 +150,7 @@ export class LibroJupyterModel extends LibroModel implements ExecutableNotebookM
150
150
 
151
151
  override async loadNotebookContent(): Promise<INotebookContent> {
152
152
  const content = await super.loadNotebookContent();
153
- this.id = this.currentFileContents.path; // use file path as id, will be passed to editor and lsp
153
+ this.id = this.filePath; // use file path as id, will be passed to editor and lsp
154
154
  if (this.executable && !this.kernelConnecting) {
155
155
  this.startKernelConnection();
156
156
  }