@thecb/components 7.12.2-beta.6 → 7.12.2-beta.7

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.cjs.js CHANGED
@@ -17797,7 +17797,8 @@ var rgbToRgba = function rgbToRgba() {
17797
17797
  return "".concat(rgbValue.slice(0, 3), "a").concat(rgbValue.slice(3, -1), ", ").concat(opacity).concat(rgbValue.slice(-1));
17798
17798
  };
17799
17799
 
17800
- var generateShadows = function generateShadows(baseColorRGB) {
17800
+ var generateShadows = function generateShadows() {
17801
+ var baseColorRGB = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : "rgb(41, 42, 51)";
17801
17802
  var colorTen = rgbToRgba(baseColorRGB, "0.1") || "rgba(41, 42, 51, 0.1)";
17802
17803
  var colorTwenty = rgbToRgba(baseColorRGB, "0.2") || "rgba(41, 42, 51, 0.2)";
17803
17804
  var colorTwentyFive = rgbToRgba(baseColorRGB, "0.25") || "rgba(41, 42, 51, 0.25)";
@@ -47090,9 +47091,9 @@ var ErrorDetails = function ErrorDetails() {
47090
47091
  heading: "Error Loading Payment",
47091
47092
  text: "Please go back and try again.",
47092
47093
  showQuitLink: false,
47093
- height: "67px",
47094
47094
  noBorder: true,
47095
- enableBoxShadow: true
47095
+ enableBoxShadow: true,
47096
+ extraStyles: "min-height: 67px; height: 67px;"
47096
47097
  }));
47097
47098
  };
47098
47099