@difizen/libro-lab 0.1.33 → 0.1.35

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.
@@ -1 +1 @@
1
- {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AAGA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAiB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA4ExB,CAAC"}
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AAIA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAiB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA6ExB,CAAC"}
package/es/module.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
2
2
  import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
3
3
  import { TerminalModule } from '@difizen/libro-terminal';
4
+ import { CommonWidgetsModule } from '@difizen/libro-widget';
4
5
  import { ManaModule, createSlotPreference, RootSlotId, createViewPreference, HeaderArea } from '@difizen/mana-app';
5
6
  import { LibroLabHeaderMenuModule } from "./command/module.js";
6
7
  import { LabConfigAppContribution } from "./config/config-contribution.js";
@@ -68,4 +69,4 @@ createSlotPreference({
68
69
  reveal: true,
69
70
  order: 'welcome'
70
71
  }
71
- }), EntryPointView).dependOn(LibroJupyterModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule);
72
+ }), EntryPointView).dependOn(LibroJupyterModule, CommonWidgetsModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-lab",
3
- "version": "0.1.33",
3
+ "version": "0.1.35",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -34,14 +34,15 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@ant-design/icons": "^5.1.0",
37
- "@difizen/libro-core": "^0.1.33",
38
- "@difizen/libro-jupyter": "^0.1.33",
39
- "@difizen/libro-kernel": "^0.1.33",
40
- "@difizen/libro-prompt-cell": "^0.1.33",
41
- "@difizen/libro-terminal": "^0.1.33",
42
- "@difizen/libro-toc": "^0.1.33",
43
- "@difizen/libro-cofine-editor-core": "^0.1.33",
44
- "@difizen/libro-language-client": "^0.1.33",
37
+ "@difizen/libro-core": "^0.1.35",
38
+ "@difizen/libro-jupyter": "^0.1.35",
39
+ "@difizen/libro-kernel": "^0.1.35",
40
+ "@difizen/libro-prompt-cell": "^0.1.35",
41
+ "@difizen/libro-terminal": "^0.1.35",
42
+ "@difizen/libro-toc": "^0.1.35",
43
+ "@difizen/libro-cofine-editor-core": "^0.1.35",
44
+ "@difizen/libro-language-client": "^0.1.35",
45
+ "@difizen/libro-widget": "^0.1.35",
45
46
  "@difizen/mana-app": "latest",
46
47
  "@difizen/mana-common": "latest",
47
48
  "@difizen/mana-react": "latest",
package/src/module.tsx CHANGED
@@ -1,6 +1,7 @@
1
1
  import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
2
2
  import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
3
3
  import { TerminalModule } from '@difizen/libro-terminal';
4
+ import { CommonWidgetsModule } from '@difizen/libro-widget';
4
5
  import {
5
6
  ManaModule,
6
7
  createSlotPreference,
@@ -98,6 +99,7 @@ export const LibroLabModule = ManaModule.create()
98
99
  )
99
100
  .dependOn(
100
101
  LibroJupyterModule,
102
+ CommonWidgetsModule,
101
103
  LibroLabLayoutModule,
102
104
  LibroLabHeaderMenuModule,
103
105
  LibroLabTocModule,