react-dialogger 1.1.79 → 1.1.81

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.
@@ -91,6 +91,11 @@ exports.default = React.forwardRef(function (_a, ref) {
91
91
  (0, appLogger_1.appLog)('Button_variant', variant);
92
92
  if (variant === 'text') {
93
93
  exclusive.backgroundColor = 'inherit';
94
+ exclusive.borderColor = color;
95
+ }
96
+ if (variant === "outlined") {
97
+ exclusive.backgroundColor = 'inherit';
98
+ exclusive.borderColor = color;
94
99
  exclusive.color = color; // exclusive.backgroundColor;
95
100
  }
96
101
  }
@@ -104,5 +109,5 @@ exports.default = React.forwardRef(function (_a, ref) {
104
109
  setTimeout(function () {
105
110
  onClick && onClick(e);
106
111
  }, 200);
107
- }, style: __assign(__assign(__assign(__assign(__assign({}, baseStyle), style), exclusive), { fontFamily: fontFamily }), variant === 'text' ? { border: "none" } : null), children: [isRippling && (0, jsx_runtime_1.jsx)("span", { className: "ripple", style: { left: coords.x, top: coords.y } }), (0, jsx_runtime_1.jsx)("span", { className: "content", children: children(ref.current) })] }));
112
+ }, style: __assign(__assign(__assign(__assign(__assign({}, baseStyle), style), exclusive), { fontFamily: fontFamily }), variant === 'text' ? { border: "none" } : null), children: [isRippling && (0, jsx_runtime_1.jsx)("span", { className: "ripple", style: __assign({ left: coords.x, top: coords.y }, !isNamedColor ? { backgroundColor: (0, Colorify_1.hexToRGB)(hexedColor, .3) } : null) }), (0, jsx_runtime_1.jsx)("span", { className: "content", children: children(ref.current) })] }));
108
113
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-dialogger",
3
- "version": "1.1.79",
3
+ "version": "1.1.81",
4
4
  "description": "This package is a continuation of the react-araci package. Due to an error, react-araci was removed, and it has been decided to continue under the new package name react-dialogger",
5
5
  "main": "index.js",
6
6
  "author": "Sueleyman Topaloglu",