@infomaximum/widget-sdk 5.15.0 → 5.16.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 +35 -0
- package/dist/index.esm.js +3 -1
- package/dist/index.js +3 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
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.16.0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.2...v5.16.0) (2025-04-22)
|
|
6
|
+
|
|
7
|
+
## [5.15.0](https://github.com/Infomaximum/widget-sdk/compare/v5.14.0...v5.15.0) (2025-04-17)
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* в IBaseWidgetSettings добавлено поле markdownTextSize ([816efbf](https://github.com/Infomaximum/widget-sdk/commit/816efbf0602c21529f3b7ffd9178904d761b8a2e))
|
|
13
|
+
* для способа ввода статический список defaultOptionIndexes изменен на defaultValue ([afff970](https://github.com/Infomaximum/widget-sdk/commit/afff9709fbab78470d3ef3a5b8b2c12e233ad613))
|
|
14
|
+
* экспортированы интерфейсы параметров ожидаемых полей действий ([473400c](https://github.com/Infomaximum/widget-sdk/commit/473400ccda532a247927f6f7d0084e91dabb83d0))
|
|
15
|
+
|
|
16
|
+
## [5.14.0](https://github.com/Infomaximum/widget-sdk/compare/v5.13.0...v5.14.0) (2025-04-16)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
### Features
|
|
20
|
+
|
|
21
|
+
* добавлена возможность автоматического вызова fillSettings при изменении настройки через элемент управления ([e4fce52](https://github.com/Infomaximum/widget-sdk/commit/e4fce528b715fe5e748130402e07052b73c1a4cd))
|
|
22
|
+
|
|
23
|
+
## [5.13.0](https://github.com/Infomaximum/widget-sdk/compare/v5.12.1...v5.13.0) (2025-04-16)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Features
|
|
27
|
+
|
|
28
|
+
* добавлен новый inputMethod DATA_MODEL ([70b3d43](https://github.com/Infomaximum/widget-sdk/commit/70b3d434778f87777acbd18336286dde44dd9814))
|
|
29
|
+
* добавлены шаблоны для фильтрации в FormulaControl [WD-1705] ([ed358c3](https://github.com/Infomaximum/widget-sdk/commit/ed358c3889aac546c481acb4f590a878ccf3d6bd))
|
|
30
|
+
* удалены интефейсы расширенных настроек, добавлено поле paddings в интерфейс базовых настроек виджетов ([d704c81](https://github.com/Infomaximum/widget-sdk/commit/d704c81aa3dbf21d62b74580c654ffd08de17907))
|
|
31
|
+
|
|
5
32
|
## [5.15.0](https://github.com/Infomaximum/widget-sdk/compare/v5.14.0...v5.15.0) (2025-04-17)
|
|
6
33
|
|
|
7
34
|
|
|
@@ -27,6 +54,14 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
27
54
|
|
|
28
55
|
* удалены интефейсы расширенных настроек, добавлено поле paddings в интерфейс базовых настроек виджетов ([d704c81](https://github.com/Infomaximum/widget-sdk/commit/d704c81aa3dbf21d62b74580c654ffd08de17907))
|
|
29
56
|
|
|
57
|
+
|
|
58
|
+
### [5.12.2](https://github.com/Infomaximum/widget-sdk/compare/v5.12.1...v5.12.2) (2025-04-22)
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
### Bug Fixes
|
|
62
|
+
|
|
63
|
+
* исправленно падение фильтрации из-за комментариев в формуле ([962580c](https://github.com/Infomaximum/widget-sdk/commit/962580c0e86d6b7ebeacfef77481557add9eebf6))
|
|
64
|
+
|
|
30
65
|
### [5.12.1](https://github.com/Infomaximum/widget-sdk/compare/v5.12.0...v5.12.1) (2025-04-11)
|
|
31
66
|
|
|
32
67
|
## [5.12.0](https://github.com/Infomaximum/widget-sdk/compare/v5.11.1...v5.12.0) (2025-04-11)
|
package/dist/index.esm.js
CHANGED
|
@@ -1473,7 +1473,9 @@ var mapFormulaFilterToCalculatorInput = function (filterValue) {
|
|
|
1473
1473
|
if (!isFormulaFilterValue(filterValue)) {
|
|
1474
1474
|
return {
|
|
1475
1475
|
dbDataType: EClickHouseBaseTypes.Bool,
|
|
1476
|
-
formula: fillTemplateString(displayConditionTemplate, {
|
|
1476
|
+
formula: fillTemplateString(displayConditionTemplate, {
|
|
1477
|
+
formula: prepareFormulaForSql(filterValue.formula),
|
|
1478
|
+
}),
|
|
1477
1479
|
values: ["true"],
|
|
1478
1480
|
filteringMethod: formulaFilterMethods.EQUAL_TO,
|
|
1479
1481
|
};
|
package/dist/index.js
CHANGED
|
@@ -1474,7 +1474,9 @@ var mapFormulaFilterToCalculatorInput = function (filterValue) {
|
|
|
1474
1474
|
if (!isFormulaFilterValue(filterValue)) {
|
|
1475
1475
|
return {
|
|
1476
1476
|
dbDataType: exports.EClickHouseBaseTypes.Bool,
|
|
1477
|
-
formula: fillTemplateString(displayConditionTemplate, {
|
|
1477
|
+
formula: fillTemplateString(displayConditionTemplate, {
|
|
1478
|
+
formula: prepareFormulaForSql(filterValue.formula),
|
|
1479
|
+
}),
|
|
1478
1480
|
values: ["true"],
|
|
1479
1481
|
filteringMethod: formulaFilterMethods.EQUAL_TO,
|
|
1480
1482
|
};
|