@infomaximum/widget-sdk 4.0.0-beta15 → 4.0.0-beta17

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 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 = {
package/dist/index.esm.js CHANGED
@@ -555,8 +555,7 @@ var escapeSpecialCharacters = function (formula) {
555
555
  return formula
556
556
  .replaceAll("\\", "\\\\")
557
557
  .replaceAll('"', '\\"')
558
- .replaceAll("`", "\\`")
559
- .replaceAll("-", "\\-");
558
+ .replaceAll("`", "\\`");
560
559
  };
561
560
 
562
561
  function generateColumnFormula(tableName, columnName) {
package/dist/index.js CHANGED
@@ -556,8 +556,7 @@ var escapeSpecialCharacters = function (formula) {
556
556
  return formula
557
557
  .replaceAll("\\", "\\\\")
558
558
  .replaceAll('"', '\\"')
559
- .replaceAll("`", "\\`")
560
- .replaceAll("-", "\\-");
559
+ .replaceAll("`", "\\`");
561
560
  };
562
561
 
563
562
  function generateColumnFormula(tableName, columnName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@infomaximum/widget-sdk",
3
- "version": "4.0.0-beta15",
3
+ "version": "4.0.0-beta17",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",