@sustaina/shared-ui 1.65.2 → 1.65.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
@@ -3489,7 +3489,7 @@ var AuditFooter = ({
3489
3489
  ...labels
3490
3490
  };
3491
3491
  const dateFormatter = formatters?.date ?? ((value) => formatISODate(value, "DD/MM/YYYY"));
3492
- const timeFormatter = formatters?.time ?? ((value) => formatISODate(value, "H:i"));
3492
+ const timeFormatter = formatters?.time ?? ((value) => formatISODate(value, "H:i:s"));
3493
3493
  const userFormatter = formatters?.user ?? ((value) => value ?? emptyValue);
3494
3494
  const resolvedDeleteIcon = deleteIcon ?? /* @__PURE__ */ jsxRuntime.jsx(TrashIcon, { className: "w-5 h-5" });
3495
3495
  return /* @__PURE__ */ jsxRuntime.jsxs("div", { className: cn("flex w-full h-14 mt-12 justify-between items-end px-3", classNames?.root), children: [
@@ -12703,7 +12703,7 @@ function TextArea({ className, autoResize = true, ...props }) {
12703
12703
  {
12704
12704
  "data-slot": "textarea",
12705
12705
  className: cn(
12706
- "border-input placeholder:text-sus-gray-1 focus-visible:border-neutral-900 focus-visible:ring-0 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
12706
+ "border-input placeholder:text-sus-gray-1 focus-visible:border-ring focus-visible:ring-0 aria-invalid:ring-destructive/20 dark:aria-invalid:ring-destructive/40 aria-invalid:border-destructive dark:bg-input/30 flex w-full rounded-md border bg-transparent px-3 py-2 text-base shadow-xs transition-[color,box-shadow] outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm",
12707
12707
  autoResize ? "field-sizing-content min-h-16" : "field-sizing-fixed",
12708
12708
  className
12709
12709
  ),