@node-projects/web-component-designer-visualization-addons 0.1.76 → 0.1.77
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.
|
@@ -8,17 +8,17 @@ export class ScriptUpgrades {
|
|
|
8
8
|
}
|
|
9
9
|
static upgradeSetElementProperty(scriptCommand) {
|
|
10
10
|
if (scriptCommand.targetSelectorTarget === 'currentScreen') {
|
|
11
|
-
scriptCommand.
|
|
11
|
+
scriptCommand.targetSelectorTarget = 'container';
|
|
12
12
|
}
|
|
13
13
|
else if (scriptCommand.targetSelectorTarget === 'parentScreen') {
|
|
14
|
-
scriptCommand.
|
|
14
|
+
scriptCommand.targetSelectorTarget = 'container';
|
|
15
15
|
scriptCommand.parentIndex = 1;
|
|
16
16
|
}
|
|
17
17
|
else if (scriptCommand.targetSelectorTarget === 'currentElement') {
|
|
18
|
-
scriptCommand.
|
|
18
|
+
scriptCommand.targetSelectorTarget = 'element';
|
|
19
19
|
}
|
|
20
20
|
else if (scriptCommand.targetSelectorTarget === 'parentElement') {
|
|
21
|
-
scriptCommand.
|
|
21
|
+
scriptCommand.targetSelectorTarget = 'element';
|
|
22
22
|
scriptCommand.parentIndex = 1;
|
|
23
23
|
}
|
|
24
24
|
return scriptCommand;
|
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.77",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"author": "jochen.kuehner@gmx.de",
|