randmarcomps 1.625.0 → 1.627.0

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.
@@ -766,6 +766,10 @@ export declare interface ParsedSystemLogEntry<TEntry extends SystemLogEntry = Sy
766
766
  timestamp: Date;
767
767
  }
768
768
 
769
+ export declare const PARTNER_PAGE_SHELL_CONTENT_CLASS_NAME = "px-4 py-4 sm:px-6 sm:py-6";
770
+
771
+ export declare const PARTNER_PAGE_SHELL_STACK_CLASS_NAME = "space-y-8";
772
+
769
773
  export declare function PartnerActions(props: PartnerActionsProps): JSX.Element;
770
774
 
771
775
  export declare interface PartnerActionsProps {
@@ -786,6 +790,15 @@ declare interface PartnerCardProps {
786
790
  withVoice?: boolean;
787
791
  }
788
792
 
793
+ export declare function PartnerPageShell({ header, children, className, contentClassName, contentProps, ...props }: PartnerPageShellProps): JSX.Element;
794
+
795
+ export declare interface PartnerPageShellProps extends Omit<React_2.ComponentProps<"section">, "children"> {
796
+ header: React_2.ReactNode;
797
+ children: React_2.ReactNode;
798
+ contentClassName?: string;
799
+ contentProps?: Omit<React_2.ComponentProps<"div">, "children" | "className">;
800
+ }
801
+
789
802
  export declare function PartnerRelationshipPage({ applicationId, partnerId, userEmail, shopifyHostName, isSuperAdmin, }: PartnerRelationshipPageProps): JSX.Element;
790
803
 
791
804
  declare interface PartnerRelationshipPageProps {