@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 +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/components/input.tsx +1 -1
- package/src/components/select.tsx +1 -1
- package/src/components/textarea.tsx +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1501,7 +1501,7 @@ var Input = React51.forwardRef(
|
|
|
1501
1501
|
{
|
|
1502
1502
|
type,
|
|
1503
1503
|
className: cn(
|
|
1504
|
-
"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",
|
|
1504
|
+
"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",
|
|
1505
1505
|
error ? "border-red-500" : "border-gray-300",
|
|
1506
1506
|
className
|
|
1507
1507
|
),
|
|
@@ -1581,7 +1581,7 @@ var Textarea = React51.forwardRef(
|
|
|
1581
1581
|
"textarea",
|
|
1582
1582
|
{
|
|
1583
1583
|
className: cn(
|
|
1584
|
-
"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",
|
|
1584
|
+
"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",
|
|
1585
1585
|
error ? "border-red-500" : "border-gray-300",
|
|
1586
1586
|
className
|
|
1587
1587
|
),
|
|
@@ -1603,7 +1603,7 @@ var Select = React51.forwardRef(
|
|
|
1603
1603
|
className: cn(
|
|
1604
1604
|
"h-10 w-full rounded-sm border bg-white px-3 py-2 text-base text-[var(--black)]",
|
|
1605
1605
|
"placeholder:text-gray-500",
|
|
1606
|
-
"focus-visible:outline-none",
|
|
1606
|
+
"focus-visible:outline-none focus-visible:border-gray-500",
|
|
1607
1607
|
"disabled:cursor-not-allowed disabled:opacity-50 md:text-sm transition-colors",
|
|
1608
1608
|
"appearance-none pr-10",
|
|
1609
1609
|
error ? "border-red-500" : "border-gray-300",
|