@operato/process 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 +3 -3
- 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/process",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.37",
|
|
4
4
|
"description": "Webcomponent for business process modeling following open-wc recommendations",
|
|
5
5
|
"author": "heartyoh",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@open-wc/scoped-elements": "^2.1.3",
|
|
71
71
|
"@operato/app": "^1.5.36",
|
|
72
|
-
"@operato/board": "^1.5.
|
|
72
|
+
"@operato/board": "^1.5.37",
|
|
73
73
|
"@operato/data-grist": "^1.5.36",
|
|
74
74
|
"@operato/font": "^1.5.36",
|
|
75
75
|
"@operato/graphql": "^1.4.76",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"prettier --write"
|
|
129
129
|
]
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "b031d51cf6d01dfe9b13c256329b0863183e25f9"
|
|
132
132
|
}
|
|
@@ -306,8 +306,8 @@ export class PropertyDataBinding extends ScopedElementsMixin(AbstractProperty) {
|
|
|
306
306
|
<mwc-icon style="font-size:19px" @click=${() => this._clearDataBindingMapper()} title="delete current tab"
|
|
307
307
|
>delete_forever</mwc-icon
|
|
308
308
|
>
|
|
309
|
-
<mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace
|
|
310
|
-
<mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy
|
|
309
|
+
<mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace current tab">content_paste</mwc-icon>
|
|
310
|
+
<mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy current tab"
|
|
311
311
|
>content_copy</mwc-icon
|
|
312
312
|
>
|
|
313
313
|
</div>
|