@infomaximum/widget-sdk 6.0.0-15 → 6.0.0-16
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 +3 -0
- 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
|
+
## [6.0.0-16](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-15...v6.0.0-16) (2025-11-13)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* в TActionOpenIn добавлено поле inheritFilter ([6d14dec](https://github.com/Infomaximum/widget-sdk/commit/6d14dec72ebf060654ffb8905051fb58d3798237))
|
|
11
|
+
|
|
5
12
|
## [6.0.0-15](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-14...v6.0.0-15) (2025-10-02)
|
|
6
13
|
|
|
7
14
|
## [6.0.0-14](https://github.com/Infomaximum/widget-sdk/compare/v6.0.0-2508.4...v6.0.0-14) (2025-10-01)
|
package/dist/index.d.ts
CHANGED
|
@@ -1084,15 +1084,18 @@ interface IActionUpdateVariable extends IActionCommon {
|
|
|
1084
1084
|
type TActionOpenIn = {
|
|
1085
1085
|
openIn: EViewOpenIn.DRAWER_WINDOW;
|
|
1086
1086
|
alignment: EDrawerPlacement;
|
|
1087
|
+
inheritFilter?: boolean;
|
|
1087
1088
|
} | {
|
|
1088
1089
|
openIn: EViewOpenIn.PLACEHOLDER;
|
|
1089
1090
|
placeholderName: string;
|
|
1090
1091
|
} | {
|
|
1091
1092
|
openIn: EViewOpenIn.MODAL_WINDOW;
|
|
1092
1093
|
positionByClick?: boolean;
|
|
1094
|
+
inheritFilter?: boolean;
|
|
1093
1095
|
} | {
|
|
1094
1096
|
openIn: EViewOpenIn.WINDOW;
|
|
1095
1097
|
newWindow: boolean;
|
|
1098
|
+
inheritFilter?: boolean;
|
|
1096
1099
|
};
|
|
1097
1100
|
type TActionOpenView = IActionCommon & {
|
|
1098
1101
|
type: EActionTypes.OPEN_VIEW;
|