@luscii-healthtech/web-ui 35.10.0 → 35.11.0

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.
@@ -1509,6 +1509,7 @@ const Box = (props) => {
1509
1509
  const attributesWithoutSpacingKeys = omit__default.default(attributes, spacingKeys);
1510
1510
  return React__namespace.default.createElement(Element, Object.assign({ className: classNames__default.default(spacingClasses, {
1511
1511
  "ui-bg-surface": props.backgroundColor === "surface",
1512
+ "ui-bg-background": props.backgroundColor === "background",
1512
1513
  "ui-bg-slate-100": props.backgroundColor === "base",
1513
1514
  "ui-bg-blue-50": props.backgroundColor === "blue",
1514
1515
  "ui-bg-red-50": props.backgroundColor === "red",
@@ -1518,6 +1519,7 @@ const Box = (props) => {
1518
1519
  "ui-w-full": width === "full"
1519
1520
  }, {
1520
1521
  "hover:ui-bg-slate-100": props.hoverBackgroundColor === "base",
1522
+ "hover:ui-bg-background": props.backgroundColor === "background",
1521
1523
  "hover:ui-bg-blue-50": props.hoverBackgroundColor === "blue",
1522
1524
  "hover:ui-bg-red-50": props.hoverBackgroundColor === "red",
1523
1525
  "hover:ui-bg-green-50": props.hoverBackgroundColor === "green",