@node-projects/web-component-designer-visualization-addons 0.1.119 → 0.1.120

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.
@@ -247,6 +247,8 @@ export class BindingsHelper {
247
247
  let needsJson = false;
248
248
  if (eventsString && binding.expression?.includes('::') || binding.expressionTwoWay?.includes('::'))
249
249
  needsJson = true;
250
+ if (binding.signal.trim()[0] == '{')
251
+ needsJson = true;
250
252
  if (!needsJson && binding.target == BindingTarget.property &&
251
253
  !binding.expression && !binding.expressionTwoWay &&
252
254
  binding.converter == null &&
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.119",
4
+ "version": "0.1.120",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",