@dxos/react-ui 0.8.1 → 0.8.2-main.12df754

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.
@@ -198,7 +198,7 @@ var DxAvatar = createComponent({
198
198
  elementClass: NaturalDxAvatar,
199
199
  react: React3
200
200
  });
201
- var AvatarContent = ({ icon, classNames, ...props }) => {
201
+ var AvatarContent = /* @__PURE__ */ forwardRef2(({ icon, classNames, ...props }, forwardedRef) => {
202
202
  const href = useIconHref(icon);
203
203
  const { labelId, descriptionId } = useAvatarContext("AvatarContent");
204
204
  return /* @__PURE__ */ React3.createElement(DxAvatar, {
@@ -206,9 +206,10 @@ var AvatarContent = ({ icon, classNames, ...props }) => {
206
206
  icon: href,
207
207
  labelId,
208
208
  "aria-describedby": descriptionId,
209
- rootClassName: mx(classNames)
209
+ rootClassName: mx(classNames),
210
+ ref: forwardedRef
210
211
  });
211
- };
212
+ });
212
213
  var AvatarLabel = /* @__PURE__ */ forwardRef2(({ asChild, srOnly, classNames, ...props }, forwardedRef) => {
213
214
  const Root5 = asChild ? Slot2 : Primitive2.span;
214
215
  const { tx } = useThemeContext();
@@ -788,6 +789,7 @@ var DialogContent = /* @__PURE__ */ forwardRef11(({ classNames, children, inOver
788
789
  const { tx } = useThemeContext();
789
790
  const { inOverlayLayout } = useOverlayLayoutContext(DIALOG_CONTENT_NAME);
790
791
  return /* @__PURE__ */ React17.createElement(DialogContentPrimitive, {
792
+ "aria-describedby": void 0,
791
793
  ...props,
792
794
  className: tx("dialog.content", "dialog", {
793
795
  inOverlayLayout: propsInOverlayLayout || inOverlayLayout