@pushwoosh/dumb-components 1.1.32 → 1.1.33

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.
@@ -77,7 +77,8 @@ export function FrequencyCappingEdit({
77
77
  days: globalCapping.days
78
78
  }, cappingOption === CappingTypes.GLOBAL && React.createElement(Link, {
79
79
  href: `/applications/${applicationCode}/message-delivery-settings?tab=capping`,
80
- title: globalCappingLinkText
80
+ title: globalCappingLinkText,
81
+ target: "_blank"
81
82
  }, React.createElement(LinkWrapper, null, globalCappingLinkText, React.createElement(OpenIcon, {
82
83
  size: "small",
83
84
  view: "lined",
@@ -23,7 +23,8 @@ export function FrequencyCappingReadonly({
23
23
  "$alignItems": "center"
24
24
  }, checkIcon, label, cappingOption === CappingTypes.GLOBAL && React.createElement(Link, {
25
25
  href: `/applications/${applicationCode}/message-delivery-settings?tab=capping`,
26
- title: globalCappingLinkText
26
+ title: globalCappingLinkText,
27
+ target: "_blank"
27
28
  }, React.createElement(Horizontal, {
28
29
  "$gap": 4,
29
30
  "$justifyContent": "start",
@@ -63,7 +63,8 @@ export function SendRateEdit({
63
63
  seconds: globalSendRate.seconds
64
64
  }, policy === 'GLOBAL' && React.createElement(Link, {
65
65
  href: `/applications/${applicationCode}/message-delivery-settings?tab=sendRate`,
66
- title: globalSendRateLinkText
66
+ title: globalSendRateLinkText,
67
+ target: "_blank"
67
68
  }, React.createElement(LinkWrapper, null, globalSendRateLinkText, React.createElement(OpenIcon, {
68
69
  size: "small",
69
70
  view: "lined",
@@ -23,7 +23,8 @@ export function SendRateReadonly({
23
23
  "$alignItems": "center"
24
24
  }, checkIcon, label, policy === 'GLOBAL' && React.createElement(Link, {
25
25
  href: `/applications/${applicationCode}/message-delivery-settings?tab=sendRate`,
26
- title: globalSendRateLinkText
26
+ title: globalSendRateLinkText,
27
+ target: "_blank"
27
28
  }, React.createElement(Horizontal, {
28
29
  "$gap": 4,
29
30
  "$justifyContent": "start",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pushwoosh/dumb-components",
3
- "version": "1.1.32",
3
+ "version": "1.1.33",
4
4
  "description": "React components to build Pushwoosh products",
5
5
  "main": "index.js",
6
6
  "module": "index.js",