@node-projects/web-component-designer-visualization-addons 0.1.71 → 0.1.72

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.
@@ -51,10 +51,12 @@ export interface ShowMessageBox {
51
51
  message: string;
52
52
  /**
53
53
  * message type
54
+ * @default info
54
55
  */
55
56
  messageType?: 'info' | 'warning' | 'error';
56
57
  /**
57
58
  * message text
59
+ * @default ok
58
60
  */
59
61
  buttons: 'ok' | 'okCancel' | 'yesNo' | 'retryCancel' | 'yesNoCancel' | 'abortRetryIgnore' | 'cancelTryContinue';
60
62
  /**
@@ -144,6 +146,9 @@ export interface SetBitInSignal {
144
146
  * @TJS-format signal
145
147
  */
146
148
  signal: string;
149
+ /**
150
+ * @default 0
151
+ */
147
152
  bitNumber: number;
148
153
  additionalData?: string;
149
154
  }
@@ -154,6 +159,9 @@ export interface ClearBitInSignal {
154
159
  * @TJS-format signal
155
160
  */
156
161
  signal: string;
162
+ /**
163
+ * @default 0
164
+ */
157
165
  bitNumber: number;
158
166
  additionalData?: string;
159
167
  }
@@ -164,6 +172,9 @@ export interface ToggleBitInSignal {
164
172
  * @TJS-format signal
165
173
  */
166
174
  signal: string;
175
+ /**
176
+ * @default 0
177
+ */
167
178
  bitNumber: number;
168
179
  additionalData?: string;
169
180
  }
@@ -181,14 +192,14 @@ export interface SetElementProperty {
181
192
  type: 'SetElementProperty';
182
193
  /**
183
194
  * what of the elements do you want to set
184
- * @default 'property'
195
+ * @default property
185
196
  */
186
197
  target: 'property' | 'attribute' | 'css' | 'class';
187
198
  /**
188
199
  * where to search for the elements.
189
200
  * element
190
201
  * container = screen or customControl
191
- * @default 'container'
202
+ * @default container
192
203
  */
193
204
  targetSelectorTarget: 'container' | 'element';
194
205
  /**
@@ -218,6 +229,7 @@ export interface Delay {
218
229
  type: 'Delay';
219
230
  /**
220
231
  * miliseconds to delay
232
+ * @default 500
221
233
  */
222
234
  value: number;
223
235
  additionalData?: string;
@@ -226,6 +238,7 @@ export interface Console {
226
238
  type: 'Console';
227
239
  /**
228
240
  * target where to log
241
+ * @default log
229
242
  */
230
243
  target: 'log' | 'info' | 'debug' | 'warn' | 'error';
231
244
  /**
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.71",
4
+ "version": "0.1.72",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "author": "jochen.kuehner@gmx.de",