@operato/process 1.5.38 → 1.5.40
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 +17 -0
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js +4 -1
- package/dist/src/modeller/property-sidebar/data-binding/data-binding-mapper.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/modeller/property-sidebar/data-binding/data-binding-mapper.ts +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@operato/process",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.40",
|
|
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.38",
|
|
72
|
-
"@operato/board": "^1.5.
|
|
72
|
+
"@operato/board": "^1.5.40",
|
|
73
73
|
"@operato/data-grist": "^1.5.38",
|
|
74
74
|
"@operato/font": "^1.5.38",
|
|
75
75
|
"@operato/graphql": "^1.4.76",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
"prettier --write"
|
|
129
129
|
]
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "c3048f930ed8230b02a94e2fc9895aae0b41db7f"
|
|
132
132
|
}
|
|
@@ -265,7 +265,10 @@ export class DataBindingMapper extends LitElement {
|
|
|
265
265
|
: html``}
|
|
266
266
|
</datalist>
|
|
267
267
|
|
|
268
|
-
<label for="property-input">
|
|
268
|
+
<label for="property-input">
|
|
269
|
+
<ox-i18n msgid="label.property">property</ox-i18n
|
|
270
|
+
><ox-help-icon topic="board-modeller/data-binding-property"></ox-help-icon>
|
|
271
|
+
</label>
|
|
269
272
|
<select id="property-input" value-key="property" .value=${mapping.property || ''}>
|
|
270
273
|
${this.properties.map(
|
|
271
274
|
item => html` <option .value=${item.name} ?selected=${item.name == mapping.property}>${item.label}</option> `
|