@operato/board 1.2.11 → 1.2.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/board",
3
- "version": "1.2.11",
3
+ "version": "1.2.14",
4
4
  "description": "Webcomponent for board following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -87,16 +87,16 @@
87
87
  },
88
88
  "dependencies": {
89
89
  "@open-wc/scoped-elements": "^2.0.0-next.6",
90
- "@operato/app": "^1.2.11",
91
- "@operato/data-grist": "^1.2.11",
92
- "@operato/font": "^1.2.11",
90
+ "@operato/app": "^1.2.14",
91
+ "@operato/data-grist": "^1.2.14",
92
+ "@operato/font": "^1.2.14",
93
93
  "@operato/graphql": "^1.2.6",
94
94
  "@operato/i18n": "^1.2.0",
95
95
  "@operato/input": "^1.2.11",
96
96
  "@operato/layout": "^1.2.11",
97
97
  "@operato/markdown": "^1.2.0",
98
98
  "@operato/popup": "^1.2.11",
99
- "@operato/property-editor": "^1.2.11",
99
+ "@operato/property-editor": "^1.2.14",
100
100
  "@operato/styles": "^1.2.0",
101
101
  "@operato/utils": "^1.2.11",
102
102
  "@polymer/paper-dropdown-menu": "^3.2.0",
@@ -147,5 +147,5 @@
147
147
  "prettier --write"
148
148
  ]
149
149
  },
150
- "gitHead": "7280ba28cb8d80f58556be3107132b9b7be104dd"
150
+ "gitHead": "fc195c28cbb2bfc3e41bcafc750a3e6385d79f44"
151
151
  }
@@ -213,7 +213,7 @@ export class BoardViewer extends LitElement {
213
213
  async initSceneAsync() {
214
214
  if (!this.board || !this.board.id) return
215
215
 
216
- this._scene = await this.provider!.get(this.board.id, true)
216
+ this._scene = await this.provider!.create(this.board.id)
217
217
  this.setupScene({ id: this.board.id, scene: this._scene })
218
218
  }
219
219
 
@@ -234,7 +234,7 @@ export class BoardViewer extends LitElement {
234
234
  this._scene.baseUrl = this.baseUrl
235
235
  }
236
236
 
237
- this.provider!.add(this.board.id, this._scene)
237
+ // this.provider!.add(this.board.id, this._scene)
238
238
 
239
239
  this.setupScene({ id: this.board.id, scene: this._scene })
240
240
  }