@node-projects/web-component-designer-visualization-addons 0.1.7 → 0.1.8
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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { VisualizationBinding } from "../interfaces/VisualizationBinding.js";
|
|
2
|
-
import { BindingTarget } from "@node-projects/web-component-designer";
|
|
3
2
|
import { State, VisualizationHandler } from "../interfaces/VisualizationHandler.js";
|
|
3
|
+
import { BindingTarget } from "@node-projects/web-component-designer/dist/elements/item/BindingTarget.js";
|
|
4
4
|
export declare const bindingPrefixProperty = "bind-prop:";
|
|
5
5
|
export declare const bindingPrefixAttribute = "bind-attr:";
|
|
6
6
|
export declare const bindingPrefixClass = "bind-class:";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { TypedEvent } from "@node-projects/base-custom-webcomponent";
|
|
2
|
-
import {
|
|
2
|
+
import { BindingTarget } from "@node-projects/web-component-designer/dist/elements/item/BindingTarget.js";
|
|
3
|
+
import { PropertiesHelper } from "@node-projects/web-component-designer/dist/elements/services/propertiesService/services/PropertiesHelper.js";
|
|
3
4
|
//;,[ are not allowed in bindings, so they could be used for a short form...
|
|
4
5
|
export const bindingPrefixProperty = 'bind-prop:';
|
|
5
6
|
export const bindingPrefixAttribute = 'bind-attr:';
|
|
@@ -3,7 +3,6 @@ export declare class IScriptMultiplexValue {
|
|
|
3
3
|
* signal - read the value from a IOB object
|
|
4
4
|
* property - read the value from a property of the customControl (not usable in screens)
|
|
5
5
|
* event - read the value of a property of the event object
|
|
6
|
-
* @TJS-format signal
|
|
7
6
|
*/
|
|
8
7
|
source: 'signal' | 'property' | 'event';
|
|
9
8
|
/**
|
|
@@ -3,7 +3,6 @@ export class IScriptMultiplexValue {
|
|
|
3
3
|
* signal - read the value from a IOB object
|
|
4
4
|
* property - read the value from a property of the customControl (not usable in screens)
|
|
5
5
|
* event - read the value of a property of the event object
|
|
6
|
-
* @TJS-format signal
|
|
7
6
|
*/
|
|
8
7
|
source;
|
|
9
8
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { sleep } from "@node-projects/web-component-designer";
|
|
1
|
+
import { sleep } from "@node-projects/web-component-designer/dist/elements/helper/Helper.js";
|
|
2
2
|
import { generateEventCodeFromBlockly } from "../blockly/BlocklyJavascriptHelper.js";
|
|
3
3
|
import { parseBindingString } from "../helpers/BindingsHelper.js";
|
|
4
4
|
import Long from 'long';
|
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.8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"author": "jochen.kuehner@gmx.de",
|