@difizen/libro-lab 0.1.26 → 0.1.28

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/lab-app.js CHANGED
@@ -38,7 +38,7 @@ export var LibroLabApp = (_dec = singleton({
38
38
  return _regeneratorRuntime().wrap(function _callee$(_context) {
39
39
  while (1) switch (_context.prev = _context.next) {
40
40
  case 0:
41
- localStorage.setItem(ShouldPreventStoreViewKey, 'false');
41
+ localStorage.setItem(ShouldPreventStoreViewKey, 'true');
42
42
  this.configurationService.set(LibroJupyterConfiguration['OpenSlot'], LibroLabLayoutSlots.content);
43
43
  this.configurationService.set(terminalDefaultSlot, LibroLabLayoutSlots.contentBottom);
44
44
  this.serverManager.ready.then(function () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@difizen/libro-lab",
3
- "version": "0.1.26",
3
+ "version": "0.1.28",
4
4
  "description": "",
5
5
  "keywords": [
6
6
  "libro",
@@ -34,14 +34,14 @@
34
34
  ],
35
35
  "dependencies": {
36
36
  "@ant-design/icons": "^5.1.0",
37
- "@difizen/libro-core": "^0.1.26",
38
- "@difizen/libro-jupyter": "^0.1.26",
39
- "@difizen/libro-kernel": "^0.1.26",
40
- "@difizen/libro-prompt-cell": "^0.1.26",
41
- "@difizen/libro-terminal": "^0.1.26",
42
- "@difizen/libro-toc": "^0.1.26",
43
- "@difizen/libro-cofine-editor-core": "^0.1.26",
44
- "@difizen/libro-language-client": "^0.1.26",
37
+ "@difizen/libro-core": "^0.1.28",
38
+ "@difizen/libro-jupyter": "^0.1.28",
39
+ "@difizen/libro-kernel": "^0.1.28",
40
+ "@difizen/libro-prompt-cell": "^0.1.28",
41
+ "@difizen/libro-terminal": "^0.1.28",
42
+ "@difizen/libro-toc": "^0.1.28",
43
+ "@difizen/libro-cofine-editor-core": "^0.1.28",
44
+ "@difizen/libro-language-client": "^0.1.28",
45
45
  "@difizen/mana-app": "latest",
46
46
  "@difizen/mana-common": "latest",
47
47
  "@difizen/mana-react": "latest",
package/src/lab-app.ts CHANGED
@@ -33,7 +33,7 @@ export class LibroLabApp implements ApplicationContribution {
33
33
  @inject(LayoutService) layoutService: LayoutService;
34
34
 
35
35
  async onStart() {
36
- localStorage.setItem(ShouldPreventStoreViewKey, 'false');
36
+ localStorage.setItem(ShouldPreventStoreViewKey, 'true');
37
37
  this.configurationService.set(
38
38
  LibroJupyterConfiguration['OpenSlot'],
39
39
  LibroLabLayoutSlots.content,