@node-projects/web-component-designer-visualization-addons 0.1.74 → 0.1.75

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.
@@ -186,8 +186,8 @@ export class ScriptSystem {
186
186
  const value = await this.getValue(command.value, context);
187
187
  const parentIndex = await this.getValue(command.parentIndex ?? 0, context);
188
188
  const target = await this.getValue(command.target ?? 'property', context);
189
- const targetSelectorTarget = await this.getValue(command.targetSelectorTarget ?? 'property', context);
190
- const targetSelector = await this.getValue(command.targetSelector ?? 'container', context);
189
+ const targetSelectorTarget = await this.getValue(command.targetSelectorTarget ?? 'container', context);
190
+ const targetSelector = await this.getValue(command.targetSelector, context);
191
191
  const mode = await this.getValue(command.mode, context);
192
192
  let elements = this.getTargetFromTargetSelector(context, targetSelectorTarget, parentIndex, targetSelector);
193
193
  for (let e of elements) {
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.74",
4
+ "version": "0.1.75",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",