@infomaximum/widget-sdk 5.27.0-0 → 5.27.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/CHANGELOG.md +20 -0
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
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.27.0-1](https://github.com/Infomaximum/widget-sdk/compare/v5.26.1...v5.27.0-1) (2025-06-26)
|
|
6
|
+
|
|
5
7
|
## [5.27.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.26.0...v5.27.0-0) (2025-06-24)
|
|
6
8
|
|
|
7
9
|
|
|
@@ -16,6 +18,24 @@ All notable changes to this project will be documented in this file. See [standa
|
|
|
16
18
|
|
|
17
19
|
* добавлен интерфейс предоставляемых библиотек системой для системных виджетов ([06b38ad](https://github.com/Infomaximum/widget-sdk/commit/06b38ad6ba733766ff648b41efa5a38efcfc3748))
|
|
18
20
|
|
|
21
|
+
### [5.26.1](https://github.com/Infomaximum/widget-sdk/compare/v5.26.0...v5.26.1) (2025-06-25)
|
|
22
|
+
|
|
23
|
+
### Bug Fixes
|
|
24
|
+
|
|
25
|
+
- изменено именование поля actinButtons > actionButtons ([8b0ddf3](https://github.com/Infomaximum/widget-sdk/commit/8b0ddf374045287a06210c19debe021fe4dbcc97))
|
|
26
|
+
|
|
27
|
+
## [5.26.0](https://github.com/Infomaximum/widget-sdk/compare/v5.25.0...v5.26.0) (2025-06-23)
|
|
28
|
+
|
|
29
|
+
### Features
|
|
30
|
+
|
|
31
|
+
- добавлен react-dom/client ([8f537ec](https://github.com/Infomaximum/widget-sdk/commit/8f537ecfdb0dd716066a504d7008bec2ec8079de))
|
|
32
|
+
|
|
33
|
+
## [5.26.0-0](https://github.com/Infomaximum/widget-sdk/compare/v5.25.0...v5.26.0-0) (2025-06-19)
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
|
|
37
|
+
- добавлен интерфейс предоставляемых библиотек системой для системных виджетов ([06b38ad](https://github.com/Infomaximum/widget-sdk/commit/06b38ad6ba733766ff648b41efa5a38efcfc3748))
|
|
38
|
+
|
|
19
39
|
## [5.26.0](https://github.com/Infomaximum/widget-sdk/compare/v5.25.0...v5.26.0) (2025-06-23)
|
|
20
40
|
|
|
21
41
|
### Features
|
package/dist/index.d.ts
CHANGED
|
@@ -1070,7 +1070,7 @@ interface IActionUpdateVariable extends IActionCommon {
|
|
|
1070
1070
|
type TActionOpenIn = {
|
|
1071
1071
|
openIn: EViewOpenIn.DRAWER_WINDOW;
|
|
1072
1072
|
alignment: EDrawerPlacement;
|
|
1073
|
-
|
|
1073
|
+
actionButtons: boolean;
|
|
1074
1074
|
} | {
|
|
1075
1075
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
1076
1076
|
placeholderName: string;
|
|
@@ -1080,7 +1080,7 @@ type TActionOpenIn = {
|
|
|
1080
1080
|
openIn: EViewOpenIn.NEW_WINDOW;
|
|
1081
1081
|
} | {
|
|
1082
1082
|
openIn: EViewOpenIn.MODAL_WINDOW;
|
|
1083
|
-
|
|
1083
|
+
actionButtons: boolean;
|
|
1084
1084
|
positionByClick?: boolean;
|
|
1085
1085
|
}
|
|
1086
1086
|
/** @deprecated необходимо использовать EViewOpenIn.WINDOW с флагом newWindow - false */
|