@seekho/ui 0.1.46 → 0.1.48
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 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -449,7 +449,7 @@ function AutoComplete({
|
|
|
449
449
|
onMouseEnter: () => {
|
|
450
450
|
},
|
|
451
451
|
className: [
|
|
452
|
-
"px-3 py-2 text-[
|
|
452
|
+
"px-3 py-2 text-[14px] font-medium cursor-pointer select-none",
|
|
453
453
|
isHighlighted ? "cursor-pointer" : "text-gray-700 hover:bg-gray-100",
|
|
454
454
|
isSelected({ option }) ? "font-semibold" : ""
|
|
455
455
|
].join(" "),
|
|
@@ -2037,7 +2037,7 @@ var Select = ({
|
|
|
2037
2037
|
const optionProps = {
|
|
2038
2038
|
onMouseDown: () => handleSelect(opt),
|
|
2039
2039
|
className: [
|
|
2040
|
-
"px-3 py-2 text-[
|
|
2040
|
+
"px-3 py-2 text-[14px] font-medium select-none",
|
|
2041
2041
|
opt.disabled ? "text-gray-400 cursor-not-allowed" : isHighlighted ? "cursor-pointer" : "text-gray-700 hover:bg-gray-100 cursor-pointer",
|
|
2042
2042
|
String(opt.value) === String(value) ? "font-semibold" : ""
|
|
2043
2043
|
].join(" "),
|
package/dist/index.mjs
CHANGED
|
@@ -442,7 +442,7 @@ function AutoComplete({
|
|
|
442
442
|
onMouseEnter: () => {
|
|
443
443
|
},
|
|
444
444
|
className: [
|
|
445
|
-
"px-3 py-2 text-[
|
|
445
|
+
"px-3 py-2 text-[14px] font-medium cursor-pointer select-none",
|
|
446
446
|
isHighlighted ? "cursor-pointer" : "text-gray-700 hover:bg-gray-100",
|
|
447
447
|
isSelected({ option }) ? "font-semibold" : ""
|
|
448
448
|
].join(" "),
|
|
@@ -2030,7 +2030,7 @@ var Select = ({
|
|
|
2030
2030
|
const optionProps = {
|
|
2031
2031
|
onMouseDown: () => handleSelect(opt),
|
|
2032
2032
|
className: [
|
|
2033
|
-
"px-3 py-2 text-[
|
|
2033
|
+
"px-3 py-2 text-[14px] font-medium select-none",
|
|
2034
2034
|
opt.disabled ? "text-gray-400 cursor-not-allowed" : isHighlighted ? "cursor-pointer" : "text-gray-700 hover:bg-gray-100 cursor-pointer",
|
|
2035
2035
|
String(opt.value) === String(value) ? "font-semibold" : ""
|
|
2036
2036
|
].join(" "),
|