@infomaximum/widget-sdk 5.29.0 → 5.30.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 +2 -2
- package/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.30.0](https://github.com/Infomaximum/widget-sdk/compare/v5.29.0...v5.30.0) (2025-07-15)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* Изменено поле ALL_WIDGETS > ALL_VIEWS для EAutoUpdateMode ([cb9ce26](https://github.com/Infomaximum/widget-sdk/commit/cb9ce26826f1c90cbadf2dd2d25932973050873f))
|
|
11
|
+
|
|
5
12
|
## [5.29.0](https://github.com/Infomaximum/widget-sdk/compare/v5.28.1...v5.29.0) (2025-07-14)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -965,7 +965,7 @@ declare enum EDrawerPlacement {
|
|
|
965
965
|
declare enum EAutoUpdateMode {
|
|
966
966
|
NONE = "NONE",
|
|
967
967
|
THIS_WIDGET = "THIS_WIDGET",
|
|
968
|
-
|
|
968
|
+
ALL_VIEWS = "ALL_VIEWS"
|
|
969
969
|
}
|
|
970
970
|
declare enum EDataModelOption {
|
|
971
971
|
TABLE_LIST = "TABLE_LIST",
|
|
@@ -1151,7 +1151,7 @@ interface IViewAction {
|
|
|
1151
1151
|
parameters: TViewActionParameter[];
|
|
1152
1152
|
scriptKey: string;
|
|
1153
1153
|
id?: number;
|
|
1154
|
-
autoUpdate?: EAutoUpdateMode.NONE | EAutoUpdateMode.
|
|
1154
|
+
autoUpdate?: EAutoUpdateMode.NONE | EAutoUpdateMode.ALL_VIEWS;
|
|
1155
1155
|
}
|
|
1156
1156
|
type TAction = TActionsOnClick | IWidgetAction | IViewAction;
|
|
1157
1157
|
type TActionValidator = (action: TAction) => boolean;
|
package/dist/index.esm.js
CHANGED
|
@@ -51,7 +51,7 @@ var EAutoUpdateMode;
|
|
|
51
51
|
(function (EAutoUpdateMode) {
|
|
52
52
|
EAutoUpdateMode["NONE"] = "NONE";
|
|
53
53
|
EAutoUpdateMode["THIS_WIDGET"] = "THIS_WIDGET";
|
|
54
|
-
EAutoUpdateMode["
|
|
54
|
+
EAutoUpdateMode["ALL_VIEWS"] = "ALL_VIEWS";
|
|
55
55
|
})(EAutoUpdateMode || (EAutoUpdateMode = {}));
|
|
56
56
|
var EDataModelOption;
|
|
57
57
|
(function (EDataModelOption) {
|
package/dist/index.js
CHANGED
|
@@ -52,7 +52,7 @@ exports.EAutoUpdateMode = void 0;
|
|
|
52
52
|
(function (EAutoUpdateMode) {
|
|
53
53
|
EAutoUpdateMode["NONE"] = "NONE";
|
|
54
54
|
EAutoUpdateMode["THIS_WIDGET"] = "THIS_WIDGET";
|
|
55
|
-
EAutoUpdateMode["
|
|
55
|
+
EAutoUpdateMode["ALL_VIEWS"] = "ALL_VIEWS";
|
|
56
56
|
})(exports.EAutoUpdateMode || (exports.EAutoUpdateMode = {}));
|
|
57
57
|
exports.EDataModelOption = void 0;
|
|
58
58
|
(function (EDataModelOption) {
|