@dilipod/ui 0.4.26 → 0.4.27

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
@@ -1535,7 +1535,7 @@ var Input = React51__namespace.forwardRef(
1535
1535
  {
1536
1536
  type,
1537
1537
  className: cn(
1538
- "flex h-10 w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)] file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-[var(--black)] placeholder:text-gray-500 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors",
1538
+ "flex h-10 w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)] file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-[var(--black)] placeholder:text-gray-500 focus-visible:outline-none focus-visible:border-gray-500 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors",
1539
1539
  error ? "border-red-500" : "border-gray-300",
1540
1540
  className
1541
1541
  ),
@@ -1615,7 +1615,7 @@ var Textarea = React51__namespace.forwardRef(
1615
1615
  "textarea",
1616
1616
  {
1617
1617
  className: cn(
1618
- "flex min-h-[80px] w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)] placeholder:text-gray-500 focus-visible:outline-none disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors resize-none",
1618
+ "flex min-h-[80px] w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)] placeholder:text-gray-500 focus-visible:outline-none focus-visible:border-gray-500 disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors resize-none",
1619
1619
  error ? "border-red-500" : "border-gray-300",
1620
1620
  className
1621
1621
  ),
@@ -1637,7 +1637,7 @@ var Select = React51__namespace.forwardRef(
1637
1637
  className: cn(
1638
1638
  "h-10 w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)]",
1639
1639
  "placeholder:text-gray-500",
1640
- "focus-visible:outline-none",
1640
+ "focus-visible:outline-none focus-visible:border-gray-500",
1641
1641
  "disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors",
1642
1642
  "appearance-none pr-10",
1643
1643
  error ? "border-red-500" : "border-gray-300",