@underverse-ui/underverse 0.1.23 → 0.1.25

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
@@ -5298,11 +5298,11 @@ var MultiCombobox = ({
5298
5298
  return /* @__PURE__ */ jsxs24("span", { className: "inline-flex items-center gap-1 bg-accent text-accent-foreground rounded px-2 py-1 text-xs", children: [
5299
5299
  /* @__PURE__ */ jsx28("span", { className: "truncate max-w-[120px]", children: option ? displayFormat(option) : itemValue }),
5300
5300
  /* @__PURE__ */ jsx28(
5301
- "div",
5301
+ "span",
5302
5302
  {
5303
5303
  role: "button",
5304
5304
  tabIndex: 0,
5305
- "aria-label": `Remove ${option ? option.label : itemValue}`,
5305
+ "aria-label": `Remove ${option ? displayFormat(option) : itemValue}`,
5306
5306
  onClick: (e) => {
5307
5307
  e.preventDefault();
5308
5308
  e.stopPropagation();
@@ -5315,7 +5315,7 @@ var MultiCombobox = ({
5315
5315
  handleRemove(itemValue);
5316
5316
  }
5317
5317
  },
5318
- className: "hover:text-destructive transition-colors cursor-pointer",
5318
+ className: "hover:text-destructive transition-colors cursor-pointer select-none",
5319
5319
  children: "\xD7"
5320
5320
  }
5321
5321
  )