@infomaximum/widget-sdk 5.19.0 → 5.19.1-2504.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 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.19.1-2504.0](https://github.com/Infomaximum/widget-sdk/compare/v5.19.1-0...v5.19.1-2504.0) (2025-07-28)
6
+
7
+ ### [5.19.1-b745682-2504](https://github.com/Infomaximum/widget-sdk/compare/v5.19.1-0...v5.19.1-b745682-2504) (2025-07-28)
8
+
9
+ ### [5.19.1-0](https://github.com/Infomaximum/widget-sdk/compare/v5.19.0...v5.19.1-0) (2025-05-30)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * поддержан null для значения переменных ([0e18f96](https://github.com/Infomaximum/widget-sdk/commit/0e18f9630a5e508b71678da994bd0a46ebc7215c))
15
+
5
16
  ## [5.19.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0...v5.19.0) (2025-05-19)
6
17
 
7
18
 
package/dist/index.d.ts CHANGED
@@ -659,7 +659,7 @@ interface IWidgetStaticVariable extends IBaseWidgetVariable {
659
659
  /** Тип переменной */
660
660
  type: EIndicatorType.STATIC;
661
661
  /** Значение */
662
- value: string;
662
+ value: string | null;
663
663
  /** Обобщенный тип данных */
664
664
  simpleInputType: ESimpleInputType;
665
665
  }
@@ -671,7 +671,7 @@ interface IWidgetStaticListVariable extends IBaseWidgetVariable {
671
671
  /** Тип переменной */
672
672
  type: EIndicatorType.STATIC_LIST;
673
673
  /** Значение */
674
- value: string | string[];
674
+ value: string | string[] | null;
675
675
  /** Элементы статического списка */
676
676
  /** @deprecated поле будет удалено, необходимо использовать labeledOptions */
677
677
  options: string[];
@@ -684,7 +684,7 @@ interface IWidgetDynamicListVariable extends IBaseWidgetVariable {
684
684
  /** Тип переменной */
685
685
  type: EIndicatorType.DYNAMIC_LIST;
686
686
  /** Значение */
687
- value: string | string[];
687
+ value: string | (string | null)[] | null;
688
688
  /** Формула для отображения списка */
689
689
  listFormula: TNullable<string>;
690
690
  /** Тип данных */
@@ -702,7 +702,7 @@ interface IWidgetColumnListVariable extends IBaseWidgetVariable {
702
702
  /** Имя таблицы */
703
703
  tableName: string;
704
704
  /** Значение (имя колонки) */
705
- value: string;
705
+ value: string | null;
706
706
  }
707
707
  type TWidgetVariable = IWidgetStaticVariable | IWidgetStaticListVariable | IWidgetDynamicListVariable | IWidgetColumnListVariable;
708
708
  declare function isDimensionsHierarchy(indicator: IWidgetColumnIndicator): indicator is IWidgetDimensionHierarchy;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "5.19.0",
3
+ "version": "5.19.1-2504.0",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
@@ -15,6 +15,7 @@
15
15
  "lint": "tsc --noEmit",
16
16
  "release": "standard-version",
17
17
  "release:rc": "standard-version -p",
18
+ "release:prev": "node ./scripts/re-release.mjs",
18
19
  "format": "prettier --find-config-path --write 'src/**/*'",
19
20
  "prepublishOnly": "npm run lint && npm run build",
20
21
  "test": "jest"