react-notify-sdk 1.0.56 → 1.0.58

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.
@@ -92,8 +92,8 @@ const FeatureMessage = ({ message, onDismiss }) => {
92
92
  height: "100%", // h-full
93
93
  display: "flex", // flex flex-col
94
94
  flexDirection: "column",
95
- borderRightWidth: "1px", // border-r
96
- borderRightColor: `${message?.textColor}`
95
+ //borderRightWidth: "1px", // border-r
96
+ borderRightColor: message?.click_action === "view only" ? 'none' : `1px solid ${message?.textColor}`
97
97
  }, children: [_jsxs("div", { style: {
98
98
  position: "relative", // relative
99
99
  width: "100%", // w-full
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-notify-sdk",
3
- "version": "1.0.56",
3
+ "version": "1.0.58",
4
4
  "description": "SDK for displaying real-time route-specific messages in React apps",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",