@youngonesworks/ui 1.0.2 → 1.0.4

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
@@ -239,6 +239,7 @@ let COLOR = /* @__PURE__ */ function(COLOR$1) {
239
239
  COLOR$1["WARNING_LIGHT"] = "warning-light";
240
240
  COLOR$1["ULTRA_LIGHT_BLUE"] = "ultra-light-blue";
241
241
  COLOR$1["ULTRA_LIGHT_GRAY"] = "ultra-light-gray";
242
+ COLOR$1["ULTRA_LIGHT_BLUE_GRAY"] = "ultra-light-blue-gray";
242
243
  COLOR$1["TURQUOISE"] = "turquoise";
243
244
  COLOR$1["RED"] = "red";
244
245
  COLOR$1["DARK_GRAY"] = "dark-gray";
@@ -360,7 +361,7 @@ const Alert = ({ show, title, description, type = "warning", button, plain = fal
360
361
  "data-testid": "alert-icon",
361
362
  "aria-hidden": "true"
362
363
  })), /* @__PURE__ */ jsx("span", {
363
- className: "text-base font-semibold",
364
+ className: "yo-text-base",
364
365
  children: title
365
366
  })]
366
367
  }),
@@ -2808,7 +2809,7 @@ function TableRow({ children, className, header,...props }) {
2808
2809
  return /* @__PURE__ */ jsx("div", {
2809
2810
  "data-testid": "tableRow",
2810
2811
  "data-component": "tableRow",
2811
- className: `${cn("table-row border-x-0 border-y-0 border-t border-solid border-gray-200 xl:border-t xl:border-solid xl:border-gray-200", "hover:bg-ultra-light-blue", header && "font-medium", className)}`,
2812
+ className: `${cn("table-row border-x-0 border-y-0 border-t border-solid border-gray-200 xl:border-t xl:border-solid xl:border-gray-200", "hover:bg-ultra-light-blue-gray", header && "font-medium", className)}`,
2812
2813
  ...props,
2813
2814
  children
2814
2815
  });
@@ -3053,7 +3054,7 @@ const UnorderedList = ({ children, className, actionItem,...props }) => /* @__PU
3053
3054
  const UnorderedListItem = ({ children, actionItem, className, header = false,...props }) => /* @__PURE__ */ jsxs("li", {
3054
3055
  ...props,
3055
3056
  "data-component": "unorderedListItem",
3056
- className: cn("grid min-h-[74px] list-none items-center border-b border-solid border-b-gray-200 py-5 text-sm font-normal last:border-none md:flex md:py-4 md:pr-10 md:pl-10", header ? "md:items-end" : "hover:bg-ultra-light-blue", { "grid-cols-2": actionItem }, className),
3057
+ className: cn("grid min-h-[74px] list-none items-center border-b border-solid border-b-gray-200 py-5 text-sm font-normal last:border-none md:flex md:py-4 md:pr-10 md:pl-10", header ? "md:items-end" : "hover:bg-ultra-light-blue-gray", { "grid-cols-2": actionItem }, className),
3057
3058
  children: [children, actionItem && /* @__PURE__ */ jsx("span", {
3058
3059
  className: "flex justify-end gap-2 md:absolute md:right-8 md:items-center",
3059
3060
  children: actionItem