@youngonesworks/ui 1.0.7 → 1.0.9

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