react-notify-sdk 1.0.43 → 1.0.44

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.
@@ -118,7 +118,7 @@ const FeatureMessage = ({ message, onDismiss }) => {
118
118
  alignItems: "center" // items-center
119
119
  }, children: _jsx("p", { style: {
120
120
  fontSize: "1rem", // text-base
121
- color: "white",
121
+ color: `${message?.borderColor}`,
122
122
  cursor: "pointer"
123
123
  }, onClick: message?.click_action ? handleClick : undefined, onMouseEnter: (e) => (e.currentTarget.style.color = `${message?.borderColor}`), onMouseLeave: (e) => (e.currentTarget.style.color = "white"), children: `${filterButton(message)}` }) })] }));
124
124
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-notify-sdk",
3
- "version": "1.0.43",
3
+ "version": "1.0.44",
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",