@chekinapp/ui 0.0.138 → 0.0.139
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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -13338,8 +13338,8 @@ function ComboboxTrigger({
|
|
|
13338
13338
|
"span",
|
|
13339
13339
|
{
|
|
13340
13340
|
className: cn(
|
|
13341
|
-
"grid min-w-0 max-w-full
|
|
13342
|
-
isMulti
|
|
13341
|
+
"grid min-w-0 max-w-full",
|
|
13342
|
+
isMulti ? "w-min flex-none min-w-[40px]" : "w-full overflow-hidden",
|
|
13343
13343
|
!searchable && "sr-only"
|
|
13344
13344
|
),
|
|
13345
13345
|
children: [
|
|
@@ -13371,7 +13371,7 @@ function ComboboxTrigger({
|
|
|
13371
13371
|
"aria-activedescendant": activeOptionId,
|
|
13372
13372
|
className: cn(
|
|
13373
13373
|
"col-start-1 row-start-1 m-0 box-border w-full min-w-0 border-0 bg-transparent p-0 text-[16px] font-medium leading-5 text-[var(--chekin-color-brand-navy)] outline-none placeholder:text-[var(--chekin-color-gray-1)]",
|
|
13374
|
-
isMulti
|
|
13374
|
+
isMulti ? "min-w-[40px]" : "text-ellipsis",
|
|
13375
13375
|
readOnly && !disabled && !loading && "cursor-default",
|
|
13376
13376
|
disabled && !loading && "cursor-not-allowed",
|
|
13377
13377
|
loading && "!cursor-progress",
|