@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.
@@ -1 +1 @@
1
- {"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../src/module.tsx"],"names":[],"mappings":"AAMA,OAAO,EACL,UAAU,EAKX,MAAM,mBAAmB,CAAC;AAoB3B,OAAO,cAAc,CAAC;AAMtB,eAAO,MAAM,cAAc,YA6FxB,CAAC"}
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.40",
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.40",
38
- "@difizen/libro-jupyter": "^0.2.40",
39
- "@difizen/libro-kernel": "^0.2.40",
40
- "@difizen/libro-prompt-cell": "^0.2.40",
41
- "@difizen/libro-sql-cell": "^0.2.40",
42
- "@difizen/libro-terminal": "^0.2.40",
43
- "@difizen/libro-toc": "^0.2.40",
44
- "@difizen/libro-cofine-editor-core": "^0.2.40",
45
- "@difizen/libro-language-client": "^0.2.40",
46
- "@difizen/libro-widget": "^0.2.40",
47
- "@difizen/libro-l10n": "^0.2.40",
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
@@ -9,6 +9,10 @@ a:-webkit-any-link {
9
9
  color: var(--mana-ant-color-text-description);
10
10
  }
11
11
  }
12
+
13
+ svg {
14
+ display: unset;
15
+ }
12
16
  }
13
17
 
14
18
  #libro-lab-content-layout-left {
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
  );