@operato/board 1.5.36 → 1.5.37
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.js +2 -2
- package/dist/src/modeller/property-sidebar/data-binding/data-binding.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/modeller/property-sidebar/data-binding/data-binding.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/board",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.37",
|
|
4
4
|
"description": "Webcomponent for board following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -152,5 +152,5 @@
|
|
|
152
152
|
"prettier --write"
|
|
153
153
|
]
|
|
154
154
|
},
|
|
155
|
-
"gitHead": "
|
|
155
|
+
"gitHead": "b031d51cf6d01dfe9b13c256329b0863183e25f9"
|
|
156
156
|
}
|
|
@@ -307,8 +307,8 @@ export class PropertyDataBinding extends ScopedElementsMixin(AbstractProperty) {
|
|
|
307
307
|
<mwc-icon style="font-size:19px" @click=${() => this._clearDataBindingMapper()} title="delete current tab"
|
|
308
308
|
>delete_forever</mwc-icon
|
|
309
309
|
>
|
|
310
|
-
<mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace
|
|
311
|
-
<mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy
|
|
310
|
+
<mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace current tab">content_paste</mwc-icon>
|
|
311
|
+
<mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy current tab"
|
|
312
312
|
>content_copy</mwc-icon
|
|
313
313
|
>
|
|
314
314
|
</div>
|