@infomaximum/widget-sdk 5.24.0 → 5.24.1-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/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.24.1-0](https://github.com/Infomaximum/widget-sdk/compare/v5.24.0...v5.24.1-0) (2025-06-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* изменено именование поля actinButtons > actionButtons ([ad99479](https://github.com/Infomaximum/widget-sdk/commit/ad99479be23750ca870ffcbb12bfcf105dddc891))
|
|
11
|
+
|
|
5
12
|
## [5.24.0](https://github.com/Infomaximum/widget-sdk/compare/v5.23.0...v5.24.0) (2025-06-06)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1066,7 +1066,7 @@ interface IActionUpdateVariable extends IActionCommon {
|
|
|
1066
1066
|
type TActionOpenIn = {
|
|
1067
1067
|
openIn: EViewOpenIn.DRAWER_WINDOW;
|
|
1068
1068
|
alignment: EDrawerPlacement;
|
|
1069
|
-
|
|
1069
|
+
actionButtons: boolean;
|
|
1070
1070
|
} | {
|
|
1071
1071
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
1072
1072
|
placeholderName: string;
|
|
@@ -1076,7 +1076,7 @@ type TActionOpenIn = {
|
|
|
1076
1076
|
openIn: EViewOpenIn.NEW_WINDOW;
|
|
1077
1077
|
} | {
|
|
1078
1078
|
openIn: EViewOpenIn.MODAL_WINDOW;
|
|
1079
|
-
|
|
1079
|
+
actionButtons: boolean;
|
|
1080
1080
|
positionByClick?: boolean;
|
|
1081
1081
|
}
|
|
1082
1082
|
/** @deprecated необходимо использовать EViewOpenIn.WINDOW с флагом newWindow - false */
|