atenea-components 1.4.23 → 1.4.24
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.
|
@@ -31,10 +31,10 @@ const SelectDropdown = ({ options, value, onChange, placeholder = "Select", disa
|
|
|
31
31
|
const triggerClass = [
|
|
32
32
|
"w-full flex items-center gap-2 transition-colors outline-none text-left font-normal select-none",
|
|
33
33
|
getSizeClasses(),
|
|
34
|
-
"bg-white-100 border border-gray-300
|
|
34
|
+
"bg-white-100 border border-gray-300 ",
|
|
35
35
|
disabled
|
|
36
|
-
? "text-textAtenea-300 hover:
|
|
37
|
-
: "cursor-pointer",
|
|
36
|
+
? "text-textAtenea-300 hover:none cursor-not-allowed border-gray-200"
|
|
37
|
+
: "cursor-pointer hover:border-primary-500 focus:border-primary-500",
|
|
38
38
|
isOpen && !disabled ? "border-primary-500 ring-2 ring-primary-200" : "",
|
|
39
39
|
className,
|
|
40
40
|
].join(" ");
|