analytica-frontend-lib 1.0.55 → 1.0.56

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.mjs CHANGED
@@ -171,7 +171,7 @@ var Badge = ({
171
171
  className: `${baseClasses} ${variantClasses} ${sizeClasses} ${className}`,
172
172
  ...props,
173
173
  children: [
174
- /* @__PURE__ */ jsx3(Bell, { size: 24, className: "text-primary-950" }),
174
+ /* @__PURE__ */ jsx3(Bell, { size: 24, className: "text-current", "aria-hidden": "true" }),
175
175
  notificationActive && /* @__PURE__ */ jsx3(
176
176
  "span",
177
177
  {
@@ -3048,9 +3048,8 @@ var DropdownMenuTrigger = ({
3048
3048
  const open = useStore(store, (s) => s.open);
3049
3049
  const toggleOpen = () => store.setState({ open: !open });
3050
3050
  return /* @__PURE__ */ jsx23(
3051
- Button_default,
3051
+ "button",
3052
3052
  {
3053
- variant: "outline",
3054
3053
  onClick: (e) => {
3055
3054
  e.stopPropagation();
3056
3055
  toggleOpen();