@homebound/beam 3.42.0 → 3.42.2

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.d.cts CHANGED
@@ -5028,7 +5028,7 @@ type MenuSection = MenuItem & {
5028
5028
  };
5029
5029
 
5030
5030
  type TagXss = Margin | "backgroundColor" | "color";
5031
- type TagType = "info" | "caution" | "warning" | "success" | "neutral";
5031
+ type TagType = "info" | "update" | "warning" | "error" | "success" | "neutral";
5032
5032
  type TagVariant = "primary" | "secondary";
5033
5033
  type TagPropsBase<X> = {
5034
5034
  text: ReactNode;
package/dist/index.d.ts CHANGED
@@ -5028,7 +5028,7 @@ type MenuSection = MenuItem & {
5028
5028
  };
5029
5029
 
5030
5030
  type TagXss = Margin | "backgroundColor" | "color";
5031
- type TagType = "info" | "caution" | "warning" | "success" | "neutral";
5031
+ type TagType = "info" | "update" | "warning" | "error" | "success" | "neutral";
5032
5032
  type TagVariant = "primary" | "secondary";
5033
5033
  type TagPropsBase<X> = {
5034
5034
  text: ReactNode;
package/dist/index.js CHANGED
@@ -16925,7 +16925,7 @@ var VirtualRoot = memoizeOne((gs, _columns, id, xss) => {
16925
16925
  }), "data-testid": id, children });
16926
16926
  });
16927
16927
  });
16928
- var CARD_MIN_WIDTH_PX = 280;
16928
+ var CARD_MIN_WIDTH_PX = 330;
16929
16929
 
16930
16930
  // src/components/ToggleChip.tsx
16931
16931
  import { trussProps as trussProps53 } from "@homebound/truss/runtime";
@@ -21669,7 +21669,7 @@ function getPrimaryStyles(type) {
21669
21669
  },
21670
21670
  iconColor: "rgba(37, 99, 235, 1)" /* Blue600 */
21671
21671
  };
21672
- case "caution":
21672
+ case "update":
21673
21673
  return {
21674
21674
  background: {
21675
21675
  backgroundColor: "bgYellow200"
@@ -21679,14 +21679,21 @@ function getPrimaryStyles(type) {
21679
21679
  case "warning":
21680
21680
  return {
21681
21681
  background: {
21682
- backgroundColor: "bgRed200"
21682
+ backgroundColor: "bgOrange100"
21683
+ },
21684
+ iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
21685
+ };
21686
+ case "error":
21687
+ return {
21688
+ background: {
21689
+ backgroundColor: "bgRed100"
21683
21690
  },
21684
21691
  iconColor: "rgba(194, 65, 12, 1)" /* Orange700 */
21685
21692
  };
21686
21693
  case "success":
21687
21694
  return {
21688
21695
  background: {
21689
- backgroundColor: "bgGreen200"
21696
+ backgroundColor: "bgGreen100"
21690
21697
  },
21691
21698
  iconColor: "rgba(5, 150, 105, 1)" /* Green600 */
21692
21699
  };