@operato/board 1.2.11 → 1.2.13
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/CHANGELOG.md +9 -0
- package/dist/src/modeller/property-sidebar/effects/property-event-hover.d.ts +1 -1
- package/dist/src/modeller/property-sidebar/inspector/inspector.d.ts +1 -1
- package/dist/src/ox-board-viewer.js +2 -2
- package/dist/src/ox-board-viewer.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/ox-board-viewer.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/board",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.13",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -147,5 +147,5 @@
|
|
|
147
147
|
"prettier --write"
|
|
148
148
|
]
|
|
149
149
|
},
|
|
150
|
-
"gitHead": "
|
|
150
|
+
"gitHead": "79282dc0c3b272cbca3180de227c7411d510ab9d"
|
|
151
151
|
}
|
package/src/ox-board-viewer.ts
CHANGED
|
@@ -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!.
|
|
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
|
}
|