@difizen/libro-lab 0.2.45 → 0.3.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/es/module.d.ts.map +1 -1
- package/es/module.js +2 -1
- package/package.json +14 -13
- package/src/module.tsx +2 -0
package/es/module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAoB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA+FxB,CAAC"}
|
package/es/module.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LibroAINativeModule } from '@difizen/libro-ai-native';
|
|
2
|
+
import { LibroAppModule } from '@difizen/libro-app';
|
|
2
3
|
import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
|
|
3
4
|
import { langBundles } from '@difizen/libro-l10n';
|
|
4
5
|
import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
|
|
@@ -85,4 +86,4 @@ createSlotPreference({
|
|
|
85
86
|
reveal: true,
|
|
86
87
|
order: 'welcome'
|
|
87
88
|
}
|
|
88
|
-
}), EntryPointView).dependOn(LibroJupyterModule, CommonWidgetsModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, LibroSqlCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule, LibroAINativeModule);
|
|
89
|
+
}), EntryPointView).dependOn(LibroJupyterModule, CommonWidgetsModule, LibroLabLayoutModule, LibroLabHeaderMenuModule, LibroLabTocModule, LibroKernelAndTerminalPanelModule, LibroPromptCellModule, LibroSqlCellModule, TerminalModule, ImageViewerModule, CodeEditorViewerModule, LibroAINativeModule, LibroAppModule);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@difizen/libro-lab",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"libro",
|
|
@@ -34,18 +34,19 @@
|
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@ant-design/icons": "^5.1.0",
|
|
37
|
-
"@difizen/libro-core": "^0.
|
|
38
|
-
"@difizen/libro-jupyter": "^0.
|
|
39
|
-
"@difizen/libro-kernel": "^0.
|
|
40
|
-
"@difizen/libro-prompt-cell": "^0.
|
|
41
|
-
"@difizen/libro-sql-cell": "^0.
|
|
42
|
-
"@difizen/libro-terminal": "^0.
|
|
43
|
-
"@difizen/libro-toc": "^0.
|
|
44
|
-
"@difizen/libro-
|
|
45
|
-
"@difizen/libro-
|
|
46
|
-
"@difizen/libro-
|
|
47
|
-
"@difizen/libro-
|
|
48
|
-
"@difizen/libro-
|
|
37
|
+
"@difizen/libro-core": "^0.3.1",
|
|
38
|
+
"@difizen/libro-jupyter": "^0.3.1",
|
|
39
|
+
"@difizen/libro-kernel": "^0.3.1",
|
|
40
|
+
"@difizen/libro-prompt-cell": "^0.3.1",
|
|
41
|
+
"@difizen/libro-sql-cell": "^0.3.1",
|
|
42
|
+
"@difizen/libro-terminal": "^0.3.1",
|
|
43
|
+
"@difizen/libro-toc": "^0.3.1",
|
|
44
|
+
"@difizen/libro-app": "^0.3.1",
|
|
45
|
+
"@difizen/libro-cofine-editor-core": "^0.3.1",
|
|
46
|
+
"@difizen/libro-language-client": "^0.3.1",
|
|
47
|
+
"@difizen/libro-widget": "^0.3.1",
|
|
48
|
+
"@difizen/libro-l10n": "^0.3.1",
|
|
49
|
+
"@difizen/libro-ai-native": "^0.3.1",
|
|
49
50
|
"@difizen/mana-app": "latest",
|
|
50
51
|
"@difizen/mana-l10n": "latest",
|
|
51
52
|
"@difizen/mana-common": "latest",
|
package/src/module.tsx
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { LibroAINativeModule } from '@difizen/libro-ai-native';
|
|
2
|
+
import { LibroAppModule } from '@difizen/libro-app';
|
|
2
3
|
import { FileView, LibroJupyterModule } from '@difizen/libro-jupyter';
|
|
3
4
|
import { langBundles } from '@difizen/libro-l10n';
|
|
4
5
|
import { LibroPromptCellModule } from '@difizen/libro-prompt-cell';
|
|
@@ -131,4 +132,5 @@ export const LibroLabModule = ManaModule.create()
|
|
|
131
132
|
ImageViewerModule,
|
|
132
133
|
CodeEditorViewerModule,
|
|
133
134
|
LibroAINativeModule,
|
|
135
|
+
LibroAppModule,
|
|
134
136
|
);
|