moduix 0.8.4 → 0.8.5

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.
@@ -22,7 +22,7 @@ type PreviewCardContentProps = PreviewCardPrimitive.Popup.Props & Pick<PreviewCa
22
22
  arrow?: boolean | React.ReactNode;
23
23
  withBackdrop?: boolean;
24
24
  };
25
- declare const PreviewCard: typeof PreviewCardPrimitive.Root;
25
+ declare const PreviewCard: <Payload>(props: PreviewCardPrimitive.Root.Props<Payload>) => import("react/jsx-runtime").JSX.Element;
26
26
  declare const createPreviewCardHandle: typeof PreviewCardPrimitive.createHandle;
27
27
  declare function PreviewCardTrigger({ className, render, ...props }: PreviewCardPrimitive.Trigger.Props): import("react/jsx-runtime").JSX.Element;
28
28
  declare function PreviewCardContent({ className, classNames, slotProps, container, withArrow, arrow, withBackdrop, disableAnchorTracking, side, sideOffset, align, alignOffset, arrowPadding, anchor, collisionAvoidance, collisionBoundary, collisionPadding, sticky, positionMethod, children, ...props }: PreviewCardContentProps): import("react/jsx-runtime").JSX.Element;