@youngonesworks/ui 1.0.2 → 1.0.3

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.cjs CHANGED
@@ -261,6 +261,7 @@ let COLOR = /* @__PURE__ */ function(COLOR$1) {
261
261
  COLOR$1["WARNING_LIGHT"] = "warning-light";
262
262
  COLOR$1["ULTRA_LIGHT_BLUE"] = "ultra-light-blue";
263
263
  COLOR$1["ULTRA_LIGHT_GRAY"] = "ultra-light-gray";
264
+ COLOR$1["ULTRA_LIGHT_BLUE_GRAY"] = "ultra-light-blue-gray";
264
265
  COLOR$1["TURQUOISE"] = "turquoise";
265
266
  COLOR$1["RED"] = "red";
266
267
  COLOR$1["DARK_GRAY"] = "dark-gray";
@@ -2830,7 +2831,7 @@ function TableRow({ children, className, header,...props }) {
2830
2831
  return /* @__PURE__ */ (0, react_jsx_runtime.jsx)("div", {
2831
2832
  "data-testid": "tableRow",
2832
2833
  "data-component": "tableRow",
2833
- 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)}`,
2834
+ 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)}`,
2834
2835
  ...props,
2835
2836
  children
2836
2837
  });
@@ -3075,7 +3076,7 @@ const UnorderedList = ({ children, className, actionItem,...props }) => /* @__PU
3075
3076
  const UnorderedListItem = ({ children, actionItem, className, header = false,...props }) => /* @__PURE__ */ (0, react_jsx_runtime.jsxs)("li", {
3076
3077
  ...props,
3077
3078
  "data-component": "unorderedListItem",
3078
- 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),
3079
+ 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),
3079
3080
  children: [children, actionItem && /* @__PURE__ */ (0, react_jsx_runtime.jsx)("span", {
3080
3081
  className: "flex justify-end gap-2 md:absolute md:right-8 md:items-center",
3081
3082
  children: actionItem