@operato/board 1.4.48 → 1.4.50
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/data-binding/data-binding-mapper.d.ts +1 -4
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js +8 -7
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/modeller/property-sidebar/data-binding/data-binding-mapper.ts +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/board",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.50",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -148,5 +148,5 @@
|
|
|
148
148
|
"prettier --write"
|
|
149
149
|
]
|
|
150
150
|
},
|
|
151
|
-
"gitHead": "
|
|
151
|
+
"gitHead": "fafd040b94cba363dd96359543fd221cb7d27d64"
|
|
152
152
|
}
|
|
@@ -193,14 +193,13 @@ export class DataBindingMapper extends LitElement {
|
|
|
193
193
|
}
|
|
194
194
|
|
|
195
195
|
findComponentIds() {
|
|
196
|
-
|
|
196
|
+
this._componentIds =
|
|
197
197
|
(this.scene &&
|
|
198
198
|
this.scene.ids.map(i => {
|
|
199
199
|
const id = i.key
|
|
200
200
|
return { value: `#${id}`, description: this.scene!.findById(id)?.get('type') }
|
|
201
201
|
})) ||
|
|
202
202
|
[]
|
|
203
|
-
)
|
|
204
203
|
}
|
|
205
204
|
|
|
206
205
|
render() {
|