@infomaximum/widget-sdk 6.0.0-17 → 6.0.0-18

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 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
+ ## [6.0.0-18](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-17...v6.0.0-18) (2025-12-16)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * исправлено формирование формулы для разреза типа массив ([cc0b7a6](https://github.com/Infomaximum/widget-sdk/commit/cc0b7a6f82706326afdd556d5dcb4b0af184759e))
11
+
5
12
  ## [6.0.0-17](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-16...v6.0.0-17) (2025-11-19)
6
13
 
7
14
 
package/dist/index.esm.js CHANGED
@@ -1646,7 +1646,9 @@ var getFormulaFilterValues = function (filterValue) {
1646
1646
  }
1647
1647
  return [];
1648
1648
  };
1649
- var applyIndexToArrayFormula = function (formula, index) { return "".concat(formula, "[").concat(index, "]"); };
1649
+ var applyIndexToArrayFormula = function (formula, index) {
1650
+ return "(".concat(formula, ")[").concat(index, "]");
1651
+ };
1650
1652
  var mapFormulaFilterToCalculatorInput = function (filterValue) {
1651
1653
  if (!filterValue) {
1652
1654
  return null;
package/dist/index.js CHANGED
@@ -1647,7 +1647,9 @@ var getFormulaFilterValues = function (filterValue) {
1647
1647
  }
1648
1648
  return [];
1649
1649
  };
1650
- var applyIndexToArrayFormula = function (formula, index) { return "".concat(formula, "[").concat(index, "]"); };
1650
+ var applyIndexToArrayFormula = function (formula, index) {
1651
+ return "(".concat(formula, ")[").concat(index, "]");
1652
+ };
1651
1653
  var mapFormulaFilterToCalculatorInput = function (filterValue) {
1652
1654
  if (!filterValue) {
1653
1655
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "6.0.0-17",
3
+ "version": "6.0.0-18",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",