@infomaximum/widget-sdk 5.17.0 → 5.18.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 +11 -0
- package/dist/index.d.ts +4 -0
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
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.18.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0-0...v5.18.0) (2025-04-30)
|
|
6
|
+
|
|
7
|
+
## [5.18.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.17.0...v5.18.0-0) (2025-04-30)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **InputNumberControl:** в props добавлена настройка layout для ориентации поля ([5545657](https://github.com/Infomaximum/widget-sdk/commit/554565767a432ef2748533c2d0b4dccb1a98c0ba))
|
|
13
|
+
* IParameterFromDynamicList расширен флагом enableCustomValue ([4ed6d23](https://github.com/Infomaximum/widget-sdk/commit/4ed6d234828c65350e24e8fee480381462304522))
|
|
14
|
+
* для переменной динамический список добавлен флаг considerFilters ([bf55aad](https://github.com/Infomaximum/widget-sdk/commit/bf55aaddc3bd2b72f5440d3071e2f30c874b05eb))
|
|
15
|
+
|
|
5
16
|
## [5.17.0](https://github.com/Infomaximum/widget-sdk/compare/v5.16.0...v5.17.0) (2025-04-23)
|
|
6
17
|
|
|
7
18
|
|
package/dist/index.d.ts
CHANGED
|
@@ -693,6 +693,8 @@ interface IWidgetDynamicListVariable extends IBaseWidgetVariable {
|
|
|
693
693
|
multipleChoice: boolean;
|
|
694
694
|
/** Фильтры */
|
|
695
695
|
filters: TExtendedFormulaFilterValue[];
|
|
696
|
+
/** Флаг применения фильтров отчета для отображаемого списка */
|
|
697
|
+
considerFilters: boolean;
|
|
696
698
|
}
|
|
697
699
|
interface IWidgetColumnListVariable extends IBaseWidgetVariable {
|
|
698
700
|
/** Тип переменной */
|
|
@@ -1009,6 +1011,7 @@ interface IParameterFromDynamicList {
|
|
|
1009
1011
|
filters: TExtendedFormulaFilterValue[];
|
|
1010
1012
|
filterByRows?: boolean;
|
|
1011
1013
|
considerFilters: boolean;
|
|
1014
|
+
enableCustomValue?: boolean;
|
|
1012
1015
|
}
|
|
1013
1016
|
interface IParameterFromDataModelBase {
|
|
1014
1017
|
inputMethod: EWidgetActionInputMethod.DATA_MODEL;
|
|
@@ -1517,6 +1520,7 @@ interface IInputNumberControl {
|
|
|
1517
1520
|
unitLabel?: string;
|
|
1518
1521
|
isClearable?: boolean;
|
|
1519
1522
|
disabled?: boolean;
|
|
1523
|
+
layout?: "vertical" | "horizontal";
|
|
1520
1524
|
};
|
|
1521
1525
|
}
|
|
1522
1526
|
interface IInputRangeControl {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infomaximum/widget-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.18.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"build": "rollup -c",
|
|
15
15
|
"lint": "tsc --noEmit",
|
|
16
16
|
"release": "npm run lint && standard-version && npm run build",
|
|
17
|
+
"prerelease": "npm run lint && standard-version -p && npm run build",
|
|
17
18
|
"format": "prettier --find-config-path --write 'src/**/*'",
|
|
18
19
|
"prepublishOnly": "npm run build",
|
|
19
20
|
"test": "jest"
|