@iobroker/dm-utils 0.2.1 → 0.2.2
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.
- package/README.md +1 -1
- package/build/types/base.d.ts +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/build/types/base.d.ts
CHANGED
|
@@ -14,9 +14,9 @@ export interface ActionBase<T extends ActionType> {
|
|
|
14
14
|
color?: Color;
|
|
15
15
|
backgroundColor?: Color;
|
|
16
16
|
/** If true, the user will be asked for confirmation before executing the action */
|
|
17
|
-
confirmation
|
|
17
|
+
confirmation?: boolean | ioBroker.StringOrTranslated;
|
|
18
18
|
/** If defined, before the action is triggered, the non-empty text or number or checkbox will be asked */
|
|
19
|
-
inputBefore
|
|
19
|
+
inputBefore?: {
|
|
20
20
|
/** This label will be shown for the text input */
|
|
21
21
|
label: ioBroker.StringOrTranslated;
|
|
22
22
|
/** This type of input will be shown. Default is type */
|