@node-projects/web-component-designer-visualization-addons 0.1.23 → 0.1.24
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.
|
@@ -191,7 +191,7 @@ export class BindingsHelper {
|
|
|
191
191
|
else if (!isLit(element) && binding.events?.[0] == targetName + '-changed')
|
|
192
192
|
delete bindingCopy.events;
|
|
193
193
|
}
|
|
194
|
-
const eventsString = binding.events?.length > 0 ? binding.events.join(',') : '';
|
|
194
|
+
const eventsString = binding.events?.length > 0 ? '::' + binding.events.join(',') : '';
|
|
195
195
|
if (binding.target == BindingTarget.property &&
|
|
196
196
|
!binding.expression && !binding.expressionTwoWay &&
|
|
197
197
|
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.
|
|
4
|
+
"version": "0.1.24",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"author": "jochen.kuehner@gmx.de",
|