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