@infomaximum/widget-sdk 5.18.0 → 5.19.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 +7 -0
- package/dist/index.d.ts +5 -0
- package/package.json +4 -4
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
|
+
## [5.19.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0...v5.19.0) (2025-05-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* добавлено поле dbDataType в настройки способов ввода ([58e9f49](https://github.com/Infomaximum/widget-sdk/commit/58e9f4994bf31c99eefe077935deb9482e68aa22))
|
|
11
|
+
|
|
5
12
|
## [5.18.0](https://github.com/Infomaximum/widget-sdk/compare/v5.18.0-0...v5.18.0) (2025-04-30)
|
|
6
13
|
|
|
7
14
|
## [5.18.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.17.0...v5.18.0-0) (2025-04-30)
|
package/dist/index.d.ts
CHANGED
|
@@ -968,6 +968,7 @@ interface IParameterFromColumn {
|
|
|
968
968
|
inputMethod: EWidgetActionInputMethod.COLUMN;
|
|
969
969
|
tableName: string;
|
|
970
970
|
columnName: string;
|
|
971
|
+
dbDataType?: string;
|
|
971
972
|
}
|
|
972
973
|
interface IParameterFromVariable {
|
|
973
974
|
inputMethod: EWidgetActionInputMethod.VARIABLE;
|
|
@@ -977,11 +978,13 @@ interface IParameterFromFormula {
|
|
|
977
978
|
inputMethod: EWidgetActionInputMethod.FORMULA;
|
|
978
979
|
formula: string;
|
|
979
980
|
considerFilters: boolean;
|
|
981
|
+
dbDataType?: string;
|
|
980
982
|
}
|
|
981
983
|
interface IParameterFromAggregation {
|
|
982
984
|
inputMethod: EWidgetActionInputMethod.AGGREGATION;
|
|
983
985
|
formula: string;
|
|
984
986
|
considerFilters: boolean;
|
|
987
|
+
dbDataType?: string;
|
|
985
988
|
}
|
|
986
989
|
interface IParameterFromEvent {
|
|
987
990
|
inputMethod: EWidgetActionInputMethod.EVENT;
|
|
@@ -996,6 +999,7 @@ interface IParameterFromManualInput {
|
|
|
996
999
|
inputMethod: EWidgetActionInputMethod.MANUALLY;
|
|
997
1000
|
description: string;
|
|
998
1001
|
defaultValue?: string;
|
|
1002
|
+
dbDataType?: string;
|
|
999
1003
|
filterByRows?: boolean;
|
|
1000
1004
|
}
|
|
1001
1005
|
interface IParameterFromStaticList {
|
|
@@ -1007,6 +1011,7 @@ interface IParameterFromDynamicList {
|
|
|
1007
1011
|
inputMethod: EWidgetActionInputMethod.DYNAMIC_LIST;
|
|
1008
1012
|
options: string;
|
|
1009
1013
|
defaultValue: string;
|
|
1014
|
+
dbDataType?: string;
|
|
1010
1015
|
displayOptions: string;
|
|
1011
1016
|
filters: TExtendedFormulaFilterValue[];
|
|
1012
1017
|
filterByRows?: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infomaximum/widget-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.19.0",
|
|
4
4
|
"main": "./dist/index.js",
|
|
5
5
|
"module": "./dist/index.esm.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -13,10 +13,10 @@
|
|
|
13
13
|
"scripts": {
|
|
14
14
|
"build": "rollup -c",
|
|
15
15
|
"lint": "tsc --noEmit",
|
|
16
|
-
"release": "
|
|
17
|
-
"
|
|
16
|
+
"release": "standard-version",
|
|
17
|
+
"release:rc": "standard-version -p",
|
|
18
18
|
"format": "prettier --find-config-path --write 'src/**/*'",
|
|
19
|
-
"prepublishOnly": "npm run build",
|
|
19
|
+
"prepublishOnly": "npm run lint && npm run build",
|
|
20
20
|
"test": "jest"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|