@lumx/react 4.5.0 → 4.5.1

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/index.d.ts CHANGED
@@ -594,8 +594,10 @@ type ReactToJSX<Props, OmitProps extends keyof Props = never> = Omit<Props, Prop
594
594
  interface AvatarProps extends GenericProps$1, ReactToJSX<AvatarProps$1, 'actions' | 'badge' | 'image'> {
595
595
  /** Action toolbar content. */
596
596
  actions?: ReactNode;
597
+ /** Image URL. */
598
+ image: string;
597
599
  /** Props to pass to the link wrapping the thumbnail. */
598
- linkProps?: React.DetailedHTMLProps<React.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
600
+ linkProps?: React__default.DetailedHTMLProps<React__default.AnchorHTMLAttributes<HTMLAnchorElement>, HTMLAnchorElement>;
599
601
  /** Custom react component for the link (can be used to inject react router Link). */
600
602
  linkAs?: 'a' | any;
601
603
  /** On click callback. */