@infomaximum/widget-sdk 5.24.1-0 → 5.24.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 +2 -2
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,12 +2,12 @@
|
|
|
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
|
|
5
|
+
### [5.24.1](https://github.com/Infomaximum/widget-sdk/compare/v5.24.0...v5.24.1) (2025-06-17)
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
### Bug Fixes
|
|
9
9
|
|
|
10
|
-
*
|
|
10
|
+
* entry может не быть ([1a3ea89](https://github.com/Infomaximum/widget-sdk/commit/1a3ea894ab1c62e7e79c14ea334326aee481eeac))
|
|
11
11
|
|
|
12
12
|
## [5.24.0](https://github.com/Infomaximum/widget-sdk/compare/v5.23.0...v5.24.0) (2025-06-06)
|
|
13
13
|
|
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
|
+
actinButtons: 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
|
+
actinButtons: boolean;
|
|
1080
1080
|
positionByClick?: boolean;
|
|
1081
1081
|
}
|
|
1082
1082
|
/** @deprecated необходимо использовать EViewOpenIn.WINDOW с флагом newWindow - false */
|
|
@@ -2559,7 +2559,7 @@ interface IWidgetManifest {
|
|
|
2559
2559
|
/** Мажорная версия widget-sdk, использованная при разработке виджета */
|
|
2560
2560
|
sdk_version?: number;
|
|
2561
2561
|
/** Путь до js-файла, который является входной точкой виджета */
|
|
2562
|
-
entry
|
|
2562
|
+
entry?: string;
|
|
2563
2563
|
/** Путь до иконки(svg или png) */
|
|
2564
2564
|
icon?: string;
|
|
2565
2565
|
/** Находится ли виджет на beta-стадии разработки */
|