@infomaximum/widget-sdk 4.8.0 → 4.9.0
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/dist/index.d.ts +5 -3
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -739,16 +739,18 @@ interface IParameterFromEndEvent {
|
|
|
739
739
|
interface IParameterFromManualInput {
|
|
740
740
|
inputMethod: EWidgetActionInputMethod.MANUALLY;
|
|
741
741
|
description: string;
|
|
742
|
+
defaultValue?: string;
|
|
742
743
|
}
|
|
743
744
|
interface IParameterFromStaticList {
|
|
744
745
|
inputMethod: EWidgetActionInputMethod.STATIC_LIST;
|
|
745
|
-
options: string
|
|
746
|
-
|
|
746
|
+
options: string;
|
|
747
|
+
defaultOptionIndexes: number[];
|
|
747
748
|
}
|
|
748
749
|
interface IParameterFromDynamicList {
|
|
749
750
|
inputMethod: EWidgetActionInputMethod.DYNAMIC_LIST;
|
|
750
|
-
|
|
751
|
+
options: string;
|
|
751
752
|
defaultValue: string;
|
|
753
|
+
displayOptions: string;
|
|
752
754
|
filters: TExtendedFormulaFilterValue[];
|
|
753
755
|
}
|
|
754
756
|
interface IWidgetActionParameterCommon {
|
package/dist/index.esm.js
CHANGED
|
@@ -72,7 +72,7 @@ var isExecuteScriptActionValid = function (action, _a) {
|
|
|
72
72
|
if (actionInput.inputMethod === EWidgetActionInputMethod.FORMULA && !actionInput.formula) {
|
|
73
73
|
return false;
|
|
74
74
|
}
|
|
75
|
-
if (actionInput.inputMethod === EWidgetActionInputMethod.DYNAMIC_LIST && !actionInput.
|
|
75
|
+
if (actionInput.inputMethod === EWidgetActionInputMethod.DYNAMIC_LIST && !actionInput.options) {
|
|
76
76
|
return false;
|
|
77
77
|
}
|
|
78
78
|
if (actionInput.inputMethod === EWidgetActionInputMethod.COLUMN &&
|
package/dist/index.js
CHANGED
|
@@ -73,7 +73,7 @@ var isExecuteScriptActionValid = function (action, _a) {
|
|
|
73
73
|
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.FORMULA && !actionInput.formula) {
|
|
74
74
|
return false;
|
|
75
75
|
}
|
|
76
|
-
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.DYNAMIC_LIST && !actionInput.
|
|
76
|
+
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.DYNAMIC_LIST && !actionInput.options) {
|
|
77
77
|
return false;
|
|
78
78
|
}
|
|
79
79
|
if (actionInput.inputMethod === exports.EWidgetActionInputMethod.COLUMN &&
|