@node-projects/web-component-designer-visualization-addons 0.1.36 → 0.1.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.
@@ -30,6 +30,7 @@ export class EventAssignment extends BaseCustomWebComponentConstructorAppend {
30
30
  }
31
31
  a {
32
32
  cursor: pointer;
33
+ white-space: nowrap;
33
34
  }
34
35
  a:hover {
35
36
  cursor: pointer;
@@ -377,7 +378,7 @@ export class EventAssignment extends BaseCustomWebComponentConstructorAppend {
377
378
  }
378
379
  refresh() {
379
380
  if (this._selectedItems != null && this._selectedItems.length) {
380
- this.events = this._selectedItems[0].serviceContainer.getLastServiceWhere('eventsService', x => x.isHandledElement(this._selectedItems[0])).getPossibleEvents(this._selectedItems[0]);
381
+ this.events = this._selectedItems[0].serviceContainer.getLastServiceWhere('eventsService', x => x.isHandledElementFromEventsService(this._selectedItems[0])).getPossibleEvents(this._selectedItems[0]);
381
382
  }
382
383
  else {
383
384
  this.events = [];
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.36",
4
+ "version": "0.1.38",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",