@operato/process 1.5.36 → 1.5.38

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@operato/process",
3
- "version": "1.5.36",
3
+ "version": "1.5.38",
4
4
  "description": "Webcomponent for business process modeling following open-wc recommendations",
5
5
  "author": "heartyoh",
6
6
  "main": "dist/src/index.js",
@@ -68,16 +68,16 @@
68
68
  },
69
69
  "dependencies": {
70
70
  "@open-wc/scoped-elements": "^2.1.3",
71
- "@operato/app": "^1.5.36",
72
- "@operato/board": "^1.5.36",
73
- "@operato/data-grist": "^1.5.36",
74
- "@operato/font": "^1.5.36",
71
+ "@operato/app": "^1.5.38",
72
+ "@operato/board": "^1.5.38",
73
+ "@operato/data-grist": "^1.5.38",
74
+ "@operato/font": "^1.5.38",
75
75
  "@operato/graphql": "^1.4.76",
76
76
  "@operato/i18n": "^1.5.14",
77
77
  "@operato/input": "^1.5.36",
78
78
  "@operato/markdown": "^1.5.36",
79
79
  "@operato/popup": "^1.5.36",
80
- "@operato/property-editor": "^1.5.36",
80
+ "@operato/property-editor": "^1.5.38",
81
81
  "@operato/styles": "^1.5.36",
82
82
  "@operato/utils": "^1.4.64",
83
83
  "@polymer/paper-dropdown-menu": "^3.2.0",
@@ -128,5 +128,5 @@
128
128
  "prettier --write"
129
129
  ]
130
130
  },
131
- "gitHead": "813e71d5834e5b9a3141ae7670e632aa6adf3f10"
131
+ "gitHead": "3e7c2ce2e0c1ff01e50a8a1169e9a4049ff7d017"
132
132
  }
@@ -35,12 +35,10 @@ const PROPS = [
35
35
  ['ref', 'reference'],
36
36
  'options',
37
37
  'rotate',
38
- 'scale',
39
- 'translate',
40
38
  'dimension',
41
39
  'location',
42
40
  'accessor',
43
- 'tap',
41
+ ['tap', '(tap)'],
44
42
  '(action)'
45
43
  ].map(prop => {
46
44
  return typeof prop == 'string' ? { name: prop, label: prop } : { name: prop[0], label: prop[1] }
@@ -306,8 +304,8 @@ export class PropertyDataBinding extends ScopedElementsMixin(AbstractProperty) {
306
304
  <mwc-icon style="font-size:19px" @click=${() => this._clearDataBindingMapper()} title="delete current tab"
307
305
  >delete_forever</mwc-icon
308
306
  >
309
- <mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace all tabs">content_paste</mwc-icon>
310
- <mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy all tabs"
307
+ <mwc-icon @click=${() => this._pasteDataBindingMapper()} title="replace current tab">content_paste</mwc-icon>
308
+ <mwc-icon style="font-size:17px" @click=${() => this._copyDataBindingMapper()} title="copy current tab"
311
309
  >content_copy</mwc-icon
312
310
  >
313
311
  </div>