@infomaximum/widget-sdk 5.7.0 → 5.7.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 +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.7.1](https://github.com/Infomaximum/widget-sdk/compare/v5.7.0...v5.7.1) (2025-02-25)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* изменен передаваемый элемент для контекстного меню ([0edb142](https://github.com/Infomaximum/widget-sdk/commit/0edb142dc1641165a17f1ed52c7efa56801b05fc))
|
|
11
|
+
|
|
5
12
|
## [5.7.0](https://github.com/Infomaximum/widget-sdk/compare/v5.6.0...v5.7.0) (2025-02-20)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1875,9 +1875,9 @@ type TContextMenu = (TContextMenuList | TContextMenuButtonGroup) & {
|
|
|
1875
1875
|
y?: number;
|
|
1876
1876
|
};
|
|
1877
1877
|
/** Относительно чего позиционируется меню */
|
|
1878
|
-
positionOrigin?: "frame" | "workArea" |
|
|
1878
|
+
positionOrigin?: "frame" | "workArea" | Element;
|
|
1879
1879
|
/** Каким элементом ограничено расположение меню */
|
|
1880
|
-
boundingContainer?:
|
|
1880
|
+
boundingContainer?: Element;
|
|
1881
1881
|
/** Положение меню относительно его позиции */
|
|
1882
1882
|
placement?: "topRight" | "topLeft" | "bottomRight" | "bottomLeft";
|
|
1883
1883
|
};
|