@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.js CHANGED
@@ -12973,8 +12973,8 @@ function ComboboxTrigger({
12973
12973
  "span",
12974
12974
  {
12975
12975
  className: cn(
12976
- "grid min-w-0 max-w-full w-min flex-none",
12977
- isMulti && "min-w-[40px]",
12976
+ "grid min-w-0 max-w-full",
12977
+ isMulti ? "w-min flex-none min-w-[40px]" : "w-full overflow-hidden",
12978
12978
  !searchable && "sr-only"
12979
12979
  ),
12980
12980
  children: [
@@ -13006,7 +13006,7 @@ function ComboboxTrigger({
13006
13006
  "aria-activedescendant": activeOptionId,
13007
13007
  className: cn(
13008
13008
  "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)]",
13009
- isMulti && "min-w-[40px]",
13009
+ isMulti ? "min-w-[40px]" : "text-ellipsis",
13010
13010
  readOnly && !disabled && !loading && "cursor-default",
13011
13011
  disabled && !loading && "cursor-not-allowed",
13012
13012
  loading && "!cursor-progress",