@dxos/react-ui 0.3.5-main.fa2fc5b → 0.3.5-next.63b0922

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.
@@ -152,9 +152,7 @@ var AvatarFrame = /* @__PURE__ */ forwardRef(({ classNames, children, ...props }
152
152
  viewBox: `0 0 ${imageSizeNumber} ${imageSizeNumber}`,
153
153
  width: imageSizeNumber,
154
154
  height: imageSizeNumber,
155
- className: tx("avatar.frame", "avatar__frame", {
156
- variant
157
- })
155
+ className: tx("avatar.frame", "avatar__frame", {})
158
156
  }, /* @__PURE__ */ React2.createElement("defs", null, /* @__PURE__ */ React2.createElement("mask", {
159
157
  id: maskId
160
158
  }, variant === "circle" ? /* @__PURE__ */ React2.createElement("circle", {
@@ -217,7 +215,6 @@ var AvatarFrame = /* @__PURE__ */ forwardRef(({ classNames, children, ...props }
217
215
  width: imageSizeNumber - strokeWidth / 4,
218
216
  height: imageSizeNumber - strokeWidth / 4
219
217
  })), /* @__PURE__ */ React2.createElement("span", {
220
- role: "none",
221
218
  className: tx("avatar.ring", "avatar__ring", {
222
219
  size,
223
220
  variant,
@@ -562,7 +559,7 @@ import { DotsSixVertical, DotsThreeVertical } from "@phosphor-icons/react";
562
559
  import React11, { forwardRef as forwardRef9 } from "react";
563
560
 
564
561
  // packages/ui/react-ui/src/components/DropdownMenu/DropdownMenu.tsx
565
- import { Root as DropdownMenuRootPrimitive, DropdownMenuTrigger as DropdownMenuTriggerPrimitive, DropdownMenuPortal as DropdownMenuPortalPrimitive, DropdownMenuContent as DropdownMenuContentPrimitive, DropdownMenuArrow as DropdownMenuArrowPrimitive, DropdownMenuGroup as DropdownMenuGroupPrimitive, DropdownMenuItem as DropdownMenuItemPrimitive, DropdownMenuCheckboxItem as DropdownMenuCheckboxItemPrimitive, DropdownMenuItemIndicator as DropdownMenuItemIndicatorPrimitive, DropdownMenuSeparator as DropdownMenuSeparatorPrimitive, DropdownMenuLabel as DropdownMenuLabelPrimitive } from "@radix-ui/react-dropdown-menu";
562
+ import { Root as DropdownMenuRootPrimitive, DropdownMenuTrigger as DropdownMenuTriggerPrimitive, DropdownMenuPortal as DropdownMenuPortalPrimitive, DropdownMenuContent as DropdownMenuContentPrimitive, DropdownMenuArrow as DropdownMenuArrowPrimitive, DropdownMenuGroup as DropdownMenuGroupPrimitive, DropdownMenuItem as DropdownMenuItemPrimitive, DropdownMenuSeparator as DropdownMenuSeparatorPrimitive, DropdownMenuLabel as DropdownMenuLabelPrimitive } from "@radix-ui/react-dropdown-menu";
566
563
  import { Primitive as Primitive5 } from "@radix-ui/react-primitive";
567
564
  import { Slot as Slot5 } from "@radix-ui/react-slot";
568
565
  import React10, { forwardRef as forwardRef8 } from "react";
@@ -612,7 +609,6 @@ var DropdownMenuArrow = /* @__PURE__ */ forwardRef8(({ classNames, ...props }, f
612
609
  });
613
610
  });
614
611
  var DropdownMenuGroup = DropdownMenuGroupPrimitive;
615
- var DropdownMenuItemIndicator = DropdownMenuItemIndicatorPrimitive;
616
612
  var DropdownMenuItem = /* @__PURE__ */ forwardRef8(({ classNames, ...props }, forwardedRef) => {
617
613
  const { tx } = useThemeContext();
618
614
  return /* @__PURE__ */ React10.createElement(DropdownMenuItemPrimitive, {
@@ -621,14 +617,6 @@ var DropdownMenuItem = /* @__PURE__ */ forwardRef8(({ classNames, ...props }, fo
621
617
  ref: forwardedRef
622
618
  });
623
619
  });
624
- var DropdownMenuCheckboxItem = /* @__PURE__ */ forwardRef8(({ classNames, ...props }, forwardedRef) => {
625
- const { tx } = useThemeContext();
626
- return /* @__PURE__ */ React10.createElement(DropdownMenuCheckboxItemPrimitive, {
627
- ...props,
628
- className: tx("dropdownMenu.item", "dropdown-menu__item--checkbox", {}, classNames),
629
- ref: forwardedRef
630
- });
631
- });
632
620
  var DropdownMenuSeparator = /* @__PURE__ */ forwardRef8(({ classNames, ...props }, forwardedRef) => {
633
621
  const { tx } = useThemeContext();
634
622
  return /* @__PURE__ */ React10.createElement(DropdownMenuSeparatorPrimitive, {
@@ -654,8 +642,6 @@ var DropdownMenu = {
654
642
  Arrow: DropdownMenuArrow,
655
643
  Group: DropdownMenuGroup,
656
644
  Item: DropdownMenuItem,
657
- CheckboxItem: DropdownMenuCheckboxItem,
658
- ItemIndicator: DropdownMenuItemIndicator,
659
645
  Separator: DropdownMenuSeparator,
660
646
  GroupLabel: DropdownMenuGroupLabel
661
647
  };