@infomaximum/widget-sdk 5.0.0 → 5.0.1
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/dist/index.d.ts +2 -2
- package/package.json +4 -3
package/dist/index.d.ts
CHANGED
|
@@ -973,7 +973,7 @@ interface IWidgetStaticVariable extends IBaseWidgetVariable {
|
|
|
973
973
|
/** Тип переменной */
|
|
974
974
|
type: EIndicatorType.STATIC;
|
|
975
975
|
/** Значение */
|
|
976
|
-
value: string;
|
|
976
|
+
value: string | null;
|
|
977
977
|
/** Обобщенный тип данных */
|
|
978
978
|
simpleInputType: ESimpleInputType;
|
|
979
979
|
}
|
|
@@ -991,7 +991,7 @@ interface IWidgetDynamicListVariable extends IBaseWidgetVariable {
|
|
|
991
991
|
/** Тип переменной */
|
|
992
992
|
type: EIndicatorType.DYNAMIC_LIST;
|
|
993
993
|
/** Значение */
|
|
994
|
-
value: string | string[];
|
|
994
|
+
value: string | (string | null)[] | null;
|
|
995
995
|
/** Формула для отображения списка */
|
|
996
996
|
listFormula: TNullable<string>;
|
|
997
997
|
/** Тип данных */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infomaximum/widget-sdk",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -13,9 +13,10 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "rollup -c",
|
|
15
15
|
"lint": "tsc --noEmit",
|
|
16
|
-
"release": "
|
|
16
|
+
"release": "standard-version",
|
|
17
|
+
"release:rc": "standard-version -p",
|
|
17
18
|
"format": "prettier --find-config-path --write 'src/**/*'",
|
|
18
|
-
"prepublishOnly": "npm run build",
|
|
19
|
+
"prepublishOnly": "npm run lint && npm run build",
|
|
19
20
|
"test": "jest"
|
|
20
21
|
},
|
|
21
22
|
"dependencies": {
|