@dust-tt/sparkle 0.2.89 → 0.2.90

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/cjs/index.js CHANGED
@@ -32285,11 +32285,11 @@ function Chip(_a) {
32285
32285
  var _b = _a.size, size = _b === void 0 ? "xs" : _b, _c = _a.color, color = _c === void 0 ? "slate" : _c, label = _a.label, children = _a.children, _d = _a.className, className = _d === void 0 ? "" : _d, _e = _a.isBusy, isBusy = _e === void 0 ? false : _e, icon = _a.icon;
32286
32286
  var backgroundColor = "s-bg-".concat(color, "-100 s-border-").concat(color, "-200");
32287
32287
  var textColor = "s-text-".concat(color, "-900");
32288
- var ChipClasses = classNames(baseClasses$2, sizeClasses$1[size], backgroundColor, textColor, "s-cursor-default", className);
32288
+ var ChipClasses = classNames(baseClasses$2, sizeClasses$1[size], backgroundColor, textColor, className);
32289
32289
  return (React.createElement("div", { className: ChipClasses, "aria-label": label },
32290
32290
  icon && React.createElement(Icon, { visual: icon, size: size }),
32291
32291
  isBusy && React.createElement(Spinner, { size: size, variant: "darkGrey" }),
32292
- label && (React.createElement("span", { className: classNames(textColor, "s-grow s-truncate") }, label)),
32292
+ label && (React.createElement("span", { className: classNames(textColor, "s-pointer s-grow s-cursor-default s-truncate") }, label)),
32293
32293
  children));
32294
32294
  }
32295
32295
  Chip.List = function (_a) {