@node-projects/web-component-designer-visualization-addons 0.1.103 → 0.1.104

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.
@@ -221,7 +221,7 @@ export class EventAssignment extends BaseCustomWebComponentConstructorAppend {
221
221
  action: () => { copyTextToClipboard(this.selectedItems[0].getAttribute('@' + eventItem.name)); }
222
222
  }, {
223
223
  title: 'paste',
224
- action: async () => { this.selectedItems[0].setAttribute('@' + eventItem.name, await getTextFromClipboard()); }
224
+ action: async () => { this.selectedItems[0].setAttribute('@' + eventItem.name, await getTextFromClipboard()); this._bindingsRefresh(); }
225
225
  }
226
226
  ];
227
227
  ContextMenu.show(ctxMenu, e);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "description": "web-component-designer addon for visualizations",
3
3
  "name": "@node-projects/web-component-designer-visualization-addons",
4
- "version": "0.1.103",
4
+ "version": "0.1.104",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",