@difizen/libro-lab 0.2.33 → 0.2.34

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":"AAIA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAkB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA8ExB,CAAC"}
1
+ {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AAKA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAkB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA+ExB,CAAC"}
package/es/module.js CHANGED
@@ -1,5 +1,6 @@
1
1
  import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
2
2
  import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
3
+ import { LibroSqlCellModule } from '@difizen/libro-sql-cell';
3
4
  import { TerminalModule } from '@difizen/libro-terminal';
4
5
  import { CommonWidgetsModule } from '@difizen/libro-widget';
5
6
  import { ManaModule, createSlotPreference, RootSlotId, createViewPreference, HeaderArea } from '@difizen/mana-app';
@@ -70,4 +71,4 @@ createSlotPreference({
70
71
  reveal: true,
71
72
  order: 'welcome'
72
73
  }
73
- }), EntryPointView).dependOn(LibroJupyterModule, CommonWidgetsModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule);
74
+ }), EntryPointView).dependOn(LibroJupyterModule, CommonWidgetsModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, LibroSqlCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-lab",
3
- "version": "0.2.33",
3
+ "version": "0.2.34",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -34,15 +34,16 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@ant-design/icons": "^5.1.0",
37
- "@difizen/libro-core": "^0.2.33",
38
- "@difizen/libro-jupyter": "^0.2.33",
39
- "@difizen/libro-kernel": "^0.2.33",
40
- "@difizen/libro-prompt-cell": "^0.2.33",
41
- "@difizen/libro-terminal": "^0.2.33",
42
- "@difizen/libro-toc": "^0.2.33",
43
- "@difizen/libro-cofine-editor-core": "^0.2.33",
44
- "@difizen/libro-language-client": "^0.2.33",
45
- "@difizen/libro-widget": "^0.2.33",
37
+ "@difizen/libro-core": "^0.2.34",
38
+ "@difizen/libro-jupyter": "^0.2.34",
39
+ "@difizen/libro-kernel": "^0.2.34",
40
+ "@difizen/libro-prompt-cell": "^0.2.34",
41
+ "@difizen/libro-sql-cell": "^0.2.34",
42
+ "@difizen/libro-terminal": "^0.2.34",
43
+ "@difizen/libro-toc": "^0.2.34",
44
+ "@difizen/libro-cofine-editor-core": "^0.2.34",
45
+ "@difizen/libro-language-client": "^0.2.34",
46
+ "@difizen/libro-widget": "^0.2.34",
46
47
  "@difizen/mana-app": "latest",
47
48
  "@difizen/mana-common": "latest",
48
49
  "@difizen/mana-react": "latest",
package/src/module.tsx CHANGED
@@ -1,5 +1,6 @@
1
1
  import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
2
2
  import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
3
+ import { LibroSqlCellModule } from '@difizen/libro-sql-cell';
3
4
  import { TerminalModule } from '@difizen/libro-terminal';
4
5
  import { CommonWidgetsModule } from '@difizen/libro-widget';
5
6
  import {
@@ -107,6 +108,7 @@ export const LibroLabModule = ManaModule.create()
107
108
  LibroLabTocModule,
108
109
  LibroKernelAndTerminalPanelModule,
109
110
  LibroPromptCellModule,
111
+ LibroSqlCellModule,
110
112
  TerminalModule,
111
113
  ImageViewerModule,
112
114
  CodeEditorViewerModule,