@infomaximum/widget-sdk 5.12.4-0 → 5.13.0-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/CHANGELOG.md +7 -0
- package/dist/index.d.ts +3 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [5.13.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.4-0...v5.13.0-0) (2025-07-08)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Для способов ввода Вручную, Динамический и Статический список добавлен флаг acceptEmptyValue ([d4922b5](https://github.com/Infomaximum/widget-sdk/commit/d4922b58fee000dc14ff517511be202b0cd6bbba))
|
|
11
|
+
|
|
5
12
|
### [5.12.4-0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.3...v5.12.4-0) (2025-05-30)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -979,11 +979,13 @@ interface IParameterFromManualInput {
|
|
|
979
979
|
defaultValue?: string;
|
|
980
980
|
dbDataType?: string;
|
|
981
981
|
filterByRows?: boolean;
|
|
982
|
+
acceptEmptyValue?: boolean;
|
|
982
983
|
}
|
|
983
984
|
interface IParameterFromStaticList {
|
|
984
985
|
inputMethod: EWidgetActionInputMethod.STATIC_LIST;
|
|
985
986
|
options: string;
|
|
986
987
|
defaultOptionIndexes: number[];
|
|
988
|
+
acceptEmptyValue?: boolean;
|
|
987
989
|
}
|
|
988
990
|
interface IParameterFromDynamicList {
|
|
989
991
|
inputMethod: EWidgetActionInputMethod.DYNAMIC_LIST;
|
|
@@ -993,6 +995,7 @@ interface IParameterFromDynamicList {
|
|
|
993
995
|
displayOptions: string;
|
|
994
996
|
filters: TExtendedFormulaFilterValue[];
|
|
995
997
|
filterByRows?: boolean;
|
|
998
|
+
acceptEmptyValue?: boolean;
|
|
996
999
|
}
|
|
997
1000
|
interface IWidgetActionParameterCommon {
|
|
998
1001
|
name: string;
|