@infomaximum/widget-sdk 4.0.0-beta14 → 4.0.0-beta16
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/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -772,6 +772,7 @@ interface IWidgetsContext {
|
|
|
772
772
|
tables: Set<string>;
|
|
773
773
|
reportDisplayRules: Map<string, IDisplayRule>;
|
|
774
774
|
workspaceDisplayRules: Map<number, Map<string, IDisplayRule>>;
|
|
775
|
+
viewKeyByName: Map<string, string>;
|
|
775
776
|
}
|
|
776
777
|
|
|
777
778
|
declare enum EWidgetActionInputMode {
|
|
@@ -836,6 +837,7 @@ interface IActionOpenView extends IActionCommon {
|
|
|
836
837
|
viewType: EViewType;
|
|
837
838
|
drawerPlacement: EDrawerPlacement;
|
|
838
839
|
placeholderName: string;
|
|
840
|
+
isOpenInCurrentWindow?: boolean;
|
|
839
841
|
}
|
|
840
842
|
type TActionsOnClick = IActionGoToUrl | IActionRunScript | IActionUpdateVariable | IActionOpenView;
|
|
841
843
|
type TWidgetActionInputValue = {
|