gridsmith-ui 0.2.14 → 0.2.15
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 +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2230,7 +2230,8 @@ function Dropdown({
|
|
|
2230
2230
|
"rounded-[var(--ds-radius-md)]",
|
|
2231
2231
|
"shadow-[var(--ds-input-shadow)]",
|
|
2232
2232
|
"transition-colors",
|
|
2233
|
-
!error && "hover:border-[var(--ds-input-border-hover)]",
|
|
2233
|
+
!error && !disabled && "hover:border-[var(--ds-input-border-hover)]",
|
|
2234
|
+
open && !error && "border-[var(--ds-input-focus-ring)] ring-2 ring-[var(--ds-input-focus-ring)]",
|
|
2234
2235
|
"focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-[var(--ds-input-focus-ring)] focus-visible:border-[var(--ds-input-focus-ring)]",
|
|
2235
2236
|
"cursor-pointer disabled:cursor-not-allowed disabled:opacity-disabled",
|
|
2236
2237
|
!selectedValues.length && "text-[var(--ds-text-muted)]"
|