@youngonesworks/ui 1.0.7 → 1.0.8

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.js CHANGED
@@ -722,19 +722,20 @@ const Badge = ({ styleVariant = COLOR.ACCENT_BLUE, className, favorite, children
722
722
  "bg-accent-blue-light text-accent-blue": styleVariant === COLOR.ACCENT_BLUE,
723
723
  "bg-green-light text-green": styleVariant === COLOR.GREEN_LIGHT,
724
724
  "bg-red-50 text-red-500": styleVariant === COLOR.RED,
725
- "bg-purple-light text-purple": styleVariant === COLOR.PURPLE,
725
+ "bg-purple-light text-black border border-purple": styleVariant === COLOR.PURPLE,
726
726
  "bg-warning-light text-warning": styleVariant === COLOR.WARNING,
727
727
  "bg-gray-50 text-black": styleVariant === COLOR.DARK_GRAY,
728
728
  "bg-black text-white": styleVariant === COLOR.BLACK,
729
729
  "bg-gray-50 text-gray-800": styleVariant === COLOR.GRAY,
730
730
  "bg-secondary-light text-secondary": styleVariant === COLOR.SECONDARY_LIGHT,
731
731
  "bg-secondary text-white": styleVariant === COLOR.SECONDARY,
732
- "bg-white text-black": styleVariant === COLOR.WHITE
732
+ "bg-white text-black": styleVariant === COLOR.WHITE,
733
+ "bg-turquoise-50 text-black border border-primary": styleVariant === COLOR.PRIMARY
733
734
  }, className),
734
735
  ...props,
735
736
  children: /* @__PURE__ */ jsx("span", {
736
737
  "data-testid": "badge-content",
737
- className: cn("block h-5 overflow-hidden text-ellipsis whitespace-nowrap text-inherit", { "flex items-center": favorite }),
738
+ className: cn("block h-[22px] overflow-hidden text-ellipsis whitespace-nowrap text-inherit", { "flex items-center": favorite }),
738
739
  children
739
740
  })
740
741
  });